aboutsummaryrefslogtreecommitdiffhomepage
path: root/osdep/ar/HIDRemote.m
blob: 8e6c913d465498cda1b5735444fed908f0d703fe (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
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
//
//  HIDRemote.m
//  HIDRemote V1.2 (27th May 2011)
//
//  Created by Felix Schwarz on 06.04.07.
//  Copyright 2007-2011 IOSPIRIT GmbH. All rights reserved.
//
//  The latest version of this class is available at
//     http://www.iospirit.com/developers/hidremote/
//
//  ** LICENSE *************************************************************************
//
//  Copyright (c) 2007-2011 IOSPIRIT GmbH (http://www.iospirit.com/)
//  All rights reserved.
//
//  Redistribution and use in source and binary forms, with or without modification,
//  are permitted provided that the following conditions are met:
//
//  * Redistributions of source code must retain the above copyright notice, this list
//    of conditions and the following disclaimer.
//
//  * Redistributions in binary form must reproduce the above copyright notice, this
//    list of conditions and the following disclaimer in the documentation and/or other
//    materials provided with the distribution.
//
//  * Neither the name of IOSPIRIT GmbH nor the names of its contributors may be used to
//    endorse or promote products derived from this software without specific prior
//    written permission.
//
//  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
//  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
//  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
//  SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
//  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
//  TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
//  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
//  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
//  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
//  DAMAGE.
//
//  ************************************************************************************

//  ************************************************************************************
//  ********************************** DOCUMENTATION ***********************************
//  ************************************************************************************
//
//  - a reference is available at http://www.iospirit.com/developers/hidremote/reference/
//  - for a guide, please see http://www.iospirit.com/developers/hidremote/guide/
//
//  ************************************************************************************

#import "HIDRemote.h"

// Callback Prototypes
static void HIDEventCallback(   void * target,
                                IOReturn result,
                                void * refcon,
                                void * sender);

static void ServiceMatchingCallback(    void *refCon,
                                        io_iterator_t iterator);

static void ServiceNotificationCallback(void *          refCon,
                                        io_service_t    service,
                                        natural_t       messageType,
                                        void *          messageArgument);

static void SecureInputNotificationCallback(    void *          refCon,
                                                io_service_t    service,
                                                natural_t       messageType,
                                                void *          messageArgument);

// Shared HIDRemote instance
static HIDRemote *sHIDRemote = nil;

@implementation HIDRemote

#pragma mark -- Init, dealloc & shared instance --

+ (HIDRemote *)sharedHIDRemote
{
        if (sHIDRemote==nil)
        {
                sHIDRemote = [[HIDRemote alloc] init];
        }

        return (sHIDRemote);
}

- (id)init
{
        if ((self = [super init]) != nil)
        {
                #ifdef HIDREMOTE_THREADSAFETY_HARDENED_NOTIFICATION_HANDLING
                _runOnThread = [[NSThread currentThread] retain];
                #endif

                // Detect application becoming active/inactive
                [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_appStatusChanged:)    name:NSApplicationDidBecomeActiveNotification  object:NSApp];
                [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_appStatusChanged:)    name:NSApplicationWillResignActiveNotification object:NSApp];
                [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_appStatusChanged:)    name:NSApplicationWillTerminateNotification    object:NSApp];

                // Handle distributed notifications
                _pidString = [[NSString alloc] initWithFormat:@"%d", getpid()];

                [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(_handleNotifications:) name:kHIDRemoteDNHIDRemotePing      object:nil];
                [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(_handleNotifications:) name:kHIDRemoteDNHIDRemoteRetry     object:kHIDRemoteDNHIDRemoteRetryGlobalObject];
                [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(_handleNotifications:) name:kHIDRemoteDNHIDRemoteRetry     object:_pidString];

                // Enabled by default: simulate hold events for plus/minus
                _simulateHoldEvents = YES;

                // Enabled by default: work around for a locking issue introduced with Security Update 2008-004 / 10.4.9 and beyond (credit for finding this workaround goes to Martin Kahr)
                _secureEventInputWorkAround = YES;
                _secureInputNotification = 0;

                // Initialize instance variables
                _lastSeenRemoteID = -1;
                _lastSeenModel = kHIDRemoteModelUndetermined;
                _unusedButtonCodes = [[NSMutableArray alloc] init];
                _exclusiveLockLending = NO;
                _sendExclusiveResourceReuseNotification = YES;
                _applicationIsTerminating = NO;

                // Send status notifications
                _sendStatusNotifications = YES;
        }

        return (self);
}

