summaryrefslogtreecommitdiffstats
path: root/plugins/OSX/src/native/jinputjnilib.c
blob: 86c73477fc75555a82fa57cd368b2024a88d44db (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
/*
 * %W% %E%
 *
 * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */
/*****************************************************************************
* Copyright (c) 2003 Sun Microsystems, Inc.  All Rights Reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistribution of source code must retain the above copyright notice,
*   this list of conditions and the following disclaimer.
*
* - Redistribution in binary form must reproduce the above copyright notice,
*   this list of conditions and the following disclaimer in the documentation
*   and/or other materails provided with the distribution.
*
* Neither the name Sun Microsystems, Inc. or the names of the contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* This software is provided "AS IS," without a warranty of any kind.
* ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
* ANY IMPLIED WARRANT OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
* NON-INFRINGEMEN, ARE HEREBY EXCLUDED.  SUN MICROSYSTEMS, INC. ("SUN") AND
* ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS
* A RESULT OF USING, MODIFYING OR DESTRIBUTING THIS SOFTWARE OR ITS 
* DERIVATIVES.  IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
* REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
* INCIDENTAL OR PUNITIVE DAMAGES.  HOWEVER CAUSED AND REGARDLESS OF THE THEORY
* OF LIABILITY, ARISING OUT OF THE USE OF OUR INABILITY TO USE THIS SOFTWARE,
* EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*
* You acknowledge that this software is not designed or intended for us in
* the design, construction, operation or maintenance of any nuclear facility
*
*****************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/errno.h>
#include <sysexits.h>
#include <mach/mach.h>
#include <mach/mach_error.h>
#include <IOKit/IOKitLib.h>
#include <IOKit/IOCFPlugIn.h>
#include <IOKit/hid/IOHIDLib.h>
#include <IOKit/hid/IOHIDKeys.h>
#include <CoreFoundation/CoreFoundation.h>
#include <Carbon/Carbon.h>
#include "net_java_games_input_OSXEnvironmentPlugin.h"

Boolean init( JNIEnv * env );
void createMasterPort();
void disposeMasterPort();


void createHIDDevice(io_object_t hidDevice, IOHIDDeviceInterface ***hidDeviceInterface);
IOReturn openDevice(IOHIDDeviceInterface ***hidDeviceInterface);
IOReturn closeDevice(IOHIDDeviceInterface ***hidDeviceInterface);


Boolean showDictionaryElement (CFDictionaryRef dictionary, CFStringRef key);
void showProperty(const void * key, const void * value);
void displayCFProperty(CFStringRef object, CFTypeRef value);
void CFObjectShow( CFTypeRef value );
void CFObjectSend( CFTypeRef value );

jclass              CLASS_JNIWrapper = NULL;
jmethodID           MID_AddController = NULL;
jmethodID           MID_AddControllerElement = NULL;
mach_port_t         masterPort = NULL;
io_iterator_t       hidObjectIterator;

long                elementCookie;
long                elementType;
long                usage;
long                usagePage;
long                min;
long                max;
long                scaledMin;
long                scaledMax;
long                size;
jboolean            isRelative;
jboolean            isWrapping;
jboolean            isNonLinear;


JNIEnv *            lpEnv;
jlong               lpDevice;
jobject             lpObj;
jboolean            completeElement = JNI_FALSE;




Boolean showDictionaryElement (CFDictionaryRef dictionary, CFStringRef key)
{
    CFTypeRef value = CFDictionaryGetValue (dictionary, key);
    if (value)
    {
        const char * c = CFStringGetCStringPtr (key, CFStringGetSystemEncoding ());
        if (c)
        {
            printf ("%s", c);
        }
        else
        {
            CFIndex bufferSize = CFStringGetLength (key) + 1;
            char * buffer = (char *)malloc (bufferSize);
            if (buffer)
            {
                if (CFStringGetCString (key, buffer, bufferSize, CFStringGetSystemEncoding ()))
                    printf ("%s", buffer);
                free(buffer);
            }
        }
        
        printf("=");
        
        CFObjectShow( value );
    
        printf("\n");
    }
    return (value != NULL);
}

static void showCFArray (const void * value, void * parameter)
{
    if (CFGetTypeID (value) != CFDictionaryGetTypeID ())
    {
        return;
    }
    
    CFObjectShow(value);
}

void CFObjectShow( CFTypeRef value )
{
    CFTypeID type = CFGetTypeID(value);
    if (type == CFArrayGetTypeID())
    {
        CFRange range = {0, CFArrayGetCount (value)};
        
        //Show an element array containing one or more element dictionaries
        CFArrayApplyFunction (value, range, showCFArray, 0);
    }
    else if (type == CFBooleanGetTypeID())
    {
        printf(CFBooleanGetValue(value) ? "true" : "false");
    }
    else if (type == CFDictionaryGetTypeID())
    {
        printf("Map\n");


        showDictionaryElement (value, CFSTR(kIOHIDElementCookieKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementCollectionTypeKey));

        showDictionaryElement (value, CFSTR(kIOHIDElementMinKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementMaxKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementScaledMinKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementScaledMaxKey));
  
        showDictionaryElement (value, CFSTR(kIOHIDElementSizeKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementIsRelativeKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementIsWrappingKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementIsNonLinearKey));
#ifdef kIOHIDElementHasPreferredStateKey
        showDictionaryElement (value, CFSTR(kIOHIDElementHasPreferredStateKey));
#else
        showDictionaryElement (value, CFSTR(kIOHIDElementHasPreferedStateKey));
#endif
        showDictionaryElement (value, CFSTR(kIOHIDElementHasNullStateKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementVendorSpecificKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementUnitKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementUnitExponentKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementNameKey));
        showDictionaryElement (value, CFSTR(kIOHIDElementKey));    
        
        printf("\n\n\n");
    }
    else if (type == CFNumberGetTypeID())
    {
        long number;
        if (CFNumberGetValue (value, kCFNumberLongType, &number))
        {
            printf("0x%lx (%ld)", number, number);
        }
    }
    else if (type == CFStringGetTypeID())
    {
        const char * c = CFStringGetCStringPtr (value, CFStringGetSystemEncoding ());
        if (c)
        {
            printf ("%s", c);
        }
        else
        {
            CFIndex bufferSize = CFStringGetLength (value) + 1;
            char * buffer = (char *)malloc (bufferSize);
            if (buffer)
            {
                if (CFStringGetCString (value, buffer, bufferSize, CFStringGetSystemEncoding ()))
                {
                    printf ("%s", buffer);
                }
                
                free(buffer);
            }
        }
    }
}

////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////

Boolean init(JNIEnv* env)
{
    CLASS_JNIWrapper = (*env)->FindClass(env,"net/java/games/input/OSXEnvironmentPlugin");
    if ( CLASS_JNIWrapper == NULL )
    {
        printf("Class OSXEnvironmentPlugin not found... \n");
        return FALSE;
    }
    
    MID_AddController = (*env)->GetMethodID(env, CLASS_JNIWrapper, "addController", "(JLjava/lang/String;I)V");
    if (MID_AddController == NULL)
    {
        printf("Method addController not found... \n");
        return FALSE;
    }

    MID_AddControllerElement = (*env)->GetMethodID(env, CLASS_JNIWrapper, "addControllerElement", "(JJIIIIIIIIZZZZZ)V");
    if (MID_AddControllerElement == NULL)
    {
        printf("Method addControllerElement not found... \n");
        return FALSE;
    }
    
    return TRUE;
}

void createMasterPort()
{
    IOReturn ioReturnValue = kIOReturnSuccess;
    
    //Get a Mach port to initiate communication with I/O Kit.
    //
    ioReturnValue = IOMasterPort(bootstrap_port, &masterPort);
}

void disposeMasterPort()
{
    //Free master port if we created one.
    //
    if (masterPort)
    {
        mach_port_deallocate(mach_task_self(), masterPort);
    }
}

void createHIDDevice( io_object_t hidDevice, IOHIDDeviceInterface ***hidDeviceInterface )
{
    io_name_t               className;
    IOCFPlugInInterface     **plugInInterface = NULL;
    HRESULT                 plugInResult = S_OK;
    SInt32                  score = 0;
    IOReturn                ioReturnValue = kIOReturnSuccess;
    
    ioReturnValue = IOObjectGetClass(hidDevice, className);
    if ( ioReturnValue != kIOReturnSuccess )
    {
        printf("Failed to get IOObject class name.");
    }
    
    printf("Found device type [%s]\n", className);
    
    ioReturnValue = IOCreatePlugInInterfaceForService(hidDevice,
                                                      kIOHIDDeviceUserClientTypeID,
                                                      kIOCFPlugInInterfaceID,
                                                      &plugInInterface,
                                                      &score);
    
    if (ioReturnValue == kIOReturnSuccess)
    {
        //Call a method of the intermediate plug-in to create the device 
        //interface
        //
        plugInResult = (*plugInInterface)->QueryInterface(plugInInterface,
                                                          CFUUIDGetUUIDBytes(kIOHIDDeviceInterfaceID),
                                                          (LPVOID) hidDeviceInterface);
        if ( plugInResult != S_OK )
        {
            printf("Couldn't create HID class device interface");
        }
                    
        (*plugInInterface)->Release(plugInInterface);
    }
}

IOReturn openDevice(IOHIDDeviceInterface ***hidDeviceInterface)
{
    IOReturn                ioReturnValue = kIOReturnSuccess;

    //todo, change this to be controlled from the java layer at each device
    //
    ioReturnValue = (**hidDeviceInterface)->open(*hidDeviceInterface, 0 );
    if ( ioReturnValue != kIOReturnSuccess )
    {
        printf("Unable to open device - return [%d]\n", ioReturnValue );
    }
    else
    {
        printf("Successfully opened device \n");
    }
    
    return ioReturnValue;
}

IOReturn closeDevice(IOHIDDeviceInterface ***hidDeviceInterface)
{    
    IOReturn                ioReturnValue = kIOReturnSuccess;    
    
    ioReturnValue = (**hidDeviceInterface)->close(*hidDeviceInterface);
    if ( ioReturnValue != kIOReturnSuccess )
    {
        printf("Unable to close device - return [%d]\n", ioReturnValue );
    }
    else
    {
        printf("Successfully closed device \n");
    }
    
    // release the device interface
    //
    (**hidDeviceInterface)->Release(*hidDeviceInterface);
    
    return ioReturnValue;
}

static void sendCFArray(const void * value, void * parameter)
{
    if (CFGetTypeID (value) != CFDictionaryGetTypeID ())
    {
        return;
    }

    CFObjectSend(value);
}

void CFObjectSend( CFTypeRef value )
{
    CFTypeID type = CFGetTypeID(value);
    if (type == CFArrayGetTypeID())
    {
        CFRange range = {0, CFArrayGetCount (value)};
        
        //Show an element array containing one or more element dictionaries
        CFArrayApplyFunction (value, range, sendCFArray, 0);
    }
    else if (type == CFDictionaryGetTypeID())
    {
//        printf("Sending Map\n");


        CFTypeRef val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementCookieKey) );
        if ( val )
        {
            CFNumberGetValue ( val , kCFNumberLongType, &elementCookie);
            printf("ElementCookie - 0x%lx (%ld) \n", elementCookie, elementCookie);
        }

        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementTypeKey) );
        if ( val )
        {
            CFNumberGetValue ( val, kCFNumberLongType, &elementType);
            printf("element Type - 0x%lx (%ld) \n", elementType, elementType);
        }

        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementUsageKey) );
        if ( val )
        {
            CFNumberGetValue ( val, kCFNumberLongType, &usage);
            printf("usage - 0x%lx (%ld) \n", usage, usage);
        }

        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementUsagePageKey) );
        if ( val )
        {
            CFNumberGetValue ( val, kCFNumberLongType, &usagePage);
            printf("usage page- 0x%lx (%ld) \n", usagePage, usagePage);
        }

        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementMinKey) );
        if ( val )
        {
            CFNumberGetValue ( val, kCFNumberLongType, &min);
            //printf("min - 0x%lx (%ld) \n", min, min);
        }

        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementMaxKey) );
        if ( val )
        {
            CFNumberGetValue ( val, kCFNumberLongType, &max);
            //printf("max - 0x%lx (%ld) \n", max, max);
        }
        
        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementScaledMinKey) );
        if ( val ) 
        {
            CFNumberGetValue ( val, kCFNumberLongType, &scaledMin);
            //printf("scaledMin - 0x%lx (%ld) \n", scaledMin, scaledMin);
        }

        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementScaledMaxKey) );
        if ( val )
        {
            CFNumberGetValue ( val, kCFNumberLongType, &scaledMax);
            //printf("scaledMax - 0x%lx (%ld) \n", scaledMax, scaledMax);
        }

        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementSizeKey) );
        if ( val )
        {
            CFNumberGetValue ( val, kCFNumberLongType, &size);
            //printf("Size - 0x%lx (%ld) \n", size, size);
        }

        jboolean isRelative = JNI_FALSE;
        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementIsRelativeKey) );
        if ( val )
        {
            isRelative = (CFBooleanGetValue(val) ? JNI_TRUE : JNI_FALSE);
        }


        jboolean isWrapping = JNI_FALSE;
        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementIsWrappingKey) );
        if ( val )
        {
            isWrapping = (CFBooleanGetValue(val) ? JNI_TRUE : JNI_FALSE);
        }


        jboolean isNonLinear = JNI_FALSE;
        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementIsNonLinearKey) );
        if ( val )
        {
            isNonLinear = (CFBooleanGetValue(val) ? JNI_TRUE : JNI_FALSE);
        }


        jboolean hasPreferredState = JNI_FALSE;
#ifdef kIOHIDElementHasPreferredStateKey
        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementHasPreferredStateKey) );
        if ( val )
        {
            hasPreferredState = (CFBooleanGetValue(val) ? JNI_TRUE : JNI_FALSE);
        }
#else
        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementHasPreferedStateKey) );
        if ( val )
        {
            hasPreferredState = (CFBooleanGetValue(val) ? JNI_TRUE : JNI_FALSE);
        }
#endif
        
        jboolean hasNullState = JNI_FALSE;
        val = CFDictionaryGetValue( value, CFSTR(kIOHIDElementHasNullStateKey) );
        if ( val )
        {
            hasNullState = (CFBooleanGetValue(val) ? JNI_TRUE : JNI_FALSE);
        }

        (*lpEnv)->CallVoidMethod(lpEnv, lpObj, MID_AddControllerElement,
                                (jlong)(long)lpDevice,
                                (jlong)(long)elementCookie,
                                (jint)(long)elementType,
                                (jint)(long)usage,
                                (jint)(long)usagePage,
                                (jint)(long)min,
                                (jint)(long)max,
                                (jint)(long)scaledMin,
                                (jint)(long)scaledMax,
                                (jint)(long)size,
                                (jboolean)isRelative,
                                (jboolean)isWrapping,
                                (jboolean)isNonLinear,
                                (jboolean)hasPreferredState,
                                (jboolean)hasNullState);

//      printf("End of element definition \n");


        
        CFTypeRef object = CFDictionaryGetValue (value, CFSTR(kIOHIDElementKey));
        if (object)
        {
            CFObjectSend( object );
        }

        printf("\n\n\n");
    }
}

void addControllerElements( CFMutableDictionaryRef dictionary, CFStringRef key )
{
    printf("Adding controller elements\n");

    CFTypeRef value = CFDictionaryGetValue (dictionary, key);
    if (value)
    {
        CFRange range = {0, CFArrayGetCount (value)};
        CFArrayApplyFunction (value, range, sendCFArray, 0);
    }
}

/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    hidCreate
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_hidCreate
  (JNIEnv * env, jobject obj)
{
    if ( init( env ) )
    {
        createMasterPort();
    }
}
/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    hidDispose
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_hidDispose
  (JNIEnv * env, jobject obj)
{
    disposeMasterPort();
}


/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    enumDevices
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_enumDevices
  (JNIEnv * env, jobject obj)
{

    lpEnv = env;
    lpObj = obj;

    CFMutableDictionaryRef hidMatchDictionary = NULL;
    IOReturn ioReturnValue = kIOReturnSuccess;
    Boolean noMatchingDevices = false;
    
    // Set up a matching dictionary to search the I/O Registry by class
    // name for all HID class devices
    //
    hidMatchDictionary = IOServiceMatching(kIOHIDDeviceKey);
    
    // Now search I/O Registry for matching devices.
    //
    ioReturnValue = IOServiceGetMatchingServices(masterPort, hidMatchDictionary, &hidObjectIterator);
    
    noMatchingDevices = ((ioReturnValue != kIOReturnSuccess) | (hidObjectIterator == NULL));
    
    // If search is unsuccessful, print message .
    //
    if (noMatchingDevices)
    {
        printf("No matching HID class devices found.");
		return;
    }
    
    // IOServiceGetMatchingServices consumes a reference to the
    //   dictionary, so we don't need to release the dictionary ref.
    //
    hidMatchDictionary = NULL;    
    
    io_object_t             hidDevice = NULL;
    IOHIDDeviceInterface    **hidDeviceInterface = NULL;
    CFMutableDictionaryRef  properties = 0;
    char                    path[512];
    kern_return_t           result;
    
    
    while ((hidDevice = IOIteratorNext(hidObjectIterator)))
    {    
        result = IORegistryEntryGetPath(hidDevice, kIOServicePlane, path);
        
        if ( result == KERN_SUCCESS )
        {
            result = IORegistryEntryCreateCFProperties(hidDevice,
                                                       &properties,
                                                       kCFAllocatorDefault,
                                                       kNilOptions);
        }
        
        if ((result == KERN_SUCCESS) && properties)
        {
            //showDictionaryElement(properties, CFSTR(kIOHIDTransportKey));
            //showDictionaryElement(properties, CFSTR(kIOHIDVendorKey));
            //printf("ProductID: "); showDictionaryElement(properties, CFSTR(kIOHIDProductIDKey));
            //printf("VersionNumber: "); showDictionaryElement(properties, CFSTR(kIOHIDVersionNumberKey));
            //printf("Manufacturer: "); showDictionaryElement(properties, CFSTR(kIOHIDManufacturerKey));
            //printf("ProductKey: "); showDictionaryElement(properties, CFSTR(kIOHIDProductKey));
            //printf("SerialNumber: "); showDictionaryElement(properties, CFSTR(kIOHIDSerialNumberKey));
            //showDictionaryElement(properties, CFSTR(kIOHIDLocationIDKey));
            //printf("PrimaryUsage: "); showDictionaryElement(properties, CFSTR(kIOHIDPrimaryUsageKey));
            //showDictionaryElement(properties, CFSTR(kIOHIDPrimaryUsagePageKey));
            //showDictionaryElement(properties, CFSTR(kIOHIDElementKey));



            // get the product name
            //
            CFTypeRef productName = CFDictionaryGetValue (properties, CFSTR(kIOHIDProductKey)); 

            // get the usage for this product
            //
            long usage;
            CFNumberGetValue ( CFDictionaryGetValue( properties, CFSTR(kIOHIDPrimaryUsageKey) ), kCFNumberLongType, &usage);
            

            createHIDDevice( hidDevice, &hidDeviceInterface );
            
            IOObjectRelease( hidDevice );
            
            if ( hidDeviceInterface != NULL )
            {                
                (*env)->CallVoidMethod(env, obj, MID_AddController, 
                                       (jlong)(long)hidDeviceInterface,
                                       (*env)->NewStringUTF( env, CFStringGetCStringPtr( productName, CFStringGetSystemEncoding()) ),
                                       (jint)usage );
                lpEnv = env;
                lpDevice = (jlong)(long)hidDeviceInterface;

                addControllerElements( properties, CFSTR(kIOHIDElementKey) );


            }            
                    
            //Release the properties dictionary
            CFRelease(properties);
        }        

    }

    IOObjectRelease(hidObjectIterator);    
}

/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    openDevice
 * Signature: (JI)J
 */
JNIEXPORT jlong JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_openDevice
  (JNIEnv * env, jobject obj, jlong lpDevice, jint queueDepth)
{
    IOHIDDeviceInterface    **hidDeviceInterface = NULL;
    hidDeviceInterface = (IOHIDDeviceInterface **) (long)lpDevice;
    openDevice( &hidDeviceInterface  );


    IOHIDQueueInterface  **queue = NULL;
    queue = (*hidDeviceInterface)->allocQueue(hidDeviceInterface);

    if (queue)
    {
        // create a queue and specify how deep they want the input queue to be
        //
        (*queue)->create( queue, 0, (int)queueDepth );
        printf("InputQueue created %lx with depth %d \n", (long) queue, (int)queueDepth );

        // start the input queue
        //
        (*queue)->start( queue );
    }
    else
    {
        printf("Unable to create queue for device! \n");
    }

    return (jlong)(long)queue;
    
}

/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    closeDevice
 * Signature: (JJ)V
 */
JNIEXPORT void JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_closeDevice
  (JNIEnv * env, jobject obj, jlong lpDevice, jlong lpQueue)
{
    IOHIDDeviceInterface    **hidDeviceInterface = NULL;
    hidDeviceInterface = (IOHIDDeviceInterface **) (long)lpDevice;

    IOHIDQueueInterface  **queue = NULL;
    queue = (IOHIDQueueInterface **)(long)lpQueue;
    
    // stop the queue
    //
    (*queue)->stop(queue);

    // dispose of the queue
    //
    (*queue)->dispose(queue);

    // release the queue
    //
    (*queue)->Release(queue);

    // close the input device
    //
    closeDevice( &hidDeviceInterface  );
}

/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    pollDevice
 * Signature: (J)I
 */
JNIEXPORT jint JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_pollDevice
  (JNIEnv * env, jobject obj, jlong lpQueue)
{
    IOHIDEventStruct event;

    IOHIDQueueInterface  **queue = NULL;
    queue = (IOHIDQueueInterface **)(long)lpQueue;

    AbsoluteTime zeroTime = {0,0};
    IOReturn ioReturnValue = kIOReturnSuccess;

    ioReturnValue = (*queue)->getNextEvent(queue, &event, zeroTime, 0);
    if ( ioReturnValue == kIOReturnSuccess )
    {
        printf("Queue getNextEvent return value: %ld\n", (long)ioReturnValue );
    }
    else
    {
        printf("Queue event[%lx] %ld\n", (unsigned long) event.elementCookie, event.value );
    }  

    return (jint) event.value;
}

/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    pollDevice
 * Signature: (JJ)I
 */
JNIEXPORT jint JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_pollElement
  (JNIEnv * env, jobject obj, jlong lpDevice, jlong hidCookie)
{
    IOHIDDeviceInterface    **hidDeviceInterface = NULL;
    hidDeviceInterface = (IOHIDDeviceInterface **) (long)lpDevice;

    IOHIDElementCookie cookie = (IOHIDElementCookie)(long)hidCookie;

    IOHIDEventStruct event;

    IOReturn ioReturnValue = kIOReturnSuccess;

    ioReturnValue = (*hidDeviceInterface)->getElementValue(hidDeviceInterface, cookie, &event);
    if ( ioReturnValue == kIOReturnSuccess )
    {
        printf("Queue getNextEvent return value: %ld\n", (long)ioReturnValue );
    }
    else
    {
        printf("Queue event[%lx] %ld\n", (unsigned long) event.elementCookie, event.value );
    }  
 
    return (jint) event.value;
}


/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    registerDeviceElement
 * Signature: (JJ)V
 */
JNIEXPORT void JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_registerDeviceElement
  (JNIEnv * env, jobject obj, jlong lpQueue, jlong hidCookie)
{
    IOHIDQueueInterface  **queue = NULL;
    queue = (IOHIDQueueInterface **)(long)lpQueue;

    IOHIDElementCookie cookie = (IOHIDElementCookie)(long)hidCookie;
    IOReturn ioReturnValue = kIOReturnSuccess;

    ioReturnValue = (*queue)->addElement(queue, cookie, 0);
    if ( ioReturnValue == kIOReturnSuccess )
    {
        printf("Registered pollElement: %ld\n", (long)cookie );
    }
    else
    {
        printf("Failed to add poll element: %ld\n", (long)cookie );
    }
}

/*
 * Class:     net_java_games_input_OSXEnvironmentPlugin
 * Method:    deregisterDeviceElement
 * Signature: (JJ)V
 */
JNIEXPORT void JNICALL Java_net_java_games_input_OSXEnvironmentPlugin_deregisterDeviceElement
  (JNIEnv * env, jobject obj, jlong lpQueue, jlong hidCookie)
{
    IOHIDQueueInterface  **queue = NULL;
    queue = (IOHIDQueueInterface **)(long)lpQueue;

    IOHIDElementCookie cookie = (IOHIDElementCookie)(long)hidCookie;

    IOReturn ioReturnValue = kIOReturnSuccess;

    ioReturnValue = (*queue)->removeElement(queue, cookie );
    if ( ioReturnValue == kIOReturnSuccess )
    {
        printf("Removed pollElement: %ld\n", (long)cookie );
    }
    else
    {
        printf("Failed to remove poll element: %ld\n", (long)cookie );
    }
}