summaryrefslogtreecommitdiffstats
path: root/remoting/host/local_input_monitor_mac.mm
blob: 8480c97a1f450df5d832bbd75e5e6cadf9dfd13f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "remoting/host/local_input_monitor.h"

#import <AppKit/AppKit.h>
#include <set>

#include "base/bind.h"
#include "base/compiler_specific.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/mac/scoped_cftyperef.h"
#include "base/memory/ref_counted.h"
#include "base/synchronization/lock.h"
#include "remoting/host/mouse_move_observer.h"
#include "third_party/skia/include/core/SkPoint.h"
#import "third_party/GTM/AppKit/GTMCarbonEvent.h"

// Esc Key Code is 53.
// http://boredzo.org/blog/wp-content/uploads/2007/05/IMTx-virtual-keycodes.pdf
static const NSUInteger kEscKeyCode = 53;

namespace remoting {

namespace {

class LocalInputMonitorMac : public LocalInputMonitor {
 public:
  LocalInputMonitorMac() : mouse_move_observer_(NULL) {}
  virtual ~LocalInputMonitorMac();
  virtual void Start(MouseMoveObserver* mouse_move_observer,
                     const base::Closure& disconnect_callback) OVERRIDE;
  virtual void Stop() OVERRIDE;

  void OnLocalMouseMoved(const SkIPoint& new_pos);
  void OnDisconnectShortcut();

 private:
  MouseMoveObserver* mouse_move_observer_;
  base::Closure disconnect_callback_;
  DISALLOW_COPY_AND_ASSIGN(LocalInputMonitorMac);
};

typedef std::set<remoting::LocalInputMonitorMac*> LocalInputMonitors;

}  // namespace

}  // namespace remoting

@interface LocalInputMonitorManager : NSObject {
 @private
  GTMCarbonHotKey* hotKey_;
  CFRunLoopSourceRef mouseRunLoopSource_;
  base::mac::ScopedCFTypeRef<CFMachPortRef> mouseMachPort_;
  base::Lock lock_;
  remoting::LocalInputMonitors monitors_;
}

// Called when the hotKey is hit.
- (void)hotKeyHit:(GTMCarbonHotKey*)hotKey;

// Called when the local mouse moves
- (void)localMouseMoved:(const SkIPoint&)mousePos;

// Must be called when the LocalInputMonitorManager is no longer to be used.
// Similar to NSTimer in that more than a simple release is required.
- (void)invalidate;

// Called to add a monitor.
- (void)addMonitor:(remoting::LocalInputMonitorMac*)monitor;

// Called to remove a monitor. Returns true if it was the last
// monitor, in which case the object should be destroyed.
- (bool)removeMonitor:(remoting::LocalInputMonitorMac*)monitor;

@end

static CGEventRef LocalMouseMoved(CGEventTapProxy proxy, CGEventType type,
                                  CGEventRef event, void* context) {
  int64_t pid = CGEventGetIntegerValueField(event, kCGEventSourceUnixProcessID);
  if (pid == 0) {
    CGPoint cgMousePos = CGEventGetLocation(event);
    SkIPoint mousePos = SkIPoint::Make(cgMousePos.x, cgMousePos.y);
    [static_cast<LocalInputMonitorManager*>(context) localMouseMoved:mousePos];
  }
  return NULL;
}

@implementation LocalInputMonitorManager

- (id)init {
  if ((self = [super init])) {
    GTMCarbonEventDispatcherHandler* handler =
        [GTMCarbonEventDispatcherHandler sharedEventDispatcherHandler];
    hotKey_ = [handler registerHotKey:kEscKeyCode
                             modifiers:(NSAlternateKeyMask | NSControlKeyMask)
                                target:self
                                action:@selector(hotKeyHit:)
                              userInfo:nil
                           whenPressed:YES];
    if (!hotKey_) {
      LOG(ERROR) << "registerHotKey failed.";
    }
    mouseMachPort_.reset(CGEventTapCreate(
        kCGSessionEventTap, kCGHeadInsertEventTap, kCGEventTapOptionListenOnly,
        1 << kCGEventMouseMoved, LocalMouseMoved, self));
    if (mouseMachPort_) {
      mouseRunLoopSource_ = CFMachPortCreateRunLoopSource(
          NULL, mouseMachPort_, 0);
      CFRunLoopAddSource(
          CFRunLoopGetMain(), mouseRunLoopSource_, kCFRunLoopCommonModes);
    } else {
      LOG(ERROR) << "CGEventTapCreate failed.";
    }
    if (!hotKey_ && !mouseMachPort_) {
      [self release];
      return nil;
    }
  }
  return self;
}

