blob: 20abc9c5d7d201132f095a661fa46a4a399efff4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
--- device/hid/hid_connection_freebsd.h.orig 2017-12-03 15:37:32.155357000 -0800
+++ device/hid/hid_connection_freebsd.h 2017-12-03 15:37:32.159062000 -0800
@@ -0,0 +1,76 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DEVICE_HID_HID_CONNECTION_FREEBSD_H_
+#define DEVICE_HID_HID_CONNECTION_FREEBSD_H_
+
+#include <stddef.h>
+#include <stdint.h>
+
+#include <queue>
+
+#include "base/files/scoped_file.h"
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "base/sequence_checker.h"
+#include "device/hid/hid_connection.h"
+
+namespace base {
+class SequencedTaskRunner;
+}
+
+namespace net {
+class IOBuffer;
+}
+
+namespace device {
+
+class HidConnectionFreeBSD : public HidConnection {
+ public:
+ HidConnectionFreeBSD(
+ scoped_refptr<HidDeviceInfo> device_info,
+ base::ScopedFD fd,
+ scoped_refptr<base::SequencedTaskRunner> blocking_task_runner);
+
+ private:
+ friend class base::RefCountedThreadSafe<HidConnectionFreeBSD>;
+ class BlockingTaskHelper;
+
+ ~HidConnectionFreeBSD() override;
+
+ // HidConnection implementation.
+ void PlatformClose() override;
+ void PlatformRead(const ReadCallback& callback) override;
+ void PlatformWrite(scoped_refptr<net::IOBuffer> buffer,
+ size_t size,
+ const WriteCallback& callback) override;
+ void PlatformGetFeatureReport(uint8_t report_id,
+ const ReadCallback& callback) override;
+ void PlatformSendFeatureReport(scoped_refptr<net::IOBuffer> buffer,
+ size_t size,
+ const WriteCallback& callback) override;
+ void ProcessInputReport(scoped_refptr<net::IOBuffer> buffer, size_t size);
+ void ProcessReadQueue();
+
+ // |helper_| lives on the sequence to which |blocking_task_runner_| posts
+ // tasks so all calls must be posted there including this object's
+ // destruction.
+ std::unique_ptr<BlockingTaskHelper> helper_;
+
+ const scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
+
+ std::queue<PendingHidReport> pending_reports_;
+ std::queue<PendingHidRead> pending_reads_;
+ const scoped_refptr<base::SequencedTaskRunner> task_runner_;
+
+ SEQUENCE_CHECKER(sequence_checker_);
+
+ base::WeakPtrFactory<HidConnectionFreeBSD> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(HidConnectionFreeBSD);
+};
+
+} // namespace device
+
+#endif // DEVICE_HID_HID_CONNECTION_FREEBSD_H_
|