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 | |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 20 | #include <linux/input.h> |
| 21 | #include <pthread.h> |
Doug Zongker | bb01d0c | 2012-12-17 10:52:58 -0800 | [diff] [blame] | 22 | #include <time.h> |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 23 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 24 | #include <string> |
| 25 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 26 | // Abstract class for controlling the user interface during recovery. |
| 27 | class RecoveryUI { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 28 | public: |
| 29 | RecoveryUI(); |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 30 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 31 | virtual ~RecoveryUI() {} |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 32 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 33 | // Initializes the object; called before anything else. UI texts will be initialized according to |
| 34 | // the given locale. Returns true on success. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 35 | virtual bool Init(const std::string& locale); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 36 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 37 | // Shows a stage indicator. Called immediately after Init(). |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 38 | virtual void SetStage(int current, int max) = 0; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 39 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 40 | // Sets the overall recovery state ("background image"). |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 41 | enum Icon { NONE, INSTALLING_UPDATE, ERASING, NO_COMMAND, ERROR }; |
| 42 | virtual void SetBackground(Icon icon) = 0; |
| 43 | virtual void SetSystemUpdateText(bool security_update) = 0; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 44 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 45 | // --- progress indicator --- |
| 46 | enum ProgressType { EMPTY, INDETERMINATE, DETERMINATE }; |
| 47 | virtual void SetProgressType(ProgressType determinate) = 0; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 48 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 49 | // Shows a progress bar and define the scope of the next operation: |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 50 | // portion - fraction of the progress bar the next operation will use |
| 51 | // seconds - expected time interval (progress bar moves at this minimum rate) |
| 52 | virtual void ShowProgress(float portion, float seconds) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 53 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 54 | // Sets progress bar position (0.0 - 1.0 within the scope defined by the last call to |
| 55 | // ShowProgress). |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 56 | virtual void SetProgress(float fraction) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 57 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 58 | // --- text log --- |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 59 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 60 | virtual void ShowText(bool visible) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 61 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 62 | virtual bool IsTextVisible() = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 63 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 64 | virtual bool WasTextEverVisible() = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 65 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 66 | // Writes a message to the on-screen log (shown if the user has toggled on the text display). |
| 67 | // 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] | 68 | virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0; |
| 69 | virtual void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 70 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 71 | virtual void ShowFile(const char* filename) = 0; |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 72 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 73 | // --- key handling --- |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 74 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 75 | // Waits for a key and return it. May return -1 after timeout. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 76 | virtual int WaitKey(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 77 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 78 | virtual bool IsKeyPressed(int key); |
| 79 | virtual bool IsLongPress(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 80 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 81 | // Returns true if you have the volume up/down and power trio typical of phones and tablets, false |
| 82 | // otherwise. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 83 | virtual bool HasThreeButtons(); |
Elliott Hughes | 4af215b | 2015-04-10 15:00:34 -0700 | [diff] [blame] | 84 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 85 | // Erases any queued-up keys. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 86 | virtual void FlushKeys(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 87 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 88 | // Called on each key press, even while operations are in progress. Return value indicates whether |
| 89 | // 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] | 90 | // the key should be enqueued for use by the main thread. |
| 91 | enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE }; |
| 92 | virtual KeyAction CheckKey(int key, bool is_long_press); |
Doug Zongker | bb01d0c | 2012-12-17 10:52:58 -0800 | [diff] [blame] | 93 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 94 | // Called when a key is held down long enough to have been a long-press (but before the key is |
| 95 | // released). This means that if the key is eventually registered (released without any other keys |
| 96 | // 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] | 97 | virtual void KeyLongPress(int key); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 98 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 99 | // Normally in recovery there's a key sequence that triggers immediate reboot of the device, |
| 100 | // regardless of what recovery is doing (with the default CheckKey implementation, it's pressing |
| 101 | // the power button 7 times in row). Call this to enable or disable that feature. It is enabled by |
| 102 | // default. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 103 | virtual void SetEnableReboot(bool enabled); |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 104 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 105 | // --- menu display --- |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 106 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 107 | // Display some header text followed by a menu of items, which appears at the top of the screen |
| 108 | // (in place of any scrolling ui_print() output, if necessary). |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 109 | virtual void StartMenu(const char* const* headers, const char* const* items, |
| 110 | int initial_selection) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 111 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 112 | // Sets the menu highlight to the given index, wrapping if necessary. Returns the actual item |
| 113 | // selected. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 114 | virtual int SelectMenu(int sel) = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 115 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 116 | // Ends menu mode, resetting the text overlay so that ui_print() statements will be displayed. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 117 | virtual void EndMenu() = 0; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 118 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 119 | protected: |
| 120 | void EnqueueKey(int key_code); |
Doug Zongker | bb01d0c | 2012-12-17 10:52:58 -0800 | [diff] [blame] | 121 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 122 | // The locale that's used to show the rendered texts. |
| 123 | std::string locale_; |
| 124 | bool rtl_locale_; |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 125 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 126 | // The normal and dimmed brightness percentages (default: 50 and 25, which means 50% and 25% of |
| 127 | // the max_brightness). Because the absolute values may vary across devices. These two values can |
| 128 | // be configured via subclassing. Setting brightness_normal_ to 0 to disable screensaver. |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 129 | unsigned int brightness_normal_; |
| 130 | unsigned int brightness_dimmed_; |
Tao Bao | 6278bdf | 2017-01-16 17:38:18 -0800 | [diff] [blame] | 131 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 132 | private: |
| 133 | // Key event input queue |
| 134 | pthread_mutex_t key_queue_mutex; |
| 135 | pthread_cond_t key_queue_cond; |
| 136 | int key_queue[256], key_queue_len; |
| 137 | char key_pressed[KEY_MAX + 1]; // under key_queue_mutex |
| 138 | int key_last_down; // under key_queue_mutex |
| 139 | bool key_long_press; // under key_queue_mutex |
| 140 | int key_down_count; // under key_queue_mutex |
| 141 | bool enable_reboot; // under key_queue_mutex |
| 142 | int rel_sum; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 143 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 144 | int consecutive_power_keys; |
| 145 | int last_key; |
Doug Zongker | 9e805d6 | 2013-09-04 13:44:38 -0700 | [diff] [blame] | 146 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 147 | bool has_power_key; |
| 148 | bool has_up_key; |
| 149 | bool has_down_key; |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 150 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 151 | struct key_timer_t { |
| 152 | RecoveryUI* ui; |
| 153 | int key_code; |
| 154 | int count; |
| 155 | }; |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 156 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 157 | pthread_t input_thread_; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 158 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 159 | void OnKeyDetected(int key_code); |
| 160 | int OnInputEvent(int fd, uint32_t epevents); |
| 161 | void ProcessKey(int key_code, int updown); |
Elliott Hughes | 985022a | 2015-04-13 13:04:32 -0700 | [diff] [blame] | 162 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 163 | bool IsUsbConnected(); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 164 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 165 | static void* time_key_helper(void* cookie); |
| 166 | void time_key(int key_code, int count); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 167 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 168 | void SetLocale(const std::string&); |
Tao Bao | 6278bdf | 2017-01-16 17:38:18 -0800 | [diff] [blame] | 169 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 170 | enum class ScreensaverState { DISABLED, NORMAL, DIMMED, OFF }; |
| 171 | ScreensaverState screensaver_state_; |
| 172 | // The following two contain the absolute values computed from brightness_normal_ and |
| 173 | // brightness_dimmed_ respectively. |
| 174 | unsigned int brightness_normal_value_; |
| 175 | unsigned int brightness_dimmed_value_; |
| 176 | bool InitScreensaver(); |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 177 | }; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 178 | |
| 179 | #endif // RECOVERY_UI_H |