- (void)dealloc
{
        [[NSNotificationCenter defaultCenter] removeObserver:self name:NSApplicationWillTerminateNotification object:NSApp];
        [[NSNotificationCenter defaultCenter] removeObserver:self name:NSApplicationWillResignActiveNotification object:NSApp];
        [[NSNotificationCenter defaultCenter] removeObserver:self name:NSApplicationDidBecomeActiveNotification object:NSApp];

        [[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:kHIDRemoteDNHIDRemotePing  object:nil];
        [[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:kHIDRemoteDNHIDRemoteRetry object:kHIDRemoteDNHIDRemoteRetryGlobalObject];
        [[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:kHIDRemoteDNHIDRemoteRetry object:_pidString];
        [[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:nil object:nil]; /* As demanded by the documentation for -[NSDistributedNotificationCenter removeObserver:name:object:] */

        [self stopRemoteControl];

        [self setExclusiveLockLendingEnabled:NO];

        [self setDelegate:nil];

        if (_unusedButtonCodes != nil)
        {
                [_unusedButtonCodes release];
                _unusedButtonCodes = nil;
        }

        #ifdef HIDREMOTE_THREADSAFETY_HARDENED_NOTIFICATION_HANDLING
        [_runOnThread release];
        _runOnThread = nil;
        #endif

        [_pidString release];
        _pidString = nil;

        [super dealloc];
}

#pragma mark -- PUBLIC: System Information --
+ (BOOL)isCandelairInstalled
{
        mach_port_t     masterPort = 0;
        kern_return_t   kernResult;
        io_service_t    matchingService = 0;
        BOOL isInstalled = NO;

        kernResult = IOMasterPort(MACH_PORT_NULL, &masterPort);
        if ((kernResult!=kIOReturnSuccess) || (masterPort==0)) { return(NO); }

        if ((matchingService = IOServiceGetMatchingService(masterPort, IOServiceMatching("IOSPIRITIRController"))) != 0)
        {
                isInstalled = YES;
                IOObjectRelease((io_object_t) matchingService);
        }

        mach_port_deallocate(mach_task_self(), masterPort);

        return (isInstalled);
}

+ (BOOL)isCandelairInstallationRequiredForRemoteMode:(HIDRemoteMode)remoteMode
{
        return (NO);
}

- (HIDRemoteAluminumRemoteSupportLevel)aluminiumRemoteSystemSupportLevel
{
        HIDRemoteAluminumRemoteSupportLevel supportLevel = kHIDRemoteAluminumRemoteSupportLevelNone;
        NSEnumerator *attribDictsEnum;
        NSDictionary *hidAttribsDict;

        attribDictsEnum = [_serviceAttribMap objectEnumerator];

        while ((hidAttribsDict = [attribDictsEnum nextObject]) != nil)
        {
                NSNumber *deviceSupportLevel;

                if ((deviceSupportLevel = [hidAttribsDict objectForKey:kHIDRemoteAluminumRemoteSupportLevel]) != nil)
                {
                        if ([deviceSupportLevel intValue] > (int)supportLevel)
                        {
                                supportLevel = [deviceSupportLevel intValue];
                        }
                }
        }

        return (supportLevel);
}

#pragma mark -- PUBLIC: Interface / API --
- (BOOL)startRemoteControl:(HIDRemoteMode)hidRemoteMode
{
        if ((_mode == kHIDRemoteModeNone) && (hidRemoteMode != kHIDRemoteModeNone))
        {
                kern_return_t           kernReturn;
                CFMutableDictionaryRef  matchDict=NULL;
                io_service_t rootService;

                do
                {
                        // Get IOKit master port
                        kernReturn = IOMasterPort(bootstrap_port, &_masterPort);
                        if ((kernReturn!=kIOReturnSuccess) || (_masterPort==0)) { break; }

                        // Setup notification port
                        _notifyPort = IONotificationPortCreate(_masterPort);

                        if ((_notifyRLSource = IONotificationPortGetRunLoopSource(_notifyPort)) != NULL)
                        {
                                CFRunLoopAddSource(     CFRunLoopGetCurrent(),
                                                        _notifyRLSource,
                                                        kCFRunLoopCommonModes);
                        }
                        else
                        {
                                break;
                        }

                        // Setup SecureInput notification
                        if ((hidRemoteMode == kHIDRemoteModeExclusive) || (hidRemoteMode == kHIDRemoteModeExclusiveAuto))
                        {
                                if ((rootService = IORegistryEntryFromPath(_masterPort, kIOServicePlane ":/")) != 0)
                                {
                                        kernReturn = IOServiceAddInterestNotification(  _notifyPort,
                                                                                        rootService,
                                                                                        kIOBusyInterest,
                                                                                        SecureInputNotificationCallback,
                                                                                        (void *)self,
                                                                                        &_secureInputNotification);
                                        if (kernReturn != kIOReturnSuccess) { break; }

                                        [self _updateSessionInformation];
                                }
                                else
                                {
                                        break;
                                }
                        }

                        // Setup notification matching dict
                        matchDict = IOServiceMatching(kIOHIDDeviceKey);
                        CFRetain(matchDict);

                        // Actually add notification
                        kernReturn = IOServiceAddMatchingNotification(  _notifyPort,
                                                                        kIOFirstMatchNotification,
                                                                        matchDict,                      // one reference count consumed by this call
                                                                        ServiceMatchingCallback,
                                                                        (void *) self,
                                                                        &_matchingServicesIterator);
                        if (kernReturn != kIOReturnSuccess) { break; }

                        // Setup serviceAttribMap
                        _serviceAttribMap = [[NSMutableDictionary alloc] init];
                        if (_serviceAttribMap==nil) { break; }

                        // Phew .. everything went well!
                        _mode = hidRemoteMode;
                        CFRelease(matchDict);

                        [self _serviceMatching:_matchingServicesIterator];

                        [self _postStatusWithAction:kHIDRemoteDNStatusActionStart];

                        return (YES);

                }while(0);

                // An error occurred. Do necessary clean up.
                if (matchDict!=NULL)
                {
                        CFRelease(matchDict);
                        matchDict = NULL;
                }

                [self stopRemoteControl];
        }

        return (NO);
}

- (void)stopRemoteControl
{
        UInt32 serviceCount = 0;

        _autoRecover = NO;
        _isStopping = YES;

        if (_autoRecoveryTimer!=nil)
        {
                [_autoRecoveryTimer invalidate];
                [_autoRecoveryTimer release];
                _autoRecoveryTimer = nil;
        }

        if (_serviceAttribMap!=nil)
        {
                NSDictionary *cloneDict = [[NSDictionary alloc] initWithDictionary:_serviceAttribMap];

                if (cloneDict!=nil)
                {
                        NSEnumerator *mapKeyEnum = [cloneDict keyEnumerator];
                        NSNumber *serviceValue;

                        while ((serviceValue = [mapKeyEnum nextObject]) != nil)
                        {
                                [self _destructService:(io_object_t)[serviceValue unsignedIntValue]];
                                serviceCount++;
                        };

                        [cloneDict release];
                        cloneDict = nil;
                }

                [_serviceAttribMap release];
                _serviceAttribMap = nil;
        }

        if (_matchingServicesIterator!=0)
        {
                IOObjectRelease((io_object_t) _matchingServicesIterator);
                _matchingServicesIterator = 0;
        }

        if (_secureInputNotification!=0)
        {
                IOObjectRelease((io_object_t) _secureInputNotification);
                _secureInputNotification = 0;
        }

        if (_notifyRLSource!=NULL)
        {
                CFRunLoopSourceInvalidate(_notifyRLSource);
                _notifyRLSource = NULL;
        }

        if (_notifyPort!=NULL)
        {
                IONotificationPortDestroy(_notifyPort);
                _notifyPort = NULL;
        }

        if (_masterPort!=0)
        {
                mach_port_deallocate(mach_task_self(), _masterPort);
                _masterPort = 0;
        }

        if (_returnToPID!=nil)
        {
                [_returnToPID release];
                _returnToPID = nil;
        }

        if (_mode!=kHIDRemoteModeNone)
        {
                // Post status
                [self _postStatusWithAction:kHIDRemoteDNStatusActionStop];

                if (_sendStatusNotifications)
                {
                        // In case we were not ready to lend it earlier, tell other HIDRemote apps that the resources (if any were used) are now again available for use by other applications
                        if (((_mode==kHIDRemoteModeExclusive) || (_mode==kHIDRemoteModeExclusiveAuto)) && (_sendExclusiveResourceReuseNotification==YES) && (_exclusiveLockLending==NO) && (serviceCount>0))
                        {
                                _mode = kHIDRemoteModeNone;

                                if (!_isRestarting)
                                {
                                        [[NSDistributedNotificationCenter defaultCenter] postNotificationName:kHIDRemoteDNHIDRemoteRetry
                                                                                                       object:kHIDRemoteDNHIDRemoteRetryGlobalObject
                                                                                                     userInfo:[NSDictionary dictionaryWithObjectsAndKeys:
                                                                                                                [NSNumber numberWithUnsignedInt:(unsigned int)getpid()], kHIDRemoteDNStatusPIDKey,
                                                                                                                [[NSBundle mainBundle] bundleIdentifier],                (NSString *)kCFBundleIdentifierKey,
                                                                                                               nil]
                                                                                           deliverImmediately:YES];
                                }
                        }
                }
        }

        _mode = kHIDRemoteModeNone;
        _isStopping = NO;
}

- (BOOL)isStarted
{
        return (_mode != kHIDRemoteModeNone);
}

- (HIDRemoteMode)startedInMode
{
        return (_mode);
}

- (unsigned)activeRemoteControlCount
{
        return ([_serviceAttribMap count]);
}

- (SInt32)lastSeenRemoteControlID
{
        return (_lastSeenRemoteID);
}

- (HIDRemoteModel)lastSeenModel
{
        return (_lastSeenModel);
}

- (void)setLastSeenModel:(HIDRemoteModel)aModel
{
        _lastSeenModel = aModel;
}

- (void)setSimulateHoldEvents:(BOOL)newSimulateHoldEvents
{
        _simulateHoldEvents = newSimulateHoldEvents;
}

- (BOOL)simulateHoldEvents
{
        return (_simulateHoldEvents);
}

- (NSArray *)unusedButtonCodes
{
        return (_unusedButtonCodes);
}

- (void)setUnusedButtonCodes:(NSArray *)newArrayWithUnusedButtonCodesAsNSNumbers
{
        [newArrayWithUnusedButtonCodesAsNSNumbers retain];
        [_unusedButtonCodes release];

        _unusedButtonCodes = newArrayWithUnusedButtonCodesAsNSNumbers;

        [self _postStatusWithAction:kHIDRemoteDNStatusActionUpdate];
}

- (void)setDelegate:(NSObject <HIDRemoteDelegate> *)newDelegate
{
        _delegate = newDelegate;
}

- (NSObject <HIDRemoteDelegate> *)delegate
{
        return (_delegate);
}

#pragma mark -- PUBLIC: Expert APIs --
- (void)setEnableSecureEventInputWorkaround:(BOOL)newEnableSecureEventInputWorkaround
{
        _secureEventInputWorkAround = newEnableSecureEventInputWorkaround;
}

- (BOOL)enableSecureEventInputWorkaround
{
        return (_secureEventInputWorkAround);
}

- (void)setExclusiveLockLendingEnabled:(BOOL)newExclusiveLockLendingEnabled
{
        if (newExclusiveLockLendingEnabled != _exclusiveLockLending)
        {
                _exclusiveLockLending = newExclusiveLockLendingEnabled;

                if (_exclusiveLockLending)
                {
                        [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(_handleNotifications:) name:kHIDRemoteDNHIDRemoteStatus object:nil];
                }
                else
                {
                        [[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:kHIDRemoteDNHIDRemoteStatus object:nil];

                        [_waitForReturnByPID release];
                        _waitForReturnByPID = nil;
                }
        }
}

- (BOOL)exclusiveLockLendingEnabled
{
        return (_exclusiveLockLending);
}

- (void)setSendExclusiveResourceReuseNotification:(BOOL)newSendExclusiveResourceReuseNotification
{
        _sendExclusiveResourceReuseNotification = newSendExclusiveResourceReuseNotification;
}

- (BOOL)sendExclusiveResourceReuseNotification
{
        return (_sendExclusiveResourceReuseNotification);
}

- (BOOL)isApplicationTerminating
{
        return (_applicationIsTerminating);
}

- (BOOL)isStopping
{
        return (_isStopping);
}

#pragma mark -- PRIVATE: Application becomes active / inactive handling for kHIDRemoteModeExclusiveAuto --
- (void)_appStatusChanged:(NSNotification *)notification
{
        #ifdef HIDREMOTE_THREADSAFETY_HARDENED_NOTIFICATION_HANDLING
        if ([self respondsToSelector:@selector(performSelector:onThread:withObject:waitUntilDone:)]) // OS X 10.5+ only
        {
                if ([NSThread currentThread] != _runOnThread)
                {
                        if ([[notification name] isEqual:NSApplicationDidBecomeActiveNotification])
                        {
                                if (!_autoRecover)
                                {
                                        return;
                                }
                        }

                        if ([[notification name] isEqual:NSApplicationWillResignActiveNotification])
                        {
                                if (_mode != kHIDRemoteModeExclusiveAuto)
                                {
                                        return;
                                }
                        }

                        [self performSelector:@selector(_appStatusChanged:) onThread:_runOnThread withObject:notification waitUntilDone:[[notification name] isEqual:NSApplicationWillTerminateNotification]];
                        return;
                }
        }
        #endif

        if (notification!=nil)
        {
                if (_autoRecoveryTimer!=nil)
                {
                        [_autoRecoveryTimer invalidate];
                        [_autoRecoveryTimer release];
                        _autoRecoveryTimer = nil;
                }

                if ([[notification name] isEqual:NSApplicationDidBecomeActiveNotification])
                {
                        if (_autoRecover)
                        {
                                // Delay autorecover by 0.1 to avoid race conditions
                                if ((_autoRecoveryTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:0.1] interval:0.1 target:self selector:@selector(_delayedAutoRecovery:) userInfo:nil repeats:NO]) != nil)
                                {
                                        // Using CFRunLoopAddTimer instead of [[NSRunLoop currentRunLoop] addTimer:.. for consistency with run loop modes.
                                        // The kCFRunLoopCommonModes counterpart NSRunLoopCommonModes is only available in 10.5 and later, whereas this code
                                        // is designed to be also compatible with 10.4. CFRunLoopTimerRef is "toll-free-bridged" with NSTimer since 10.0.
                                        CFRunLoopAddTimer(CFRunLoopGetCurrent(), (CFRunLoopTimerRef)_autoRecoveryTimer, kCFRunLoopCommonModes);
                                }
                        }
                }

                if ([[notification name] isEqual:NSApplicationWillResignActiveNotification])
                {
                        if (_mode == kHIDRemoteModeExclusiveAuto)
                        {
                                [self stopRemoteControl];
                                _autoRecover = YES;
                        }
                }

                if ([[notification name] isEqual:NSApplicationWillTerminateNotification])
                {
                        _applicationIsTerminating = YES;

                        if ([self isStarted])
                        {
                                [self stopRemoteControl];
                        }
                }
        }
}

- (void)_delayedAutoRecovery:(NSTimer *)aTimer
{
        [_autoRecoveryTimer invalidate];
        [_autoRecoveryTimer release];
        _autoRecoveryTimer = nil;

        if (_autoRecover)
        {
                [self startRemoteControl:kHIDRemoteModeExclusiveAuto];
                _autoRecover = NO;
        }
}


#pragma mark -- PRIVATE: Distributed notifiations handling --
- (void)_postStatusWithAction:(NSString *)action
{
        if (_sendStatusNotifications)
        {
                [[NSDistributedNotificationCenter defaultCenter] postNotificationName:kHIDRemoteDNHIDRemoteStatus
                                                                               object:((_pidString!=nil) ? _pidString : [NSString stringWithFormat:@"%d",getpid()])
                                                                             userInfo:[NSDictionary dictionaryWithObjectsAndKeys:
                                                                                                [NSNumber numberWithInt:1],                                                     kHIDRemoteDNStatusHIDRemoteVersionKey,
                                                                                                [NSNumber numberWithUnsignedInt:(unsigned int)getpid()],                        kHIDRemoteDNStatusPIDKey,
                                                                                                [NSNumber numberWithInt:(int)_mode],                                            kHIDRemoteDNStatusModeKey,
                                                                                                [NSNumber numberWithUnsignedInt:(unsigned int)[self activeRemoteControlCount]], kHIDRemoteDNStatusRemoteControlCountKey,
                                                                                                ((_unusedButtonCodes!=nil) ? _unusedButtonCodes : [NSArray array]),             kHIDRemoteDNStatusUnusedButtonCodesKey,
                                                                                                action,                                                                         kHIDRemoteDNStatusActionKey,
                                                                                                [[NSBundle mainBundle] bundleIdentifier],                                       (NSString *)kCFBundleIdentifierKey,
                                                                                                _returnToPID,                                                                   kHIDRemoteDNStatusReturnToPIDKey,
                                                                                      nil]
                                                                   deliverImmediately:YES
                ];
        }
}

- (void)_handleNotifications:(NSNotification *)notification
{
        NSString *notificationName;

        #ifdef HIDREMOTE_THREADSAFETY_HARDENED_NOTIFICATION_HANDLING
        if ([self respondsToSelector:@selector(performSelector:onThread:withObject:waitUntilDone:)]) // OS X 10.5+ only
        {
                if ([NSThread currentThread] != _runOnThread)
                {
                        [self performSelector:@selector(_handleNotifications:) onThread:_runOnThread withObject:notification waitUntilDone:NO];
                        return;
                }
        }
        #endif

        if ((notification!=nil) && ((notificationName = [notification name]) != nil))
        {
                if ([notificationName isEqual:kHIDRemoteDNHIDRemotePing])
                {
                        [self _postStatusWithAction:kHIDRemoteDNStatusActionUpdate];
                }

                if ([notificationName isEqual:kHIDRemoteDNHIDRemoteRetry])
                {
                        if ([self isStarted])
                        {
                                BOOL retry = YES;

                                // Ignore our own global retry broadcasts
                                if ([[notification object] isEqual:kHIDRemoteDNHIDRemoteRetryGlobalObject])
                                {
                                        NSNumber *fromPID;

                                        if ((fromPID = [[notification userInfo] objectForKey:kHIDRemoteDNStatusPIDKey]) != nil)
                                        {
                                                if (getpid() == (int)[fromPID unsignedIntValue])
                                                {
                                                        retry = NO;
                                                }
                                        }
                                }

                                if (retry)
                                {
                                        if (([self delegate] != nil) &&
                                            ([[self delegate] respondsToSelector:@selector(hidRemote:shouldRetryExclusiveLockWithInfo:)]))
                                        {
                                                retry = [[self delegate] hidRemote:self shouldRetryExclusiveLockWithInfo:[notification userInfo]];
                                        }
                                }

                                if (retry)
                                {
                                        HIDRemoteMode restartInMode = _mode;

                                        if (restartInMode != kHIDRemoteModeNone)
                                        {
                                                _isRestarting = YES;
                                                [self stopRemoteControl];

                                                [_returnToPID release];
                                                _returnToPID = nil;

                                                [self startRemoteControl:restartInMode];
                                                _isRestarting = NO;

                                                if (restartInMode != kHIDRemoteModeShared)
                                                {
                                                        _returnToPID = [[[notification userInfo] objectForKey:kHIDRemoteDNStatusPIDKey] retain];
                                                }
                                        }
                                }
                                else
                                {
                                        NSNumber *cacheReturnPID = _returnToPID;

                                        _returnToPID = [[[notification userInfo] objectForKey:kHIDRemoteDNStatusPIDKey] retain];
                                        [self _postStatusWithAction:kHIDRemoteDNStatusActionNoNeed];
                                        [_returnToPID release];

                                        _returnToPID = cacheReturnPID;
                                }
                        }
                }

                if (_exclusiveLockLending)
                {
                        if ([notificationName isEqual:kHIDRemoteDNHIDRemoteStatus])
                        {
                                NSString *action;

                                if ((action = [[notification userInfo] objectForKey:kHIDRemoteDNStatusActionKey]) != nil)
                                {
                                        if ((_mode == kHIDRemoteModeNone) && (_waitForReturnByPID!=nil))
                                        {
                                                NSNumber *pidNumber, *returnToPIDNumber;

                                                if ((pidNumber          = [[notification userInfo] objectForKey:kHIDRemoteDNStatusPIDKey]) != nil)
                                                {
                                                        returnToPIDNumber = [[notification userInfo] objectForKey:kHIDRemoteDNStatusReturnToPIDKey];

                                                        if ([action isEqual:kHIDRemoteDNStatusActionStart])
                                                        {
                                                                if ([pidNumber isEqual:_waitForReturnByPID])
                                                                {
                                                                        NSNumber *startMode;

                                                                         if ((startMode = [[notification userInfo] objectForKey:kHIDRemoteDNStatusModeKey]) != nil)
                                                                         {
                                                                                if ([startMode intValue] == kHIDRemoteModeShared)
                                                                                {
                                                                                        returnToPIDNumber = [NSNumber numberWithInt:getpid()];
                                                                                        action = kHIDRemoteDNStatusActionNoNeed;
                                                                                }
                                                                         }
                                                                }
                                                        }

                                                        if (returnToPIDNumber != nil)
                                                        {
                                                                if ([action isEqual:kHIDRemoteDNStatusActionStop] || [action isEqual:kHIDRemoteDNStatusActionNoNeed])
                                                                {
                                                                        if ([pidNumber isEqual:_waitForReturnByPID] && ([returnToPIDNumber intValue] == getpid()))
                                                                        {
                                                                                [_waitForReturnByPID release];
                                                                                _waitForReturnByPID = nil;

                                                                                if (([self delegate] != nil) &&
                                                                                    ([[self delegate] respondsToSelector:@selector(hidRemote:exclusiveLockReleasedByApplicationWithInfo:)]))
                                                                                {
                                                                                        [[self delegate] hidRemote:self exclusiveLockReleasedByApplicationWithInfo:[notification userInfo]];
                                                                                }
                                                                                else
                                                                                {
                                                                                        [self startRemoteControl:kHIDRemoteModeExclusive];
                                                                                }
                                                                        }
                                                                }
                                                        }
                                                }
                                        }

                                        if (_mode==kHIDRemoteModeExclusive)
                                        {
                                                if ([action isEqual:kHIDRemoteDNStatusActionStart])
                                                {
                                                        NSNumber *originPID = [[notification userInfo] objectForKey:kHIDRemoteDNStatusPIDKey];
                                                        BOOL lendLock = YES;

                                                        if ([originPID intValue] != getpid())
                                                        {
                                                                if (([self delegate] != nil) &&
                                                                    ([[self delegate] respondsToSelector:@selector(hidRemote:lendExclusiveLockToApplicationWithInfo:)]))
                                                                {
                                                                        lendLock = [[self delegate] hidRemote:self lendExclusiveLockToApplicationWithInfo:[notification userInfo]];
                                                                }

                                                                if (lendLock)
                                                                {
                                                                        [_waitForReturnByPID release];
                                                                        _waitForReturnByPID = [originPID retain];

                                                                        if (_waitForReturnByPID != nil)
                                                                        {
                                                                                [self stopRemoteControl];

                                                                                [[NSDistributedNotificationCenter defaultCenter] postNotificationName:kHIDRemoteDNHIDRemoteRetry
                                                                                                                                               object:[NSString stringWithFormat:@"%d", [_waitForReturnByPID intValue]]
                                                                                                                                             userInfo:[NSDictionary dictionaryWithObjectsAndKeys:
                                                                                                                                                                [NSNumber numberWithUnsignedInt:(unsigned int)getpid()], kHIDRemoteDNStatusPIDKey,
                                                                                                                                                                [[NSBundle mainBundle] bundleIdentifier],                (NSString *)kCFBundleIdentifierKey,
                                                                                                                                                      nil]
                                                                                                                                   deliverImmediately:YES];
                                                                        }
                                                                }
                                                        }
                                                }
                                        }
                                }
                        }
                }
        }
}

- (void)_setSendStatusNotifications:(BOOL)doSend
{
        _sendStatusNotifications = doSend;
}

- (BOOL)_sendStatusNotifications
{
        return (_sendStatusNotifications);
}

#pragma mark -- PRIVATE: Service setup and destruction --
- (BOOL)_prematchService:(io_object_t)service
{
        BOOL serviceMatches = NO;
        NSString *ioClass;
        NSNumber *candelairHIDRemoteCompatibilityMask;

        if (service != 0)
        {
                // IOClass matching
                if ((ioClass = (NSString *)IORegistryEntryCreateCFProperty((io_registry_entry_t)service,
                                                                           CFSTR(kIOClassKey),
                                                                           kCFAllocatorDefault,
                                                                           0)) != nil)
                {
                        // Match on Apple's AppleIRController and old versions of the Remote Buddy IR Controller
                        if ([ioClass isEqual:@"AppleIRController"] || [ioClass isEqual:@"RBIOKitAIREmu"])
                        {
                                CFTypeRef candelairHIDRemoteCompatibilityDevice;

                                serviceMatches = YES;

                                if ((candelairHIDRemoteCompatibilityDevice = IORegistryEntryCreateCFProperty((io_registry_entry_t)service, CFSTR("CandelairHIDRemoteCompatibilityDevice"), kCFAllocatorDefault, 0)) != NULL)
                                {
                                        if (CFEqual(kCFBooleanTrue, candelairHIDRemoteCompatibilityDevice))
                                        {
                                                serviceMatches = NO;
                                        }

                                        CFRelease (candelairHIDRemoteCompatibilityDevice);
                                }
                        }

                        // Match on the virtual IOSPIRIT IR Controller
                        if ([ioClass isEqual:@"IOSPIRITIRController"])
                        {
                                serviceMatches = YES;
                        }

                        CFRelease((CFTypeRef)ioClass);
                }

                // Match on services that claim compatibility with the HID Remote class (Candelair or third-party) by having a property of CandelairHIDRemoteCompatibilityMask = 1 <Type: Number>
                if ((candelairHIDRemoteCompatibilityMask = (NSNumber *)IORegistryEntryCreateCFProperty((io_registry_entry_t)service, CFSTR("CandelairHIDRemoteCompatibilityMask"), kCFAllocatorDefault, 0)) != nil)
                {
                        if ([candelairHIDRemoteCompatibilityMask isKindOfClass:[NSNumber class]])
                        {
                                if ([candelairHIDRemoteCompatibilityMask unsignedIntValue] & kHIDRemoteCompatibilityFlagsStandardHIDRemoteDevice)
                                {
                                        serviceMatches = YES;
                                }
                                else
                                {
                                        serviceMatches = NO;
                                }
                        }

                        CFRelease((CFTypeRef)candelairHIDRemoteCompatibilityMask);
                }
        }

        if (([self delegate]!=nil) &&
            ([[self delegate] respondsToSelector:@selector(hidRemote:inspectNewHardwareWithService:prematchResult:)]))
        {
                serviceMatches = [((NSObject <HIDRemoteDelegate> *)[self delegate]) hidRemote:self inspectNewHardwareWithService:service prematchResult:serviceMatches];
        }

        return (serviceMatches);
}

- (HIDRemoteButtonCode)buttonCodeForUsage:(unsigned int)usage usagePage:(unsigned int)usagePage
{
        HIDRemoteButtonCode buttonCode = kHIDRemoteButtonCodeNone;

        switch (usagePage)
        {
                case kHIDPage_Consumer:
                        switch (usage)
                        {
                                case kHIDUsage_Csmr_MenuPick:
                                        // Aluminum Remote: Center
                                        buttonCode = (kHIDRemoteButtonCodeCenter|kHIDRemoteButtonCodeAluminumMask);
                                break;

                                case kHIDUsage_Csmr_ModeStep:
                                        // Aluminium Remote: Center Hold
                                        buttonCode = (kHIDRemoteButtonCodeCenterHold|kHIDRemoteButtonCodeAluminumMask);
                                break;

                                case kHIDUsage_Csmr_PlayOrPause:
                                        // Aluminum Remote: Play/Pause
                                        buttonCode = (kHIDRemoteButtonCodePlay|kHIDRemoteButtonCodeAluminumMask);
                                break;

                                case kHIDUsage_Csmr_Rewind:
                                        buttonCode = kHIDRemoteButtonCodeLeftHold;
                                break;

                                case kHIDUsage_Csmr_FastForward:
                                        buttonCode = kHIDRemoteButtonCodeRightHold;
                                break;

                                case kHIDUsage_Csmr_Menu:
                                        buttonCode = kHIDRemoteButtonCodeMenuHold;
                                break;

                                case kHIDUsage_Csmr_VolumeIncrement:
                                        buttonCode = kHIDRemoteButtonCodeUp;
                                break;

                                case kHIDUsage_Csmr_VolumeDecrement:
                                        buttonCode = kHIDRemoteButtonCodeDown;
                                break;
                        }
                break;

                case kHIDPage_GenericDesktop:
                        switch (usage)
                        {
                                case kHIDUsage_GD_SystemAppMenu:
                                        buttonCode = kHIDRemoteButtonCodeMenu;
                                break;

                                case kHIDUsage_GD_SystemMenu:
                                        buttonCode = kHIDRemoteButtonCodeCenter;
                                break;

                                case kHIDUsage_GD_SystemMenuRight:
                                        buttonCode = kHIDRemoteButtonCodeRight;
                                break;

                                case kHIDUsage_GD_SystemMenuLeft:
                                        buttonCode = kHIDRemoteButtonCodeLeft;
                                break;

                                case kHIDUsage_GD_SystemMenuUp:
                                        buttonCode = kHIDRemoteButtonCodeUp;
                                break;

                                case kHIDUsage_GD_SystemMenuDown:
                                        buttonCode = kHIDRemoteButtonCodeDown;
                                break;
                        }
                break;

                case 0x06: /* Reserved */
                        switch (usage)
                        {
                                case 0x22:
                                        buttonCode = kHIDRemoteButtonCodeIDChanged;
                                break;
                        }
                break;

                case 0xFF01: /* Vendor specific */
                        switch (usage)
                        {
                                case 0x23:
                                        buttonCode = kHIDRemoteButtonCodeCenterHold;
                                break;

                                #ifdef _HIDREMOTE_EXTENSIONS
                                        #define _HIDREMOTE_EXTENSIONS_SECTION 2
                                        #include "HIDRemoteAdditions.h"
                                        #undef _HIDREMOTE_EXTENSIONS_SECTION
                                #endif /* _HIDREMOTE_EXTENSIONS */
                        }
                break;
        }

        return (buttonCode);
}

- (BOOL)_setupService:(io_object_t)service
{
        kern_return_t            kernResult;
        IOReturn                 returnCode;
        HRESULT                  hResult;
        SInt32                   score;
        BOOL                     opened = NO, queueStarted = NO;
        IOHIDDeviceInterface122  **hidDeviceInterface   = NULL;
        IOCFPlugInInterface      **cfPluginInterface    = NULL;
        IOHIDQueueInterface      **hidQueueInterface    = NULL;
        io_object_t              serviceNotification    = 0;
        CFRunLoopSourceRef       queueEventSource       = NULL;
        NSMutableDictionary      *hidAttribsDict        = nil;
        CFArrayRef               hidElements            = NULL;
        NSError                  *error                 = nil;
        UInt32                   errorCode              = 0;

        if (![self _prematchService:service])
        {
                return (NO);
        }

        do
        {
                // Create a plugin interface ..
                kernResult = IOCreatePlugInInterfaceForService( service,
                                                                kIOHIDDeviceUserClientTypeID,
                                                                kIOCFPlugInInterfaceID,
                                                                &cfPluginInterface,
                                                                &score);

                if (kernResult != kIOReturnSuccess)
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:kernResult userInfo:nil];
                        errorCode = 1;
                        break;
                }


                // .. use it to get the HID interface ..
                hResult = (*cfPluginInterface)->QueryInterface( cfPluginInterface,
                                                                CFUUIDGetUUIDBytes(kIOHIDDeviceInterfaceID122),
                                                                (LPVOID)&hidDeviceInterface);

                if ((hResult!=S_OK) || (hidDeviceInterface==NULL))
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:hResult userInfo:nil];
                        errorCode = 2;
                        break;
                }


                // .. then open it ..
                switch (_mode)
                {
                        case kHIDRemoteModeShared:
                                hResult = (*hidDeviceInterface)->open(hidDeviceInterface, kIOHIDOptionsTypeNone);
                        break;

                        case kHIDRemoteModeExclusive:
                        case kHIDRemoteModeExclusiveAuto:
                                hResult = (*hidDeviceInterface)->open(hidDeviceInterface, kIOHIDOptionsTypeSeizeDevice);
                        break;

                        default:
                                goto cleanUp; // Ugh! But there are no "double breaks" available in C AFAIK ..
                        break;
                }

                if (hResult!=S_OK)
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:hResult userInfo:nil];
                        errorCode = 3;
                        break;
                }

                opened = YES;

                // .. query the HID elements ..
                returnCode = (*hidDeviceInterface)->copyMatchingElements(hidDeviceInterface,
                                                                         NULL,
                                                                         &hidElements);
                if ((returnCode != kIOReturnSuccess) || (hidElements==NULL))
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:returnCode userInfo:nil];
                        errorCode = 4;

                        break;
                }

                // Setup an event queue for HID events!
                hidQueueInterface = (*hidDeviceInterface)->allocQueue(hidDeviceInterface);
                if (hidQueueInterface == NULL)
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:kIOReturnError userInfo:nil];
                        errorCode = 5;

                        break;
                }

                returnCode = (*hidQueueInterface)->create(hidQueueInterface, 0, 32);
                if (returnCode != kIOReturnSuccess)
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:returnCode userInfo:nil];
                        errorCode = 6;

                        break;
                }


                // Setup of attributes stored for this HID device
                hidAttribsDict = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
                                        [NSValue valueWithPointer:(const void *)cfPluginInterface],     kHIDRemoteCFPluginInterface,
                                        [NSValue valueWithPointer:(const void *)hidDeviceInterface],    kHIDRemoteHIDDeviceInterface,
                                        [NSValue valueWithPointer:(const void *)hidQueueInterface],     kHIDRemoteHIDQueueInterface,
                                 nil];

                {
                        UInt32 i, hidElementCnt = CFArrayGetCount(hidElements);
                        NSMutableDictionary *cookieButtonCodeLUT = [[NSMutableDictionary alloc] init];
                        NSMutableDictionary *cookieCount        = [[NSMutableDictionary alloc] init];

                        if ((cookieButtonCodeLUT==nil) || (cookieCount==nil))
                        {
                                [cookieButtonCodeLUT  release];
                                cookieButtonCodeLUT = nil;

                                [cookieCount    release];
                                cookieCount = nil;

                                error = [NSError errorWithDomain:NSMachErrorDomain code:kIOReturnError userInfo:nil];
                                errorCode = 7;

                                break;
                        }

                        // Analyze the HID elements and find matching elements
                        for (i=0;i<hidElementCnt;i++)
                        {
                                CFDictionaryRef         hidDict;
                                NSNumber                *usage, *usagePage, *cookie;
                                HIDRemoteButtonCode     buttonCode = kHIDRemoteButtonCodeNone;

                                hidDict = CFArrayGetValueAtIndex(hidElements, i);

                                usage     = (NSNumber *) CFDictionaryGetValue(hidDict, CFSTR(kIOHIDElementUsageKey));
                                usagePage = (NSNumber *) CFDictionaryGetValue(hidDict, CFSTR(kIOHIDElementUsagePageKey));
                                cookie    = (NSNumber *) CFDictionaryGetValue(hidDict, CFSTR(kIOHIDElementCookieKey));

                                if ((usage!=nil) && (usagePage!=nil) && (cookie!=nil))
                                {
                                        // Find the button codes for the ID combos
                                        buttonCode = [self buttonCodeForUsage:[usage unsignedIntValue] usagePage:[usagePage unsignedIntValue]];

                                        #ifdef _HIDREMOTE_EXTENSIONS
                                                // Debug logging code
                                                #define _HIDREMOTE_EXTENSIONS_SECTION 3
                                                #include "HIDRemoteAdditions.h"
                                                #undef _HIDREMOTE_EXTENSIONS_SECTION
                                        #endif /* _HIDREMOTE_EXTENSIONS */

                                        // Did record match?
                                        if (buttonCode != kHIDRemoteButtonCodeNone)
                                        {
                                                NSString *pairString        = [[NSString alloc] initWithFormat:@"%u_%u", [usagePage unsignedIntValue], [usage unsignedIntValue]];
                                                NSNumber *buttonCodeNumber  = [[NSNumber alloc] initWithUnsignedInt:(unsigned int)buttonCode];

                                                #ifdef _HIDREMOTE_EXTENSIONS
                                                        // Debug logging code
                                                        #define _HIDREMOTE_EXTENSIONS_SECTION 4
                                                        #include "HIDRemoteAdditions.h"
                                                        #undef _HIDREMOTE_EXTENSIONS_SECTION
                                                #endif /* _HIDREMOTE_EXTENSIONS */

                                                [cookieCount            setObject:buttonCodeNumber forKey:pairString];
                                                [cookieButtonCodeLUT    setObject:buttonCodeNumber forKey:cookie];

                                                (*hidQueueInterface)->addElement(hidQueueInterface,
                                                                                 (IOHIDElementCookie) [cookie unsignedIntValue],
                                                                                 0);

                                                #ifdef _HIDREMOTE_EXTENSIONS
                                                        // Get current Apple Remote ID value
                                                        #define _HIDREMOTE_EXTENSIONS_SECTION 7
                                                        #include "HIDRemoteAdditions.h"
                                                        #undef _HIDREMOTE_EXTENSIONS_SECTION
                                                #endif /* _HIDREMOTE_EXTENSIONS */

                                                [buttonCodeNumber release];
                                                [pairString release];
                                        }
                                }
                        }

                        // Compare number of *unique* matches (thus the cookieCount dictionary) with required minimum
                        if ([cookieCount count] < 10)
                        {
                                [cookieButtonCodeLUT  release];
                                cookieButtonCodeLUT = nil;

                                [cookieCount    release];
                                cookieCount = nil;

                                error = [NSError errorWithDomain:NSMachErrorDomain code:kIOReturnError userInfo:nil];
                                errorCode = 8;

                                break;
                        }

                        [hidAttribsDict setObject:cookieButtonCodeLUT forKey:kHIDRemoteCookieButtonCodeLUT];

                        [cookieButtonCodeLUT  release];
                        cookieButtonCodeLUT = nil;

                        [cookieCount    release];
                        cookieCount = nil;
                }

                // Finish setup of IOHIDQueueInterface with CFRunLoop
                returnCode = (*hidQueueInterface)->createAsyncEventSource(hidQueueInterface, &queueEventSource);
                if ((returnCode != kIOReturnSuccess) || (queueEventSource == NULL))
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:returnCode userInfo:nil];
                        errorCode = 9;
                        break;
                }

                returnCode = (*hidQueueInterface)->setEventCallout(hidQueueInterface, HIDEventCallback, (void *)((intptr_t)service), (void *)self);
                if (returnCode != kIOReturnSuccess)
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:returnCode userInfo:nil];
                        errorCode = 10;
                        break;
                }

                CFRunLoopAddSource(     CFRunLoopGetCurrent(),
                                        queueEventSource,
                                        kCFRunLoopCommonModes);
                [hidAttribsDict setObject:[NSValue valueWithPointer:(const void *)queueEventSource] forKey:kHIDRemoteCFRunLoopSource];

                returnCode = (*hidQueueInterface)->start(hidQueueInterface);
                if (returnCode != kIOReturnSuccess)
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:returnCode userInfo:nil];
                        errorCode = 11;
                        break;
                }

                queueStarted = YES;

                // Setup device notifications
                returnCode = IOServiceAddInterestNotification(  _notifyPort,
                                                                service,
                                                                kIOGeneralInterest,
                                                                ServiceNotificationCallback,
                                                                self,
                                                                &serviceNotification);
                if ((returnCode != kIOReturnSuccess) || (serviceNotification==0))
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:returnCode userInfo:nil];
                        errorCode = 12;
                        break;
                }

                [hidAttribsDict setObject:[NSNumber numberWithUnsignedInt:(unsigned int)serviceNotification] forKey:kHIDRemoteServiceNotification];

                // Retain service
                if (IOObjectRetain(service) != kIOReturnSuccess)
                {
                        error = [NSError errorWithDomain:NSMachErrorDomain code:kIOReturnError userInfo:nil];
                        errorCode = 13;
                        break;
                }

                [hidAttribsDict setObject:[NSNumber numberWithUnsignedInt:(unsigned int)service] forKey:kHIDRemoteService];

                // Get some (somewhat optional) infos on the device
                {
                        CFStringRef product, manufacturer, transport;

                        if ((product = IORegistryEntryCreateCFProperty( (io_registry_entry_t)service,
                                                                        (CFStringRef) @"Product",
                                                                        kCFAllocatorDefault,
                                                                        0)) != NULL)
                        {
                                if (CFGetTypeID(product) == CFStringGetTypeID())
                                {
                                        [hidAttribsDict setObject:(NSString *)product forKey:kHIDRemoteProduct];
                                }

                                CFRelease(product);
                        }

                        if ((manufacturer = IORegistryEntryCreateCFProperty(    (io_registry_entry_t)service,
                                                                                (CFStringRef) @"Manufacturer",
                                                                                kCFAllocatorDefault,
                                                                                0)) != NULL)
                        {
                                if (CFGetTypeID(manufacturer) == CFStringGetTypeID())
                                {
                                        [hidAttribsDict setObject:(NSString *)manufacturer forKey:kHIDRemoteManufacturer];
                                }

                                CFRelease(manufacturer);
                        }

                        if ((transport = IORegistryEntryCreateCFProperty(       (io_registry_entry_t)service,
                                                                                (CFStringRef) @"Transport",
                                                                                kCFAllocatorDefault,
                                                                                0)) != NULL)
                        {
                                if (CFGetTypeID(transport) == CFStringGetTypeID())
                                {
                                        [hidAttribsDict setObject:(NSString *)transport forKey:kHIDRemoteTransport];
                                }

                                CFRelease(transport);
                        }
                }

                // Determine Aluminum Remote support
                {
                        CFNumberRef aluSupport;
                        HIDRemoteAluminumRemoteSupportLevel supportLevel = kHIDRemoteAluminumRemoteSupportLevelNone;

                        if ((_mode == kHIDRemoteModeExclusive) || (_mode == kHIDRemoteModeExclusiveAuto))
                        {
                                // Determine if this driver offers on-demand support for the Aluminum Remote (only relevant under OS versions < 10.6.2)
                                if ((aluSupport = IORegistryEntryCreateCFProperty((io_registry_entry_t)service,
                                                                                  (CFStringRef) @"AluminumRemoteSupportLevelOnDemand",
                                                                                  kCFAllocatorDefault,
                                                                                  0)) != nil)
                                {
                                        // There is => request the driver to enable it for us
                                        if (IORegistryEntrySetCFProperty((io_registry_entry_t)service,
                                                                         CFSTR("EnableAluminumRemoteSupportForMe"),
                                                                         [NSDictionary dictionaryWithObjectsAndKeys:
                                                                                [NSNumber numberWithLongLong:(long long)getpid()],      @"pid",
                                                                                [NSNumber numberWithLongLong:(long long)getuid()],      @"uid",
                                                                         nil]) == kIOReturnSuccess)
                                        {
                                                if (CFGetTypeID(aluSupport) == CFNumberGetTypeID())
                                                {
                                                        supportLevel = (HIDRemoteAluminumRemoteSupportLevel) [(NSNumber *)aluSupport intValue];
                                                }

                                                [hidAttribsDict setObject:[NSNumber numberWithBool:YES] forKey:kHIDRemoteAluminumRemoteSupportOnDemand];
                                        }

                                        CFRelease(aluSupport);
                                }
                        }

                        if (supportLevel == kHIDRemoteAluminumRemoteSupportLevelNone)
                        {
                                if ((aluSupport = IORegistryEntryCreateCFProperty((io_registry_entry_t)service,
                                                                                  (CFStringRef) @"AluminumRemoteSupportLevel",
                                                                                  kCFAllocatorDefault,
                                                                                  0)) != nil)
                                {
                                        if (CFGetTypeID(aluSupport) == CFNumberGetTypeID())
                                        {
                                                supportLevel = (HIDRemoteAluminumRemoteSupportLevel) [(NSNumber *)aluSupport intValue];
                                        }

                                        CFRelease(aluSupport);
                                }
                                else
                                {
                                        CFStringRef ioKitClassName;

                                        if ((ioKitClassName = IORegistryEntryCreateCFProperty(  (io_registry_entry_t)service,
                                                                                                CFSTR(kIOClassKey),
                                                                                                kCFAllocatorDefault,
                                                                                                0)) != nil)
                                        {
                                                if ([(NSString *)ioKitClassName isEqual:@"AppleIRController"])
                                                {
                                                        supportLevel = kHIDRemoteAluminumRemoteSupportLevelNative;
                                                }

                                                CFRelease(ioKitClassName);
                                        }
                                }
                        }

                        [hidAttribsDict setObject:(NSNumber *)[NSNumber numberWithInt:(int)supportLevel] forKey:kHIDRemoteAluminumRemoteSupportLevel];
                }

                // Add it to the serviceAttribMap
                [_serviceAttribMap setObject:hidAttribsDict forKey:[NSNumber numberWithUnsignedInt:(unsigned int)service]];

                // And we're done with setup ..
                if (([self delegate]!=nil) &&
                    ([[self delegate] respondsToSelector:@selector(hidRemote:foundNewHardwareWithAttributes:)]))
                {
                        [((NSObject <HIDRemoteDelegate> *)[self delegate]) hidRemote:self foundNewHardwareWithAttributes:hidAttribsDict];
                }

                [hidAttribsDict release];
                hidAttribsDict = nil;

                return(YES);

        }while(0);

        cleanUp:

        if (([self delegate]!=nil) &&
            ([[self delegate] respondsToSelector:@selector(hidRemote:failedNewHardwareWithError:)]))
        {
                if (error!=nil)
                {
                        error = [NSError errorWithDomain:[error domain]
                                                    code:[error code]
                                                userInfo:[NSDictionary dictionaryWithObject:[NSNumber numberWithInt:errorCode] forKey:@"InternalErrorCode"]
                                ];
                }

                [((NSObject <HIDRemoteDelegate> *)[self delegate]) hidRemote:self failedNewHardwareWithError:error];
        }

        // An error occurred or this device is not of interest .. cleanup ..
        if (serviceNotification!=0)
        {
                IOObjectRelease(serviceNotification);
                serviceNotification = 0;
        }

        if (queueEventSource!=NULL)
        {
                CFRunLoopSourceInvalidate(queueEventSource);
                queueEventSource=NULL;
        }

        if (hidQueueInterface!=NULL)
        {
                if (queueStarted)
                {
                        (*hidQueueInterface)->stop(hidQueueInterface);
                }
                (*hidQueueInterface)->dispose(hidQueueInterface);
                (*hidQueueInterface)->Release(hidQueueInterface);
                hidQueueInterface = NULL;
        }

        if (hidAttribsDict!=nil)
        {
                [hidAttribsDict release];
                hidAttribsDict = nil;
        }

        if (hidElements!=NULL)
        {
                CFRelease(hidElements);
                hidElements = NULL;
        }

        if (hidDeviceInterface!=NULL)
        {
                if (opened)
                {
                        (*hidDeviceInterface)->close(hidDeviceInterface);
                }
                (*hidDeviceInterface)->Release(hidDeviceInterface);
                // opened = NO;
                hidDeviceInterface = NULL;
        }

        if (cfPluginInterface!=NULL)
        {
                IODestroyPlugInInterface(cfPluginInterface);
                cfPluginInterface = NULL;
        }

        return (NO);
}

