-
Notifications
You must be signed in to change notification settings - Fork 84
/
DDHotKeyCenter.m
296 lines (230 loc) · 10.4 KB
/
DDHotKeyCenter.m
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
DDHotKey -- DDHotKeyCenter.m
Copyright (c) Dave DeLong <http://www.davedelong.com>
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
The software is provided "as is", without warranty of any kind, including all implied warranties of merchantability and fitness. In no event shall the author(s) or copyright holder(s) be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
*/
#import <Carbon/Carbon.h>
#import <objc/runtime.h>
#import "DDHotKeyCenter.h"
#import "DDHotKeyUtilities.h"
#pragma mark Private Global Declarations
OSStatus dd_hotKeyHandler(EventHandlerCallRef nextHandler, EventRef theEvent, void *userData);
#pragma mark DDHotKey
@interface DDHotKey ()
@property (nonatomic, retain) NSValue *hotKeyRef;
@property (nonatomic) UInt32 hotKeyID;
@property (nonatomic, assign, setter = _setTarget:) id target;
@property (nonatomic, setter = _setAction:) SEL action;
@property (nonatomic, strong, setter = _setObject:) id object;
@property (nonatomic, copy, setter = _setTask:) DDHotKeyTask task;
@property (nonatomic, setter = _setKeyCode:) unsigned short keyCode;
@property (nonatomic, setter = _setModifierFlags:) NSUInteger modifierFlags;
@end
@implementation DDHotKey
+ (instancetype)hotKeyWithKeyCode:(unsigned short)keyCode modifierFlags:(NSUInteger)flags task:(DDHotKeyTask)task {
DDHotKey *newHotKey = [[self alloc] init];
[newHotKey _setTask:task];
[newHotKey _setKeyCode:keyCode];
[newHotKey _setModifierFlags:flags];
return newHotKey;
}
- (void) dealloc {
[[DDHotKeyCenter sharedHotKeyCenter] unregisterHotKey:self];
[super dealloc];
}
- (NSUInteger)hash {
return [self keyCode] ^ [self modifierFlags];
}
- (BOOL)isEqual:(id)object {
BOOL equal = NO;
if ([object isKindOfClass:[DDHotKey class]]) {
equal = ([object keyCode] == [self keyCode]);
equal &= ([object modifierFlags] == [self modifierFlags]);
}
return equal;
}
- (NSString *)description {
NSMutableArray *bits = [NSMutableArray array];
if ((_modifierFlags & NSEventModifierFlagControl) > 0) { [bits addObject:@"NSEventModifierFlagControl"]; }
if ((_modifierFlags & NSEventModifierFlagCommand) > 0) { [bits addObject:@"NSEventModifierFlagCommand"]; }
if ((_modifierFlags & NSEventModifierFlagShift) > 0) { [bits addObject:@"NSEventModifierFlagShift"]; }
if ((_modifierFlags & NSEventModifierFlagOption) > 0) { [bits addObject:@"NSEventModifierFlagOption"]; }
NSString *flags = [NSString stringWithFormat:@"(%@)", [bits componentsJoinedByString:@" | "]];
NSString *invokes = @"(block)";
if ([self target] != nil && [self action] != nil) {
invokes = [NSString stringWithFormat:@"[%@ %@]", [self target], NSStringFromSelector([self action])];
}
return [NSString stringWithFormat:@"%@\n\t(key: %hu\n\tflags: %@\n\tinvokes: %@)", [super description], [self keyCode], flags, invokes];
}
- (void)invokeWithEvent:(NSEvent *)event {
if (_target != nil && _action != nil && [_target respondsToSelector:_action]) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
[_target performSelector:_action withObject:event withObject:_object];
#pragma clang diagnostic pop
} else if (_task != nil) {
_task(event);
}
}
@end
#pragma mark DDHotKeyCenter
static DDHotKeyCenter *sharedHotKeyCenter = nil;
@implementation DDHotKeyCenter {
NSMutableSet *_registeredHotKeys;
UInt32 _nextHotKeyID;
}
+ (instancetype)sharedHotKeyCenter {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedHotKeyCenter = [super allocWithZone:nil];
sharedHotKeyCenter = [sharedHotKeyCenter init];
EventTypeSpec eventSpec;
eventSpec.eventClass = kEventClassKeyboard;
eventSpec.eventKind = kEventHotKeyReleased;
InstallApplicationEventHandler(&dd_hotKeyHandler, 1, &eventSpec, NULL, NULL);
});
return sharedHotKeyCenter;
}
+ (id)allocWithZone:(NSZone *)zone {
return sharedHotKeyCenter;
}
- (id)init {
if (self != sharedHotKeyCenter) { return sharedHotKeyCenter; }
self = [super init];
if (self) {
_registeredHotKeys = [[NSMutableSet alloc] init];
_nextHotKeyID = 1;
}
return self;
}
- (NSSet *)hotKeysMatching:(BOOL(^)(DDHotKey *hotkey))matcher {
NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) {
return matcher(evaluatedObject);
}];
return [_registeredHotKeys filteredSetUsingPredicate:predicate];
}
- (BOOL)hasRegisteredHotKeyWithKeyCode:(unsigned short)keyCode modifierFlags:(NSUInteger)flags {
return [self hotKeysMatching:^BOOL(DDHotKey *hotkey) {
return hotkey.keyCode == keyCode && hotkey.modifierFlags == flags;
}].count > 0;
}
- (DDHotKey *)_registerHotKey:(DDHotKey *)hotKey withError:(NSError **)error {
error = error ?: &(NSError * __autoreleasing){ nil };
if ([_registeredHotKeys containsObject:hotKey]) {
return hotKey;
}
EventHotKeyID keyID;
keyID.signature = 'htk1';
keyID.id = _nextHotKeyID;
EventHotKeyRef carbonHotKey;
UInt32 flags = DDCarbonModifierFlagsFromCocoaModifiers([hotKey modifierFlags]);
OSStatus err = RegisterEventHotKey([hotKey keyCode], flags, keyID, GetEventDispatcherTarget(), 0, &carbonHotKey);
//error registering hot key
if (err != 0) {
*error = [NSError errorWithDomain:NSOSStatusErrorDomain code:err userInfo:nil];
return nil;
}
NSValue *refValue = [NSValue valueWithPointer:carbonHotKey];
[hotKey setHotKeyRef:refValue];
[hotKey setHotKeyID:_nextHotKeyID];
_nextHotKeyID++;
[_registeredHotKeys addObject:hotKey];
return hotKey;
}
- (DDHotKey *)registerHotKey:(DDHotKey *)hotKey withError:(NSError **)error {
return [self _registerHotKey:hotKey withError:error];
}
- (void)unregisterHotKey:(DDHotKey *)hotKey {
NSValue *hotKeyRef = [hotKey hotKeyRef];
if (hotKeyRef) {
EventHotKeyRef carbonHotKey = (EventHotKeyRef)[hotKeyRef pointerValue];
UnregisterEventHotKey(carbonHotKey);
[hotKey setHotKeyRef:nil];
}
[_registeredHotKeys removeObject:hotKey];
}
- (DDHotKey *)registerHotKeyWithKeyCode:(unsigned short)keyCode modifierFlags:(NSUInteger)flags task:(DDHotKeyTask)task error:(NSError **)error {
error = error ?: &(NSError * __autoreleasing){ nil };
//we can't add a new hotkey if something already has this combo
if ([self hasRegisteredHotKeyWithKeyCode:keyCode modifierFlags:flags]) { return nil; }
DDHotKey *newHotKey = [[DDHotKey alloc] init];
[newHotKey _setTask:task];
[newHotKey _setKeyCode:keyCode];
[newHotKey _setModifierFlags:flags];
return [self _registerHotKey:newHotKey withError:error];
}
- (DDHotKey *)registerHotKeyWithKeyCode:(unsigned short)keyCode modifierFlags:(NSUInteger)flags target:(id)target action:(SEL)action object:(id)object error:(NSError **)error {
error = error ?: &(NSError * __autoreleasing){ nil };
//we can't add a new hotkey if something already has this combo
if ([self hasRegisteredHotKeyWithKeyCode:keyCode modifierFlags:flags]) { return nil; }
//build the hotkey object:
DDHotKey *newHotKey = [[DDHotKey alloc] init];
[newHotKey _setTarget:target];
[newHotKey _setAction:action];
[newHotKey _setObject:object];
[newHotKey _setKeyCode:keyCode];
[newHotKey _setModifierFlags:flags];
return [self _registerHotKey:newHotKey withError:error];
}
- (void)unregisterHotKeysMatching:(BOOL(^)(DDHotKey *hotkey))matcher {
//explicitly unregister the hotkey, since relying on the unregistration in -dealloc can be problematic
@autoreleasepool {
NSSet *matches = [self hotKeysMatching:matcher];
for (DDHotKey *hotKey in matches) {
[self unregisterHotKey:hotKey];
}
}
}
- (void)unregisterHotKeysWithTarget:(id)target {
[self unregisterHotKeysMatching:^BOOL(DDHotKey *hotkey) {
return hotkey.target == target;
}];
}
- (void)unregisterHotKeysWithTarget:(id)target action:(SEL)action {
[self unregisterHotKeysMatching:^BOOL(DDHotKey *hotkey) {
return hotkey.target == target && sel_isEqual(hotkey.action, action);
}];
}
- (void)unregisterHotKeyWithKeyCode:(unsigned short)keyCode modifierFlags:(NSUInteger)flags {
[self unregisterHotKeysMatching:^BOOL(DDHotKey *hotkey) {
return hotkey.keyCode == keyCode && hotkey.modifierFlags == flags;
}];
}
- (void)unregisterAllHotKeys {
NSSet *keys = [_registeredHotKeys copy];
for (DDHotKey *key in keys) {
[self unregisterHotKey:key];
}
}
- (NSSet *)registeredHotKeys {
return [self hotKeysMatching:^BOOL(DDHotKey *hotkey) {
return hotkey.hotKeyRef != NULL;
}];
}
@end
OSStatus dd_hotKeyHandler(EventHandlerCallRef nextHandler, EventRef theEvent, void *userData) {
@autoreleasepool {
EventHotKeyID hotKeyID;
GetEventParameter(theEvent, kEventParamDirectObject, typeEventHotKeyID, NULL, sizeof(hotKeyID), NULL, &hotKeyID);
UInt32 keyID = hotKeyID.id;
NSSet *matchingHotKeys = [[DDHotKeyCenter sharedHotKeyCenter] hotKeysMatching:^BOOL(DDHotKey *hotkey) {
return hotkey.hotKeyID == keyID;
}];
if ([matchingHotKeys count] > 1) { NSLog(@"ERROR!"); }
DDHotKey *matchingHotKey = [matchingHotKeys anyObject];
NSEvent *event = [NSEvent eventWithEventRef:theEvent];
NSEvent *keyEvent = [NSEvent keyEventWithType:NSEventTypeKeyUp
location:[event locationInWindow]
modifierFlags:[event modifierFlags]
timestamp:[event timestamp]
windowNumber:-1
context:nil
characters:@""
charactersIgnoringModifiers:@""
isARepeat:NO
keyCode:[matchingHotKey keyCode]];
[matchingHotKey invokeWithEvent:keyEvent];
}
return noErr;
}