blob: c6d6d6b52f8f387f0bb867d316d4a8847c23bb7b [file] [log] [blame]
Doug Zongker28ce47c2011-10-28 10:33:05 -07001/*
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 Zongker32a0a472011-11-01 11:00:20 -070020#include <linux/input.h>
21#include <pthread.h>
Doug Zongkerbb01d0c2012-12-17 10:52:58 -080022#include <time.h>
Doug Zongker32a0a472011-11-01 11:00:20 -070023
Tao Bao736d59c2017-01-03 10:15:33 -080024#include <string>
25
Doug Zongker211aebc2011-10-28 15:13:10 -070026// Abstract class for controlling the user interface during recovery.
27class RecoveryUI {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070028 public:
Tao Bao75779652017-09-10 11:28:32 -070029 enum Icon {
30 NONE,
31 INSTALLING_UPDATE,
32 ERASING,
33 NO_COMMAND,
34 ERROR
35 };
36
37 enum ProgressType {
38 EMPTY,
39 INDETERMINATE,
40 DETERMINATE
41 };
42
43 enum KeyAction {
44 ENQUEUE,
45 TOGGLE,
46 REBOOT,
47 IGNORE
48 };
49
Tao Bao5d2e3bd2017-06-23 22:23:50 -070050 RecoveryUI();
Doug Zongker32a0a472011-11-01 11:00:20 -070051
Tao Bao5d2e3bd2017-06-23 22:23:50 -070052 virtual ~RecoveryUI() {}
Doug Zongker28ce47c2011-10-28 10:33:05 -070053
Tao Bao99b2d772017-06-23 22:47:03 -070054 // Initializes the object; called before anything else. UI texts will be initialized according to
55 // the given locale. Returns true on success.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070056 virtual bool Init(const std::string& locale);
Tao Bao736d59c2017-01-03 10:15:33 -080057
Tao Bao99b2d772017-06-23 22:47:03 -070058 // Shows a stage indicator. Called immediately after Init().
Tao Bao5d2e3bd2017-06-23 22:23:50 -070059 virtual void SetStage(int current, int max) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070060
Tao Bao99b2d772017-06-23 22:47:03 -070061 // Sets the overall recovery state ("background image").
Tao Bao5d2e3bd2017-06-23 22:23:50 -070062 virtual void SetBackground(Icon icon) = 0;
63 virtual void SetSystemUpdateText(bool security_update) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070064
Tao Bao5d2e3bd2017-06-23 22:23:50 -070065 // --- progress indicator ---
Tao Bao5d2e3bd2017-06-23 22:23:50 -070066 virtual void SetProgressType(ProgressType determinate) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070067
Tao Bao99b2d772017-06-23 22:47:03 -070068 // Shows a progress bar and define the scope of the next operation:
Tao Bao5d2e3bd2017-06-23 22:23:50 -070069 // portion - fraction of the progress bar the next operation will use
70 // seconds - expected time interval (progress bar moves at this minimum rate)
71 virtual void ShowProgress(float portion, float seconds) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070072
Tao Bao99b2d772017-06-23 22:47:03 -070073 // Sets progress bar position (0.0 - 1.0 within the scope defined by the last call to
74 // ShowProgress).
Tao Bao5d2e3bd2017-06-23 22:23:50 -070075 virtual void SetProgress(float fraction) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070076
Tao Bao5d2e3bd2017-06-23 22:23:50 -070077 // --- text log ---
Doug Zongker211aebc2011-10-28 15:13:10 -070078
Tao Bao5d2e3bd2017-06-23 22:23:50 -070079 virtual void ShowText(bool visible) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070080
Tao Bao5d2e3bd2017-06-23 22:23:50 -070081 virtual bool IsTextVisible() = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070082
Tao Bao5d2e3bd2017-06-23 22:23:50 -070083 virtual bool WasTextEverVisible() = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070084
Tao Bao99b2d772017-06-23 22:47:03 -070085 // Writes a message to the on-screen log (shown if the user has toggled on the text display).
86 // Print() will also dump the message to stdout / log file, while PrintOnScreenOnly() not.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070087 virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0;
88 virtual void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070089
Tao Bao5d2e3bd2017-06-23 22:23:50 -070090 virtual void ShowFile(const char* filename) = 0;
Elliott Hughes8de52072015-04-08 20:06:50 -070091
Tao Bao5d2e3bd2017-06-23 22:23:50 -070092 // --- key handling ---
Doug Zongker211aebc2011-10-28 15:13:10 -070093
Tao Bao99b2d772017-06-23 22:47:03 -070094 // Waits for a key and return it. May return -1 after timeout.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070095 virtual int WaitKey();
Doug Zongker211aebc2011-10-28 15:13:10 -070096
Tao Bao5d2e3bd2017-06-23 22:23:50 -070097 virtual bool IsKeyPressed(int key);
98 virtual bool IsLongPress();
Doug Zongker211aebc2011-10-28 15:13:10 -070099
Tao Bao99b2d772017-06-23 22:47:03 -0700100 // Returns true if you have the volume up/down and power trio typical of phones and tablets, false
101 // otherwise.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700102 virtual bool HasThreeButtons();
Elliott Hughes4af215b2015-04-10 15:00:34 -0700103
Tao Bao5f8dd992017-07-28 00:05:40 -0700104 // Returns true if it has a power key.
105 virtual bool HasPowerKey() const;
106
107 // Returns true if it supports touch inputs.
108 virtual bool HasTouchScreen() const;
109
Tao Bao99b2d772017-06-23 22:47:03 -0700110 // Erases any queued-up keys.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700111 virtual void FlushKeys();
Doug Zongker211aebc2011-10-28 15:13:10 -0700112
Tao Bao99b2d772017-06-23 22:47:03 -0700113 // Called on each key press, even while operations are in progress. Return value indicates whether
114 // an immediate operation should be triggered (toggling the display, rebooting the device), or if
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700115 // the key should be enqueued for use by the main thread.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700116 virtual KeyAction CheckKey(int key, bool is_long_press);
Doug Zongkerbb01d0c2012-12-17 10:52:58 -0800117
Tao Bao99b2d772017-06-23 22:47:03 -0700118 // Called when a key is held down long enough to have been a long-press (but before the key is
119 // released). This means that if the key is eventually registered (released without any other keys
120 // being pressed in the meantime), CheckKey will be called with 'is_long_press' true.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700121 virtual void KeyLongPress(int key);
Doug Zongkerc0441d12013-07-31 11:28:24 -0700122
Tao Bao99b2d772017-06-23 22:47:03 -0700123 // Normally in recovery there's a key sequence that triggers immediate reboot of the device,
124 // regardless of what recovery is doing (with the default CheckKey implementation, it's pressing
125 // the power button 7 times in row). Call this to enable or disable that feature. It is enabled by
126 // default.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700127 virtual void SetEnableReboot(bool enabled);
Doug Zongkerc704e062014-05-23 08:40:35 -0700128
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700129 // --- menu display ---
Doug Zongker211aebc2011-10-28 15:13:10 -0700130
Tao Bao99b2d772017-06-23 22:47:03 -0700131 // Display some header text followed by a menu of items, which appears at the top of the screen
132 // (in place of any scrolling ui_print() output, if necessary).
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700133 virtual void StartMenu(const char* const* headers, const char* const* items,
134 int initial_selection) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700135
Tao Bao99b2d772017-06-23 22:47:03 -0700136 // Sets the menu highlight to the given index, wrapping if necessary. Returns the actual item
137 // selected.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700138 virtual int SelectMenu(int sel) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700139
Tao Bao99b2d772017-06-23 22:47:03 -0700140 // Ends menu mode, resetting the text overlay so that ui_print() statements will be displayed.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700141 virtual void EndMenu() = 0;
Doug Zongker32a0a472011-11-01 11:00:20 -0700142
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700143 protected:
144 void EnqueueKey(int key_code);
Doug Zongkerbb01d0c2012-12-17 10:52:58 -0800145
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700146 // The locale that's used to show the rendered texts.
147 std::string locale_;
148 bool rtl_locale_;
Tao Bao736d59c2017-01-03 10:15:33 -0800149
Tao Bao99b2d772017-06-23 22:47:03 -0700150 // The normal and dimmed brightness percentages (default: 50 and 25, which means 50% and 25% of
151 // the max_brightness). Because the absolute values may vary across devices. These two values can
152 // be configured via subclassing. Setting brightness_normal_ to 0 to disable screensaver.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700153 unsigned int brightness_normal_;
154 unsigned int brightness_dimmed_;
Tao Bao6278bdf2017-01-16 17:38:18 -0800155
Tao Bao5f8dd992017-07-28 00:05:40 -0700156 // Whether we should listen for touch inputs (default: false).
157 bool touch_screen_allowed_;
158
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700159 private:
Tao Bao75779652017-09-10 11:28:32 -0700160 enum class ScreensaverState {
161 DISABLED,
162 NORMAL,
163 DIMMED,
164 OFF
165 };
166
167 struct key_timer_t {
168 RecoveryUI* ui;
169 int key_code;
170 int count;
171 };
172
Tao Bao5f8dd992017-07-28 00:05:40 -0700173 // The sensitivity when detecting a swipe.
174 const int kTouchLowThreshold;
175 const int kTouchHighThreshold;
176
Tao Bao75779652017-09-10 11:28:32 -0700177 void OnKeyDetected(int key_code);
178 void OnTouchDetected(int dx, int dy);
179 int OnInputEvent(int fd, uint32_t epevents);
180 void ProcessKey(int key_code, int updown);
181
182 bool IsUsbConnected();
183
184 static void* time_key_helper(void* cookie);
185 void time_key(int key_code, int count);
186
187 void SetLocale(const std::string&);
188
189 bool InitScreensaver();
190
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700191 // Key event input queue
192 pthread_mutex_t key_queue_mutex;
193 pthread_cond_t key_queue_cond;
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 Zongker32a0a472011-11-01 11:00:20 -0700201
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700202 int consecutive_power_keys;
203 int last_key;
Doug Zongker9e805d62013-09-04 13:44:38 -0700204
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700205 bool has_power_key;
206 bool has_up_key;
207 bool has_down_key;
Tao Bao5f8dd992017-07-28 00:05:40 -0700208 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 Bao046aae22017-07-31 23:15:09 -0700218 bool is_bootreason_recovery_ui_;
Elliott Hughes642aaa72015-04-10 12:47:46 -0700219
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700220 pthread_t input_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700221
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700222 ScreensaverState screensaver_state_;
Tao Bao75779652017-09-10 11:28:32 -0700223
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700224 // The following two contain the absolute values computed from brightness_normal_ and
225 // brightness_dimmed_ respectively.
226 unsigned int brightness_normal_value_;
227 unsigned int brightness_dimmed_value_;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700228};
Doug Zongker28ce47c2011-10-28 10:33:05 -0700229
230#endif // RECOVERY_UI_H