forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathevent_utils.cc
364 lines (323 loc) · 11.7 KB
/
event_utils.cc
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
// Copyright (c) 2012 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.
#include "ui/events/event_utils.h"
#include <limits>
#include <map>
#include <vector>
#include "base/check.h"
#include "base/metrics/histogram_macros.h"
#include "base/notreached.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "ui/events/base_event_utils.h"
#if defined(OS_WIN)
#include "ui/events/win/events_win_utils.h"
#endif
namespace ui {
namespace {
int g_custom_event_types = ET_LAST;
#define UMA_HISTOGRAM_EVENT_LATENCY_TIMES(name, sample) \
UMA_HISTOGRAM_CUSTOM_TIMES(name, sample, \
base::TimeDelta::FromMilliseconds(1), \
base::TimeDelta::FromMinutes(1), 50)
} // namespace
std::unique_ptr<Event> EventFromNative(const PlatformEvent& native_event) {
std::unique_ptr<Event> event;
EventType type = EventTypeFromNative(native_event);
switch(type) {
case ET_KEY_PRESSED:
case ET_KEY_RELEASED:
event = std::make_unique<KeyEvent>(native_event);
break;
case ET_MOUSE_PRESSED:
case ET_MOUSE_DRAGGED:
case ET_MOUSE_RELEASED:
case ET_MOUSE_MOVED:
case ET_MOUSE_ENTERED:
case ET_MOUSE_EXITED:
event = std::make_unique<MouseEvent>(native_event);
break;
case ET_MOUSEWHEEL:
event = std::make_unique<MouseWheelEvent>(native_event);
break;
case ET_SCROLL_FLING_START:
case ET_SCROLL_FLING_CANCEL:
case ET_SCROLL:
event = std::make_unique<ScrollEvent>(native_event);
break;
case ET_TOUCH_RELEASED:
case ET_TOUCH_PRESSED:
case ET_TOUCH_MOVED:
case ET_TOUCH_CANCELLED:
event = std::make_unique<TouchEvent>(native_event);
break;
default:
break;
}
return event;
}
int RegisterCustomEventType() {
return ++g_custom_event_types;
}
bool ShouldDefaultToNaturalScroll() {
return GetInternalDisplayTouchSupport() ==
display::Display::TouchSupport::AVAILABLE;
}
display::Display::TouchSupport GetInternalDisplayTouchSupport() {
display::Screen* screen = display::Screen::GetScreen();
// No screen in some unit tests.
if (!screen)
return display::Display::TouchSupport::UNKNOWN;
const std::vector<display::Display>& displays = screen->GetAllDisplays();
for (auto it = displays.begin(); it != displays.end(); ++it) {
if (it->IsInternal())
return it->touch_support();
}
return display::Display::TouchSupport::UNAVAILABLE;
}
void ComputeEventLatencyOS(const PlatformEvent& native_event) {
base::TimeTicks current_time = EventTimeForNow();
base::TimeTicks time_stamp =
EventLatencyTimeFromNative(native_event, current_time);
EventType type = EventTypeFromNative(native_event);
ComputeEventLatencyOS(type, time_stamp, current_time);
}
void ComputeEventLatencyOS(EventType type,
base::TimeTicks time_stamp,
base::TimeTicks current_time) {
base::TimeDelta delta = current_time - time_stamp;
// TODO(crbug.com/1189656): Remove the legacy Event.Latency.OS.* histograms
// after M92 (which introduced Event.Latency.OS2.*) has been replaced in the
// stable channel.
switch (type) {
#if defined(OS_APPLE)
// On Mac, ET_SCROLL and ET_MOUSEWHEEL represent the same class of events.
case ET_SCROLL:
#endif
case ET_MOUSEWHEEL:
UMA_HISTOGRAM_CUSTOM_COUNTS(
"Event.Latency.OS.MOUSE_WHEEL",
base::saturated_cast<int>(delta.InMicroseconds()), 1, 1000000, 50);
UMA_HISTOGRAM_EVENT_LATENCY_TIMES("Event.Latency.OS2.MOUSE_WHEEL", delta);
return;
case ET_TOUCH_MOVED:
UMA_HISTOGRAM_CUSTOM_COUNTS(
"Event.Latency.OS.TOUCH_MOVED",
base::saturated_cast<int>(delta.InMicroseconds()), 1, 1000000, 50);
UMA_HISTOGRAM_EVENT_LATENCY_TIMES("Event.Latency.OS2.TOUCH_MOVED", delta);
return;
case ET_TOUCH_PRESSED:
UMA_HISTOGRAM_CUSTOM_COUNTS(
"Event.Latency.OS.TOUCH_PRESSED",
base::saturated_cast<int>(delta.InMicroseconds()), 1, 1000000, 50);
UMA_HISTOGRAM_EVENT_LATENCY_TIMES("Event.Latency.OS2.TOUCH_PRESSED",
delta);
return;
case ET_TOUCH_RELEASED:
UMA_HISTOGRAM_CUSTOM_COUNTS(
"Event.Latency.OS.TOUCH_RELEASED",
base::saturated_cast<int>(delta.InMicroseconds()), 1, 1000000, 50);
UMA_HISTOGRAM_EVENT_LATENCY_TIMES("Event.Latency.OS2.TOUCH_RELEASED",
delta);
return;
case ET_TOUCH_CANCELLED:
UMA_HISTOGRAM_CUSTOM_COUNTS(
"Event.Latency.OS.TOUCH_CANCELLED",
base::saturated_cast<int>(delta.InMicroseconds()), 1, 1000000, 50);
UMA_HISTOGRAM_EVENT_LATENCY_TIMES("Event.Latency.OS2.TOUCH_CANCELLED",
delta);
return;
case ET_KEY_PRESSED:
UMA_HISTOGRAM_CUSTOM_COUNTS(
"Event.Latency.OS.KEY_PRESSED",
base::saturated_cast<int>(delta.InMicroseconds()), 1, 1000000, 50);
UMA_HISTOGRAM_EVENT_LATENCY_TIMES("Event.Latency.OS2.KEY_PRESSED", delta);
return;
case ET_MOUSE_PRESSED:
UMA_HISTOGRAM_CUSTOM_COUNTS(
"Event.Latency.OS.MOUSE_PRESSED",
base::saturated_cast<int>(delta.InMicroseconds()), 1, 1000000, 50);
UMA_HISTOGRAM_EVENT_LATENCY_TIMES("Event.Latency.OS2.MOUSE_PRESSED",
delta);
return;
default:
return;
}
}
#if defined(OS_WIN)
void ComputeEventLatencyOSFromTOUCHINPUT(EventType event_type,
TOUCHINPUT touch_input,
base::TimeTicks current_time) {
base::TimeTicks time_stamp =
EventLatencyTimeFromTickClock(touch_input.dwTime, current_time);
ComputeEventLatencyOS(event_type, time_stamp, current_time);
}
void ComputeEventLatencyOSFromPOINTER_INFO(EventType event_type,
POINTER_INFO pointer_info,
base::TimeTicks current_time) {
base::TimeTicks time_stamp;
if (pointer_info.PerformanceCount) {
if (!base::TimeTicks::IsHighResolution()) {
// The tick clock will be incompatible with |event_time|.
return;
}
time_stamp =
EventLatencyTimeFromPerformanceCounter(pointer_info.PerformanceCount);
} else if (pointer_info.dwTime) {
time_stamp =
EventLatencyTimeFromTickClock(pointer_info.dwTime, current_time);
} else {
// Bad POINTER_INFO with no timestamp.
return;
}
ComputeEventLatencyOS(event_type, time_stamp, current_time);
}
#endif // defined(OS_WIN)
void ConvertEventLocationToTargetWindowLocation(
const gfx::Point& target_window_origin,
const gfx::Point& current_window_origin,
ui::LocatedEvent* located_event) {
if (current_window_origin == target_window_origin)
return;
DCHECK(located_event);
gfx::Vector2d offset = current_window_origin - target_window_origin;
gfx::PointF location_in_pixel_in_host =
located_event->location_f() + gfx::Vector2dF(offset);
located_event->set_location_f(location_in_pixel_in_host);
}
base::StringPiece EventTypeName(EventType type) {
if (type >= ET_LAST)
return "";
#define CASE_TYPE(t) \
case t: \
return #t
switch (type) {
CASE_TYPE(ET_UNKNOWN);
CASE_TYPE(ET_MOUSE_PRESSED);
CASE_TYPE(ET_MOUSE_DRAGGED);
CASE_TYPE(ET_MOUSE_RELEASED);
CASE_TYPE(ET_MOUSE_MOVED);
CASE_TYPE(ET_MOUSE_ENTERED);
CASE_TYPE(ET_MOUSE_EXITED);
CASE_TYPE(ET_KEY_PRESSED);
CASE_TYPE(ET_KEY_RELEASED);
CASE_TYPE(ET_MOUSEWHEEL);
CASE_TYPE(ET_MOUSE_CAPTURE_CHANGED);
CASE_TYPE(ET_TOUCH_RELEASED);
CASE_TYPE(ET_TOUCH_PRESSED);
CASE_TYPE(ET_TOUCH_MOVED);
CASE_TYPE(ET_TOUCH_CANCELLED);
CASE_TYPE(ET_DROP_TARGET_EVENT);
CASE_TYPE(ET_GESTURE_SCROLL_BEGIN);
CASE_TYPE(ET_GESTURE_SCROLL_END);
CASE_TYPE(ET_GESTURE_SCROLL_UPDATE);
CASE_TYPE(ET_GESTURE_SHOW_PRESS);
CASE_TYPE(ET_GESTURE_TAP);
CASE_TYPE(ET_GESTURE_TAP_DOWN);
CASE_TYPE(ET_GESTURE_TAP_CANCEL);
CASE_TYPE(ET_GESTURE_BEGIN);
CASE_TYPE(ET_GESTURE_END);
CASE_TYPE(ET_GESTURE_TWO_FINGER_TAP);
CASE_TYPE(ET_GESTURE_PINCH_BEGIN);
CASE_TYPE(ET_GESTURE_PINCH_END);
CASE_TYPE(ET_GESTURE_PINCH_UPDATE);
CASE_TYPE(ET_GESTURE_LONG_PRESS);
CASE_TYPE(ET_GESTURE_LONG_TAP);
CASE_TYPE(ET_GESTURE_SWIPE);
CASE_TYPE(ET_GESTURE_TAP_UNCONFIRMED);
CASE_TYPE(ET_GESTURE_DOUBLE_TAP);
CASE_TYPE(ET_SCROLL);
CASE_TYPE(ET_SCROLL_FLING_START);
CASE_TYPE(ET_SCROLL_FLING_CANCEL);
CASE_TYPE(ET_CANCEL_MODE);
CASE_TYPE(ET_UMA_DATA);
case ET_LAST:
NOTREACHED();
return "";
// Don't include default, so that we get an error when new type is added.
}
#undef CASE_TYPE
NOTREACHED();
return "";
}
std::vector<base::StringPiece> EventFlagsNames(int event_flags) {
std::vector<base::StringPiece> names;
names.reserve(5); // Seems like a good starting point.
if (!event_flags) {
names.push_back("NONE");
return names;
}
if (event_flags & EF_IS_SYNTHESIZED)
names.push_back("IS_SYNTHESIZED");
if (event_flags & EF_SHIFT_DOWN)
names.push_back("SHIFT_DOWN");
if (event_flags & EF_CONTROL_DOWN)
names.push_back("CONTROL_DOWN");
if (event_flags & EF_ALT_DOWN)
names.push_back("ALT_DOWN");
if (event_flags & EF_COMMAND_DOWN)
names.push_back("COMMAND_DOWN");
if (event_flags & EF_ALTGR_DOWN)
names.push_back("ALTGR_DOWN");
if (event_flags & EF_MOD3_DOWN)
names.push_back("MOD3_DOWN");
if (event_flags & EF_NUM_LOCK_ON)
names.push_back("NUM_LOCK_ON");
if (event_flags & EF_CAPS_LOCK_ON)
names.push_back("CAPS_LOCK_ON");
if (event_flags & EF_SCROLL_LOCK_ON)
names.push_back("SCROLL_LOCK_ON");
if (event_flags & EF_LEFT_MOUSE_BUTTON)
names.push_back("LEFT_MOUSE_BUTTON");
if (event_flags & EF_MIDDLE_MOUSE_BUTTON)
names.push_back("MIDDLE_MOUSE_BUTTON");
if (event_flags & EF_RIGHT_MOUSE_BUTTON)
names.push_back("RIGHT_MOUSE_BUTTON");
if (event_flags & EF_BACK_MOUSE_BUTTON)
names.push_back("BACK_MOUSE_BUTTON");
if (event_flags & EF_FORWARD_MOUSE_BUTTON)
names.push_back("FORWARD_MOUSE_BUTTON");
return names;
}
std::vector<base::StringPiece> KeyEventFlagsNames(int event_flags) {
std::vector<base::StringPiece> names = EventFlagsNames(event_flags);
if (!event_flags)
return names;
if (event_flags & EF_IME_FABRICATED_KEY)
names.push_back("IME_FABRICATED_KEY");
if (event_flags & EF_IS_REPEAT)
names.push_back("IS_REPEAT");
if (event_flags & EF_FINAL)
names.push_back("FINAL");
if (event_flags & EF_IS_EXTENDED_KEY)
names.push_back("IS_EXTENDED_KEY");
if (event_flags & EF_IS_STYLUS_BUTTON)
names.push_back("IS_STYLUS_BUTTON");
return names;
}
std::vector<base::StringPiece> MouseEventFlagsNames(int event_flags) {
std::vector<base::StringPiece> names = EventFlagsNames(event_flags);
if (!event_flags)
return names;
if (event_flags & EF_IS_DOUBLE_CLICK)
names.push_back("IS_DOUBLE_CLICK");
if (event_flags & EF_IS_TRIPLE_CLICK)
names.push_back("IS_TRIPLE_CLICK");
if (event_flags & EF_IS_NON_CLIENT)
names.push_back("IS_NON_CLIENT");
if (event_flags & EF_FROM_TOUCH)
names.push_back("FROM_TOUCH");
if (event_flags & EF_TOUCH_ACCESSIBILITY)
names.push_back("TOUCH_ACCESSIBILITY");
if (event_flags & EF_CURSOR_HIDE)
names.push_back("CURSOR_HIDE");
if (event_flags & EF_PRECISION_SCROLLING_DELTA)
names.push_back("PRECISION_SCROLLING_DELTA");
if (event_flags & EF_SCROLL_BY_PAGE)
names.push_back("SCROLL_BY_PAGE");
if (event_flags & EF_UNADJUSTED_MOUSE)
names.push_back("UNADJUSTED_MOUSE");
return names;
}
} // namespace ui