- (void)_destructService:(io_object_t)service
{
        NSNumber            *serviceValue;
        NSMutableDictionary *serviceDict = NULL;

        if ((serviceValue = [NSNumber numberWithUnsignedInt:(unsigned int)service]) == nil)
        {
                return;
        }

        serviceDict  = [_serviceAttribMap objectForKey:serviceValue];

        if (serviceDict!=nil)
        {
                IOHIDDeviceInterface122  **hidDeviceInterface   = NULL;
                IOCFPlugInInterface      **cfPluginInterface    = NULL;
                IOHIDQueueInterface      **hidQueueInterface    = NULL;
                io_object_t              serviceNotification    = 0;
                CFRunLoopSourceRef       queueEventSource       = NULL;
                io_object_t              theService             = 0;
                NSMutableDictionary      *cookieButtonMap       = nil;
                NSTimer                  *simulateHoldTimer     = nil;

                serviceNotification = (io_object_t)                     ([serviceDict objectForKey:kHIDRemoteServiceNotification]       ? [[serviceDict objectForKey:kHIDRemoteServiceNotification] unsignedIntValue] :   0);
                theService          = (io_object_t)                     ([serviceDict objectForKey:kHIDRemoteService]                   ? [[serviceDict objectForKey:kHIDRemoteService]             unsignedIntValue] :   0);
                queueEventSource    = (CFRunLoopSourceRef)              ([serviceDict objectForKey:kHIDRemoteCFRunLoopSource]           ? [[serviceDict objectForKey:kHIDRemoteCFRunLoopSource]     pointerValue]     : NULL);
                hidQueueInterface   = (IOHIDQueueInterface **)          ([serviceDict objectForKey:kHIDRemoteHIDQueueInterface]         ? [[serviceDict objectForKey:kHIDRemoteHIDQueueInterface]   pointerValue]     : NULL);
                hidDeviceInterface  = (IOHIDDeviceInterface122 **)      ([serviceDict objectForKey:kHIDRemoteHIDDeviceInterface]        ? [[serviceDict objectForKey:kHIDRemoteHIDDeviceInterface]  pointerValue]     : NULL);
                cfPluginInterface   = (IOCFPlugInInterface **)          ([serviceDict objectForKey:kHIDRemoteCFPluginInterface]         ? [[serviceDict objectForKey:kHIDRemoteCFPluginInterface]   pointerValue]     : NULL);
                cookieButtonMap     = (NSMutableDictionary *)            [serviceDict objectForKey:kHIDRemoteCookieButtonCodeLUT];
                simulateHoldTimer   = (NSTimer *)                        [serviceDict objectForKey:kHIDRemoteSimulateHoldEventsTimer];

                [serviceDict  retain];
                [_serviceAttribMap removeObjectForKey:serviceValue];

                if (([serviceDict objectForKey:kHIDRemoteAluminumRemoteSupportOnDemand]!=nil) && [[serviceDict objectForKey:kHIDRemoteAluminumRemoteSupportOnDemand] boolValue] && (theService != 0))
                {
                        // We previously requested the driver to enable Aluminum Remote support for us. Tell it to turn it off again - now that we no longer need it
                        IORegistryEntrySetCFProperty(   (io_registry_entry_t)theService,
                                                        CFSTR("DisableAluminumRemoteSupportForMe"),
                                                        [NSDictionary dictionaryWithObjectsAndKeys:
                                                                [NSNumber numberWithLongLong:(long long)getpid()],      @"pid",
                                                                [NSNumber numberWithLongLong:(long long)getuid()],      @"uid",
                                                        nil]);
                }

                if (([self delegate]!=nil) &&
                    ([[self delegate] respondsToSelector:@selector(hidRemote:releasedHardwareWithAttributes:)]))
                {
                        [((NSObject <HIDRemoteDelegate> *)[self delegate]) hidRemote:self releasedHardwareWithAttributes:serviceDict];
                }

                if (simulateHoldTimer!=nil)
                {
                        [simulateHoldTimer invalidate];
                }

                if (serviceNotification!=0)
                {
                        IOObjectRelease(serviceNotification);
                }

                if (queueEventSource!=NULL)
                {
                        CFRunLoopRemoveSource(  CFRunLoopGetCurrent(),
                                                queueEventSource,
                                                kCFRunLoopCommonModes);
                }

                if ((hidQueueInterface!=NULL) && (cookieButtonMap!=nil))
                {
                        NSEnumerator *cookieEnum = [cookieButtonMap keyEnumerator];
                        NSNumber *cookie;

                        while ((cookie = [cookieEnum nextObject]) != nil)
                        {
                                if ((*hidQueueInterface)->hasElement(hidQueueInterface, (IOHIDElementCookie) [cookie unsignedIntValue]))
                                {
                                        (*hidQueueInterface)->removeElement(hidQueueInterface,
                                                                            (IOHIDElementCookie) [cookie unsignedIntValue]);
                                }
                        };
                }

                if (hidQueueInterface!=NULL)
                {
                        (*hidQueueInterface)->stop(hidQueueInterface);
                        (*hidQueueInterface)->dispose(hidQueueInterface);
                        (*hidQueueInterface)->Release(hidQueueInterface);
                }

                if (hidDeviceInterface!=NULL)
                {
                        (*hidDeviceInterface)->close(hidDeviceInterface);
                        (*hidDeviceInterface)->Release(hidDeviceInterface);
                }

                if (cfPluginInterface!=NULL)
                {
                        IODestroyPlugInInterface(cfPluginInterface);
                }

                if (theService!=0)
                {
                        IOObjectRelease(theService);
                }

                [serviceDict release];
        }
}


