forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions_parser.cc
778 lines (701 loc) · 25.7 KB
/
actions_parser.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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
// Copyright (c) 2016 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 "content/common/input/actions_parser.h"
#include <utility>
#include "base/format_macros.h"
#include "base/strings/string_split.h"
#include "base/strings/stringprintf.h"
#include "base/values.h"
#include "components/viz/common/frame_sinks/begin_frame_args.h"
#include "content/common/input/input_injector.mojom.h"
#include "content/common/input/synthetic_smooth_scroll_gesture_params.h"
#include "ui/events/types/scroll_types.h"
using Button = content::SyntheticPointerActionParams::Button;
using PointerActionType =
content::SyntheticPointerActionParams::PointerActionType;
namespace content {
namespace {
PointerActionType ToSyntheticPointerActionType(const std::string& action_type) {
if (action_type == "pointerDown")
return PointerActionType::PRESS;
if (action_type == "pointerMove")
return PointerActionType::MOVE;
if (action_type == "pointerUp")
return PointerActionType::RELEASE;
if (action_type == "pointerLeave")
return PointerActionType::LEAVE;
if (action_type == "pause")
return PointerActionType::IDLE;
return PointerActionType::NOT_INITIALIZED;
}
content::mojom::GestureSourceType ToSyntheticGestureSourceType(
const std::string& pointer_type) {
if (pointer_type == "touch")
return content::mojom::GestureSourceType::kTouchInput;
else if (pointer_type == "mouse")
return content::mojom::GestureSourceType::kMouseInput;
else if (pointer_type == "pen")
return content::mojom::GestureSourceType::kPenInput;
return content::mojom::GestureSourceType::kDefaultInput;
}
Button ToSyntheticMouseButton(int button) {
if (button == 0)
return Button::LEFT;
if (button == 1)
return Button::MIDDLE;
if (button == 2)
return Button::RIGHT;
if (button == 3)
return Button::BACK;
if (button == 4)
return Button::FORWARD;
NOTREACHED() << "Unexpected button";
return Button();
}
int ToKeyModifiers(const std::string& key) {
if (key == "Alt")
return blink::WebInputEvent::kAltKey;
if (key == "Control")
return blink::WebInputEvent::kControlKey;
if (key == "Meta")
return blink::WebInputEvent::kMetaKey;
if (key == "Shift")
return blink::WebInputEvent::kShiftKey;
if (key == "CapsLock")
return blink::WebInputEvent::kCapsLockOn;
if (key == "NumLock")
return blink::WebInputEvent::kNumLockOn;
if (key == "AltGraph")
return blink::WebInputEvent::kAltGrKey;
return 0;
}
} // namespace
ActionsParser::ActionsParser(base::Value action_sequence_list)
: action_sequence_list_(std::move(action_sequence_list)) {
// We have two different JSON formats from testdriver Action API or
// gpuBenchmarking.pointerActionSequence. Below we are deciding where the
// action sequence list comes from.
if (action_sequence_list_.is_list() &&
action_sequence_list_.GetList().size() > 0) {
use_testdriver_api_ =
ActionsDictionaryUsesTestDriverApi(action_sequence_list_.GetList()[0]);
}
}
ActionsParser::~ActionsParser() {}
bool ActionsParser::Parse() {
if (!action_sequence_list_.is_list() ||
action_sequence_list_.GetList().size() == 0) {
error_message_ =
std::string("provided action sequence list is not a list or is empty");
return false;
}
for (const auto& action_sequence : action_sequence_list_.GetList()) {
if (!action_sequence.is_dict()) {
error_message_ =
std::string("Expected ActionSequence is not a dictionary");
return false;
}
if (use_testdriver_api_) {
if (!ParseTestDriverActionSequence(action_sequence))
return false;
} else {
if (!ParseGpuBenchmarkingActionSequence(action_sequence))
return false;
}
}
if (source_type_ == "wheel")
return true;
gesture_params_ = std::make_unique<SyntheticPointerActionListParams>();
SyntheticPointerActionListParams* pointer_actions =
static_cast<SyntheticPointerActionListParams*>(gesture_params_.get());
pointer_actions->gesture_source_type =
ToSyntheticGestureSourceType(pointer_type_);
// Group a list of actions from all pointers into a
// SyntheticPointerActionListParams object, which is a list of actions, which
// will be dispatched together.
for (size_t index = 0; index < longest_action_sequence_; ++index) {
SyntheticPointerActionListParams::ParamList param_list;
size_t longest_pause_frame = 0;
for (const auto& pointer_action_list : pointer_actions_lists_) {
if (index < pointer_action_list.size()) {
param_list.push_back(pointer_action_list[index]);
if (pointer_action_list[index].pointer_action_type() ==
PointerActionType::IDLE) {
size_t num_pause_frame = static_cast<size_t>(std::ceil(
pointer_action_list[index].duration().InMilliseconds() /
viz::BeginFrameArgs::DefaultInterval().InMilliseconds()));
longest_pause_frame = std::max(longest_pause_frame, num_pause_frame);
}
}
}
pointer_actions->PushPointerActionParamsList(param_list);
for (size_t pause_index = 1; pause_index < longest_pause_frame;
++pause_index) {
SyntheticPointerActionListParams::ParamList pause_param_list;
SyntheticPointerActionParams pause_action_param(PointerActionType::IDLE);
for (size_t i = 0; i < param_list.size(); ++i) {
pause_param_list.push_back(pause_action_param);
}
pointer_actions->PushPointerActionParamsList(pause_param_list);
}
}
return true;
}
bool ActionsParser::ActionsDictionaryUsesTestDriverApi(
const base::Value& action_sequence) {
// If the JSON format of each action_sequence has "type" element, it is from
// the new Action API, otherwise it is from
// gpuBenchmarking.pointerActionSequence API. We have to keep both formats
// for now, but later on once we switch to the new Action API in all tests,
// we will remove the old format.
if (action_sequence.FindKey("type"))
return true;
return false;
}
bool ActionsParser::ParseGpuBenchmarkingActionSequence(
const base::Value& action_sequence) {
// The GpuBenchmarking format is implicitly for pointers only and for
// historic reasons, the "source" key refers to what TestDriver calls the
// pointer_type_.
source_type_ = "pointer";
if (use_testdriver_api_ !=
ActionsDictionaryUsesTestDriverApi(action_sequence)) {
error_message_ = std::string(
"all action sequences must be of the same gpuBenchmarking format");
return false;
}
const std::string* pointer_type = action_sequence.FindStringKey("source");
if (!pointer_type) {
error_message_ = std::string("source type is not defined or not a string");
return false;
}
if (*pointer_type != "touch" && *pointer_type != "mouse" &&
*pointer_type != "pen") {
error_message_ = base::StringPrintf(
"source type %s is an unsupported input type", (*pointer_type).c_str());
return false;
}
if (pointer_type_.empty()) {
pointer_type_ = *pointer_type;
} else if (pointer_type_ != *pointer_type) {
error_message_ =
std::string("currently multiple input types are not not supported");
return false;
}
if (*pointer_type != "touch" && input_source_count_ > 0) {
error_message_ = std::string(
"for source type of mouse and pen, we only support one device "
"in one sequence");
return false;
}
const base::Value* actions =
action_sequence.FindKeyOfType("actions", base::Value::Type::LIST);
if (!actions) {
error_message_ = base::StringPrintf(
"action_sequence[%zu].actions is not defined or not a list",
action_index_);
return false;
} else if (actions->GetList().size() == 0) {
error_message_ = base::StringPrintf(
"action_sequence[%zu].actions is an empty list", action_index_);
return false;
}
if (!ParseActionItemList(*actions, "pointer"))
return false;
input_source_count_++;
return true;
}
bool ActionsParser::ParseTestDriverActionSequence(
const base::Value& action_sequence) {
if (use_testdriver_api_ !=
ActionsDictionaryUsesTestDriverApi(action_sequence)) {
error_message_ = std::string(
"all action sequences must be of the same TestDriver format");
return false;
}
const std::string* source_type = action_sequence.FindStringKey("type");
if (!source_type) {
error_message_ =
std::string("input source type is not defined or not a string");
return false;
}
if (*source_type != "none") {
if (source_type_.empty()) {
source_type_ = *source_type;
} else if (source_type_ != *source_type) {
error_message_ = std::string(
"currently multiple input source types are not supported");
return false;
}
}
if (*source_type == "pointer") {
if (!ParsePointerParameters(action_sequence))
return false;
} else if (*source_type == "key") {
error_message_ =
std::string("we do not support action sequence type of key");
return false;
} else if (*source_type == "wheel") {
// do nothing
} else if (*source_type == "none") {
// do nothing
} else {
error_message_ = base::StringPrintf("the input source type %s is invalid",
(*source_type).c_str());
return false;
}
const base::Value* actions =
action_sequence.FindKeyOfType("actions", base::Value::Type::LIST);
if (!actions) {
error_message_ = base::StringPrintf(
"action_sequence[%zu].actions is not defined or not a list",
action_index_);
return false;
} else if (actions->GetList().size() == 0) {
error_message_ = base::StringPrintf(
"action_sequence[%zu].actions is an empty list", action_index_);
return false;
} else if (*source_type == "wheel" && actions->GetList().size() > 1) {
error_message_ = base::StringPrintf(
"action_sequence[%zu].actions should only have one action for the "
"wheel input source",
action_index_);
return false;
}
if (!ParseActionItemList(*actions, *source_type))
return false;
if (*source_type != "none")
input_source_count_++;
return true;
}
bool ActionsParser::ParsePointerParameters(const base::Value& action_sequence) {
const base::Value* parameters = action_sequence.FindKey("parameters");
// The default pointer type is mouse.
std::string pointer_type = "mouse";
if (parameters) {
if (!parameters->is_dict()) {
error_message_ =
std::string("action sequence parameters is not a dictionary");
return false;
}
const std::string* pointer_type_value =
parameters->FindStringKey("pointerType");
if (!pointer_type_value) {
error_message_ = std::string(
"action sequence pointer type is not defined or not a string");
return false;
}
if (*pointer_type_value != "touch" && *pointer_type_value != "mouse" &&
*pointer_type_value != "pen") {
error_message_ = base::StringPrintf(
"action sequence pointer type %s is an unsupported input type",
(*pointer_type_value).c_str());
return false;
}
pointer_type = *pointer_type_value;
}
if (pointer_type_.empty()) {
pointer_type_ = pointer_type;
} else if (pointer_type_ != pointer_type) {
error_message_ = std::string(
"currently multiple action sequence pointer type are not "
"supported");
return false;
}
if (pointer_type != "touch" && input_source_count_ > 0) {
error_message_ = std::string(
"for input type of mouse and pen, we only support one device");
return false;
}
// TODO(lanwei): according to the Webdriver spec, "Let id be the result of
// getting the property id from action sequence.", we should move "id" from
// parameters dictionary to action sequence.
const std::string* pointer_name = action_sequence.FindStringKey("id");
if (!pointer_name) {
error_message_ = std::string("pointer name is not defined or not a string");
return false;
}
if (pointer_name_set_.find(*pointer_name) != pointer_name_set_.end()) {
error_message_ = std::string("pointer name already exists");
return false;
}
pointer_name_set_.insert(*pointer_name);
return true;
}
bool ActionsParser::ParseActionItemList(const base::Value& actions,
std::string source_type) {
DCHECK(source_type == "none" || source_type == source_type_);
SyntheticPointerActionListParams::ParamList param_list;
for (const auto& action : actions.GetList()) {
if (!action.is_dict()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions is not defined or not a dictionary",
action_index_);
return false;
} else if (!ParseAction(action, param_list, source_type)) {
return false;
}
}
if (param_list.size() > longest_action_sequence_)
longest_action_sequence_ = param_list.size();
pointer_actions_lists_.push_back(param_list);
return true;
}
bool ActionsParser::ParseAction(
const base::Value& action,
SyntheticPointerActionListParams::ParamList& param_list,
std::string source_type) {
std::string subtype;
if (use_testdriver_api_) {
const std::string* type_value = action.FindStringKey("type");
if (!type_value) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.type is not defined or not a string",
action_index_);
return false;
}
subtype = *type_value;
} else {
const std::string* name_value = action.FindStringKey("name");
if (!name_value) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.name is not defined or not a string",
action_index_);
return false;
}
subtype = *name_value;
}
if (source_type == "wheel") {
return ParseWheelAction(action, subtype);
} else if (source_type == "pointer") {
return ParsePointerAction(action, subtype, param_list);
} else if (source_type == "none") {
return ParseNullAction(action, subtype, param_list);
} else {
NOTREACHED();
}
return false;
}
bool ActionsParser::ParseWheelAction(const base::Value& action,
std::string subtype) {
if (subtype == "pause") {
error_message_ = base::StringPrintf(
"actions[%zu].actions.type of pause is not supported now",
action_index_);
return false;
} else if (subtype != "scroll") {
error_message_ = base::StringPrintf(
"actions[%zu].actions.type is not scroll or pause when source type is "
"wheel",
action_index_);
return false;
}
double position_x = 0;
double position_y = 0;
if (!GetPosition(action, position_x, position_y))
return false;
int delta_x = 0;
int delta_y = 0;
if (!GetScrollDelta(action, delta_x, delta_y))
return false;
gesture_params_ = std::make_unique<SyntheticSmoothScrollGestureParams>();
SyntheticSmoothScrollGestureParams* scroll =
static_cast<SyntheticSmoothScrollGestureParams*>(gesture_params_.get());
scroll->gesture_source_type = content::mojom::GestureSourceType::kMouseInput;
scroll->speed_in_pixels_s = 8000;
scroll->prevent_fling = true;
scroll->granularity = ui::ScrollGranularity::kScrollByPrecisePixel;
scroll->anchor.SetPoint(position_x, position_y);
scroll->fling_velocity_x = 0;
scroll->fling_velocity_y = 0;
scroll->distances.push_back(-gfx::Vector2dF(delta_x, delta_y));
scroll->modifiers = 0;
return true;
}
bool ActionsParser::ParsePointerAction(
const base::Value& action,
std::string subtype,
SyntheticPointerActionListParams::ParamList& param_list) {
double position_x = 0;
double position_y = 0;
if ((subtype == "pointerDown" || subtype == "pointerMove") &&
!GetPosition(action, position_x, position_y)) {
return false;
}
PointerActionType pointer_action_type = PointerActionType::NOT_INITIALIZED;
pointer_action_type = ToSyntheticPointerActionType(subtype);
if (pointer_action_type == PointerActionType::NOT_INITIALIZED) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.name is an unsupported action name",
action_index_);
return false;
}
Button button = pointer_action_type == PointerActionType::MOVE
? Button::NO_BUTTON
: Button::LEFT;
const base::Value* button_id_value = action.FindKey("button");
if (button_id_value) {
if (!button_id_value->is_int()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.button is not an integer", action_index_);
return false;
}
int button_id = button_id_value->GetInt();
if (button_id < 0 || button_id > 4) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.button is an unsupported button",
action_index_);
return false;
}
button = ToSyntheticMouseButton(button_id);
}
std::string keys;
const base::Value* keys_value = action.FindKey("keys");
if (keys_value) {
if (!keys_value->is_string()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.key is not a string", action_index_);
return false;
}
keys = keys_value->GetString();
}
int key_modifiers = 0;
std::vector<std::string> key_list =
base::SplitString(keys, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
for (std::string& key : key_list) {
int key_modifier = ToKeyModifiers(key);
if (key_modifier == 0) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.key is not a valid key", action_index_);
return false;
}
key_modifiers |= key_modifier;
}
double width = 40;
const base::Value* width_value = action.FindKey("width");
if (width_value) {
width = width_value->GetDouble();
if (width < 0) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.width should not be negative", action_index_);
return false;
}
}
double height = 40;
const base::Value* height_value = action.FindKey("height");
if (height_value) {
height = height_value->GetDouble();
if (height < 0) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.height should not be negative", action_index_);
return false;
}
}
double pressure = 0.5;
const base::Value* pressure_value = action.FindKey("pressure");
if (pressure_value) {
pressure = pressure_value->GetDouble();
if (pressure < 0 || pressure > 1) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.pressure must be a non-negative number in the "
"range of [0,1]",
action_index_);
return false;
}
}
double tangential_pressure = 0;
const base::Value* tangential_pressure_value =
action.FindKey("tangentialPressure");
if (tangential_pressure_value) {
tangential_pressure = tangential_pressure_value->GetDouble();
if (tangential_pressure < -1 || tangential_pressure > 1) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.tangentialPressure must be a non-negative "
"number in the range of [-1,1]",
action_index_);
return false;
}
}
int tilt_x = 0;
const base::Value* tilt_x_value = action.FindKey("tiltX");
if (tilt_x_value) {
if (!tilt_x_value->is_int()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.tiltX is not an integer", action_index_);
return false;
}
tilt_x = tilt_x_value->GetInt();
if (tilt_x < -90 || tilt_x > 90) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.tiltX must be an integer in the range of "
"[-90,90]",
action_index_);
return false;
}
}
int tilt_y = 0;
const base::Value* tilt_y_value = action.FindKey("tiltY");
if (tilt_y_value) {
if (!tilt_y_value->is_int()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.tiltY is not an integer", action_index_);
return false;
}
tilt_y = tilt_y_value->GetInt();
if (tilt_y < -90 || tilt_y > 90) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.tiltY must be an integer in the range of "
"[-90,90]",
action_index_);
return false;
}
}
int twist = 0;
const base::Value* twist_value = action.FindKey("twist");
if (twist_value) {
if (!twist_value->is_int()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.twist is not an integer", action_index_);
return false;
}
twist = twist_value->GetInt();
if (twist < 0 || twist > 359) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.twist must be an integer in the range of "
"[0,359]",
action_index_);
return false;
}
}
int duration = viz::BeginFrameArgs::DefaultInterval().InMilliseconds();
if (pointer_action_type == PointerActionType::IDLE &&
!GetPauseDuration(action, duration)) {
return false;
}
SyntheticPointerActionParams action_param(pointer_action_type);
action_param.set_pointer_id(input_source_count_);
switch (pointer_action_type) {
case PointerActionType::PRESS:
action_param.set_position(gfx::PointF(position_x, position_y));
action_param.set_button(button);
action_param.set_key_modifiers(key_modifiers);
action_param.set_width(width);
action_param.set_height(height);
action_param.set_force(pressure);
action_param.set_tangential_pressure(tangential_pressure);
action_param.set_tilt_x(tilt_x);
action_param.set_tilt_y(tilt_y);
action_param.set_rotation_angle(twist);
break;
case PointerActionType::MOVE:
action_param.set_position(gfx::PointF(position_x, position_y));
action_param.set_key_modifiers(key_modifiers);
action_param.set_width(width);
action_param.set_height(height);
action_param.set_force(pressure);
action_param.set_tangential_pressure(tangential_pressure);
action_param.set_tilt_x(tilt_x);
action_param.set_tilt_y(tilt_y);
action_param.set_rotation_angle(twist);
action_param.set_button(button);
break;
case PointerActionType::RELEASE:
action_param.set_button(button);
action_param.set_key_modifiers(key_modifiers);
break;
case PointerActionType::IDLE:
action_param.set_duration(base::Milliseconds(duration));
break;
case PointerActionType::CANCEL:
case PointerActionType::LEAVE:
case PointerActionType::NOT_INITIALIZED:
break;
}
param_list.push_back(action_param);
return true;
}
bool ActionsParser::ParseNullAction(
const base::Value& action,
std::string subtype,
SyntheticPointerActionListParams::ParamList& param_list) {
PointerActionType pointer_action_type = PointerActionType::NOT_INITIALIZED;
pointer_action_type = ToSyntheticPointerActionType(subtype);
if (pointer_action_type != PointerActionType::IDLE) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.name should only be pause", action_index_);
return false;
}
int duration = viz::BeginFrameArgs::DefaultInterval().InMilliseconds();
if (!GetPauseDuration(action, duration))
return false;
SyntheticPointerActionParams action_param(pointer_action_type);
action_param.set_pointer_id(0);
action_param.set_duration(base::Milliseconds(duration));
param_list.push_back(action_param);
return true;
}
bool ActionsParser::GetPosition(const base::Value& action,
double& position_x,
double& position_y) {
const base::Value* position_x_value = action.FindKey("x");
const base::Value* position_y_value = action.FindKey("y");
// TODO(lanwei): we should clarify the case when x or y is undefined in the
// WebDriver spec.
// https://www.w3.org/TR/webdriver/#dfn-process-a-pointer-move-action.
if (!position_x_value ||
(!position_x_value->is_int() && !position_x_value->is_double())) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.x is not defined or not a number", action_index_);
return false;
}
position_x = position_x_value->GetDouble();
if (!position_y_value ||
(!position_y_value->is_int() && !position_y_value->is_double())) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.y is not defined or not a number", action_index_);
return false;
}
position_y = position_y_value->GetDouble();
return true;
}
bool ActionsParser::GetScrollDelta(const base::Value& action,
int& delta_x,
int& delta_y) {
const base::Value* delta_x_value = action.FindKey("deltaX");
const base::Value* delta_y_value = action.FindKey("deltaY");
if (!delta_x_value || !delta_x_value->is_int()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.delta_x is not defined or not an integer",
action_index_);
return false;
}
delta_x = delta_x_value->GetInt();
if (!delta_y_value || !delta_y_value->is_int()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.delta_y is not defined or not an integer",
action_index_);
return false;
}
delta_y = delta_y_value->GetInt();
return true;
}
bool ActionsParser::GetPauseDuration(const base::Value& action, int& duration) {
const base::Value* duration_value = action.FindKey("duration");
// TODO(lanwei): we should always have a duration value for pause action.
if (duration_value) {
if (!duration_value->is_double() && !duration_value->is_int()) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.duration is not a number", action_index_);
return false;
}
duration = duration_value->GetDouble();
}
if (duration < 0) {
error_message_ = base::StringPrintf(
"actions[%zu].actions.duration should not be negative", action_index_);
return false;
}
return true;
}
} // namespace content