| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef DEVICE_HID_HID_SERVICE_MAC_H_ | 5 #ifndef DEVICE_HID_HID_SERVICE_MAC_H_ |
| 6 #define DEVICE_HID_HID_SERVICE_MAC_H_ | 6 #define DEVICE_HID_HID_SERVICE_MAC_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <CoreFoundation/CoreFoundation.h> |
| 9 #include <IOKit/hid/IOHIDManager.h> |
| 9 #include <string> | 10 #include <string> |
| 10 #include <vector> | |
| 11 | 11 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/mac/foundation_util.h" | 12 #include "base/mac/foundation_util.h" |
| 14 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/singleton.h" | |
| 16 #include "base/message_loop/message_loop.h" | |
| 17 #include "base/strings/string16.h" | |
| 18 #include "base/synchronization/waitable_event.h" | |
| 19 #include "base/threading/thread.h" | |
| 20 #include "base/threading/thread_checker.h" | |
| 21 #include "build/build_config.h" | |
| 22 #include "device/hid/hid_device_info.h" | |
| 23 #include "device/hid/hid_service.h" | 14 #include "device/hid/hid_service.h" |
| 24 | 15 |
| 25 #include <CoreFoundation/CoreFoundation.h> | 16 namespace base { |
| 26 #include <IOKit/hid/IOHIDManager.h> | 17 class MessageLoopProxy; |
| 18 } |
| 27 | 19 |
| 28 namespace device { | 20 namespace device { |
| 29 | 21 |
| 30 class HidConnection; | 22 class HidConnection; |
| 31 class HidService; | |
| 32 | 23 |
| 33 class HidServiceMac : public HidService { | 24 class HidServiceMac : public HidService { |
| 34 public: | 25 public: |
| 35 HidServiceMac(); | 26 HidServiceMac(); |
| 36 | 27 |
| 37 virtual scoped_refptr<HidConnection> Connect(std::string device_id) OVERRIDE; | 28 virtual scoped_refptr<HidConnection> Connect(const std::string& device_id) |
| 29 OVERRIDE; |
| 38 | 30 |
| 39 private: | 31 private: |
| 40 virtual ~HidServiceMac(); | 32 virtual ~HidServiceMac(); |
| 41 | 33 |
| 42 void ScheduleRunLoop(); | 34 void StartWatchingDevices(); |
| 43 void UnscheduleRunLoop(); | 35 void StopWatchingDevices(); |
| 44 | 36 |
| 45 // Device changing callbacks. | 37 // Device changing callbacks. |
| 46 static void AddDeviceCallback(void* context, | 38 static void AddDeviceCallback(void* context, |
| 47 IOReturn result, | 39 IOReturn result, |
| 48 void* sender, | 40 void* sender, |
| 49 IOHIDDeviceRef ref); | 41 IOHIDDeviceRef hid_device); |
| 50 static void RemoveDeviceCallback(void* context, | 42 static void RemoveDeviceCallback(void* context, |
| 51 IOReturn result, | 43 IOReturn result, |
| 52 void* sender, | 44 void* sender, |
| 53 IOHIDDeviceRef ref); | 45 IOHIDDeviceRef hid_device); |
| 54 static HidServiceMac* InstanceFromContext(void* context); | |
| 55 | 46 |
| 56 IOHIDDeviceRef FindDevice(std::string id); | 47 IOHIDDeviceRef FindDevice(const std::string& device_id); |
| 57 | 48 |
| 58 void Enumerate(); | 49 void Enumerate(); |
| 59 | 50 |
| 60 void PlatformAddDevice(IOHIDDeviceRef ref); | 51 void PlatformAddDevice(IOHIDDeviceRef hid_device); |
| 61 void PlatformRemoveDevice(IOHIDDeviceRef ref); | 52 void PlatformRemoveDevice(IOHIDDeviceRef hid_device); |
| 62 | |
| 63 // The message loop this object belongs to. | |
| 64 scoped_refptr<base::MessageLoopProxy> message_loop_; | |
| 65 | 53 |
| 66 // Platform HID Manager | 54 // Platform HID Manager |
| 67 base::ScopedCFTypeRef<IOHIDManagerRef> hid_manager_ref_; | 55 base::ScopedCFTypeRef<IOHIDManagerRef> hid_manager_; |
| 68 | 56 |
| 69 // Enumeration thread. | 57 // The message loop for the thread on which this service was created. |
| 70 scoped_ptr<base::Thread> enumeration_runloop_thread_; | 58 scoped_refptr<base::MessageLoopProxy> message_loop_; |
| 71 CFRunLoopRef enumeration_runloop_; | |
| 72 base::WaitableEvent enumeration_runloop_init_; | |
| 73 | |
| 74 bool available_; | |
| 75 | 59 |
| 76 DISALLOW_COPY_AND_ASSIGN(HidServiceMac); | 60 DISALLOW_COPY_AND_ASSIGN(HidServiceMac); |
| 77 }; | 61 }; |
| 78 | 62 |
| 79 } // namespace device | 63 } // namespace device |
| 80 | 64 |
| 81 #endif // DEVICE_HID_HID_SERVICE_MAC_H_ | 65 #endif // DEVICE_HID_HID_SERVICE_MAC_H_ |
| OLD | NEW |