blob: 3d9afece0f0e9fa8deed6ba8ff67ffa35110c6f5 [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:
29 RecoveryUI();
Doug Zongker32a0a472011-11-01 11:00:20 -070030
Tao Bao5d2e3bd2017-06-23 22:23:50 -070031 virtual ~RecoveryUI() {}
Doug Zongker28ce47c2011-10-28 10:33:05 -070032
Tao Bao99b2d772017-06-23 22:47:03 -070033 // Initializes the object; called before anything else. UI texts will be initialized according to
34 // the given locale. Returns true on success.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070035 virtual bool Init(const std::string& locale);
Tao Bao736d59c2017-01-03 10:15:33 -080036
Tao Bao99b2d772017-06-23 22:47:03 -070037 // Shows a stage indicator. Called immediately after Init().
Tao Bao5d2e3bd2017-06-23 22:23:50 -070038 virtual void SetStage(int current, int max) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070039
Tao Bao99b2d772017-06-23 22:47:03 -070040 // Sets the overall recovery state ("background image").
Tao Bao5d2e3bd2017-06-23 22:23:50 -070041 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 Zongker28ce47c2011-10-28 10:33:05 -070044
Tao Bao5d2e3bd2017-06-23 22:23:50 -070045 // --- progress indicator ---
46 enum ProgressType { EMPTY, INDETERMINATE, DETERMINATE };
47 virtual void SetProgressType(ProgressType determinate) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070048
Tao Bao99b2d772017-06-23 22:47:03 -070049 // Shows a progress bar and define the scope of the next operation:
Tao Bao5d2e3bd2017-06-23 22:23:50 -070050 // 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 Zongker211aebc2011-10-28 15:13:10 -070053
Tao Bao99b2d772017-06-23 22:47:03 -070054 // Sets progress bar position (0.0 - 1.0 within the scope defined by the last call to
55 // ShowProgress).
Tao Bao5d2e3bd2017-06-23 22:23:50 -070056 virtual void SetProgress(float fraction) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070057
Tao Bao5d2e3bd2017-06-23 22:23:50 -070058 // --- text log ---
Doug Zongker211aebc2011-10-28 15:13:10 -070059
Tao Bao5d2e3bd2017-06-23 22:23:50 -070060 virtual void ShowText(bool visible) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070061
Tao Bao5d2e3bd2017-06-23 22:23:50 -070062 virtual bool IsTextVisible() = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070063
Tao Bao5d2e3bd2017-06-23 22:23:50 -070064 virtual bool WasTextEverVisible() = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070065
Tao Bao99b2d772017-06-23 22:47:03 -070066 // 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 Bao5d2e3bd2017-06-23 22:23:50 -070068 virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0;
69 virtual void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070070
Tao Bao5d2e3bd2017-06-23 22:23:50 -070071 virtual void ShowFile(const char* filename) = 0;
Elliott Hughes8de52072015-04-08 20:06:50 -070072
Tao Bao5d2e3bd2017-06-23 22:23:50 -070073 // --- key handling ---
Doug Zongker211aebc2011-10-28 15:13:10 -070074
Tao Bao99b2d772017-06-23 22:47:03 -070075 // Waits for a key and return it. May return -1 after timeout.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070076 virtual int WaitKey();
Doug Zongker211aebc2011-10-28 15:13:10 -070077
Tao Bao5d2e3bd2017-06-23 22:23:50 -070078 virtual bool IsKeyPressed(int key);
79 virtual bool IsLongPress();
Doug Zongker211aebc2011-10-28 15:13:10 -070080
Tao Bao99b2d772017-06-23 22:47:03 -070081 // Returns true if you have the volume up/down and power trio typical of phones and tablets, false
82 // otherwise.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070083 virtual bool HasThreeButtons();
Elliott Hughes4af215b2015-04-10 15:00:34 -070084
Tao Baoaf9f8b42017-07-28 00:05:40 -070085 // Returns true if it has a power key.
86 virtual bool HasPowerKey() const;
87
88 // Returns true if it supports touch inputs.
89 virtual bool HasTouchScreen() const;
90
Tao Bao99b2d772017-06-23 22:47:03 -070091 // Erases any queued-up keys.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070092 virtual void FlushKeys();
Doug Zongker211aebc2011-10-28 15:13:10 -070093
Tao Bao99b2d772017-06-23 22:47:03 -070094 // Called on each key press, even while operations are in progress. Return value indicates whether
95 // an immediate operation should be triggered (toggling the display, rebooting the device), or if
Tao Bao5d2e3bd2017-06-23 22:23:50 -070096 // the key should be enqueued for use by the main thread.
97 enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE };
98 virtual KeyAction CheckKey(int key, bool is_long_press);
Doug Zongkerbb01d0c2012-12-17 10:52:58 -080099
Tao Bao99b2d772017-06-23 22:47:03 -0700100 // Called when a key is held down long enough to have been a long-press (but before the key is
101 // released). This means that if the key is eventually registered (released without any other keys
102 // being pressed in the meantime), CheckKey will be called with 'is_long_press' true.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700103 virtual void KeyLongPress(int key);
Doug Zongkerc0441d12013-07-31 11:28:24 -0700104
Tao Bao99b2d772017-06-23 22:47:03 -0700105 // Normally in recovery there's a key sequence that triggers immediate reboot of the device,
106 // regardless of what recovery is doing (with the default CheckKey implementation, it's pressing
107 // the power button 7 times in row). Call this to enable or disable that feature. It is enabled by
108 // default.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700109 virtual void SetEnableReboot(bool enabled);
Doug Zongkerc704e062014-05-23 08:40:35 -0700110
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700111 // --- menu display ---
Doug Zongker211aebc2011-10-28 15:13:10 -0700112
Tao Bao99b2d772017-06-23 22:47:03 -0700113 // Display some header text followed by a menu of items, which appears at the top of the screen
114 // (in place of any scrolling ui_print() output, if necessary).
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700115 virtual void StartMenu(const char* const* headers, const char* const* items,
116 int initial_selection) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700117
Tao Bao99b2d772017-06-23 22:47:03 -0700118 // Sets the menu highlight to the given index, wrapping if necessary. Returns the actual item
119 // selected.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700120 virtual int SelectMenu(int sel) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700121
Tao Bao99b2d772017-06-23 22:47:03 -0700122 // Ends menu mode, resetting the text overlay so that ui_print() statements will be displayed.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700123 virtual void EndMenu() = 0;
Doug Zongker32a0a472011-11-01 11:00:20 -0700124
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700125 protected:
126 void EnqueueKey(int key_code);
Doug Zongkerbb01d0c2012-12-17 10:52:58 -0800127
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700128 // The locale that's used to show the rendered texts.
129 std::string locale_;
130 bool rtl_locale_;
Tao Bao736d59c2017-01-03 10:15:33 -0800131
Tao Bao99b2d772017-06-23 22:47:03 -0700132 // The normal and dimmed brightness percentages (default: 50 and 25, which means 50% and 25% of
133 // the max_brightness). Because the absolute values may vary across devices. These two values can
134 // be configured via subclassing. Setting brightness_normal_ to 0 to disable screensaver.
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700135 unsigned int brightness_normal_;
136 unsigned int brightness_dimmed_;
Tao Bao6278bdf2017-01-16 17:38:18 -0800137
Tao Baoaf9f8b42017-07-28 00:05:40 -0700138 // Whether we should listen for touch inputs (default: false).
139 bool touch_screen_allowed_;
140
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700141 private:
Tao Baoaf9f8b42017-07-28 00:05:40 -0700142 // The sensitivity when detecting a swipe.
143 const int kTouchLowThreshold;
144 const int kTouchHighThreshold;
145
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700146 // Key event input queue
147 pthread_mutex_t key_queue_mutex;
148 pthread_cond_t key_queue_cond;
149 int key_queue[256], key_queue_len;
150 char key_pressed[KEY_MAX + 1]; // under key_queue_mutex
151 int key_last_down; // under key_queue_mutex
152 bool key_long_press; // under key_queue_mutex
153 int key_down_count; // under key_queue_mutex
154 bool enable_reboot; // under key_queue_mutex
155 int rel_sum;
Doug Zongker32a0a472011-11-01 11:00:20 -0700156
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700157 int consecutive_power_keys;
158 int last_key;
Doug Zongker9e805d62013-09-04 13:44:38 -0700159
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700160 bool has_power_key;
161 bool has_up_key;
162 bool has_down_key;
Tao Baoaf9f8b42017-07-28 00:05:40 -0700163 bool has_touch_screen;
164
165 // Touch event related variables. See the comments in RecoveryUI::OnInputEvent().
166 int touch_slot_;
167 int touch_X_;
168 int touch_Y_;
169 int touch_start_X_;
170 int touch_start_Y_;
171 bool touch_finger_down_;
172 bool touch_swiping_;
Tao Bao937e8842017-07-31 23:15:09 -0700173 bool is_bootreason_recovery_ui_;
Elliott Hughes642aaa72015-04-10 12:47:46 -0700174
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700175 struct key_timer_t {
176 RecoveryUI* ui;
177 int key_code;
178 int count;
179 };
Doug Zongkerc0441d12013-07-31 11:28:24 -0700180
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700181 pthread_t input_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700182
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700183 void OnKeyDetected(int key_code);
Tao Baoaf9f8b42017-07-28 00:05:40 -0700184 void OnTouchDetected(int dx, int dy);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700185 int OnInputEvent(int fd, uint32_t epevents);
186 void ProcessKey(int key_code, int updown);
Elliott Hughes985022a2015-04-13 13:04:32 -0700187
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700188 bool IsUsbConnected();
Doug Zongkerc0441d12013-07-31 11:28:24 -0700189
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700190 static void* time_key_helper(void* cookie);
191 void time_key(int key_code, int count);
Tao Bao736d59c2017-01-03 10:15:33 -0800192
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700193 void SetLocale(const std::string&);
Tao Bao6278bdf2017-01-16 17:38:18 -0800194
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700195 enum class ScreensaverState { DISABLED, NORMAL, DIMMED, OFF };
196 ScreensaverState screensaver_state_;
197 // The following two contain the absolute values computed from brightness_normal_ and
198 // brightness_dimmed_ respectively.
199 unsigned int brightness_normal_value_;
200 unsigned int brightness_dimmed_value_;
201 bool InitScreensaver();
Doug Zongker28ce47c2011-10-28 10:33:05 -0700202};
Doug Zongker28ce47c2011-10-28 10:33:05 -0700203
204#endif // RECOVERY_UI_H