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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdint.h>
#include "base/logging.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_input_event_api.h"
#include "ppapi/thunk/ppb_instance_api.h"
#include "ppapi/thunk/resource_creation_api.h"
#include "ppapi/thunk/thunk.h"
namespace ppapi {
namespace thunk {
namespace {
typedef EnterResource<PPB_InputEvent_API> EnterInputEvent;
// InputEvent ------------------------------------------------------------------
int32_t RequestInputEvents(PP_Instance instance, uint32_t event_classes) {
VLOG(4) << "PPB_InputEvent::RequestInputEvents()";
EnterInstance enter(instance);
if (enter.failed())
return enter.retval();
return enter.functions()->RequestInputEvents(instance, event_classes);
}
int32_t RequestFilteringInputEvents(PP_Instance instance,
uint32_t event_classes) {
VLOG(4) << "PPB_InputEvent::RequestFilteringInputEvents()";
EnterInstance enter(instance);
if (enter.failed())
return enter.retval();
return enter.functions()->RequestFilteringInputEvents(instance,
event_classes);
}
void ClearInputEventRequest(PP_Instance instance,
uint32_t event_classes) {
VLOG(4) << "PPB_InputEvent::ClearInputEventRequest()";
EnterInstance enter(instance);
if (enter.succeeded())
enter.functions()->ClearInputEventRequest(instance, event_classes);
}
PP_Bool IsInputEvent(PP_Resource resource) {
VLOG(4) << "PPB_InputEvent::IsInputEvent()";
EnterInputEvent enter(resource, false);
return enter.succeeded() ? PP_TRUE : PP_FALSE;
}
PP_InputEvent_Type GetType(PP_Resource event) {
VLOG(4) << "PPB_InputEvent::GetType()";
EnterInputEvent enter(event, true);
if (enter.failed())
return PP_INPUTEVENT_TYPE_UNDEFINED;
return enter.object()->GetType();
}
PP_TimeTicks GetTimeStamp(PP_Resource event) {
VLOG(4) << "PPB_InputEvent::GetTimeStamp()";
EnterInputEvent enter(event, true);
if (enter.failed())
return 0.0;
return enter.object()->GetTimeStamp();
}
uint32_t GetModifiers(PP_Resource event) {
VLOG(4) << "PPB_InputEvent::GetModifiers()";
EnterInputEvent enter(event, true);
if (enter.failed())
return 0;
return enter.object()->GetModifiers();
}
const PPB_InputEvent g_ppb_input_event_thunk = {
&RequestInputEvents,
&RequestFilteringInputEvents,
&ClearInputEventRequest,
&IsInputEvent,
&GetType,
&GetTimeStamp,
&GetModifiers
};
// Mouse -----------------------------------------------------------------------
PP_Resource CreateMouseInputEvent1_0(PP_Instance instance,
PP_InputEvent_Type type,
PP_TimeTicks time_stamp,
uint32_t modifiers,
PP_InputEvent_MouseButton mouse_button,
const PP_Point* mouse_position,
int32_t click_count) {
VLOG(4) << "PPB_MouseInputEvent::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
PP_Point mouse_movement = PP_MakePoint(0, 0);
return enter.functions()->CreateMouseInputEvent(instance, type, time_stamp,
modifiers, mouse_button,
mouse_position, click_count,
&mouse_movement);
}
PP_Resource CreateMouseInputEvent1_1(PP_Instance instance,
PP_InputEvent_Type type,
PP_TimeTicks time_stamp,
uint32_t modifiers,
PP_InputEvent_MouseButton mouse_button,
const PP_Point* mouse_position,
int32_t click_count,
const PP_Point* mouse_movement) {
VLOG(4) << "PPB_MouseInputEvent::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
return enter.functions()->CreateMouseInputEvent(instance, type, time_stamp,
modifiers, mouse_button,
mouse_position, click_count,
mouse_movement);
}
PP_Bool IsMouseInputEvent(PP_Resource resource) {
VLOG(4) << "PPB_MouseInputEvent::IsMouseInputEvent()";
if (!IsInputEvent(resource))
return PP_FALSE; // Prevent warning log in GetType.
PP_InputEvent_Type type = GetType(resource);
return PP_FromBool(type == PP_INPUTEVENT_TYPE_MOUSEDOWN ||
type == PP_INPUTEVENT_TYPE_MOUSEUP ||
type == PP_INPUTEVENT_TYPE_MOUSEMOVE ||
type == PP_INPUTEVENT_TYPE_MOUSEENTER ||
type == PP_INPUTEVENT_TYPE_MOUSELEAVE ||
type == PP_INPUTEVENT_TYPE_CONTEXTMENU);
}
PP_InputEvent_MouseButton GetMouseButton(PP_Resource mouse_event) {
VLOG(4) << "PPB_MouseInputEvent::GetButton()";
EnterInputEvent enter(mouse_event, true);
if (enter.failed())
return PP_INPUTEVENT_MOUSEBUTTON_NONE;
return enter.object()->GetMouseButton();
}
PP_Point GetMousePosition(PP_Resource mouse_event) {
VLOG(4) << "PPB_MouseInputEvent::GetPosition()";
EnterInputEvent enter(mouse_event, true);
if (enter.failed())
return PP_MakePoint(0, 0);
return enter.object()->GetMousePosition();
}
int32_t GetMouseClickCount(PP_Resource mouse_event) {
VLOG(4) << "PPB_MouseInputEvent::GetClickCount()";
EnterInputEvent enter(mouse_event, true);
if (enter.failed())
return 0;
return enter.object()->GetMouseClickCount();
}
PP_Point GetMouseMovement(PP_Resource mouse_event) {
VLOG(4) << "PPB_MouseInputEvent::GetMovement()";
EnterInputEvent enter(mouse_event, true);
if (enter.failed())
return PP_MakePoint(0, 0);
return enter.object()->GetMouseMovement();
}
const PPB_MouseInputEvent_1_0 g_ppb_mouse_input_event_1_0_thunk = {
&CreateMouseInputEvent1_0,
&IsMouseInputEvent,
&GetMouseButton,
&GetMousePosition,
&GetMouseClickCount
};
const PPB_MouseInputEvent g_ppb_mouse_input_event_1_1_thunk = {
&CreateMouseInputEvent1_1,
&IsMouseInputEvent,
&GetMouseButton,
&GetMousePosition,
&GetMouseClickCount,
&GetMouseMovement
};
// Wheel -----------------------------------------------------------------------
PP_Resource CreateWheelInputEvent(PP_Instance instance,
PP_TimeTicks time_stamp,
uint32_t modifiers,
const PP_FloatPoint* wheel_delta,
const PP_FloatPoint* wheel_ticks,
PP_Bool scroll_by_page) {
VLOG(4) << "PPB_WheelInputEvent::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
return enter.functions()->CreateWheelInputEvent(instance, time_stamp,
modifiers, wheel_delta,
wheel_ticks, scroll_by_page);
}
PP_Bool IsWheelInputEvent(PP_Resource resource) {
VLOG(4) << "PPB_WheelInputEvent::IsWheelInputEvent()";
if (!IsInputEvent(resource))
return PP_FALSE; // Prevent warning log in GetType.
PP_InputEvent_Type type = GetType(resource);
return PP_FromBool(type == PP_INPUTEVENT_TYPE_WHEEL);
}
PP_FloatPoint GetWheelDelta(PP_Resource wheel_event) {
VLOG(4) << "PPB_WheelInputEvent::GetDelta()";
EnterInputEvent enter(wheel_event, true);
if (enter.failed())
return PP_MakeFloatPoint(0.0f, 0.0f);
return enter.object()->GetWheelDelta();
}
PP_FloatPoint GetWheelTicks(PP_Resource wheel_event) {
VLOG(4) << "PPB_WheelInputEvent::GetTicks()";
EnterInputEvent enter(wheel_event, true);
if (enter.failed())
return PP_MakeFloatPoint(0.0f, 0.0f);
return enter.object()->GetWheelTicks();
}
PP_Bool GetWheelScrollByPage(PP_Resource wheel_event) {
VLOG(4) << "PPB_WheelInputEvent::GetScrollByPage()";
EnterInputEvent enter(wheel_event, true);
if (enter.failed())
return PP_FALSE;
return enter.object()->GetWheelScrollByPage();
}
const PPB_WheelInputEvent g_ppb_wheel_input_event_thunk = {
&CreateWheelInputEvent,
&IsWheelInputEvent,
&GetWheelDelta,
&GetWheelTicks,
&GetWheelScrollByPage
};
// Keyboard --------------------------------------------------------------------
PP_Resource CreateKeyboardInputEvent_1_0(PP_Instance instance,
PP_InputEvent_Type type,
PP_TimeTicks time_stamp,
uint32_t modifiers,
uint32_t key_code,
struct PP_Var character_text) {
VLOG(4) << "PPB_KeyboardInputEvent::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
return enter.functions()->CreateKeyboardInputEvent_1_0(instance, type,
time_stamp,
modifiers, key_code,
character_text);
}
PP_Resource CreateKeyboardInputEvent_1_2(PP_Instance instance,
PP_InputEvent_Type type,
PP_TimeTicks time_stamp,
uint32_t modifiers,
uint32_t key_code,
struct PP_Var character_text,
struct PP_Var code) {
VLOG(4) << "PPB_KeyboardInputEvent::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
return enter.functions()->CreateKeyboardInputEvent_1_2(instance, type,
time_stamp,
modifiers, key_code,
character_text, code);
}
PP_Bool IsKeyboardInputEvent(PP_Resource resource) {
VLOG(4) << "PPB_KeyboardInputEvent::IsKeyboardInputEvent()";
if (!IsInputEvent(resource))
return PP_FALSE; // Prevent warning log in GetType.
PP_InputEvent_Type type = GetType(resource);
return PP_FromBool(type == PP_INPUTEVENT_TYPE_KEYDOWN ||
type == PP_INPUTEVENT_TYPE_KEYUP ||
type == PP_INPUTEVENT_TYPE_RAWKEYDOWN ||
type == PP_INPUTEVENT_TYPE_CHAR);
}
uint32_t GetKeyCode(PP_Resource key_event) {
VLOG(4) << "PPB_KeyboardInputEvent::GetKeyCode()";
EnterInputEvent enter(key_event, true);
if (enter.failed())
return 0;
return enter.object()->GetKeyCode();
}
PP_Var GetCharacterText(PP_Resource character_event) {
VLOG(4) << "PPB_KeyboardInputEvent::GetCharacterText()";
EnterInputEvent enter(character_event, true);
if (enter.failed())
return PP_MakeUndefined();
return enter.object()->GetCharacterText();
}
PP_Var GetCode(PP_Resource key_event) {
VLOG(4) << "PPB_KeyboardInputEvent::GetCode()";
EnterInputEvent enter(key_event, true);
if (enter.failed())
return PP_MakeUndefined();
return enter.object()->GetCode();
}
const PPB_KeyboardInputEvent_1_0 g_ppb_keyboard_input_event_1_0_thunk = {
&CreateKeyboardInputEvent_1_0,
&IsKeyboardInputEvent,
&GetKeyCode,
&GetCharacterText
};
const PPB_KeyboardInputEvent g_ppb_keyboard_input_event_thunk = {
&CreateKeyboardInputEvent_1_2,
&IsKeyboardInputEvent,
&GetKeyCode,
&GetCharacterText,
&GetCode
};
// Composition -----------------------------------------------------------------
PP_Resource CreateIMEInputEvent(PP_Instance instance,
PP_InputEvent_Type type,
PP_TimeTicks time_stamp,
PP_Var text,
uint32_t segment_number,
const uint32_t segment_offsets[],
int32_t target_segment,
uint32_t selection_start,
uint32_t selection_end) {
VLOG(4) << "PPB_IMEInputEvent_Dev::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
return enter.functions()->CreateIMEInputEvent(instance, type, time_stamp,
text, segment_number,
segment_offsets,
target_segment,
selection_start,
selection_end);
}
PP_Bool IsIMEInputEvent(PP_Resource resource) {
VLOG(4) << "PPB_IMEInputEvent_Dev::IsIMEInputEvent()";
if (!IsInputEvent(resource))
return PP_FALSE; // Prevent warning log in GetType.
PP_InputEvent_Type type = GetType(resource);
return PP_FromBool(type == PP_INPUTEVENT_TYPE_IME_COMPOSITION_START ||
type == PP_INPUTEVENT_TYPE_IME_COMPOSITION_UPDATE ||
type == PP_INPUTEVENT_TYPE_IME_COMPOSITION_END ||
type == PP_INPUTEVENT_TYPE_IME_TEXT);
}
PP_Var GetIMEText(PP_Resource ime_event) {
VLOG(4) << "PPB_IMEInputEvent_Dev::GetText()";
return GetCharacterText(ime_event);
}
uint32_t GetIMESegmentNumber(PP_Resource ime_event) {
VLOG(4) << "PPB_IMEInputEvent_Dev::GetSegmentNumber()";
EnterInputEvent enter(ime_event, true);
if (enter.failed())
return 0;
return enter.object()->GetIMESegmentNumber();
}
uint32_t GetIMESegmentOffset(PP_Resource ime_event, uint32_t index) {
VLOG(4) << "PPB_IMEInputEvent_Dev::GetSegmentOffset()";
EnterInputEvent enter(ime_event, true);
if (enter.failed())
return 0;
return enter.object()->GetIMESegmentOffset(index);
}
int32_t GetIMETargetSegment(PP_Resource ime_event) {
VLOG(4) << "PPB_IMEInputEvent_Dev::GetTargetSegment()";
EnterInputEvent enter(ime_event, true);
if (enter.failed())
return -1;
return enter.object()->GetIMETargetSegment();
}
void GetIMESelection(PP_Resource ime_event, uint32_t* start, uint32_t* end) {
VLOG(4) << "PPB_IMEInputEvent_Dev::GetSelection()";
EnterInputEvent enter(ime_event, true);
if (enter.failed()) {
if (start)
*start = 0;
if (end)
*end = 0;
return;
}
enter.object()->GetIMESelection(start, end);
}
const PPB_IMEInputEvent_Dev_0_1 g_ppb_ime_input_event_0_1_thunk = {
&IsIMEInputEvent,
&GetIMEText,
&GetIMESegmentNumber,
&GetIMESegmentOffset,
&GetIMETargetSegment,
&GetIMESelection
};
const PPB_IMEInputEvent_Dev_0_2 g_ppb_ime_input_event_0_2_thunk = {
&CreateIMEInputEvent,
&IsIMEInputEvent,
&GetIMEText,
&GetIMESegmentNumber,
&GetIMESegmentOffset,
&GetIMETargetSegment,
&GetIMESelection
};
const PPB_IMEInputEvent_1_0 g_ppb_ime_input_event_1_0_thunk = {
&CreateIMEInputEvent,
&IsIMEInputEvent,
&GetIMEText,
&GetIMESegmentNumber,
&GetIMESegmentOffset,
&GetIMETargetSegment,
&GetIMESelection
};
// Touch -----------------------------------------------------------------------
PP_Resource CreateTouchInputEvent(PP_Instance instance,
PP_InputEvent_Type type,
PP_TimeTicks time_stamp,
uint32_t modifiers) {
VLOG(4) << "PPB_TouchInputEvent::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
return enter.functions()->CreateTouchInputEvent(instance, type, time_stamp,
modifiers);
}
void AddTouchPoint(PP_Resource touch_event,
PP_TouchListType list,
const PP_TouchPoint* point) {
VLOG(4) << "PPB_TouchInputEvent::AddTouchPoint()";
EnterInputEvent enter(touch_event, true);
if (enter.failed())
return;
return enter.object()->AddTouchPoint(list, *point);
}
PP_Bool IsTouchInputEvent(PP_Resource resource) {
VLOG(4) << "PPB_TouchInputEvent::IsTouchInputEvent()";
if (!IsInputEvent(resource))
return PP_FALSE; // Prevent warning log in GetType.
PP_InputEvent_Type type = GetType(resource);
return PP_FromBool(type == PP_INPUTEVENT_TYPE_TOUCHSTART ||
type == PP_INPUTEVENT_TYPE_TOUCHMOVE ||
type == PP_INPUTEVENT_TYPE_TOUCHEND ||
type == PP_INPUTEVENT_TYPE_TOUCHCANCEL);
}
uint32_t GetTouchCount(PP_Resource touch_event, PP_TouchListType list) {
VLOG(4) << "PPB_TouchInputEvent::GetTouchCount()";
EnterInputEvent enter(touch_event, true);
if (enter.failed())
return 0;
return enter.object()->GetTouchCount(list);
}
struct PP_TouchPoint GetTouchByIndex(PP_Resource touch_event,
PP_TouchListType list,
uint32_t index) {
VLOG(4) << "PPB_TouchInputEvent::GetTouchByIndex()";
EnterInputEvent enter(touch_event, true);
if (enter.failed())
return PP_MakeTouchPoint();
return enter.object()->GetTouchByIndex(list, index);
}
struct PP_TouchPoint GetTouchById(PP_Resource touch_event,
PP_TouchListType list,
uint32_t id) {
VLOG(4) << "PPB_TouchInputEvent::GetTouchById()";
EnterInputEvent enter(touch_event, true);
if (enter.failed())
return PP_MakeTouchPoint();
return enter.object()->GetTouchById(list, id);
}
struct PP_FloatPoint GetTouchTiltByIndex(PP_Resource touch_event,
PP_TouchListType list,
uint32_t index) {
VLOG(4) << "PPB_TouchInputEvent::GetTouchTiltByIndex()";
EnterInputEvent enter(touch_event, true);
if (enter.failed())
return PP_MakeFloatPoint(0, 0);
return enter.object()->GetTouchTiltByIndex(list, index);
}
struct PP_FloatPoint GetTouchTiltById(PP_Resource touch_event,
PP_TouchListType list,
uint32_t id) {
VLOG(4) << "PPB_TouchInputEvent::GetTouchTiltById()";
EnterInputEvent enter(touch_event, true);
if (enter.failed())
return PP_MakeFloatPoint(0, 0);
return enter.object()->GetTouchTiltById(list, id);
}
const PPB_TouchInputEvent_1_0 g_ppb_touch_input_event_1_0_thunk = {
&CreateTouchInputEvent, &AddTouchPoint, &IsTouchInputEvent,
&GetTouchCount, &GetTouchByIndex, &GetTouchById};
const PPB_TouchInputEvent_1_4 g_ppb_touch_input_event_1_4_thunk = {
&CreateTouchInputEvent, &AddTouchPoint, &IsTouchInputEvent,
&GetTouchCount, &GetTouchByIndex, &GetTouchById,
&GetTouchTiltByIndex, &GetTouchTiltById,
};
} // namespace
const PPB_InputEvent_1_0* GetPPB_InputEvent_1_0_Thunk() {
return &g_ppb_input_event_thunk;
}
const PPB_MouseInputEvent_1_0* GetPPB_MouseInputEvent_1_0_Thunk() {
return &g_ppb_mouse_input_event_1_0_thunk;
}
const PPB_MouseInputEvent_1_1* GetPPB_MouseInputEvent_1_1_Thunk() {
return &g_ppb_mouse_input_event_1_1_thunk;
}
const PPB_KeyboardInputEvent_1_0* GetPPB_KeyboardInputEvent_1_0_Thunk() {
return &g_ppb_keyboard_input_event_1_0_thunk;
}
const PPB_KeyboardInputEvent_1_2* GetPPB_KeyboardInputEvent_1_2_Thunk() {
return &g_ppb_keyboard_input_event_thunk;
}
const PPB_WheelInputEvent_1_0* GetPPB_WheelInputEvent_1_0_Thunk() {
return &g_ppb_wheel_input_event_thunk;
}
const PPB_IMEInputEvent_Dev_0_1* GetPPB_IMEInputEvent_Dev_0_1_Thunk() {
return &g_ppb_ime_input_event_0_1_thunk;
}
const PPB_IMEInputEvent_Dev_0_2* GetPPB_IMEInputEvent_Dev_0_2_Thunk() {
return &g_ppb_ime_input_event_0_2_thunk;
}
const PPB_IMEInputEvent_1_0* GetPPB_IMEInputEvent_1_0_Thunk() {
return &g_ppb_ime_input_event_1_0_thunk;
}
const PPB_TouchInputEvent_1_0* GetPPB_TouchInputEvent_1_0_Thunk() {
return &g_ppb_touch_input_event_1_0_thunk;
}
const PPB_TouchInputEvent_1_4* GetPPB_TouchInputEvent_1_4_Thunk() {
return &g_ppb_touch_input_event_1_4_thunk;
}
} // namespace thunk
} // namespace ppapi
|