-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCDInactivityNotifier.m
More file actions
519 lines (420 loc) · 18.1 KB
/
CDInactivityNotifier.m
File metadata and controls
519 lines (420 loc) · 18.1 KB
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
//
// CDInactivityNotifier.m
// CDInactivityNotifier
//
// Copyright (c) 2014 Creatd. Use as you wish.
// creatd.co.uk
#import "CDInactivityNotifier.h"
// Framework
#import <MediaPlayer/MPMoviePlayerController.h>
@interface CDStickyTransparentView : UIView
/////////////////////////////////////////////////////////////////////////
#pragma mark - Public methods
/////////////////////////////////////////////////////////////////////////
/**
Adds transparent view to the top of the key window
*/
- (void)add;
/**
Removes transparent view from key window
*/
- (void)remove;
/////////////////////////////////////////////////////////////////////////
#pragma mark - Public properties
/////////////////////////////////////////////////////////////////////////
/**
Block that gets executed when user interaction with this view begins
Note - Currently, interactionEnded block is not supported
*/
@property (nonatomic, copy) void(^interactionBegan)();
/**
Returns whether this view is currently added to the key window
*/
@property(nonatomic, assign) BOOL isAdded;
@end
@implementation CDStickyTransparentView
const static NSString *kkCDStickyTransparentViewNilKey = @"kkCDStickyTransparentViewNilKey";
/////////////////////////////////////////////////////////////////////////
#pragma mark - Public methods
/////////////////////////////////////////////////////////////////////////
- (void)add {
if (self.isAdded) {
NSLog(@"Warning - Won't add transparent view, it's already added");
return;
}
if (![NSThread isMainThread]) {
[self performSelectorOnMainThread:@selector(add) withObject:nil waitUntilDone:NO];
return;
}
UIWindow *mainWindow = [UIApplication sharedApplication].keyWindow;
if (!mainWindow) {
[self performSelector:@selector(add) withObject:nil afterDelay:.1];
return;
}
[mainWindow insertSubview:self aboveSubview:mainWindow];
self.isAdded = YES;
}
- (void)remove {
if (![NSThread isMainThread]) {
[self performSelectorOnMainThread:@selector(remove) withObject:nil waitUntilDone:NO];
return;
}
if (!self.isAdded) {
NSLog(@"Warning - Removing an already removed transparent view");
}
[self removeFromSuperview];
self.isAdded = NO;
}
/////////////////////////////////////////////////////////////////////////
#pragma mark - View lifecycle
/////////////////////////////////////////////////////////////////////////
- (id)init {
CGRect frame = [UIApplication sharedApplication].keyWindow.bounds;
if (self = [super initWithFrame:frame]) {
/////////////////////////////////////////
// Init properties
/////////////////////////////////////////
self.isAdded = NO;
self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.clipsToBounds = YES;
}
return self;
}
/////////////////////////////////////////////////////////////////////////
#pragma mark - Default methods
/////////////////////////////////////////////////////////////////////////
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
// Handle event
if (event.type == UIEventTypeTouches) {
if (self.interactionBegan) {
self.interactionBegan();
}
}
// Pass it along
UIView *viewNext = [[[[UIApplication sharedApplication] keyWindow] subviews] objectAtIndex:0];
CGPoint pointConverted = [self.layer convertPoint:point toLayer:viewNext.layer];
return [viewNext hitTest:pointConverted withEvent:event];
}
@end
@interface CDInactivityNotifier()<UIGestureRecognizerDelegate> {
// UI
CDStickyTransparentView *_viewSticky;
// Time-related
NSTimeInterval _timestampLastInteraction;
NSTimer *_timerTimeout;
NSTimeInterval _shortestTimeoutDuration; // Shortest duration that is configured
NSMapTable *_listenerSubscriptionTimes; // Mapping listener objects to a dictionary of durations (key: key or special null -> value: array of durations)
NSTimeInterval _lastNotifiedLongestDuration; // Longest subscribed duration that was notified in the last notification iteration
// Flags
BOOL _isInterestedInUserInteracted; // YES if there is at least one listener interested in userInteracted callback method (for performance reasons)
// Race condition prevention
// To coordinate access to _listenerSubscriptionTimes var
dispatch_queue_t _q;
}
@end
@implementation CDInactivityNotifier
/////////////////////////////////////////////////////////////////////////
#pragma mark - Public methods
/////////////////////////////////////////////////////////////////////////
+ (void)enable {
return [[self sharedInstance] enable];
}
- (void)enable {
_q = dispatch_queue_create("CDInactivityNotifier", NULL);
dispatch_async(_q, ^{
[self setup];
[self activateTimeout];
});
return;
}
+ (void)subscribeListener:(id<CDInactivityNotifierListener>)listener forDuration:(NSTimeInterval)duration withKey:(NSString *)key {
if (duration < 1) {
NSLog(@"Error - Cannot add listener for less than 1 second (%f)",duration);
return;
}
else if (![listener conformsToProtocol:@protocol(CDInactivityNotifierListener)]) {
NSLog(@"Error - Listener does not conform to CDInactivityNotifierListener protocol");
return;
}
return [[self sharedInstance] subscribeListener:listener forDuration:duration withKey:key];
}
- (void)subscribeListener:(id<CDInactivityNotifierListener>)listener forDuration:(NSTimeInterval)duration withKey:(NSString *)key {
dispatch_async(_q, ^{
if (!_listenerSubscriptionTimes) {
_listenerSubscriptionTimes = [NSMapTable mapTableWithKeyOptions:NSPointerFunctionsWeakMemory valueOptions:NSPointerFunctionsStrongMemory];
}
if (_shortestTimeoutDuration < 0 || duration < _shortestTimeoutDuration) {
_shortestTimeoutDuration = duration;
[self activateTimeout];
}
NSString *keyAdjusted = key;
if (keyAdjusted.length <= 0) {
keyAdjusted = [NSString stringWithString:(NSString *)kkCDStickyTransparentViewNilKey];
}
NSDictionary *dictTimes = [_listenerSubscriptionTimes objectForKey:listener];
if (dictTimes) {
NSMutableDictionary *newDict = [NSMutableDictionary dictionaryWithDictionary:dictTimes];
NSArray *arrTimesForKey = [dictTimes objectForKey:keyAdjusted];
if (arrTimesForKey) {
NSMutableArray *newArr = [NSMutableArray arrayWithArray:arrTimesForKey];
[newArr addObject:[NSNumber numberWithFloat:duration]];
[newDict setObject:newArr forKey:keyAdjusted];
}
else {
[newDict setObject:@[[NSNumber numberWithFloat:duration]] forKey:keyAdjusted];
}
[_listenerSubscriptionTimes setObject:newDict forKey:listener];
}
else {
NSDictionary *newDict = @{
keyAdjusted: @[[NSNumber numberWithFloat:duration]]
};
[_listenerSubscriptionTimes setObject:newDict forKey:listener];
}
if (!_isInterestedInUserInteracted && [listener respondsToSelector:@selector(userInteracted)]) {
_isInterestedInUserInteracted = YES;
}
});
}
+ (void)unsubscribeListener:(id<CDInactivityNotifierListener>)listener {
return [[self sharedInstance] unsubscribeListener:listener];
}
- (void)unsubscribeListener:(id<CDInactivityNotifierListener>)listener {
dispatch_async(_q, ^{
[_listenerSubscriptionTimes removeObjectForKey:listener];
// Recalculate shortest duration time
NSTimeInterval shortestDuration = -1;
for (id<CDInactivityNotifierListener> otherListener in _listenerSubscriptionTimes) {
NSDictionary *dictTimes = [_listenerSubscriptionTimes objectForKey:otherListener];
for (NSString *key in dictTimes) {
NSArray *arrTimesForKey = [dictTimes objectForKey:key];
for (NSNumber *time in arrTimesForKey) {
if (shortestDuration == -1 || time.floatValue < shortestDuration) {
shortestDuration = time.floatValue;
}
}
}
}
if (shortestDuration != _shortestTimeoutDuration) {
// Configure timer again
[self activateTimeout];
}
// Recalculate isInterestedInUserInteracted
if (_isInterestedInUserInteracted && [listener respondsToSelector:@selector(userInteracted)]) {
// Check if there is another listener interested in this callback
BOOL anotherExists = NO;
for (id<CDInactivityNotifierListener> otherListener in _listenerSubscriptionTimes) {
if ([otherListener respondsToSelector:@selector(userInteracted)]) {
anotherExists = YES;
break;
}
}
if (!anotherExists) {
_isInterestedInUserInteracted = NO;
}
}
});
}
+ (void)unsubscribeListener:(id<CDInactivityNotifierListener>)listener withKey:(NSString *)key {
return [[self sharedInstance] unsubscribeListener:listener withKey:key];
}
- (void)unsubscribeListener:(id<CDInactivityNotifierListener>)listener withKey:(NSString *)key {
dispatch_async(_q, ^{
NSDictionary *dictTimes = [_listenerSubscriptionTimes objectForKey:listener];
NSString *keyAdjusted = key;
if (keyAdjusted.length <= 0) {
keyAdjusted = [NSString stringWithFormat:@"%@",kkCDStickyTransparentViewNilKey];
}
NSArray *arrTimes = [dictTimes objectForKey:keyAdjusted];
if (arrTimes.count > 0) {
NSMutableDictionary *newDict = [NSMutableDictionary dictionaryWithDictionary:dictTimes];
[newDict removeObjectForKey:keyAdjusted];
[_listenerSubscriptionTimes setObject:newDict forKey:listener];
}
// Recalculate shortest duration time
NSTimeInterval shortestDuration = -1;
for (id<CDInactivityNotifierListener> otherListener in _listenerSubscriptionTimes) {
NSDictionary *dictTimes = [_listenerSubscriptionTimes objectForKey:otherListener];
for (NSString *key in dictTimes) {
NSArray *arrTimesForKey = [dictTimes objectForKey:key];
for (NSNumber *time in arrTimesForKey) {
if (shortestDuration == -1 || time.floatValue < shortestDuration) {
shortestDuration = time.floatValue;
}
}
}
}
if (shortestDuration != _shortestTimeoutDuration) {
// Configure timer again
[self activateTimeout];
}
// Recalculate isInterestedInUserInteracted
if (_isInterestedInUserInteracted && [listener respondsToSelector:@selector(userInteracted)]) {
// Check if there is another listener interested in this callback
BOOL anotherExists = NO;
for (id<CDInactivityNotifierListener> otherListener in _listenerSubscriptionTimes) {
if ([otherListener respondsToSelector:@selector(userInteracted)]) {
anotherExists = YES;
break;
}
}
if (!anotherExists) {
_isInterestedInUserInteracted = NO;
}
}
});
}
+ (void)disable {
[[CDInactivityNotifier sharedInstance] disable];
}
- (void)disable {
dispatch_async(_q, ^{
[_timerTimeout invalidate];
_timerTimeout = nil;
[_viewSticky remove];
[[NSNotificationCenter defaultCenter] removeObserver:self];
});
}
+ (void)disableFor:(NSTimeInterval)duration {
[[CDInactivityNotifier sharedInstance] disableFor:duration];
}
- (void)disableFor:(NSTimeInterval)duration {
_timestampLastInteraction = [self.class now] + duration;
}
+ (void)nudge {
[[self sharedInstance] nudge];
}
- (void)nudge {
_timestampLastInteraction = [self.class now];
_lastNotifiedLongestDuration = -1;
if (_isInterestedInUserInteracted) {
for (id<CDInactivityNotifierListener> listener in _listenerSubscriptionTimes) {
if ([listener respondsToSelector:@selector(userInteracted)]) {
[listener userInteracted];
}
}
}
}
/////////////////////////////////////////////////////////////////////////
#pragma mark - Private internals
/////////////////////////////////////////////////////////////////////////
- (void)setup {
/////////////////////////////////////////
// Initialise vars
/////////////////////////////////////////
_timestampLastInteraction = -1;
_shortestTimeoutDuration = -1;
_lastNotifiedLongestDuration = -1;
_isInterestedInUserInteracted = NO;
if (_listenerSubscriptionTimes && _listenerSubscriptionTimes.count > 0) {
// Recalculate shortest duration time
for (id<CDInactivityNotifierListener> listener in _listenerSubscriptionTimes) {
NSDictionary *dictTimes = [_listenerSubscriptionTimes objectForKey:listener];
for (NSString *key in dictTimes) {
NSArray *arrTimesForKey = [dictTimes objectForKey:key];
for (NSNumber *time in arrTimesForKey) {
if (_shortestTimeoutDuration == -1 || time.floatValue < _shortestTimeoutDuration) {
_shortestTimeoutDuration = time.floatValue;
}
}
}
}
// Check if there is a listener interested in this callback
for (id<CDInactivityNotifierListener> listener in _listenerSubscriptionTimes) {
if ([listener respondsToSelector:@selector(userInteracted)]) {
_isInterestedInUserInteracted = YES;
break;
}
}
}
/////////////////////////////////////////
// Listen to Application states
/////////////////////////////////////////
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleGoingInactive)
name:UIApplicationDidEnterBackgroundNotification
object:[UIApplication sharedApplication]];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleGoingActive)
name:UIApplicationWillEnterForegroundNotification
object:[UIApplication sharedApplication]];
}
+ (CDInactivityNotifier *)sharedInstance {
static CDInactivityNotifier *_instance;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_instance = [CDInactivityNotifier new];
});
return _instance;
}
- (void)activateTimeout {
// Add a transparent view to inspect user interaction
if (!_viewSticky) {
_viewSticky = [CDStickyTransparentView new];
}
if (!_viewSticky.isAdded) {
[_viewSticky add];
}
_viewSticky.interactionBegan = ^{
_timestampLastInteraction = [self.class now];
_lastNotifiedLongestDuration = -1;
if (_isInterestedInUserInteracted) {
for (id<CDInactivityNotifierListener> listener in _listenerSubscriptionTimes) {
if ([listener respondsToSelector:@selector(userInteracted)]) {
[listener userInteracted];
}
}
}
};
[_timerTimeout invalidate];
_timestampLastInteraction = [self.class now];
if (_shortestTimeoutDuration < 0) {
return;
}
_timerTimeout = [NSTimer timerWithTimeInterval:_shortestTimeoutDuration/10. target:self selector:@selector(checkTimeout:) userInfo:nil repeats:YES];
[[NSRunLoop mainRunLoop] addTimer:_timerTimeout forMode:NSRunLoopCommonModes];
}
- (void)checkTimeout:(NSTimer *)timer {
dispatch_async(_q, ^{
if (!timer.isValid) {
return;
}
NSTimeInterval now = [self.class now];
NSTimeInterval timePassed = now - _timestampLastInteraction;
NSTimeInterval longestNotifiedThisIteration = -1;
if (timePassed >= _shortestTimeoutDuration) {
for (id<CDInactivityNotifierListener>listener in _listenerSubscriptionTimes) {
NSDictionary *dictTimes = [_listenerSubscriptionTimes objectForKey:listener];
for (NSString *key in dictTimes) {
NSString *keyToCallback = [key isEqualToString:(NSString *)kkCDStickyTransparentViewNilKey] ? nil : key;
NSArray *arrTimesForKey = [dictTimes objectForKey:key];
for (NSNumber *time in arrTimesForKey) {
NSTimeInterval duration = time.floatValue;
if (timePassed >= duration && duration > _lastNotifiedLongestDuration) {
[listener userDidNotInteractFor:timePassed key:keyToCallback];
longestNotifiedThisIteration = MAX(longestNotifiedThisIteration, duration);
}
}
}
}
}
_lastNotifiedLongestDuration = MAX(_lastNotifiedLongestDuration, longestNotifiedThisIteration);
});
}
/////////////////////////////////////////////////////////////////////////
#pragma mark - Application state notifications
/////////////////////////////////////////////////////////////////////////
- (void)handleGoingInactive {
// Do nothing
}
- (void)handleGoingActive {
// Reset
_timestampLastInteraction = [self.class now];
}
/////////////////////////////////////////////////////////////////////////
#pragma mark - Util methods
/////////////////////////////////////////////////////////////////////////
+ (NSTimeInterval)now {
return CACurrentMediaTime();
}
@end