- (void)hotKeyHit:(GTMCarbonHotKey*)hotKey {
  base::AutoLock lock(lock_);
  for (remoting::LocalInputMonitors::const_iterator i = monitors_.begin();
       i != monitors_.end(); ++i) {
    (*i)->OnDisconnectShortcut();
  }
}

- (void)localMouseMoved:(const SkIPoint&)mousePos {
  base::AutoLock lock(lock_);
  for (remoting::LocalInputMonitors::const_iterator i = monitors_.begin();
       i != monitors_.end(); ++i) {
    (*i)->OnLocalMouseMoved(mousePos);
  }
}

- (void)invalidate {
  if (hotKey_) {
    GTMCarbonEventDispatcherHandler* handler =
        [GTMCarbonEventDispatcherHandler sharedEventDispatcherHandler];
    [handler unregisterHotKey:hotKey_];
    hotKey_ = NULL;
  }
  if (mouseRunLoopSource_) {
    CFMachPortInvalidate(mouseMachPort_);
    CFRunLoopRemoveSource(
        CFRunLoopGetMain(), mouseRunLoopSource_, kCFRunLoopCommonModes);
    CFRelease(mouseRunLoopSource_);
    mouseMachPort_.reset(0);
    mouseRunLoopSource_ = NULL;
  }
}

- (void)addMonitor:(remoting::LocalInputMonitorMac*)monitor {
  base::AutoLock lock(lock_);
  monitors_.insert(monitor);
}

- (bool)removeMonitor:(remoting::LocalInputMonitorMac*)monitor {
  base::AutoLock lock(lock_);
  monitors_.erase(monitor);
  return monitors_.empty();
}

@end

namespace remoting {

namespace {

base::LazyInstance<base::Lock>::Leaky g_monitor_lock =
    LAZY_INSTANCE_INITIALIZER;
LocalInputMonitorManager* g_local_input_monitor_manager = NULL;

LocalInputMonitorMac::~LocalInputMonitorMac() {
  Stop();
}

void LocalInputMonitorMac::Start(MouseMoveObserver* mouse_move_observer,
                                 const base::Closure& disconnect_callback) {
  base::AutoLock lock(g_monitor_lock.Get());
  if (!g_local_input_monitor_manager)
    g_local_input_monitor_manager = [[LocalInputMonitorManager alloc] init];
  CHECK(g_local_input_monitor_manager);
  mouse_move_observer_ = mouse_move_observer;
  disconnect_callback_ = disconnect_callback;
  [g_local_input_monitor_manager addMonitor:this];
}

void LocalInputMonitorMac::Stop() {
  base::AutoLock lock(g_monitor_lock.Get());
  if ([g_local_input_monitor_manager removeMonitor:this]) {
    [g_local_input_monitor_manager invalidate];
    [g_local_input_monitor_manager release];
    g_local_input_monitor_manager = nil;
  }
}

void LocalInputMonitorMac::OnLocalMouseMoved(const SkIPoint& new_pos) {
  mouse_move_observer_->OnLocalMouseMoved(new_pos);
}

void LocalInputMonitorMac::OnDisconnectShortcut() {
  disconnect_callback_.Run();
}

}  // namespace

scoped_ptr<LocalInputMonitor> LocalInputMonitor::Create() {
  return scoped_ptr<LocalInputMonitor>(new LocalInputMonitorMac());
}

}  // namespace remoting