#pragma mark -- PRIVATE: HID Event handling --
- (void)_simulateHoldEvent:(NSTimer *)aTimer
{
        NSMutableDictionary *hidAttribsDict;
        NSTimer  *shTimer;
        NSNumber *shButtonCode;

        if ((hidAttribsDict = (NSMutableDictionary *)[aTimer userInfo]) != nil)
        {
                if (((shTimer      = [hidAttribsDict objectForKey:kHIDRemoteSimulateHoldEventsTimer]) != nil) &&
                    ((shButtonCode = [hidAttribsDict objectForKey:kHIDRemoteSimulateHoldEventsOriginButtonCode]) != nil))
                {
                        [shTimer invalidate];
                        [hidAttribsDict removeObjectForKey:kHIDRemoteSimulateHoldEventsTimer];

                        [self _sendButtonCode:(((HIDRemoteButtonCode)[shButtonCode unsignedIntValue])|kHIDRemoteButtonCodeHoldMask) isPressed:YES hidAttribsDict:hidAttribsDict];
                }
        }
}

- (void)_handleButtonCode:(HIDRemoteButtonCode)buttonCode isPressed:(BOOL)isPressed hidAttribsDict:(NSMutableDictionary *)hidAttribsDict
{
        switch (buttonCode)
        {
                case kHIDRemoteButtonCodeIDChanged:
                        // Do nothing, this is handled separately
                break;

                case kHIDRemoteButtonCodeUp:
                case kHIDRemoteButtonCodeDown:
                        if (_simulateHoldEvents)
                        {
                                NSTimer  *shTimer = nil;
                                NSNumber *shButtonCode = nil;

                                [[hidAttribsDict objectForKey:kHIDRemoteSimulateHoldEventsTimer] invalidate];

                                if (isPressed)
                                {
                                        [hidAttribsDict setObject:[NSNumber numberWithUnsignedInt:buttonCode] forKey:kHIDRemoteSimulateHoldEventsOriginButtonCode];

                                        if ((shTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:0.7] interval:0.1 target:self selector:@selector(_simulateHoldEvent:) userInfo:hidAttribsDict repeats:NO]) != nil)
                                        {
                                                [hidAttribsDict setObject:shTimer forKey:kHIDRemoteSimulateHoldEventsTimer];

                                                // Using CFRunLoopAddTimer instead of [[NSRunLoop currentRunLoop] addTimer:.. for consistency with run loop modes.
                                                // The kCFRunLoopCommonModes counterpart NSRunLoopCommonModes is only available in 10.5 and later, whereas this code
                                                // is designed to be also compatible with 10.4. CFRunLoopTimerRef is "toll-free-bridged" with NSTimer since 10.0.
                                                CFRunLoopAddTimer(CFRunLoopGetCurrent(), (CFRunLoopTimerRef)shTimer, kCFRunLoopCommonModes);

                                                [shTimer release];

                                                break;
                                        }
                                }
                                else
                                {
                                        shTimer      = [hidAttribsDict objectForKey:kHIDRemoteSimulateHoldEventsTimer];
                                        shButtonCode = [hidAttribsDict objectForKey:kHIDRemoteSimulateHoldEventsOriginButtonCode];

                                        if ((shTimer!=nil) && (shButtonCode!=nil))
                                        {
                                                [self _sendButtonCode:(HIDRemoteButtonCode)[shButtonCode unsignedIntValue] isPressed:YES hidAttribsDict:hidAttribsDict];
                                                [self _sendButtonCode:(HIDRemoteButtonCode)[shButtonCode unsignedIntValue] isPressed:NO hidAttribsDict:hidAttribsDict];
                                        }
                                        else
                                        {
                                                if (shButtonCode!=nil)
                                                {
                                                        [self _sendButtonCode:(((HIDRemoteButtonCode)[shButtonCode unsignedIntValue])|kHIDRemoteButtonCodeHoldMask) isPressed:NO hidAttribsDict:hidAttribsDict];
                                                }
                                        }
                                }

                                [hidAttribsDict removeObjectForKey:kHIDRemoteSimulateHoldEventsTimer];
                                [hidAttribsDict removeObjectForKey:kHIDRemoteSimulateHoldEventsOriginButtonCode];

                                break;
                        }

                default:
                        [self _sendButtonCode:buttonCode isPressed:isPressed hidAttribsDict:hidAttribsDict];
                break;
        }
}

