Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / device / hid / hid_connection_linux.h
1 // Copyright (c) 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.
4
5 #ifndef DEVICE_HID_HID_CONNECTION_LINUX_H_
6 #define DEVICE_HID_HID_CONNECTION_LINUX_H_
7
8 #include <queue>
9
10 #include "base/files/file.h"
11 #include "base/message_loop/message_pump_libevent.h"
12 #include "device/hid/hid_connection.h"
13
14 namespace device {
15
16 class HidConnectionLinux : public HidConnection,
17                            public base::MessagePumpLibevent::Watcher {
18  public:
19   HidConnectionLinux(HidDeviceInfo device_info, std::string dev_node);
20
21  private:
22   friend class base::RefCountedThreadSafe<HidConnectionLinux>;
23   ~HidConnectionLinux() override;
24
25   // HidConnection implementation.
26   void PlatformClose() override;
27   void PlatformRead(const ReadCallback& callback) override;
28   void PlatformWrite(scoped_refptr<net::IOBuffer> buffer,
29                      size_t size,
30                      const WriteCallback& callback) override;
31   void PlatformGetFeatureReport(uint8_t report_id,
32                                 const ReadCallback& callback) override;
33   void PlatformSendFeatureReport(scoped_refptr<net::IOBuffer> buffer,
34                                  size_t size,
35                                  const WriteCallback& callback) override;
36
37   // base::MessagePumpLibevent::Watcher implementation.
38   void OnFileCanReadWithoutBlocking(int fd) override;
39   void OnFileCanWriteWithoutBlocking(int fd) override;
40
41   void Disconnect();
42
43   void Flush();
44   void ProcessInputReport(scoped_refptr<net::IOBuffer> buffer, size_t size);
45   void ProcessReadQueue();
46
47   base::File device_file_;
48   base::MessagePumpLibevent::FileDescriptorWatcher device_file_watcher_;
49
50   std::queue<PendingHidReport> pending_reports_;
51   std::queue<PendingHidRead> pending_reads_;
52
53   DISALLOW_COPY_AND_ASSIGN(HidConnectionLinux);
54 };
55
56 }  // namespace device
57
58 #endif  // DEVICE_HID_HID_CONNECTION_LINUX_H_