|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2022 - Raw Material Software Limited
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- By using JUCE, you agree to the terms of both the JUCE 7 End-User License
- Agreement and JUCE Privacy Policy.
-
- End User License Agreement: www.juce.com/juce-7-licence
- Privacy Policy: www.juce.com/juce-privacy-policy
-
- Or: You may also use this code under the terms of the GPL v3 (see
- www.gnu.org/licenses).
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- namespace juce
- {
-
- AppleRemoteDevice::AppleRemoteDevice()
- : device (nullptr),
- queue (nullptr),
- remoteId (0)
- {
- }
-
- AppleRemoteDevice::~AppleRemoteDevice()
- {
- stop();
- }
-
- namespace
- {
- io_object_t getAppleRemoteDevice()
- {
- CFMutableDictionaryRef dict = IOServiceMatching ("AppleIRController");
-
- io_iterator_t iter = 0;
- io_object_t iod = 0;
-
- const auto defaultPort = []
- {
- #if defined (MAC_OS_VERSION_12_0) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_VERSION_12_0
- if (@available (macOS 12.0, *))
- return kIOMainPortDefault;
- #endif
-
- JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wdeprecated-declarations")
- return kIOMasterPortDefault;
- JUCE_END_IGNORE_WARNINGS_GCC_LIKE
- }();
-
- if (IOServiceGetMatchingServices (defaultPort, dict, &iter) == kIOReturnSuccess
- && iter != 0)
- {
- iod = IOIteratorNext (iter);
- }
-
- IOObjectRelease (iter);
- return iod;
- }
-
- bool createAppleRemoteInterface (io_object_t iod, void** device)
- {
- jassert (*device == nullptr);
- io_name_t classname;
-
- if (IOObjectGetClass (iod, classname) == kIOReturnSuccess)
- {
- IOCFPlugInInterface** cfPlugInInterface = nullptr;
- SInt32 score = 0;
-
- if (IOCreatePlugInInterfaceForService (iod,
- kIOHIDDeviceUserClientTypeID,
- kIOCFPlugInInterfaceID,
- &cfPlugInInterface,
- &score) == kIOReturnSuccess)
- {
- HRESULT hr = (*cfPlugInInterface)->QueryInterface (cfPlugInInterface,
- CFUUIDGetUUIDBytes (kIOHIDDeviceInterfaceID),
- device);
-
- ignoreUnused (hr);
-
- (*cfPlugInInterface)->Release (cfPlugInInterface);
- }
- }
-
- return *device != nullptr;
- }
-
- void appleRemoteQueueCallback (void* const target, const IOReturn result, void*, void*)
- {
- if (result == kIOReturnSuccess)
- ((AppleRemoteDevice*) target)->handleCallbackInternal();
- }
- }
-
- bool AppleRemoteDevice::start (const bool inExclusiveMode)
- {
- if (queue != nullptr)
- return true;
-
- stop();
-
- bool result = false;
- io_object_t iod = getAppleRemoteDevice();
-
- if (iod != 0)
- {
- if (createAppleRemoteInterface (iod, &device) && open (inExclusiveMode))
- result = true;
- else
- stop();
-
- IOObjectRelease (iod);
- }
-
- return result;
- }
-
- void AppleRemoteDevice::stop()
- {
- if (queue != nullptr)
- {
- (*(IOHIDQueueInterface**) queue)->stop ((IOHIDQueueInterface**) queue);
- (*(IOHIDQueueInterface**) queue)->dispose ((IOHIDQueueInterface**) queue);
- (*(IOHIDQueueInterface**) queue)->Release ((IOHIDQueueInterface**) queue);
- queue = nullptr;
- }
-
- if (device != nullptr)
- {
- (*(IOHIDDeviceInterface**) device)->close ((IOHIDDeviceInterface**) device);
- (*(IOHIDDeviceInterface**) device)->Release ((IOHIDDeviceInterface**) device);
- device = nullptr;
- }
- }
-
- bool AppleRemoteDevice::isActive() const
- {
- return queue != nullptr;
- }
-
- bool AppleRemoteDevice::open (const bool openInExclusiveMode)
- {
- Array<int> cookies;
-
- CFObjectHolder<CFArrayRef> elements;
- auto device122 = (IOHIDDeviceInterface122**) device;
-
- if ((*device122)->copyMatchingElements (device122, nullptr, &elements.object) != kIOReturnSuccess)
- return false;
-
- for (int i = 0; i < CFArrayGetCount (elements.object); ++i)
- {
- auto element = (CFDictionaryRef) CFArrayGetValueAtIndex (elements.object, i);
-
- // get the cookie
- CFTypeRef object = CFDictionaryGetValue (element, CFSTR (kIOHIDElementCookieKey));
-
- if (object == nullptr || CFGetTypeID (object) != CFNumberGetTypeID())
- continue;
-
- long number;
- if (! CFNumberGetValue ((CFNumberRef) object, kCFNumberLongType, &number))
- continue;
-
- cookies.add ((int) number);
- }
-
- if ((*(IOHIDDeviceInterface**) device)
- ->open ((IOHIDDeviceInterface**) device,
- openInExclusiveMode ? kIOHIDOptionsTypeSeizeDevice
- : kIOHIDOptionsTypeNone) == KERN_SUCCESS)
- {
- queue = (*(IOHIDDeviceInterface**) device)->allocQueue ((IOHIDDeviceInterface**) device);
-
- if (queue != nullptr)
- {
- (*(IOHIDQueueInterface**) queue)->create ((IOHIDQueueInterface**) queue, 0, 12);
-
- for (int i = 0; i < cookies.size(); ++i)
- {
- IOHIDElementCookie cookie = (IOHIDElementCookie) cookies.getUnchecked(i);
- (*(IOHIDQueueInterface**) queue)->addElement ((IOHIDQueueInterface**) queue, cookie, 0);
- }
-
- CFRunLoopSourceRef eventSource;
-
- if ((*(IOHIDQueueInterface**) queue)
- ->createAsyncEventSource ((IOHIDQueueInterface**) queue, &eventSource) == KERN_SUCCESS)
- {
- if ((*(IOHIDQueueInterface**) queue)->setEventCallout ((IOHIDQueueInterface**) queue,
- appleRemoteQueueCallback, this, nullptr) == KERN_SUCCESS)
- {
- CFRunLoopAddSource (CFRunLoopGetCurrent(), eventSource, kCFRunLoopDefaultMode);
-
- (*(IOHIDQueueInterface**) queue)->start ((IOHIDQueueInterface**) queue);
-
- return true;
- }
- }
- }
- }
-
- return false;
- }
-
- void AppleRemoteDevice::handleCallbackInternal()
- {
- int totalValues = 0;
- AbsoluteTime nullTime = { 0, 0 };
- char cookies [12];
- int numCookies = 0;
-
- while (numCookies < numElementsInArray (cookies))
- {
- IOHIDEventStruct e;
-
- if ((*(IOHIDQueueInterface**) queue)->getNextEvent ((IOHIDQueueInterface**) queue, &e, nullTime, 0) != kIOReturnSuccess)
- break;
-
- if ((int) e.elementCookie == 19)
- {
- remoteId = e.value;
- buttonPressed (switched, false);
- }
- else
- {
- totalValues += e.value;
- cookies [numCookies++] = (char) (pointer_sized_int) e.elementCookie;
- }
- }
-
- cookies [numCookies++] = 0;
-
- static const char buttonPatterns[] =
- {
- 0x1f, 0x14, 0x12, 0x1f, 0x14, 0x12, 0,
- 0x1f, 0x15, 0x12, 0x1f, 0x15, 0x12, 0,
- 0x1f, 0x1d, 0x1c, 0x12, 0,
- 0x1f, 0x1e, 0x1c, 0x12, 0,
- 0x1f, 0x16, 0x12, 0x1f, 0x16, 0x12, 0,
- 0x1f, 0x17, 0x12, 0x1f, 0x17, 0x12, 0,
- 0x1f, 0x12, 0x04, 0x02, 0,
- 0x1f, 0x12, 0x03, 0x02, 0,
- 0x1f, 0x12, 0x1f, 0x12, 0,
- 0x23, 0x1f, 0x12, 0x23, 0x1f, 0x12, 0,
- 19, 0
- };
-
- int buttonNum = (int) menuButton;
- int i = 0;
-
- while (i < numElementsInArray (buttonPatterns))
- {
- if (strcmp (cookies, buttonPatterns + i) == 0)
- {
- buttonPressed ((ButtonType) buttonNum, totalValues > 0);
- break;
- }
-
- i += (int) strlen (buttonPatterns + i) + 1;
- ++buttonNum;
- }
- }
-
- } // namespace juce
|