- (void)_sendButtonCode:(HIDRemoteButtonCode)buttonCode isPressed:(BOOL)isPressed hidAttribsDict:(NSMutableDictionary *)hidAttribsDict
{
        if (([self delegate]!=nil) &&
            ([[self delegate] respondsToSelector:@selector(hidRemote:eventWithButton:isPressed:fromHardwareWithAttributes:)]))
        {
                switch (buttonCode & (~kHIDRemoteButtonCodeAluminumMask))
                {
                        case kHIDRemoteButtonCodePlay:
                        case kHIDRemoteButtonCodeCenter:
                                if (buttonCode & kHIDRemoteButtonCodeAluminumMask)
                                {
                                        _lastSeenModel         = kHIDRemoteModelAluminum;
                                        _lastSeenModelRemoteID = _lastSeenRemoteID;
                                }
                                else
                                {
                                        switch ((HIDRemoteAluminumRemoteSupportLevel)[[hidAttribsDict objectForKey:kHIDRemoteAluminumRemoteSupportLevel] intValue])
                                        {
                                                case kHIDRemoteAluminumRemoteSupportLevelNone:
                                                case kHIDRemoteAluminumRemoteSupportLevelEmulation:
                                                        // Remote type can't be determined by just the Center button press
                                                break;

                                                case kHIDRemoteAluminumRemoteSupportLevelNative:
                                                        // Remote type can be safely determined by just the Center button press
                                                        if (((_lastSeenModel == kHIDRemoteModelAluminum) && (_lastSeenModelRemoteID != _lastSeenRemoteID)) ||
                                                             (_lastSeenModel == kHIDRemoteModelUndetermined))
                                                        {
                                                                _lastSeenModel = kHIDRemoteModelWhitePlastic;
                                                        }
                                                break;
                                        }
                                }
                        break;
                }

                // As soon as we have received a code that's unique to the Aluminum Remote, we can tell kHIDRemoteButtonCodePlayHold and kHIDRemoteButtonCodeCenterHold apart.
                // Prior to that, a long press of the new "Play" button will be submitted as a "kHIDRemoteButtonCodeCenterHold", not a "kHIDRemoteButtonCodePlayHold" code.
                if ((buttonCode == kHIDRemoteButtonCodeCenterHold) && (_lastSeenModel == kHIDRemoteModelAluminum))
                {
                        buttonCode = kHIDRemoteButtonCodePlayHold;
                }

                [((NSObject <HIDRemoteDelegate> *)[self delegate]) hidRemote:self eventWithButton:(buttonCode & (~kHIDRemoteButtonCodeAluminumMask)) isPressed:isPressed fromHardwareWithAttributes:hidAttribsDict];
        }
}

