blob: c5f99c9b63a9b39597f47d6e79e11073feaecfcc [file] [log] [blame]
Prabir Pradhanbaa5c822019-08-30 15:27:05 -07001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Prabir Pradhan9244aea2020-02-05 20:31:40 -080017#include "../Macros.h"
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070018
19#include "InputMapper.h"
20
21#include "InputDevice.h"
22
23namespace android {
24
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -080025InputMapper::InputMapper(InputDeviceContext& deviceContext) : mDeviceContext(deviceContext) {}
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070026
27InputMapper::~InputMapper() {}
28
29void InputMapper::populateDeviceInfo(InputDeviceInfo* info) {
30 info->addSource(getSources());
31}
32
33void InputMapper::dump(std::string& dump) {}
34
35void InputMapper::configure(nsecs_t when, const InputReaderConfiguration* config,
36 uint32_t changes) {}
37
38void InputMapper::reset(nsecs_t when) {}
39
40void InputMapper::timeoutExpired(nsecs_t when) {}
41
42int32_t InputMapper::getKeyCodeState(uint32_t sourceMask, int32_t keyCode) {
43 return AKEY_STATE_UNKNOWN;
44}
45
46int32_t InputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) {
47 return AKEY_STATE_UNKNOWN;
48}
49
50int32_t InputMapper::getSwitchState(uint32_t sourceMask, int32_t switchCode) {
51 return AKEY_STATE_UNKNOWN;
52}
53
54bool InputMapper::markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes,
55 const int32_t* keyCodes, uint8_t* outFlags) {
56 return false;
57}
58
59void InputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat,
60 int32_t token) {}
61
62void InputMapper::cancelVibrate(int32_t token) {}
63
64void InputMapper::cancelTouch(nsecs_t when) {}
65
66int32_t InputMapper::getMetaState() {
67 return 0;
68}
69
70void InputMapper::updateMetaState(int32_t keyCode) {}
71
72void InputMapper::updateExternalStylusState(const StylusState& state) {}
73
74void InputMapper::fadePointer() {}
75
76status_t InputMapper::getAbsoluteAxisInfo(int32_t axis, RawAbsoluteAxisInfo* axisInfo) {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -080077 return getDeviceContext().getAbsoluteAxisInfo(axis, axisInfo);
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070078}
79
80void InputMapper::bumpGeneration() {
Nathaniel R. Lewis26ec2222020-01-10 16:30:54 -080081 getDeviceContext().bumpGeneration();
Prabir Pradhanbaa5c822019-08-30 15:27:05 -070082}
83
84void InputMapper::dumpRawAbsoluteAxisInfo(std::string& dump, const RawAbsoluteAxisInfo& axis,
85 const char* name) {
86 if (axis.valid) {
87 dump += StringPrintf(INDENT4 "%s: min=%d, max=%d, flat=%d, fuzz=%d, resolution=%d\n", name,
88 axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution);
89 } else {
90 dump += StringPrintf(INDENT4 "%s: unknown range\n", name);
91 }
92}
93
94void InputMapper::dumpStylusState(std::string& dump, const StylusState& state) {
95 dump += StringPrintf(INDENT4 "When: %" PRId64 "\n", state.when);
96 dump += StringPrintf(INDENT4 "Pressure: %f\n", state.pressure);
97 dump += StringPrintf(INDENT4 "Button State: 0x%08x\n", state.buttons);
98 dump += StringPrintf(INDENT4 "Tool Type: %" PRId32 "\n", state.toolType);
99}
100
101} // namespace android