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 UI_EVENTS_OZONE_EVDEV_TOUCH_EVENT_CONVERTER_EVDEV_H_
6 #define UI_EVENTS_OZONE_EVDEV_TOUCH_EVENT_CONVERTER_EVDEV_H_
10 #include "base/compiler_specific.h"
11 #include "base/files/file_path.h"
12 #include "base/message_loop/message_pump_libevent.h"
13 #include "ui/events/event_constants.h"
14 #include "ui/events/ozone/evdev/event_converter_evdev.h"
15 #include "ui/events/ozone/evdev/event_device_info.h"
16 #include "ui/events/ozone/evdev/events_ozone_evdev_export.h"
22 class EVENTS_OZONE_EVDEV_EXPORT TouchEventConverterEvdev
23 : public EventConverterEvdev
,
24 public base::MessagePumpLibevent::Watcher
{
29 TouchEventConverterEvdev(int fd
,
31 const EventDeviceInfo
& info
,
32 const EventDispatchCallback
& dispatch
);
33 virtual ~TouchEventConverterEvdev();
35 // Start & stop watching for events.
36 virtual void Start() OVERRIDE
;
37 virtual void Stop() OVERRIDE
;
40 friend class MockTouchEventConverterEvdev
;
42 // Unsafe part of initialization.
43 void Init(const EventDeviceInfo
& info
);
45 // Overidden from base::MessagePumpLibevent::Watcher.
46 virtual void OnFileCanReadWithoutBlocking(int fd
) OVERRIDE
;
47 virtual void OnFileCanWriteWithoutBlocking(int fd
) OVERRIDE
;
49 virtual bool Reinitialize();
51 void ProcessInputEvent(const input_event
& input
);
52 void ProcessAbs(const input_event
& input
);
53 void ProcessSyn(const input_event
& input
);
55 void ReportEvents(base::TimeDelta delta
);
57 // Set if we have seen a SYN_DROPPED and not yet re-synced with the device.
60 // Set if this is a type A device (uses SYN_MT_REPORT).
65 int pressure_max_
; // Used to normalize pressure values.
67 // Input range for x-axis.
71 // Input range for y-axis.
75 // Output range for x-axis.
79 // Output range for y-axis.
83 // Touch point currently being updated from the /dev/input/event* stream.
86 // File descriptor for the /dev/input/event* instance.
89 // Path to input device.
92 // Bit field tracking which in-progress touch points have been modified
93 // without a syn event.
94 std::bitset
<MAX_FINGERS
> altered_slots_
;
96 struct InProgressEvents
{
99 int id_
; // Device reported "unique" touch point id; -1 means not active
100 int finger_
; // "Finger" id starting from 0; -1 means not active
108 // In-progress touch points.
109 InProgressEvents events_
[MAX_FINGERS
];
111 // Controller for watching the input fd.
112 base::MessagePumpLibevent::FileDescriptorWatcher controller_
;
114 DISALLOW_COPY_AND_ASSIGN(TouchEventConverterEvdev
);
119 #endif // UI_EVENTS_OZONE_EVDEV_TOUCH_EVENT_CONVERTER_EVDEV_H_