1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "remoting/host/local_input_monitor.h"
7 #import <AppKit/AppKit.h>
10 #include "base/bind.h"
11 #include "base/compiler_specific.h"
12 #include "base/location.h"
13 #include "base/logging.h"
14 #include "base/mac/scoped_cftyperef.h"
15 #include "base/memory/ref_counted.h"
16 #include "base/single_thread_task_runner.h"
17 #include "base/synchronization/lock.h"
18 #include "base/threading/non_thread_safe.h"
19 #include "remoting/host/client_session_control.h"
20 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMCarbonEvent.h"
21 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
23 // Esc Key Code is 53.
24 // http://boredzo.org/blog/wp-content/uploads/2007/05/IMTx-virtual-keycodes.pdf
25 static const NSUInteger kEscKeyCode = 53;
30 class LocalInputMonitorMac : public base::NonThreadSafe,
31 public LocalInputMonitor {
33 // Invoked by LocalInputMonitorManager.
36 virtual ~EventHandler() {}
38 virtual void OnLocalMouseMoved(const webrtc::DesktopVector& position) = 0;
39 virtual void OnDisconnectShortcut() = 0;
43 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
44 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
45 base::WeakPtr<ClientSessionControl> client_session_control);
46 ~LocalInputMonitorMac() override;
49 // The actual implementation resides in LocalInputMonitorMac::Core class.
51 scoped_refptr<Core> core_;
53 DISALLOW_COPY_AND_ASSIGN(LocalInputMonitorMac);
57 } // namespace remoting
59 @interface LocalInputMonitorManager : NSObject {
61 GTMCarbonHotKey* hotKey_;
62 CFRunLoopSourceRef mouseRunLoopSource_;
63 base::ScopedCFTypeRef<CFMachPortRef> mouseMachPort_;
64 remoting::LocalInputMonitorMac::EventHandler* monitor_;
67 - (id)initWithMonitor:(remoting::LocalInputMonitorMac::EventHandler*)monitor;
69 // Called when the hotKey is hit.
70 - (void)hotKeyHit:(GTMCarbonHotKey*)hotKey;
72 // Called when the local mouse moves
73 - (void)localMouseMoved:(const webrtc::DesktopVector&)mousePos;
75 // Must be called when the LocalInputMonitorManager is no longer to be used.
76 // Similar to NSTimer in that more than a simple release is required.
81 static CGEventRef LocalMouseMoved(CGEventTapProxy proxy, CGEventType type,
82 CGEventRef event, void* context) {
83 int64_t pid = CGEventGetIntegerValueField(event, kCGEventSourceUnixProcessID);
85 CGPoint cgMousePos = CGEventGetLocation(event);
86 webrtc::DesktopVector mousePos(cgMousePos.x, cgMousePos.y);
87 [static_cast<LocalInputMonitorManager*>(context) localMouseMoved:mousePos];
92 @implementation LocalInputMonitorManager
94 - (id)initWithMonitor:(remoting::LocalInputMonitorMac::EventHandler*)monitor {
95 if ((self = [super init])) {
98 GTMCarbonEventDispatcherHandler* handler =
99 [GTMCarbonEventDispatcherHandler sharedEventDispatcherHandler];
100 hotKey_ = [handler registerHotKey:kEscKeyCode
101 modifiers:(NSAlternateKeyMask | NSControlKeyMask)
103 action:@selector(hotKeyHit:)
107 LOG(ERROR) << "registerHotKey failed.";
109 mouseMachPort_.reset(CGEventTapCreate(
110 kCGSessionEventTap, kCGHeadInsertEventTap, kCGEventTapOptionListenOnly,
111 1 << kCGEventMouseMoved, LocalMouseMoved, self));
112 if (mouseMachPort_) {
113 mouseRunLoopSource_ = CFMachPortCreateRunLoopSource(
114 nullptr, mouseMachPort_, 0);
116 CFRunLoopGetMain(), mouseRunLoopSource_, kCFRunLoopCommonModes);
118 LOG(ERROR) << "CGEventTapCreate failed.";
120 if (!hotKey_ && !mouseMachPort_) {
128 - (void)hotKeyHit:(GTMCarbonHotKey*)hotKey {
129 monitor_->OnDisconnectShortcut();
132 - (void)localMouseMoved:(const webrtc::DesktopVector&)mousePos {
133 monitor_->OnLocalMouseMoved(mousePos);
138 GTMCarbonEventDispatcherHandler* handler =
139 [GTMCarbonEventDispatcherHandler sharedEventDispatcherHandler];
140 [handler unregisterHotKey:hotKey_];
143 if (mouseRunLoopSource_) {
144 CFMachPortInvalidate(mouseMachPort_);
145 CFRunLoopRemoveSource(
146 CFRunLoopGetMain(), mouseRunLoopSource_, kCFRunLoopCommonModes);
147 CFRelease(mouseRunLoopSource_);
148 mouseMachPort_.reset(0);
149 mouseRunLoopSource_ = nullptr;
158 class LocalInputMonitorMac::Core
159 : public base::RefCountedThreadSafe<Core>,
160 public EventHandler {
162 Core(scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
163 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
164 base::WeakPtr<ClientSessionControl> client_session_control);
170 friend class base::RefCountedThreadSafe<Core>;
173 void StartOnUiThread();
174 void StopOnUiThread();
176 // EventHandler interface.
177 void OnLocalMouseMoved(const webrtc::DesktopVector& position) override;
178 void OnDisconnectShortcut() override;
180 // Task runner on which public methods of this class must be called.
181 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_;
183 // Task runner on which |window_| is created.
184 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
186 LocalInputMonitorManager* manager_;
188 // Invoked in the |caller_task_runner_| thread to report local mouse events
189 // and session disconnect requests.
190 base::WeakPtr<ClientSessionControl> client_session_control_;
192 webrtc::DesktopVector mouse_position_;
194 DISALLOW_COPY_AND_ASSIGN(Core);
197 LocalInputMonitorMac::LocalInputMonitorMac(
198 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
199 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
200 base::WeakPtr<ClientSessionControl> client_session_control)
201 : core_(new Core(caller_task_runner,
203 client_session_control)) {
207 LocalInputMonitorMac::~LocalInputMonitorMac() {
211 LocalInputMonitorMac::Core::Core(
212 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
213 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
214 base::WeakPtr<ClientSessionControl> client_session_control)
215 : caller_task_runner_(caller_task_runner),
216 ui_task_runner_(ui_task_runner),
218 client_session_control_(client_session_control) {
219 DCHECK(client_session_control_);
222 void LocalInputMonitorMac::Core::Start() {
223 DCHECK(caller_task_runner_->BelongsToCurrentThread());
225 ui_task_runner_->PostTask(FROM_HERE,
226 base::Bind(&Core::StartOnUiThread, this));
229 void LocalInputMonitorMac::Core::Stop() {
230 DCHECK(caller_task_runner_->BelongsToCurrentThread());
232 ui_task_runner_->PostTask(FROM_HERE, base::Bind(&Core::StopOnUiThread, this));
235 LocalInputMonitorMac::Core::~Core() {
236 DCHECK(manager_ == nil);
239 void LocalInputMonitorMac::Core::StartOnUiThread() {
240 DCHECK(ui_task_runner_->BelongsToCurrentThread());
242 manager_ = [[LocalInputMonitorManager alloc] initWithMonitor:this];
245 void LocalInputMonitorMac::Core::StopOnUiThread() {
246 DCHECK(ui_task_runner_->BelongsToCurrentThread());
248 [manager_ invalidate];
253 void LocalInputMonitorMac::Core::OnLocalMouseMoved(
254 const webrtc::DesktopVector& position) {
255 // In some cases OS may emit bogus mouse-move events even when cursor is not
256 // actually moving. To handle this case properly verify that mouse position
257 // has changed. See crbug.com/360912 .
258 if (position.equals(mouse_position_)) {
262 mouse_position_ = position;
264 caller_task_runner_->PostTask(
265 FROM_HERE, base::Bind(&ClientSessionControl::OnLocalMouseMoved,
266 client_session_control_,
270 void LocalInputMonitorMac::Core::OnDisconnectShortcut() {
271 caller_task_runner_->PostTask(
272 FROM_HERE, base::Bind(&ClientSessionControl::DisconnectSession,
273 client_session_control_));
278 scoped_ptr<LocalInputMonitor> LocalInputMonitor::Create(
279 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
280 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
281 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
282 base::WeakPtr<ClientSessionControl> client_session_control) {
283 return make_scoped_ptr(new LocalInputMonitorMac(
284 caller_task_runner, ui_task_runner, client_session_control));
287 } // namespace remoting