Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2021 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 | |
| 17 | #pragma once |
| 18 | |
| 19 | #include <stdint.h> |
| 20 | #include <optional> |
| 21 | #include <unordered_map> |
| 22 | |
chaviw | 98318de | 2021-05-19 16:45:23 -0500 | [diff] [blame] | 23 | #include <android/gui/FocusRequest.h> |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 24 | #include <binder/Binder.h> |
chaviw | 98318de | 2021-05-19 16:45:23 -0500 | [diff] [blame] | 25 | #include <gui/WindowInfo.h> |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 26 | |
| 27 | namespace android::inputdispatcher { |
| 28 | |
| 29 | // Keeps track of the focused window per display. The class listens to updates from input dispatcher |
| 30 | // and provides focus changes. |
| 31 | // |
| 32 | // Focus Policy |
| 33 | // Window focusabilty - A window token can be focused if there is at least one window handle that |
| 34 | // is visible with the same token and all window handles with the same token are focusable. |
| 35 | // See FocusResolver::isTokenFocusable |
| 36 | // |
Vishnu Nair | 1dcad98 | 2021-02-24 14:38:25 -0800 | [diff] [blame] | 37 | // Focus request - Request will be granted if the window is focusable. If it's not |
| 38 | // focusable, then the request is persisted and granted when it becomes focusable. The currently |
| 39 | // focused window will lose focus and any pending keys will be added to a queue so it can be sent |
| 40 | // to the window when it gets focus. |
| 41 | // |
| 42 | // Condition focus request - Request with a focus token specified. Request will be granted if the |
| 43 | // window is focusable and the focus token is the currently focused. Otherwise, the request is |
| 44 | // dropped. Conditional focus requests are not persisted. The window will lose focus and go back |
| 45 | // to the focus token if it becomes not focusable. |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 46 | // |
| 47 | // Window handle updates - Focus is lost when the currently focused window becomes not focusable. |
Vishnu Nair | 1dcad98 | 2021-02-24 14:38:25 -0800 | [diff] [blame] | 48 | // If the previous focus request is focusable, then we will try to grant that window focus. |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 49 | class FocusResolver { |
| 50 | public: |
| 51 | // Returns the focused window token on the specified display. |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 52 | sp<IBinder> getFocusedWindowToken(ui::LogicalDisplayId displayId) const; |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 53 | |
| 54 | struct FocusChanges { |
| 55 | sp<IBinder> oldFocus; |
| 56 | sp<IBinder> newFocus; |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 57 | ui::LogicalDisplayId displayId; |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 58 | std::string reason; |
| 59 | }; |
| 60 | std::optional<FocusResolver::FocusChanges> setInputWindows( |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 61 | ui::LogicalDisplayId displayId, |
| 62 | const std::vector<sp<android::gui::WindowInfoHandle>>& windows); |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 63 | std::optional<FocusResolver::FocusChanges> setFocusedWindow( |
chaviw | 98318de | 2021-05-19 16:45:23 -0500 | [diff] [blame] | 64 | const android::gui::FocusRequest& request, |
| 65 | const std::vector<sp<android::gui::WindowInfoHandle>>& windows); |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 66 | |
Vishnu Nair | 599f141 | 2021-06-21 10:39:58 -0700 | [diff] [blame] | 67 | // Display has been removed from the system, clean up old references. |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 68 | void displayRemoved(ui::LogicalDisplayId displayId); |
Vishnu Nair | 599f141 | 2021-06-21 10:39:58 -0700 | [diff] [blame] | 69 | |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 70 | // exposed for debugging |
| 71 | bool hasFocusedWindowTokens() const { return !mFocusedWindowTokenByDisplay.empty(); } |
| 72 | std::string dumpFocusedWindows() const; |
| 73 | std::string dump() const; |
| 74 | |
| 75 | private: |
Vishnu Nair | 1dcad98 | 2021-02-24 14:38:25 -0800 | [diff] [blame] | 76 | enum class Focusability { |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 77 | OK, |
| 78 | NO_WINDOW, |
| 79 | NOT_FOCUSABLE, |
| 80 | NOT_VISIBLE, |
Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 81 | |
| 82 | ftl_last = NOT_VISIBLE |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | // Checks if the window token can be focused on a display. The token can be focused if there is |
| 86 | // at least one window handle that is visible with the same token and all window handles with |
| 87 | // the same token are focusable. |
| 88 | // |
| 89 | // In the case of mirroring, two windows may share the same window token and their visibility |
| 90 | // might be different. Example, the mirrored window can cover the window its mirroring. However, |
| 91 | // we expect the focusability of the windows to match since its hard to reason why one window |
| 92 | // can receive focus events and the other cannot when both are backed by the same input channel. |
| 93 | // |
chaviw | 98318de | 2021-05-19 16:45:23 -0500 | [diff] [blame] | 94 | static Focusability isTokenFocusable( |
| 95 | const sp<IBinder>& token, |
Chavi Weingarten | 847e851 | 2023-03-29 00:26:09 +0000 | [diff] [blame] | 96 | const std::vector<sp<android::gui::WindowInfoHandle>>& windows, |
| 97 | sp<android::gui::WindowInfoHandle>& outFocusableWindow); |
| 98 | |
| 99 | static FocusResolver::Focusability getResolvedFocusWindow( |
| 100 | const sp<IBinder>& token, |
| 101 | const std::vector<sp<android::gui::WindowInfoHandle>>& windows, |
| 102 | sp<android::gui::WindowInfoHandle>& outFocusableWindow); |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 103 | |
| 104 | // Focus tracking for keys, trackball, etc. A window token can be associated with one or |
| 105 | // more InputWindowHandles. If a window is mirrored, the window and its mirror will share |
| 106 | // the same token. Focus is tracked by the token per display and the events are dispatched |
| 107 | // to the channel associated by this token. |
| 108 | typedef std::pair<std::string /* name */, sp<IBinder>> NamedToken; |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 109 | std::unordered_map<ui::LogicalDisplayId /* displayId */, NamedToken> |
| 110 | mFocusedWindowTokenByDisplay; |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 111 | |
Vishnu Nair | 1dcad98 | 2021-02-24 14:38:25 -0800 | [diff] [blame] | 112 | // This map will store the focus request per display. When the input window handles are updated, |
| 113 | // the current request will be checked to see if it can be processed at that time. |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 114 | std::unordered_map<ui::LogicalDisplayId /* displayId */, android::gui::FocusRequest> |
| 115 | mFocusRequestByDisplay; |
Vishnu Nair | 1dcad98 | 2021-02-24 14:38:25 -0800 | [diff] [blame] | 116 | |
| 117 | // Last reason for not granting a focus request. This is used to add more debug information |
| 118 | // in the event logs. |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 119 | std::unordered_map<ui::LogicalDisplayId /* displayId */, Focusability> |
| 120 | mLastFocusResultByDisplay; |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 121 | |
| 122 | std::optional<FocusResolver::FocusChanges> updateFocusedWindow( |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 123 | ui::LogicalDisplayId displayId, const std::string& reason, const sp<IBinder>& token, |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 124 | const std::string& tokenName = ""); |
Linnan Li | 13bf76a | 2024-05-05 19:18:02 +0800 | [diff] [blame] | 125 | std::optional<android::gui::FocusRequest> getFocusRequest(ui::LogicalDisplayId displayId); |
Vishnu Nair | c519ff7 | 2021-01-21 08:23:08 -0800 | [diff] [blame] | 126 | }; |
| 127 | |
Dominik Laskowski | 7578845 | 2021-02-09 18:51:25 -0800 | [diff] [blame] | 128 | } // namespace android::inputdispatcher |