]> git.saurik.com Git - wxWidgets.git/blob - src/mac/corefoundation/hid.cpp
Line-up interfaces to use size_t for GetCount()s.
[wxWidgets.git] / src / mac / corefoundation / hid.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/corefoundation/hid.cpp
3 // Purpose: DARWIN HID layer for WX Implementation
4 // Author: Ryan Norton
5 // Modified by:
6 // Created: 11/11/2003
7 // RCS-ID: $Id$
8 // Copyright: (c) Ryan Norton
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ===========================================================================
13 // declarations
14 // ===========================================================================
15
16 // ---------------------------------------------------------------------------
17 // headers
18 // ---------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 //DARWIN _ONLY_
28 #ifdef __DARWIN__
29
30 #include "wx/mac/corefoundation/hid.h"
31 #include "wx/string.h"
32 #include "wx/log.h"
33 #include "wx/mac/corefoundation/cfstring.h"
34
35
36 // ---------------------------------------------------------------------------
37 // assertion macros
38 // ---------------------------------------------------------------------------
39
40 #define wxFORCECHECK_MSG(arg, msg) \
41 {\
42 if (arg) \
43 {\
44 wxLogSysError(wxString::Format(wxT("Message:%s\nHID: %s failed!"), wxT(msg), wxT(#arg)));\
45 return false;\
46 }\
47 }
48 #define wxIOCHECK(arg, msg) wxFORCECHECK_MSG(arg != kIOReturnSuccess, msg)
49 #define wxKERNCHECK(arg, msg) wxFORCECHECK_MSG(arg != KERN_SUCCESS, msg)
50 #define wxSCHECK(arg, msg) wxFORCECHECK_MSG(arg != S_OK, msg)
51
52 /*
53 void CFShowTypeIDDescription(CFTypeRef pData)
54 {
55 if(!pData)
56 {
57 wxASSERT(false);
58 return;
59 }
60
61 wxMessageBox(
62 CFStringGetCStringPtr(
63 CFCopyTypeIDDescription(CFGetTypeID(pData)),CFStringGetSystemEncoding()
64 )
65 );
66 }
67 */
68
69 // ============================================================================
70 // implementation
71 // ============================================================================
72
73 // ---------------------------------------------------------------------------
74 // wxHIDDevice
75 // ---------------------------------------------------------------------------
76
77 bool wxHIDDevice::Create (int nClass, int nType, int nDev)
78 {
79 //Create the mach port
80 wxIOCHECK(IOMasterPort(bootstrap_port, &m_pPort), "Could not create mach port");
81
82 //Dictionary that will hold first
83 //the matching dictionary for determining which kind of devices we want,
84 //then later some registry properties from an iterator (see below)
85 //
86 //The call to IOServiceMatching filters down the
87 //the services we want to hid services (and also eats the
88 //dictionary up for us (consumes one reference))
89 CFMutableDictionaryRef pDictionary = IOServiceMatching(kIOHIDDeviceKey);
90 wxCHECK_MSG( pDictionary, false,
91 _T("IOServiceMatching(kIOHIDDeviceKey) failed") );
92
93 wxASSERT( pDictionary );
94
95 //Here we'll filter down the services to what we want
96 if (nType != -1)
97 {
98 CFNumberRef pType = CFNumberCreate(kCFAllocatorDefault,
99 kCFNumberIntType, &nType);
100 CFDictionarySetValue(pDictionary, CFSTR(kIOHIDPrimaryUsageKey), pType);
101 CFRelease(pType);
102 }
103 if (nClass != -1)
104 {
105 CFNumberRef pClass = CFNumberCreate(kCFAllocatorDefault,
106 kCFNumberIntType, &nClass);
107 CFDictionarySetValue(pDictionary, CFSTR(kIOHIDPrimaryUsagePageKey), pClass);
108 CFRelease(pClass);
109 }
110
111 //Now get the maching services
112 io_iterator_t pIterator;
113 wxIOCHECK(IOServiceGetMatchingServices(m_pPort, pDictionary, &pIterator), "No Matching HID Services");
114 if(pIterator == 0)
115 return false; // No devices found
116
117 //Now we iterate through them
118 io_object_t pObject;
119 while ( (pObject = IOIteratorNext(pIterator)) != 0)
120 {
121 if(--nDev != 0)
122 continue;
123
124 if ( IORegistryEntryCreateCFProperties
125 (
126 pObject,
127 &pDictionary,
128 kCFAllocatorDefault,
129 kNilOptions
130 ) != KERN_SUCCESS )
131 {
132 wxLogDebug(_T("IORegistryEntryCreateCFProperties failed"));
133 }
134
135 //Just for sanity :)
136 wxASSERT(CFGetTypeID(CFDictionaryGetValue(pDictionary, CFSTR(kIOHIDProductKey))) == CFStringGetTypeID());
137
138 /*
139 kIOHIDTransportKey;
140 kIOHIDVendorIDKey;
141 kIOHIDProductIDKey;
142 kIOHIDVersionNumberKey;
143 kIOHIDManufacturerKey;
144 kIOHIDSerialNumberKey;
145 if !kIOHIDLocationIDKey
146 kUSBDevicePropertyLocationID
147 kIOHIDPrimaryUsageKey
148 kIOHIDPrimaryUsagePageKey
149 idProduct
150 idVendor
151 USB Product Name
152 */
153 //Get [product] name
154 m_szProductName = wxMacCFStringHolder( (CFStringRef) CFDictionaryGetValue(pDictionary, CFSTR(kIOHIDProductKey)), false ).AsString();
155
156 CFNumberRef nref = (CFNumberRef) CFDictionaryGetValue(pDictionary, CFSTR(kIOHIDProductIDKey));
157
158 if (nref)
159 CFNumberGetValue(
160 nref,
161 kCFNumberIntType,
162 &m_nProductId
163 );
164
165 nref = (CFNumberRef) CFDictionaryGetValue(pDictionary, CFSTR(kIOHIDVendorIDKey));
166 if (nref)
167 CFNumberGetValue(
168 nref,
169 kCFNumberIntType,
170 &m_nManufacturerId
171 );
172
173 //Create the interface (good grief - long function names!)
174 SInt32 nScore;
175 IOCFPlugInInterface** ppPlugin;
176 wxIOCHECK(IOCreatePlugInInterfaceForService(pObject, kIOHIDDeviceUserClientTypeID,
177 kIOCFPlugInInterfaceID, &ppPlugin, &nScore), "");
178
179 //Now, the final thing we can check before we fall back to asserts
180 //(because the dtor only checks if the device is ok, so if anything
181 //fails from now on the dtor will delete the device anyway, so we can't break from this).
182
183 //Get the HID interface from the plugin to the mach port
184 wxSCHECK((*ppPlugin)->QueryInterface(ppPlugin,
185 CFUUIDGetUUIDBytes(kIOHIDDeviceInterfaceID), (void**) &m_ppDevice), "");
186
187 //release the plugin
188 (*ppPlugin)->Release(ppPlugin);
189
190 //open the HID interface...
191 if ( (*m_ppDevice)->open(m_ppDevice, 0) != S_OK )
192 wxLogDebug(_T("HID device: open failed"));
193
194 //
195 //Now the hard part - in order to scan things we need "cookies" -
196 //
197 wxCFArray CookieArray = CFDictionaryGetValue(pDictionary, CFSTR(kIOHIDElementKey));
198 BuildCookies(CookieArray);
199
200 //cleanup
201 CFRelease(pDictionary);
202 IOObjectRelease(pObject);
203 break;
204 }
205 //iterator cleanup
206 IOObjectRelease(pIterator);
207
208 return true;
209 }//end Create()
210
211 size_t wxHIDDevice::GetCount (int nClass, int nType)
212 {
213 mach_port_t m_pPort;
214
215 //Create the mach port
216 wxIOCHECK(IOMasterPort(bootstrap_port, &m_pPort), "Could not create mach port");
217
218 //Dictionary that will hold first
219 //the matching dictionary for determining which kind of devices we want,
220 //then later some registry properties from an iterator (see below)
221 CFMutableDictionaryRef pDictionary = IOServiceMatching(kIOHIDDeviceKey);
222 wxCHECK_MSG( pDictionary, 0,
223 _T("IOServiceMatching(kIOHIDDeviceKey) failed") );
224
225 //Here we'll filter down the services to what we want
226 if (nType != -1)
227 {
228 CFNumberRef pType = CFNumberCreate(kCFAllocatorDefault,
229 kCFNumberIntType, &nType);
230 CFDictionarySetValue(pDictionary, CFSTR(kIOHIDPrimaryUsageKey), pType);
231 CFRelease(pType);
232 }
233 if (nClass != -1)
234 {
235 CFNumberRef pClass = CFNumberCreate(kCFAllocatorDefault,
236 kCFNumberIntType, &nClass);
237 CFDictionarySetValue(pDictionary, CFSTR(kIOHIDPrimaryUsagePageKey), pClass);
238 CFRelease(pClass);
239 }
240
241 //Now get the maching services
242 io_iterator_t pIterator;
243 wxIOCHECK(IOServiceGetMatchingServices(m_pPort, pDictionary, &pIterator), "No Matching HID Services");
244
245 if ( !pIterator )
246 return 0;
247
248 //Now we iterate through them
249 io_object_t pObject;
250
251 size_t nCount = 0;
252
253 while ( (pObject = IOIteratorNext(pIterator)) != 0)
254 ++nCount;
255
256 //iterator cleanup
257 IOObjectRelease(pIterator);
258
259 return nCount;
260 }//end Create()
261
262 void wxHIDDevice::AddCookie(CFTypeRef Data, int i)
263 {
264 CFNumberGetValue(
265 (CFNumberRef) CFDictionaryGetValue ( (CFDictionaryRef) Data
266 , CFSTR(kIOHIDElementCookieKey)
267 ),
268 kCFNumberIntType,
269 &m_pCookies[i]
270 );
271 }
272
273 void wxHIDDevice::AddCookieInQueue(CFTypeRef Data, int i)
274 {
275 //3rd Param flags (none yet)
276 AddCookie(Data, i);
277 if ( (*m_ppQueue)->addElement(m_ppQueue, m_pCookies[i], 0) != S_OK )
278 wxLogDebug(_T("HID device: adding element failed"));
279 }
280
281 void wxHIDDevice::InitCookies(size_t dwSize, bool bQueue)
282 {
283 m_pCookies = new IOHIDElementCookie[dwSize];
284 if (bQueue)
285 {
286 wxASSERT( m_ppQueue == NULL);
287 m_ppQueue = (*m_ppDevice)->allocQueue(m_ppDevice);
288 if ( !m_ppQueue )
289 {
290 wxLogDebug(_T("HID device: allocQueue failed"));
291 return;
292 }
293
294 //Param 2, flags, none yet
295 if ( (*m_ppQueue)->create(m_ppQueue, 0, 512) != S_OK )
296 {
297 wxLogDebug(_T("HID device: create failed"));
298 }
299 }
300 }
301
302 bool wxHIDDevice::IsActive(int nIndex)
303 {
304 wxASSERT(m_pCookies[nIndex] != NULL);
305 IOHIDEventStruct Event;
306 (*m_ppDevice)->getElementValue(m_ppDevice, m_pCookies[nIndex], &Event);
307 /*
308 wxString ss;
309 ss << _T("[") << (int) m_pCookies[nIndex] << _T("] = ") << Event.value << _T(" SIZE:") << Event.longValueSize;
310
311 wxLogDebug(ss);
312 */
313 return !!Event.value;
314 }
315
316 bool wxHIDDevice::HasElement(int nIndex)
317 {
318 return m_pCookies[nIndex] != NULL;
319 }
320
321 wxHIDDevice::~wxHIDDevice()
322 {
323 if (m_ppDevice != NULL)
324 {
325 if (m_ppQueue != NULL)
326 {
327 (*m_ppQueue)->stop(m_ppQueue);
328 (*m_ppQueue)->dispose(m_ppQueue);
329 (*m_ppQueue)->Release(m_ppQueue);
330 }
331 (*m_ppDevice)->close(m_ppDevice);
332 (*m_ppDevice)->Release(m_ppDevice);
333 mach_port_deallocate(mach_task_self(), m_pPort);
334 }
335
336 if (m_pCookies != NULL)
337 {
338 delete [] m_pCookies;
339 }
340 }
341
342 // ---------------------------------------------------------------------------
343 // wxHIDKeyboard
344 // ---------------------------------------------------------------------------
345
346 enum
347 {
348 WXK_RSHIFT = 400,
349 WXK_RALT,
350 WXK_RCONTROL,
351 WXK_RMENU
352
353 };
354
355 bool wxHIDKeyboard::Create()
356 {
357 return wxHIDDevice::Create(kHIDPage_GenericDesktop, kHIDUsage_GD_Keyboard);
358 }
359
360 void wxHIDKeyboard::BuildCookies(wxCFArray& Array)
361 {
362 Array = CFDictionaryGetValue((CFDictionaryRef)Array[0], CFSTR(kIOHIDElementKey));
363 InitCookies(500);
364 int i,
365 nUsage;
366 bool bEOTriggered = false;
367 for (i = 0; i < Array.Count(); ++i)
368 {
369 CFNumberGetValue(
370 (CFNumberRef) CFDictionaryGetValue((CFDictionaryRef) Array[i], CFSTR(kIOHIDElementUsageKey)),
371 kCFNumberLongType, &nUsage);
372
373 //
374 // OK, this is strange - basically this kind of strange -
375 // Starting from 0xEO these elements (like shift) appear twice in
376 // the array! The ones at the end are bogus I guess - the funny part
377 // is that besides the fact that the ones at the front have a Unit
378 // and UnitExponent key with a value of 0 and a different cookie value,
379 // there is no discernable difference between the two...
380 //
381 // Will the real shift please stand up?
382 //
383 // Something to spend a support request on, if I had one, LOL.
384 //
385 if(nUsage == 0xE0)
386 {
387 if(bEOTriggered)
388 break;
389 bEOTriggered = true;
390 }
391 /*
392 wxString msg;
393 int cookie;
394 CFNumberGetValue(
395 (CFNumberRef) CFDictionaryGetValue ( (CFDictionaryRef) Array[i]
396 , CFSTR(kIOHIDElementCookieKey)
397 ),
398 kCFNumberIntType,
399 &cookie
400 );
401
402 msg << wxT("KEY:") << nUsage << wxT("COOKIE:") << cookie;
403 wxLogDebug(msg);
404 */
405
406 if (nUsage >= kHIDUsage_KeyboardA && nUsage <= kHIDUsage_KeyboardZ)
407 AddCookie(Array[i], 'A' + (nUsage - kHIDUsage_KeyboardA) );
408 else if (nUsage >= kHIDUsage_Keyboard1 && nUsage <= kHIDUsage_Keyboard9)
409 AddCookie(Array[i], '1' + (nUsage - kHIDUsage_Keyboard1) );
410 else if (nUsage >= kHIDUsage_KeyboardF1 && nUsage <= kHIDUsage_KeyboardF12)
411 AddCookie(Array[i], WXK_F1 + (nUsage - kHIDUsage_KeyboardF1) );
412 else if (nUsage >= kHIDUsage_KeyboardF13 && nUsage <= kHIDUsage_KeyboardF24)
413 AddCookie(Array[i], WXK_F13 + (nUsage - kHIDUsage_KeyboardF13) );
414 else if (nUsage >= kHIDUsage_Keypad1 && nUsage <= kHIDUsage_Keypad9)
415 AddCookie(Array[i], WXK_NUMPAD1 + (nUsage - kHIDUsage_Keypad1) );
416 else switch (nUsage)
417 {
418 //0's (wx & ascii go 0-9, but HID goes 1-0)
419 case kHIDUsage_Keyboard0:
420 AddCookie(Array[i],'0');
421 break;
422 case kHIDUsage_Keypad0:
423 AddCookie(Array[i],WXK_NUMPAD0);
424 break;
425
426 //Basic
427 case kHIDUsage_KeyboardReturnOrEnter:
428 AddCookie(Array[i], WXK_RETURN);
429 break;
430 case kHIDUsage_KeyboardEscape:
431 AddCookie(Array[i], WXK_ESCAPE);
432 break;
433 case kHIDUsage_KeyboardDeleteOrBackspace:
434 AddCookie(Array[i], WXK_BACK);
435 break;
436 case kHIDUsage_KeyboardTab:
437 AddCookie(Array[i], WXK_TAB);
438 break;
439 case kHIDUsage_KeyboardSpacebar:
440 AddCookie(Array[i], WXK_SPACE);
441 break;
442 case kHIDUsage_KeyboardPageUp:
443 AddCookie(Array[i], WXK_PRIOR);
444 break;
445 case kHIDUsage_KeyboardEnd:
446 AddCookie(Array[i], WXK_END);
447 break;
448 case kHIDUsage_KeyboardPageDown:
449 AddCookie(Array[i], WXK_NEXT);
450 break;
451 case kHIDUsage_KeyboardRightArrow:
452 AddCookie(Array[i], WXK_RIGHT);
453 break;
454 case kHIDUsage_KeyboardLeftArrow:
455 AddCookie(Array[i], WXK_LEFT);
456 break;
457 case kHIDUsage_KeyboardDownArrow:
458 AddCookie(Array[i], WXK_DOWN);
459 break;
460 case kHIDUsage_KeyboardUpArrow:
461 AddCookie(Array[i], WXK_UP);
462 break;
463
464 //LEDS
465 case kHIDUsage_KeyboardCapsLock:
466 AddCookie(Array[i],WXK_CAPITAL);
467 break;
468 case kHIDUsage_KeypadNumLock:
469 AddCookie(Array[i],WXK_NUMLOCK);
470 break;
471 case kHIDUsage_KeyboardScrollLock:
472 AddCookie(Array[i],WXK_SCROLL);
473 break;
474
475 //Menu keys, Shift, other specials
476 case kHIDUsage_KeyboardLeftControl:
477 AddCookie(Array[i],WXK_CONTROL);
478 break;
479 case kHIDUsage_KeyboardLeftShift:
480 AddCookie(Array[i],WXK_SHIFT);
481 break;
482 case kHIDUsage_KeyboardLeftAlt:
483 AddCookie(Array[i],WXK_ALT);
484 break;
485 case kHIDUsage_KeyboardLeftGUI:
486 AddCookie(Array[i],WXK_MENU);
487 break;
488 case kHIDUsage_KeyboardRightControl:
489 AddCookie(Array[i],WXK_RCONTROL);
490 break;
491 case kHIDUsage_KeyboardRightShift:
492 AddCookie(Array[i],WXK_RSHIFT);
493 break;
494 case kHIDUsage_KeyboardRightAlt:
495 AddCookie(Array[i],WXK_RALT);
496 break;
497 case kHIDUsage_KeyboardRightGUI:
498 AddCookie(Array[i],WXK_RMENU);
499 break;
500
501 //Default
502 default:
503 //not in wx keycodes - do nothing....
504 break;
505 }
506 }
507 }//end buildcookies
508
509 //
510 // wxGetKeyState
511 //
512
513 #include "wx/utils.h"
514 #include "wx/module.h"
515
516 class wxHIDModule : public wxModule
517 {
518 DECLARE_DYNAMIC_CLASS(wxHIDModule)
519
520 public:
521 static wxHIDKeyboard* sm_keyboard;
522
523 virtual bool OnInit()
524 {
525 sm_keyboard = NULL;
526 return true;
527 }
528 virtual void OnExit()
529 {
530 if (sm_keyboard)
531 delete sm_keyboard;
532 }
533 };
534
535 IMPLEMENT_DYNAMIC_CLASS(wxHIDModule, wxModule)
536
537 wxHIDKeyboard* wxHIDModule::sm_keyboard;
538
539 bool wxGetKeyState (wxKeyCode key)
540 {
541 wxASSERT_MSG(key != WXK_LBUTTON && key != WXK_RBUTTON && key !=
542 WXK_MBUTTON, wxT("can't use wxGetKeyState() for mouse buttons"));
543
544 if (!wxHIDModule::sm_keyboard)
545 {
546 wxHIDModule::sm_keyboard = new wxHIDKeyboard();
547 bool bOK = wxHIDModule::sm_keyboard->Create();
548 wxASSERT(bOK);
549 if(!bOK)
550 {
551 delete wxHIDModule::sm_keyboard;
552 wxHIDModule::sm_keyboard = NULL;
553 return false;
554 }
555 }
556
557 switch(key)
558 {
559 case WXK_SHIFT:
560 return wxHIDModule::sm_keyboard->IsActive(WXK_SHIFT) ||
561 wxHIDModule::sm_keyboard->IsActive(WXK_RSHIFT);
562 break;
563 case WXK_ALT:
564 return wxHIDModule::sm_keyboard->IsActive(WXK_ALT) ||
565 wxHIDModule::sm_keyboard->IsActive(WXK_RALT);
566 break;
567 case WXK_CONTROL:
568 return wxHIDModule::sm_keyboard->IsActive(WXK_CONTROL) ||
569 wxHIDModule::sm_keyboard->IsActive(WXK_RCONTROL);
570 break;
571 case WXK_MENU:
572 return wxHIDModule::sm_keyboard->IsActive(WXK_MENU) ||
573 wxHIDModule::sm_keyboard->IsActive(WXK_RMENU);
574 break;
575 default:
576 return wxHIDModule::sm_keyboard->IsActive(key);
577 break;
578 }
579 }
580
581 #endif //__DARWIN__