- (void)_hidEventFor:(io_service_t)hidDevice from:(IOHIDQueueInterface **)interface withResult:(IOReturn)result
{
        NSMutableDictionary *hidAttribsDict = [[[_serviceAttribMap objectForKey:[NSNumber numberWithUnsignedInt:(unsigned int)hidDevice]] retain] autorelease];

        if (hidAttribsDict!=nil)
        {
                IOHIDQueueInterface **queueInterface  = NULL;

                queueInterface  = [[hidAttribsDict objectForKey:kHIDRemoteHIDQueueInterface] pointerValue];

                if (interface == queueInterface)
                {
                        NSNumber            *lastButtonPressedNumber = nil;
                        HIDRemoteButtonCode  lastButtonPressed = kHIDRemoteButtonCodeNone;
                        NSMutableDictionary *cookieButtonMap = nil;

                        cookieButtonMap  = [hidAttribsDict objectForKey:kHIDRemoteCookieButtonCodeLUT];

                        if ((lastButtonPressedNumber = [hidAttribsDict objectForKey:kHIDRemoteLastButtonPressed]) != nil)
                        {
                                lastButtonPressed = [lastButtonPressedNumber unsignedIntValue];
                        }

                        while (result == kIOReturnSuccess)
                        {
                                IOHIDEventStruct hidEvent;
                                AbsoluteTime supportedTime = { 0,0 };

                                result = (*queueInterface)->getNextEvent(       queueInterface,
                                                                                &hidEvent,
                                                                                supportedTime,
                                                                                0);

                                if (result == kIOReturnSuccess)
                                {
                                        NSNumber *buttonCodeNumber = [cookieButtonMap objectForKey:[NSNumber numberWithUnsignedInt:(unsigned int) hidEvent.elementCookie]];

                                        #ifdef _HIDREMOTE_EXTENSIONS
                                                // Debug logging code
                                                #define _HIDREMOTE_EXTENSIONS_SECTION 5
                                                #include "HIDRemoteAdditions.h"
                                                #undef _HIDREMOTE_EXTENSIONS_SECTION
                                        #endif /* _HIDREMOTE_EXTENSIONS */

                                        if (buttonCodeNumber!=nil)
                                        {
                                                HIDRemoteButtonCode buttonCode = [buttonCodeNumber unsignedIntValue];

                                                if (hidEvent.value == 0)
                                                {
                                                        if (buttonCode == lastButtonPressed)
                                                        {
                                                                [self _handleButtonCode:lastButtonPressed isPressed:NO hidAttribsDict:hidAttribsDict];
                                                                lastButtonPressed = kHIDRemoteButtonCodeNone;
                                                        }
                                                }

                                                if (hidEvent.value != 0)
                                                {
                                                        if (lastButtonPressed != kHIDRemoteButtonCodeNone)
                                                        {
                                                                [self _handleButtonCode:lastButtonPressed isPressed:NO hidAttribsDict:hidAttribsDict];
                                                                // lastButtonPressed = kHIDRemoteButtonCodeNone;
                                                        }

                                                        if (buttonCode == kHIDRemoteButtonCodeIDChanged)
                                                        {
                                                                if (([self delegate]!=nil) &&
                                                                    ([[self delegate] respondsToSelector:@selector(hidRemote:remoteIDChangedOldID:newID:forHardwareWithAttributes:)]))
                                                                {
                                                                        [((NSObject <HIDRemoteDelegate> *)[self delegate]) hidRemote:self remoteIDChangedOldID:_lastSeenRemoteID newID:hidEvent.value forHardwareWithAttributes:hidAttribsDict];
                                                                }

                                                                _lastSeenRemoteID = hidEvent.value;
                                                                _lastSeenModel    = kHIDRemoteModelUndetermined;
                                                        }

                                                        [self _handleButtonCode:buttonCode isPressed:YES hidAttribsDict:hidAttribsDict];
                                                        lastButtonPressed = buttonCode;
                                                }
                                        }
                                }
                        };

                        [hidAttribsDict setObject:[NSNumber numberWithUnsignedInt:lastButtonPressed] forKey:kHIDRemoteLastButtonPressed];
                }

                #ifdef _HIDREMOTE_EXTENSIONS
                        // Debug logging code
                        #define _HIDREMOTE_EXTENSIONS_SECTION 6
                        #include "HIDRemoteAdditions.h"
                        #undef _HIDREMOTE_EXTENSIONS_SECTION
                #endif /* _HIDREMOTE_EXTENSIONS */
        }
}

