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