| /* | 
 |  * Copyright (C) 2019 The Android Open Source Project | 
 |  * | 
 |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
 |  * you may not use this file except in compliance with the License. | 
 |  * You may obtain a copy of the License at | 
 |  * | 
 |  *      http://www.apache.org/licenses/LICENSE-2.0 | 
 |  * | 
 |  * Unless required by applicable law or agreed to in writing, software | 
 |  * distributed under the License is distributed on an "AS IS" BASIS, | 
 |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
 |  * See the License for the specific language governing permissions and | 
 |  * limitations under the License. | 
 |  */ | 
 |  | 
 | #include "../Macros.h" | 
 |  | 
 | #include "KeyboardInputMapper.h" | 
 |  | 
 | namespace android { | 
 |  | 
 | // --- Static Definitions --- | 
 |  | 
 | static int32_t rotateValueUsingRotationMap(int32_t value, int32_t orientation, | 
 |                                            const int32_t map[][4], size_t mapSize) { | 
 |     if (orientation != DISPLAY_ORIENTATION_0) { | 
 |         for (size_t i = 0; i < mapSize; i++) { | 
 |             if (value == map[i][0]) { | 
 |                 return map[i][orientation]; | 
 |             } | 
 |         } | 
 |     } | 
 |     return value; | 
 | } | 
 |  | 
 | static const int32_t keyCodeRotationMap[][4] = { | 
 |         // key codes enumerated counter-clockwise with the original (unrotated) key first | 
 |         // no rotation,        90 degree rotation,  180 degree rotation, 270 degree rotation | 
 |         {AKEYCODE_DPAD_DOWN, AKEYCODE_DPAD_RIGHT, AKEYCODE_DPAD_UP, AKEYCODE_DPAD_LEFT}, | 
 |         {AKEYCODE_DPAD_RIGHT, AKEYCODE_DPAD_UP, AKEYCODE_DPAD_LEFT, AKEYCODE_DPAD_DOWN}, | 
 |         {AKEYCODE_DPAD_UP, AKEYCODE_DPAD_LEFT, AKEYCODE_DPAD_DOWN, AKEYCODE_DPAD_RIGHT}, | 
 |         {AKEYCODE_DPAD_LEFT, AKEYCODE_DPAD_DOWN, AKEYCODE_DPAD_RIGHT, AKEYCODE_DPAD_UP}, | 
 |         {AKEYCODE_SYSTEM_NAVIGATION_DOWN, AKEYCODE_SYSTEM_NAVIGATION_RIGHT, | 
 |          AKEYCODE_SYSTEM_NAVIGATION_UP, AKEYCODE_SYSTEM_NAVIGATION_LEFT}, | 
 |         {AKEYCODE_SYSTEM_NAVIGATION_RIGHT, AKEYCODE_SYSTEM_NAVIGATION_UP, | 
 |          AKEYCODE_SYSTEM_NAVIGATION_LEFT, AKEYCODE_SYSTEM_NAVIGATION_DOWN}, | 
 |         {AKEYCODE_SYSTEM_NAVIGATION_UP, AKEYCODE_SYSTEM_NAVIGATION_LEFT, | 
 |          AKEYCODE_SYSTEM_NAVIGATION_DOWN, AKEYCODE_SYSTEM_NAVIGATION_RIGHT}, | 
 |         {AKEYCODE_SYSTEM_NAVIGATION_LEFT, AKEYCODE_SYSTEM_NAVIGATION_DOWN, | 
 |          AKEYCODE_SYSTEM_NAVIGATION_RIGHT, AKEYCODE_SYSTEM_NAVIGATION_UP}, | 
 | }; | 
 |  | 
 | static const size_t keyCodeRotationMapSize = | 
 |         sizeof(keyCodeRotationMap) / sizeof(keyCodeRotationMap[0]); | 
 |  | 
 | static int32_t rotateStemKey(int32_t value, int32_t orientation, const int32_t map[][2], | 
 |                              size_t mapSize) { | 
 |     if (orientation == DISPLAY_ORIENTATION_180) { | 
 |         for (size_t i = 0; i < mapSize; i++) { | 
 |             if (value == map[i][0]) { | 
 |                 return map[i][1]; | 
 |             } | 
 |         } | 
 |     } | 
 |     return value; | 
 | } | 
 |  | 
 | // The mapping can be defined using input device configuration properties keyboard.rotated.stem_X | 
 | static int32_t stemKeyRotationMap[][2] = { | 
 |         // key codes enumerated with the original (unrotated) key first | 
 |         // no rotation,           180 degree rotation | 
 |         {AKEYCODE_STEM_PRIMARY, AKEYCODE_STEM_PRIMARY}, | 
 |         {AKEYCODE_STEM_1, AKEYCODE_STEM_1}, | 
 |         {AKEYCODE_STEM_2, AKEYCODE_STEM_2}, | 
 |         {AKEYCODE_STEM_3, AKEYCODE_STEM_3}, | 
 | }; | 
 |  | 
 | static const size_t stemKeyRotationMapSize = | 
 |         sizeof(stemKeyRotationMap) / sizeof(stemKeyRotationMap[0]); | 
 |  | 
 | static int32_t rotateKeyCode(int32_t keyCode, int32_t orientation) { | 
 |     keyCode = rotateStemKey(keyCode, orientation, stemKeyRotationMap, stemKeyRotationMapSize); | 
 |     return rotateValueUsingRotationMap(keyCode, orientation, keyCodeRotationMap, | 
 |                                        keyCodeRotationMapSize); | 
 | } | 
 |  | 
 | // --- KeyboardInputMapper --- | 
 |  | 
 | KeyboardInputMapper::KeyboardInputMapper(InputDeviceContext& deviceContext, uint32_t source, | 
 |                                          int32_t keyboardType) | 
 |       : InputMapper(deviceContext), mSource(source), mKeyboardType(keyboardType) {} | 
 |  | 
 | KeyboardInputMapper::~KeyboardInputMapper() {} | 
 |  | 
 | uint32_t KeyboardInputMapper::getSources() { | 
 |     return mSource; | 
 | } | 
 |  | 
 | int32_t KeyboardInputMapper::getOrientation() { | 
 |     if (mViewport) { | 
 |         return mViewport->orientation; | 
 |     } | 
 |     return DISPLAY_ORIENTATION_0; | 
 | } | 
 |  | 
 | int32_t KeyboardInputMapper::getDisplayId() { | 
 |     if (mViewport) { | 
 |         return mViewport->displayId; | 
 |     } | 
 |     return ADISPLAY_ID_NONE; | 
 | } | 
 |  | 
 | void KeyboardInputMapper::populateDeviceInfo(InputDeviceInfo* info) { | 
 |     InputMapper::populateDeviceInfo(info); | 
 |  | 
 |     info->setKeyboardType(mKeyboardType); | 
 |     info->setKeyCharacterMap(getDeviceContext().getKeyCharacterMap()); | 
 | } | 
 |  | 
 | void KeyboardInputMapper::dump(std::string& dump) { | 
 |     dump += INDENT2 "Keyboard Input Mapper:\n"; | 
 |     dumpParameters(dump); | 
 |     dump += StringPrintf(INDENT3 "KeyboardType: %d\n", mKeyboardType); | 
 |     dump += StringPrintf(INDENT3 "Orientation: %d\n", getOrientation()); | 
 |     dump += StringPrintf(INDENT3 "KeyDowns: %zu keys currently down\n", mKeyDowns.size()); | 
 |     dump += StringPrintf(INDENT3 "MetaState: 0x%0x\n", mMetaState); | 
 |     dump += StringPrintf(INDENT3 "DownTime: %" PRId64 "\n", mDownTime); | 
 | } | 
 |  | 
 | std::optional<DisplayViewport> KeyboardInputMapper::findViewport( | 
 |         nsecs_t when, const InputReaderConfiguration* config) { | 
 |     const std::optional<uint8_t> displayPort = getDeviceContext().getAssociatedDisplayPort(); | 
 |     if (displayPort) { | 
 |         // Find the viewport that contains the same port | 
 |         return getDeviceContext().getAssociatedViewport(); | 
 |     } | 
 |  | 
 |     // No associated display defined, try to find default display if orientationAware. | 
 |     if (mParameters.orientationAware) { | 
 |         return config->getDisplayViewportByType(ViewportType::VIEWPORT_INTERNAL); | 
 |     } | 
 |  | 
 |     return std::nullopt; | 
 | } | 
 |  | 
 | void KeyboardInputMapper::configure(nsecs_t when, const InputReaderConfiguration* config, | 
 |                                     uint32_t changes) { | 
 |     InputMapper::configure(when, config, changes); | 
 |  | 
 |     if (!changes) { // first time only | 
 |         // Configure basic parameters. | 
 |         configureParameters(); | 
 |     } | 
 |  | 
 |     if (!changes || (changes & InputReaderConfiguration::CHANGE_DISPLAY_INFO)) { | 
 |         mViewport = findViewport(when, config); | 
 |     } | 
 | } | 
 |  | 
 | static void mapStemKey(int32_t keyCode, const PropertyMap& config, char const* property) { | 
 |     int32_t mapped = 0; | 
 |     if (config.tryGetProperty(String8(property), mapped) && mapped > 0) { | 
 |         for (size_t i = 0; i < stemKeyRotationMapSize; i++) { | 
 |             if (stemKeyRotationMap[i][0] == keyCode) { | 
 |                 stemKeyRotationMap[i][1] = mapped; | 
 |                 return; | 
 |             } | 
 |         } | 
 |     } | 
 | } | 
 |  | 
 | void KeyboardInputMapper::configureParameters() { | 
 |     mParameters.orientationAware = false; | 
 |     const PropertyMap& config = getDeviceContext().getConfiguration(); | 
 |     config.tryGetProperty(String8("keyboard.orientationAware"), mParameters.orientationAware); | 
 |  | 
 |     if (mParameters.orientationAware) { | 
 |         mapStemKey(AKEYCODE_STEM_PRIMARY, config, "keyboard.rotated.stem_primary"); | 
 |         mapStemKey(AKEYCODE_STEM_1, config, "keyboard.rotated.stem_1"); | 
 |         mapStemKey(AKEYCODE_STEM_2, config, "keyboard.rotated.stem_2"); | 
 |         mapStemKey(AKEYCODE_STEM_3, config, "keyboard.rotated.stem_3"); | 
 |     } | 
 |  | 
 |     mParameters.handlesKeyRepeat = false; | 
 |     config.tryGetProperty(String8("keyboard.handlesKeyRepeat"), mParameters.handlesKeyRepeat); | 
 |  | 
 |     mParameters.doNotWakeByDefault = false; | 
 |     config.tryGetProperty(String8("keyboard.doNotWakeByDefault"), mParameters.doNotWakeByDefault); | 
 | } | 
 |  | 
 | void KeyboardInputMapper::dumpParameters(std::string& dump) { | 
 |     dump += INDENT3 "Parameters:\n"; | 
 |     dump += StringPrintf(INDENT4 "OrientationAware: %s\n", toString(mParameters.orientationAware)); | 
 |     dump += StringPrintf(INDENT4 "HandlesKeyRepeat: %s\n", toString(mParameters.handlesKeyRepeat)); | 
 | } | 
 |  | 
 | void KeyboardInputMapper::reset(nsecs_t when) { | 
 |     mMetaState = AMETA_NONE; | 
 |     mDownTime = 0; | 
 |     mKeyDowns.clear(); | 
 |     mCurrentHidUsage = 0; | 
 |  | 
 |     resetLedState(); | 
 |  | 
 |     InputMapper::reset(when); | 
 | } | 
 |  | 
 | void KeyboardInputMapper::process(const RawEvent* rawEvent) { | 
 |     switch (rawEvent->type) { | 
 |         case EV_KEY: { | 
 |             int32_t scanCode = rawEvent->code; | 
 |             int32_t usageCode = mCurrentHidUsage; | 
 |             mCurrentHidUsage = 0; | 
 |  | 
 |             if (isKeyboardOrGamepadKey(scanCode)) { | 
 |                 processKey(rawEvent->when, rawEvent->value != 0, scanCode, usageCode); | 
 |             } | 
 |             break; | 
 |         } | 
 |         case EV_MSC: { | 
 |             if (rawEvent->code == MSC_SCAN) { | 
 |                 mCurrentHidUsage = rawEvent->value; | 
 |             } | 
 |             break; | 
 |         } | 
 |         case EV_SYN: { | 
 |             if (rawEvent->code == SYN_REPORT) { | 
 |                 mCurrentHidUsage = 0; | 
 |             } | 
 |         } | 
 |     } | 
 | } | 
 |  | 
 | bool KeyboardInputMapper::isKeyboardOrGamepadKey(int32_t scanCode) { | 
 |     return scanCode < BTN_MOUSE || scanCode >= BTN_WHEEL || | 
 |             (scanCode >= BTN_MISC && scanCode < BTN_MOUSE) || | 
 |             (scanCode >= BTN_JOYSTICK && scanCode < BTN_DIGI); | 
 | } | 
 |  | 
 | bool KeyboardInputMapper::isMediaKey(int32_t keyCode) { | 
 |     switch (keyCode) { | 
 |         case AKEYCODE_MEDIA_PLAY: | 
 |         case AKEYCODE_MEDIA_PAUSE: | 
 |         case AKEYCODE_MEDIA_PLAY_PAUSE: | 
 |         case AKEYCODE_MUTE: | 
 |         case AKEYCODE_HEADSETHOOK: | 
 |         case AKEYCODE_MEDIA_STOP: | 
 |         case AKEYCODE_MEDIA_NEXT: | 
 |         case AKEYCODE_MEDIA_PREVIOUS: | 
 |         case AKEYCODE_MEDIA_REWIND: | 
 |         case AKEYCODE_MEDIA_RECORD: | 
 |         case AKEYCODE_MEDIA_FAST_FORWARD: | 
 |         case AKEYCODE_MEDIA_SKIP_FORWARD: | 
 |         case AKEYCODE_MEDIA_SKIP_BACKWARD: | 
 |         case AKEYCODE_MEDIA_STEP_FORWARD: | 
 |         case AKEYCODE_MEDIA_STEP_BACKWARD: | 
 |         case AKEYCODE_MEDIA_AUDIO_TRACK: | 
 |         case AKEYCODE_VOLUME_UP: | 
 |         case AKEYCODE_VOLUME_DOWN: | 
 |         case AKEYCODE_VOLUME_MUTE: | 
 |         case AKEYCODE_TV_AUDIO_DESCRIPTION: | 
 |         case AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_UP: | 
 |         case AKEYCODE_TV_AUDIO_DESCRIPTION_MIX_DOWN: | 
 |             return true; | 
 |     } | 
 |     return false; | 
 | } | 
 |  | 
 | void KeyboardInputMapper::processKey(nsecs_t when, bool down, int32_t scanCode, int32_t usageCode) { | 
 |     int32_t keyCode; | 
 |     int32_t keyMetaState; | 
 |     uint32_t policyFlags; | 
 |  | 
 |     if (getDeviceContext().mapKey(scanCode, usageCode, mMetaState, &keyCode, &keyMetaState, | 
 |                                   &policyFlags)) { | 
 |         keyCode = AKEYCODE_UNKNOWN; | 
 |         keyMetaState = mMetaState; | 
 |         policyFlags = 0; | 
 |     } | 
 |  | 
 |     if (down) { | 
 |         // Rotate key codes according to orientation if needed. | 
 |         if (mParameters.orientationAware) { | 
 |             keyCode = rotateKeyCode(keyCode, getOrientation()); | 
 |         } | 
 |  | 
 |         // Add key down. | 
 |         ssize_t keyDownIndex = findKeyDown(scanCode); | 
 |         if (keyDownIndex >= 0) { | 
 |             // key repeat, be sure to use same keycode as before in case of rotation | 
 |             keyCode = mKeyDowns[keyDownIndex].keyCode; | 
 |         } else { | 
 |             // key down | 
 |             if ((policyFlags & POLICY_FLAG_VIRTUAL) && | 
 |                 getContext()->shouldDropVirtualKey(when, keyCode, scanCode)) { | 
 |                 return; | 
 |             } | 
 |             if (policyFlags & POLICY_FLAG_GESTURE) { | 
 |                 getDeviceContext().cancelTouch(when); | 
 |             } | 
 |  | 
 |             KeyDown keyDown; | 
 |             keyDown.keyCode = keyCode; | 
 |             keyDown.scanCode = scanCode; | 
 |             mKeyDowns.push_back(keyDown); | 
 |         } | 
 |  | 
 |         mDownTime = when; | 
 |     } else { | 
 |         // Remove key down. | 
 |         ssize_t keyDownIndex = findKeyDown(scanCode); | 
 |         if (keyDownIndex >= 0) { | 
 |             // key up, be sure to use same keycode as before in case of rotation | 
 |             keyCode = mKeyDowns[keyDownIndex].keyCode; | 
 |             mKeyDowns.erase(mKeyDowns.begin() + (size_t)keyDownIndex); | 
 |         } else { | 
 |             // key was not actually down | 
 |             ALOGI("Dropping key up from device %s because the key was not down.  " | 
 |                   "keyCode=%d, scanCode=%d", | 
 |                   getDeviceName().c_str(), keyCode, scanCode); | 
 |             return; | 
 |         } | 
 |     } | 
 |  | 
 |     if (updateMetaStateIfNeeded(keyCode, down)) { | 
 |         // If global meta state changed send it along with the key. | 
 |         // If it has not changed then we'll use what keymap gave us, | 
 |         // since key replacement logic might temporarily reset a few | 
 |         // meta bits for given key. | 
 |         keyMetaState = mMetaState; | 
 |     } | 
 |  | 
 |     nsecs_t downTime = mDownTime; | 
 |  | 
 |     // Key down on external an keyboard should wake the device. | 
 |     // We don't do this for internal keyboards to prevent them from waking up in your pocket. | 
 |     // For internal keyboards and devices for which the default wake behavior is explicitly | 
 |     // prevented (e.g. TV remotes), the key layout file should specify the policy flags for each | 
 |     // wake key individually. | 
 |     // TODO: Use the input device configuration to control this behavior more finely. | 
 |     if (down && getDeviceContext().isExternal() && !mParameters.doNotWakeByDefault && | 
 |         !isMediaKey(keyCode)) { | 
 |         policyFlags |= POLICY_FLAG_WAKE; | 
 |     } | 
 |  | 
 |     if (mParameters.handlesKeyRepeat) { | 
 |         policyFlags |= POLICY_FLAG_DISABLE_KEY_REPEAT; | 
 |     } | 
 |  | 
 |     NotifyKeyArgs args(getContext()->getNextId(), when, getDeviceId(), mSource, getDisplayId(), | 
 |                        policyFlags, down ? AKEY_EVENT_ACTION_DOWN : AKEY_EVENT_ACTION_UP, | 
 |                        AKEY_EVENT_FLAG_FROM_SYSTEM, keyCode, scanCode, keyMetaState, downTime); | 
 |     getListener()->notifyKey(&args); | 
 | } | 
 |  | 
 | ssize_t KeyboardInputMapper::findKeyDown(int32_t scanCode) { | 
 |     size_t n = mKeyDowns.size(); | 
 |     for (size_t i = 0; i < n; i++) { | 
 |         if (mKeyDowns[i].scanCode == scanCode) { | 
 |             return i; | 
 |         } | 
 |     } | 
 |     return -1; | 
 | } | 
 |  | 
 | int32_t KeyboardInputMapper::getKeyCodeState(uint32_t sourceMask, int32_t keyCode) { | 
 |     return getDeviceContext().getKeyCodeState(keyCode); | 
 | } | 
 |  | 
 | int32_t KeyboardInputMapper::getScanCodeState(uint32_t sourceMask, int32_t scanCode) { | 
 |     return getDeviceContext().getScanCodeState(scanCode); | 
 | } | 
 |  | 
 | bool KeyboardInputMapper::markSupportedKeyCodes(uint32_t sourceMask, size_t numCodes, | 
 |                                                 const int32_t* keyCodes, uint8_t* outFlags) { | 
 |     return getDeviceContext().markSupportedKeyCodes(numCodes, keyCodes, outFlags); | 
 | } | 
 |  | 
 | int32_t KeyboardInputMapper::getMetaState() { | 
 |     return mMetaState; | 
 | } | 
 |  | 
 | void KeyboardInputMapper::updateMetaState(int32_t keyCode) { | 
 |     updateMetaStateIfNeeded(keyCode, false); | 
 | } | 
 |  | 
 | bool KeyboardInputMapper::updateMetaStateIfNeeded(int32_t keyCode, bool down) { | 
 |     int32_t oldMetaState = mMetaState; | 
 |     int32_t newMetaState = android::updateMetaState(keyCode, down, oldMetaState); | 
 |     bool metaStateChanged = oldMetaState != newMetaState; | 
 |     if (metaStateChanged) { | 
 |         mMetaState = newMetaState; | 
 |         updateLedState(false); | 
 |  | 
 |         getContext()->updateGlobalMetaState(); | 
 |     } | 
 |  | 
 |     return metaStateChanged; | 
 | } | 
 |  | 
 | void KeyboardInputMapper::resetLedState() { | 
 |     initializeLedState(mCapsLockLedState, ALED_CAPS_LOCK); | 
 |     initializeLedState(mNumLockLedState, ALED_NUM_LOCK); | 
 |     initializeLedState(mScrollLockLedState, ALED_SCROLL_LOCK); | 
 |  | 
 |     updateLedState(true); | 
 | } | 
 |  | 
 | void KeyboardInputMapper::initializeLedState(LedState& ledState, int32_t led) { | 
 |     ledState.avail = getDeviceContext().hasLed(led); | 
 |     ledState.on = false; | 
 | } | 
 |  | 
 | void KeyboardInputMapper::updateLedState(bool reset) { | 
 |     updateLedStateForModifier(mCapsLockLedState, ALED_CAPS_LOCK, AMETA_CAPS_LOCK_ON, reset); | 
 |     updateLedStateForModifier(mNumLockLedState, ALED_NUM_LOCK, AMETA_NUM_LOCK_ON, reset); | 
 |     updateLedStateForModifier(mScrollLockLedState, ALED_SCROLL_LOCK, AMETA_SCROLL_LOCK_ON, reset); | 
 | } | 
 |  | 
 | void KeyboardInputMapper::updateLedStateForModifier(LedState& ledState, int32_t led, | 
 |                                                     int32_t modifier, bool reset) { | 
 |     if (ledState.avail) { | 
 |         bool desiredState = (mMetaState & modifier) != 0; | 
 |         if (reset || ledState.on != desiredState) { | 
 |             getDeviceContext().setLedState(led, desiredState); | 
 |             ledState.on = desiredState; | 
 |         } | 
 |     } | 
 | } | 
 |  | 
 | std::optional<int32_t> KeyboardInputMapper::getAssociatedDisplayId() { | 
 |     if (mViewport) { | 
 |         return std::make_optional(mViewport->displayId); | 
 |     } | 
 |     return std::nullopt; | 
 | } | 
 |  | 
 | } // namespace android |