OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.
h" | 11 #include "webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.
h" |
12 | 12 |
13 #include <assert.h> | 13 #include <assert.h> |
14 #include <libproc.h> | 14 #include <libproc.h> |
15 #include <string> | 15 #include <string> |
16 | 16 |
17 #include "webrtc/base/macutils.h" | 17 #include "webrtc/base/macutils.h" |
18 #include "webrtc/modules/desktop_capture/mac/desktop_configuration.h" | |
19 #include "webrtc/modules/desktop_capture/mac/window_list_utils.h" | 18 #include "webrtc/modules/desktop_capture/mac/window_list_utils.h" |
20 #include "webrtc/system_wrappers/include/logging.h" | 19 #include "webrtc/system_wrappers/include/logging.h" |
21 | 20 |
22 | 21 |
23 namespace webrtc { | 22 namespace webrtc { |
24 | 23 |
25 namespace { | 24 namespace { |
26 | 25 |
27 const int64_t kUpdateIntervalMs = 500; | 26 const int64_t kUpdateIntervalMs = 500; |
28 | 27 |
29 // Returns true if the window is minimized. | |
30 bool IsWindowMinimized(CGWindowID id) { | |
31 CFArrayRef window_id_array = | |
32 CFArrayCreate(NULL, reinterpret_cast<const void **>(&id), 1, NULL); | |
33 CFArrayRef window_array = | |
34 CGWindowListCreateDescriptionFromArray(window_id_array); | |
35 bool minimized = false; | |
36 | |
37 if (window_array && CFArrayGetCount(window_array)) { | |
38 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( | |
39 CFArrayGetValueAtIndex(window_array, 0)); | |
40 CFBooleanRef on_screen = reinterpret_cast<CFBooleanRef>( | |
41 CFDictionaryGetValue(window, kCGWindowIsOnscreen)); | |
42 | |
43 minimized = !on_screen; | |
44 } | |
45 | |
46 CFRelease(window_id_array); | |
47 CFRelease(window_array); | |
48 | |
49 return minimized; | |
50 } | |
51 | |
52 // Returns true if the window is occupying a full screen. | |
53 bool IsWindowFullScreen(const MacDesktopConfiguration& desktop_config, | |
54 CFDictionaryRef window) { | |
55 bool fullscreen = false; | |
56 | |
57 CFDictionaryRef bounds_ref = reinterpret_cast<CFDictionaryRef>( | |
58 CFDictionaryGetValue(window, kCGWindowBounds)); | |
59 | |
60 CGRect bounds; | |
61 if (bounds_ref && | |
62 CGRectMakeWithDictionaryRepresentation(bounds_ref, &bounds)) { | |
63 for (MacDisplayConfigurations::const_iterator it = | |
64 desktop_config.displays.begin(); | |
65 it != desktop_config.displays.end(); ++it) { | |
66 if (it->bounds.equals(DesktopRect::MakeXYWH(bounds.origin.x, | |
67 bounds.origin.y, | |
68 bounds.size.width, | |
69 bounds.size.height))) { | |
70 fullscreen = true; | |
71 break; | |
72 } | |
73 } | |
74 } | |
75 | |
76 return fullscreen; | |
77 } | |
78 | |
79 std::string GetWindowTitle(CGWindowID id) { | 28 std::string GetWindowTitle(CGWindowID id) { |
80 CFArrayRef window_id_array = | 29 CFArrayRef window_id_array = |
81 CFArrayCreate(NULL, reinterpret_cast<const void **>(&id), 1, NULL); | 30 CFArrayCreate(NULL, reinterpret_cast<const void **>(&id), 1, NULL); |
82 CFArrayRef window_array = | 31 CFArrayRef window_array = |
83 CGWindowListCreateDescriptionFromArray(window_id_array); | 32 CGWindowListCreateDescriptionFromArray(window_id_array); |
84 std::string title; | 33 std::string title; |
85 | 34 |
86 if (window_array && CFArrayGetCount(window_array)) { | 35 if (window_array && CFArrayGetCount(window_array)) { |
87 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( | 36 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( |
88 CFArrayGetValueAtIndex(window_array, 0)); | 37 CFArrayGetValueAtIndex(window_array, 0)); |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 continue; | 109 continue; |
161 | 110 |
162 std::string window_title; | 111 std::string window_title; |
163 if (!rtc::ToUtf8(window_title_ref, &window_title) || | 112 if (!rtc::ToUtf8(window_title_ref, &window_title) || |
164 window_title != title) { | 113 window_title != title) { |
165 continue; | 114 continue; |
166 } | 115 } |
167 | 116 |
168 CGWindowID window_id; | 117 CGWindowID window_id; |
169 CFNumberGetValue(window_id_ref, kCFNumberIntType, &window_id); | 118 CFNumberGetValue(window_id_ref, kCFNumberIntType, &window_id); |
170 if (IsWindowFullScreen(desktop_config, window)) { | 119 if (FullScreenChromeWindowDetector::IsWindowFullScreen(desktop_config, |
| 120 window)) { |
171 full_screen_window = window_id; | 121 full_screen_window = window_id; |
172 break; | 122 break; |
173 } | 123 } |
174 } | 124 } |
175 | 125 |
176 CFRelease(window_array); | 126 CFRelease(window_array); |
177 return full_screen_window; | 127 return full_screen_window; |
178 } | 128 } |
179 | 129 |
180 bool IsChromeWindow(CGWindowID id) { | 130 bool IsChromeWindow(CGWindowID id) { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 int64_t time_interval = | 165 int64_t time_interval = |
216 (TickTime::Now() - last_udpate_time_).Milliseconds(); | 166 (TickTime::Now() - last_udpate_time_).Milliseconds(); |
217 LOG(LS_WARNING) << "The full-screen window exists in the list, " | 167 LOG(LS_WARNING) << "The full-screen window exists in the list, " |
218 << "which was updated " << time_interval << "ms ago."; | 168 << "which was updated " << time_interval << "ms ago."; |
219 return kCGNullWindowID; | 169 return kCGNullWindowID; |
220 } | 170 } |
221 | 171 |
222 return full_screen_window_id; | 172 return full_screen_window_id; |
223 } | 173 } |
224 | 174 |
| 175 // Returns true if the window is occupying a full screen. |
| 176 bool FullScreenChromeWindowDetector::IsWindowFullScreen( |
| 177 const MacDesktopConfiguration& desktop_config, |
| 178 CFDictionaryRef window) { |
| 179 bool fullscreen = false; |
| 180 CFDictionaryRef bounds_ref = reinterpret_cast<CFDictionaryRef>( |
| 181 CFDictionaryGetValue(window, kCGWindowBounds)); |
| 182 |
| 183 CGRect bounds; |
| 184 if (bounds_ref && |
| 185 CGRectMakeWithDictionaryRepresentation(bounds_ref, &bounds)) { |
| 186 for (MacDisplayConfigurations::const_iterator it = |
| 187 desktop_config.displays.begin(); |
| 188 it != desktop_config.displays.end(); ++it) { |
| 189 if (it->bounds.equals(DesktopRect::MakeXYWH(bounds.origin.x, |
| 190 bounds.origin.y, |
| 191 bounds.size.width, |
| 192 bounds.size.height))) { |
| 193 fullscreen = true; |
| 194 break; |
| 195 } |
| 196 } |
| 197 } |
| 198 |
| 199 return fullscreen; |
| 200 } |
| 201 |
| 202 // Returns true if the window is minimized. |
| 203 bool FullScreenChromeWindowDetector::IsWindowMinimized(CGWindowID id) { |
| 204 CFArrayRef window_id_array = |
| 205 CFArrayCreate(NULL, reinterpret_cast<const void **>(&id), 1, NULL); |
| 206 CFArrayRef window_array = |
| 207 CGWindowListCreateDescriptionFromArray(window_id_array); |
| 208 bool minimized = false; |
| 209 |
| 210 if (window_array && CFArrayGetCount(window_array)) { |
| 211 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( |
| 212 CFArrayGetValueAtIndex(window_array, 0)); |
| 213 CFBooleanRef on_screen = reinterpret_cast<CFBooleanRef>( |
| 214 CFDictionaryGetValue(window, kCGWindowIsOnscreen)); |
| 215 |
| 216 minimized = !on_screen; |
| 217 } |
| 218 |
| 219 CFRelease(window_id_array); |
| 220 CFRelease(window_array); |
| 221 |
| 222 return minimized; |
| 223 } |
| 224 |
| 225 |
225 void FullScreenChromeWindowDetector::UpdateWindowListIfNeeded( | 226 void FullScreenChromeWindowDetector::UpdateWindowListIfNeeded( |
226 CGWindowID original_window) { | 227 CGWindowID original_window) { |
227 if (IsChromeWindow(original_window) && | 228 if (IsChromeWindow(original_window) && |
228 (TickTime::Now() - last_udpate_time_).Milliseconds() | 229 (TickTime::Now() - last_udpate_time_).Milliseconds() |
229 > kUpdateIntervalMs) { | 230 > kUpdateIntervalMs) { |
230 previous_window_list_.clear(); | 231 previous_window_list_.clear(); |
231 previous_window_list_.swap(current_window_list_); | 232 previous_window_list_.swap(current_window_list_); |
232 | 233 |
233 // No need to update the window list when the window is minimized. | 234 // No need to update the window list when the window is minimized. |
234 if (IsWindowMinimized(original_window)) { | 235 if (IsWindowMinimized(original_window)) { |
235 previous_window_list_.clear(); | 236 previous_window_list_.clear(); |
236 return; | 237 return; |
237 } | 238 } |
238 | 239 |
239 GetWindowList(¤t_window_list_); | 240 GetWindowList(¤t_window_list_); |
240 last_udpate_time_ = TickTime::Now(); | 241 last_udpate_time_ = TickTime::Now(); |
241 } | 242 } |
242 } | 243 } |
243 | 244 |
244 } // namespace webrtc | 245 } // namespace webrtc |
OLD | NEW |