#pragma mark -- PRIVATE: Notification handling --
- (void)_serviceMatching:(io_iterator_t)iterator
{
        io_object_t matchingService = 0;

        while ((matchingService = IOIteratorNext(iterator)) != 0)
        {
                [self _setupService:matchingService];

                IOObjectRelease(matchingService);
        };
}

- (void)_serviceNotificationFor:(io_service_t)service messageType:(natural_t)messageType messageArgument:(void *)messageArgument
{
        if (messageType == kIOMessageServiceIsTerminated)
        {
                [self _destructService:service];
        }
}

- (void)_updateSessionInformation
{
        NSArray *consoleUsersArray;
        io_service_t rootService;

        if (_masterPort==0) { return; }

        if ((rootService = IORegistryGetRootEntry(_masterPort)) != 0)
        {
                if ((consoleUsersArray = (NSArray *)IORegistryEntryCreateCFProperty((io_registry_entry_t)rootService, CFSTR("IOConsoleUsers"), kCFAllocatorDefault, 0)) != nil)
                {
                        if ([consoleUsersArray isKindOfClass:[NSArray class]])  // Be careful - ensure this really is an array
                        {
                                NSEnumerator *consoleUsersEnum; // I *love* Obj-C2's fast enumerators, but we need to stay compatible with 10.4 :-/

                                if ((consoleUsersEnum = [consoleUsersArray objectEnumerator]) != nil)
                                {
                                        UInt64 secureEventInputPIDSum = 0;
                                        uid_t frontUserSession = 0;
                                        NSDictionary *consoleUserDict;

                                        while ((consoleUserDict = [consoleUsersEnum nextObject]) != nil)
                                        {
                                                if ([consoleUserDict isKindOfClass:[NSDictionary class]]) // Be careful - ensure this really is a dictionary
                                                {
                                                        NSNumber *secureInputPID;
                                                        NSNumber *onConsole;
                                                        NSNumber *userID;

                                                        if ((secureInputPID = [consoleUserDict objectForKey:@"kCGSSessionSecureInputPID"]) != nil)
                                                        {
                                                                if ([secureInputPID isKindOfClass:[NSNumber class]])
                                                                {
                                                                        secureEventInputPIDSum += ((UInt64) [secureInputPID intValue]);
                                                                }
                                                        }

                                                        if (((onConsole = [consoleUserDict objectForKey:@"kCGSSessionOnConsoleKey"]) != nil) &&
                                                            ((userID    = [consoleUserDict objectForKey:@"kCGSSessionUserIDKey"]) != nil))
                                                        {
                                                                if ([onConsole isKindOfClass:[NSNumber class]] && [userID isKindOfClass:[NSNumber class]])
                                                                {
                                                                        if ([onConsole boolValue])
                                                                        {
                                                                                frontUserSession = (uid_t) [userID intValue];
                                                                        }
                                                                }
                                                        }
                                                }
                                        }

                                        _lastSecureEventInputPIDSum = secureEventInputPIDSum;
                                        _lastFrontUserSession       = frontUserSession;
                                }
                        }

                        CFRelease((CFTypeRef)consoleUsersArray);
                }

                IOObjectRelease((io_object_t) rootService);
        }
}

