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
3 // found in the LICENSE file.
5 #ifndef DEVICE_HID_HID_SERVICE_H_
6 #define DEVICE_HID_HID_SERVICE_H_
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/message_loop/message_loop.h"
15 #include "base/threading/thread_checker.h"
16 #include "device/hid/hid_device_info.h"
22 class HidService
: public base::MessageLoop::DestructionObserver
{
24 // Must be called on FILE thread.
25 static HidService
* GetInstance();
27 // Enumerates and returns a list of device identifiers.
28 virtual void GetDevices(std::vector
<HidDeviceInfo
>* devices
);
30 // Fills in a DeviceInfo struct with info for the given device_id.
31 // Returns |true| if successful or |false| if |device_id| is invalid.
32 bool GetDeviceInfo(const HidDeviceId
& device_id
, HidDeviceInfo
* info
) const;
34 virtual scoped_refptr
<HidConnection
> Connect(
35 const HidDeviceId
& device_id
) = 0;
37 // Implements base::MessageLoop::DestructionObserver
38 virtual void WillDestroyCurrentMessageLoop() OVERRIDE
;
41 friend struct base::DefaultDeleter
<HidService
>;
42 friend class HidConnectionTest
;
44 typedef std::map
<HidDeviceId
, HidDeviceInfo
> DeviceMap
;
47 virtual ~HidService();
49 static HidService
* CreateInstance();
51 void AddDevice(const HidDeviceInfo
& info
);
52 void RemoveDevice(const HidDeviceId
& device_id
);
54 base::ThreadChecker thread_checker_
;
59 DISALLOW_COPY_AND_ASSIGN(HidService
);
64 #endif // DEVICE_HID_HID_SERVICE_H_