Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | #ifndef RECOVERY_UI_H |
| 18 | #define RECOVERY_UI_H |
| 19 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 20 | #include <linux/input.h> // KEY_MAX |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 21 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 22 | #include <atomic> |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 23 | #include <condition_variable> |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 24 | #include <functional> |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 25 | #include <mutex> |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 26 | #include <string> |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 27 | #include <thread> |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 28 | #include <vector> |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 29 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 30 | // Abstract class for controlling the user interface during recovery. |
| 31 | class RecoveryUI { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 32 | public: |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 33 | enum Icon { |
| 34 | NONE, |
| 35 | INSTALLING_UPDATE, |
| 36 | ERASING, |
| 37 | NO_COMMAND, |
| 38 | ERROR |
| 39 | }; |
| 40 | |
| 41 | enum ProgressType { |
| 42 | EMPTY, |
| 43 | INDETERMINATE, |
| 44 | DETERMINATE |
| 45 | }; |
| 46 | |
| 47 | enum KeyAction { |
| 48 | ENQUEUE, |
| 49 | TOGGLE, |
| 50 | REBOOT, |
| 51 | IGNORE |
| 52 | }; |
| 53 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 54 | RecoveryUI(); |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 55 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 56 | virtual ~RecoveryUI(); |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 57 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 58 | // Initializes the object; called before anything else. UI texts will be initialized according to |
| 59 | // the given locale. Returns true on success. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 60 | virtual bool Init(const std::string& locale); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 61 | |
Tao Bao | 551d2c3 | 2018-05-09 20:53:13 -0700 | [diff] [blame] | 62 | virtual std::string GetLocale() const = 0; |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 63 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 64 | // Shows a stage indicator. Called immediately after Init(). |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 65 | virtual void SetStage(int current, int max) = 0; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 66 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 67 | // Sets the overall recovery state ("background image"). |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 68 | virtual void SetBackground(Icon icon) = 0; |
| 69 | virtual void SetSystemUpdateText(bool security_update) = 0; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 70 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 71 | // --- progress indicator --- |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 72 | virtual void SetProgressType(ProgressType determinate) = 0; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 73 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 74 | // Shows a progress bar and define the scope of the next operation: |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 75 | // portion - fraction of the progress bar the next operation will use |
| 76 | // seconds - expected time interval (progress bar moves at this minimum rate) |
| 77 | virtual void ShowProgress(float portion, float seconds) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 78 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 79 | // Sets progress bar position (0.0 - 1.0 within the scope defined by the last call to |
| 80 | // ShowProgress). |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 81 | virtual void SetProgress(float fraction) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 82 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 83 | // --- text log --- |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 84 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 85 | virtual void ShowText(bool visible) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 86 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 87 | virtual bool IsTextVisible() = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 88 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 89 | virtual bool WasTextEverVisible() = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 90 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 91 | // Writes a message to the on-screen log (shown if the user has toggled on the text display). |
| 92 | // Print() will also dump the message to stdout / log file, while PrintOnScreenOnly() not. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 93 | virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0; |
| 94 | virtual void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 95 | |
Tao Bao | 1d156b9 | 2018-05-02 12:43:18 -0700 | [diff] [blame] | 96 | // Shows the contents of the given file. Caller ensures the patition that contains the file has |
| 97 | // been mounted. |
| 98 | virtual void ShowFile(const std::string& filename) = 0; |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 99 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 100 | // --- key handling --- |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 101 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 102 | // Waits for a key and return it. May return -1 after timeout. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 103 | virtual int WaitKey(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 104 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 105 | virtual bool IsKeyPressed(int key); |
| 106 | virtual bool IsLongPress(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 107 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 108 | // Returns true if you have the volume up/down and power trio typical of phones and tablets, false |
| 109 | // otherwise. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 110 | virtual bool HasThreeButtons(); |
Elliott Hughes | 4af215b | 2015-04-10 15:00:34 -0700 | [diff] [blame] | 111 | |
Tao Bao | 5f8dd99 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 112 | // Returns true if it has a power key. |
| 113 | virtual bool HasPowerKey() const; |
| 114 | |
| 115 | // Returns true if it supports touch inputs. |
| 116 | virtual bool HasTouchScreen() const; |
| 117 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 118 | // Erases any queued-up keys. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 119 | virtual void FlushKeys(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 120 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 121 | // Called on each key press, even while operations are in progress. Return value indicates whether |
| 122 | // an immediate operation should be triggered (toggling the display, rebooting the device), or if |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 123 | // the key should be enqueued for use by the main thread. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 124 | virtual KeyAction CheckKey(int key, bool is_long_press); |
Doug Zongker | bb01d0c | 2012-12-17 10:52:58 -0800 | [diff] [blame] | 125 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 126 | // Called when a key is held down long enough to have been a long-press (but before the key is |
| 127 | // released). This means that if the key is eventually registered (released without any other keys |
| 128 | // being pressed in the meantime), CheckKey will be called with 'is_long_press' true. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 129 | virtual void KeyLongPress(int key); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 130 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 131 | // Normally in recovery there's a key sequence that triggers immediate reboot of the device, |
| 132 | // regardless of what recovery is doing (with the default CheckKey implementation, it's pressing |
| 133 | // the power button 7 times in row). Call this to enable or disable that feature. It is enabled by |
| 134 | // default. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 135 | virtual void SetEnableReboot(bool enabled); |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 136 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 137 | // --- menu display --- |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 138 | |
Jerry Zhang | 0e577ee | 2018-05-07 11:21:10 -0700 | [diff] [blame] | 139 | virtual void SetTitle(const std::vector<std::string>& lines) = 0; |
| 140 | |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 141 | // Displays a menu with the given 'headers' and 'items'. The supplied 'key_handler' callback, |
| 142 | // which is typically bound to Device::HandleMenuKey(), should return the expected action for the |
| 143 | // given key code and menu visibility (e.g. to move the cursor or to select an item). Caller sets |
| 144 | // 'menu_only' to true to ensure only a menu item gets selected and returned. Otherwise if |
| 145 | // 'menu_only' is false, ShowMenu() will forward any non-negative value returned from the |
| 146 | // key_handler, which may be beyond the range of menu items. This could be used to trigger a |
| 147 | // device-specific action, even without that being listed in the menu. Caller needs to handle |
| 148 | // such a case accordingly (e.g. by calling Device::InvokeMenuItem() to process the action). |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 149 | // Returns a non-negative value (the chosen item number or device-specific action code), or |
| 150 | // static_cast<size_t>(-1) if timed out waiting for input. |
| 151 | virtual size_t ShowMenu(const std::vector<std::string>& headers, |
| 152 | const std::vector<std::string>& items, size_t initial_selection, |
| 153 | bool menu_only, const std::function<int(int, bool)>& key_handler) = 0; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 154 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 155 | protected: |
| 156 | void EnqueueKey(int key_code); |
Doug Zongker | bb01d0c | 2012-12-17 10:52:58 -0800 | [diff] [blame] | 157 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 158 | // The normal and dimmed brightness percentages (default: 50 and 25, which means 50% and 25% of |
| 159 | // the max_brightness). Because the absolute values may vary across devices. These two values can |
| 160 | // be configured via subclassing. Setting brightness_normal_ to 0 to disable screensaver. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 161 | unsigned int brightness_normal_; |
| 162 | unsigned int brightness_dimmed_; |
katao | c35c1b0 | 2017-12-08 11:02:43 +0800 | [diff] [blame] | 163 | std::string brightness_file_; |
| 164 | std::string max_brightness_file_; |
Tao Bao | 6278bdf | 2017-01-16 17:38:18 -0800 | [diff] [blame] | 165 | |
Tao Bao | 5f8dd99 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 166 | // Whether we should listen for touch inputs (default: false). |
| 167 | bool touch_screen_allowed_; |
| 168 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 169 | private: |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 170 | enum class ScreensaverState { |
| 171 | DISABLED, |
| 172 | NORMAL, |
| 173 | DIMMED, |
| 174 | OFF |
| 175 | }; |
| 176 | |
Tao Bao | 5f8dd99 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 177 | // The sensitivity when detecting a swipe. |
| 178 | const int kTouchLowThreshold; |
| 179 | const int kTouchHighThreshold; |
| 180 | |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 181 | void OnKeyDetected(int key_code); |
| 182 | void OnTouchDetected(int dx, int dy); |
| 183 | int OnInputEvent(int fd, uint32_t epevents); |
| 184 | void ProcessKey(int key_code, int updown); |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 185 | void TimeKey(int key_code, int count); |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 186 | |
| 187 | bool IsUsbConnected(); |
| 188 | |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 189 | bool InitScreensaver(); |
| 190 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 191 | // Key event input queue |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 192 | std::mutex key_queue_mutex; |
| 193 | std::condition_variable key_queue_cond; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 194 | int key_queue[256], key_queue_len; |
| 195 | char key_pressed[KEY_MAX + 1]; // under key_queue_mutex |
| 196 | int key_last_down; // under key_queue_mutex |
| 197 | bool key_long_press; // under key_queue_mutex |
| 198 | int key_down_count; // under key_queue_mutex |
| 199 | bool enable_reboot; // under key_queue_mutex |
| 200 | int rel_sum; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 201 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 202 | int consecutive_power_keys; |
| 203 | int last_key; |
Doug Zongker | 9e805d6 | 2013-09-04 13:44:38 -0700 | [diff] [blame] | 204 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 205 | bool has_power_key; |
| 206 | bool has_up_key; |
| 207 | bool has_down_key; |
Tao Bao | 5f8dd99 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 208 | bool has_touch_screen; |
| 209 | |
| 210 | // Touch event related variables. See the comments in RecoveryUI::OnInputEvent(). |
| 211 | int touch_slot_; |
| 212 | int touch_X_; |
| 213 | int touch_Y_; |
| 214 | int touch_start_X_; |
| 215 | int touch_start_Y_; |
| 216 | bool touch_finger_down_; |
| 217 | bool touch_swiping_; |
Tao Bao | 046aae2 | 2017-07-31 23:15:09 -0700 | [diff] [blame] | 218 | bool is_bootreason_recovery_ui_; |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 219 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 220 | std::thread input_thread_; |
| 221 | std::atomic<bool> input_thread_stopped_{ false }; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 222 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 223 | ScreensaverState screensaver_state_; |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 224 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 225 | // The following two contain the absolute values computed from brightness_normal_ and |
| 226 | // brightness_dimmed_ respectively. |
| 227 | unsigned int brightness_normal_value_; |
| 228 | unsigned int brightness_dimmed_value_; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 229 | }; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 230 | |
| 231 | #endif // RECOVERY_UI_H |