- (void)_secureInputNotificationFor:(io_service_t)service messageType:(natural_t)messageType messageArgument:(void *)messageArgument
{
        if (messageType == kIOMessageServiceBusyStateChange)
        {
                UInt64 old_lastSecureEventInputPIDSum = _lastSecureEventInputPIDSum;
                uid_t  old_lastFrontUserSession = _lastFrontUserSession;

                [self _updateSessionInformation];

                if (((old_lastSecureEventInputPIDSum != _lastSecureEventInputPIDSum) || (old_lastFrontUserSession != _lastFrontUserSession)) && _secureEventInputWorkAround)
                {
                        if ((_mode == kHIDRemoteModeExclusive) || (_mode == kHIDRemoteModeExclusiveAuto))
                        {
                                HIDRemoteMode restartInMode = _mode;

                                _isRestarting = YES;
                                [self stopRemoteControl];
                                [self startRemoteControl:restartInMode];
                                _isRestarting = NO;
                        }
                }
        }
}

@end

#pragma mark -- PRIVATE: IOKitLib Callbacks --

static void HIDEventCallback(   void * target,
                                IOReturn result,
                                void * refCon,
                                void * sender)
{
        HIDRemote               *hidRemote = (HIDRemote *)refCon;
        NSAutoreleasePool       *pool      = [[NSAutoreleasePool alloc] init];

        [hidRemote _hidEventFor:(io_service_t)((intptr_t)target) from:(IOHIDQueueInterface**)sender withResult:(IOReturn)result];

        [pool release];
}


static void ServiceMatchingCallback(    void *refCon,
                                        io_iterator_t iterator)
{
        HIDRemote               *hidRemote = (HIDRemote *)refCon;
        NSAutoreleasePool       *pool      = [[NSAutoreleasePool alloc] init];

        [hidRemote _serviceMatching:iterator];

        [pool release];
}

static void ServiceNotificationCallback(void *          refCon,
                                        io_service_t    service,
                                        natural_t       messageType,
                                        void *          messageArgument)
{
        HIDRemote               *hidRemote = (HIDRemote *)refCon;
        NSAutoreleasePool       *pool     = [[NSAutoreleasePool alloc] init];

        [hidRemote _serviceNotificationFor:service
                               messageType:messageType
                           messageArgument:messageArgument];

        [pool release];
}

static void SecureInputNotificationCallback(    void *          refCon,
                                                io_service_t    service,
                                                natural_t       messageType,
                                                void *          messageArgument)
{
        HIDRemote               *hidRemote = (HIDRemote *)refCon;
        NSAutoreleasePool       *pool     = [[NSAutoreleasePool alloc] init];

        [hidRemote _secureInputNotificationFor:service
                                   messageType:messageType
                               messageArgument:messageArgument];

        [pool release];
}

// Attribute dictionary keys
NSString *kHIDRemoteCFPluginInterface                   = @"CFPluginInterface";
NSString *kHIDRemoteHIDDeviceInterface                  = @"HIDDeviceInterface";
NSString *kHIDRemoteCookieButtonCodeLUT                 = @"CookieButtonCodeLUT";
NSString *kHIDRemoteHIDQueueInterface                   = @"HIDQueueInterface";
NSString *kHIDRemoteServiceNotification                 = @"ServiceNotification";
NSString *kHIDRemoteCFRunLoopSource                     = @"CFRunLoopSource";
NSString *kHIDRemoteLastButtonPressed                   = @"LastButtonPressed";
NSString *kHIDRemoteService                             = @"Service";
NSString *kHIDRemoteSimulateHoldEventsTimer             = @"SimulateHoldEventsTimer";
NSString *kHIDRemoteSimulateHoldEventsOriginButtonCode  = @"SimulateHoldEventsOriginButtonCode";
NSString *kHIDRemoteAluminumRemoteSupportLevel          = @"AluminumRemoteSupportLevel";
NSString *kHIDRemoteAluminumRemoteSupportOnDemand       = @"AluminumRemoteSupportLevelOnDemand";

NSString *kHIDRemoteManufacturer                        = @"Manufacturer";
NSString *kHIDRemoteProduct                             = @"Product";
NSString *kHIDRemoteTransport                           = @"Transport";

// Distributed notifications
NSString *kHIDRemoteDNHIDRemotePing                     = @"com.candelair.ping";
NSString *kHIDRemoteDNHIDRemoteRetry                    = @"com.candelair.retry";
NSString *kHIDRemoteDNHIDRemoteStatus                   = @"com.candelair.status";

NSString *kHIDRemoteDNHIDRemoteRetryGlobalObject        = @"global";

// Distributed notifications userInfo keys and values
NSString *kHIDRemoteDNStatusHIDRemoteVersionKey         = @"HIDRemoteVersion";
NSString *kHIDRemoteDNStatusPIDKey                      = @"PID";
NSString *kHIDRemoteDNStatusModeKey                     = @"Mode";
NSString *kHIDRemoteDNStatusUnusedButtonCodesKey        = @"UnusedButtonCodes";
NSString *kHIDRemoteDNStatusActionKey                   = @"Action";
NSString *kHIDRemoteDNStatusRemoteControlCountKey       = @"RemoteControlCount";
NSString *kHIDRemoteDNStatusReturnToPIDKey              = @"ReturnToPID";
NSString *kHIDRemoteDNStatusActionStart                 = @"start";
NSString *kHIDRemoteDNStatusActionStop                  = @"stop";
NSString *kHIDRemoteDNStatusActionUpdate                = @"update";
NSString *kHIDRemoteDNStatusActionNoNeed                = @"noneed";