blob: ca72911db42302351f216af36729b3c9653a2b1a [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
Doug Zongker211aebc2011-10-28 15:13:10 -070024// Abstract class for controlling the user interface during recovery.
25class RecoveryUI {
26 public:
Doug Zongker32a0a472011-11-01 11:00:20 -070027 RecoveryUI();
28
Doug Zongker211aebc2011-10-28 15:13:10 -070029 virtual ~RecoveryUI() { }
Doug Zongker28ce47c2011-10-28 10:33:05 -070030
Doug Zongker211aebc2011-10-28 15:13:10 -070031 // Initialize the object; called before anything else.
Doug Zongker32a0a472011-11-01 11:00:20 -070032 virtual void Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -080033 // Show a stage indicator. Call immediately after Init().
Elliott Hughes8de52072015-04-08 20:06:50 -070034 virtual void SetStage(int current, int max) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070035
Doug Zongker5fa8c232012-09-18 12:37:02 -070036 // After calling Init(), you can tell the UI what locale it is operating in.
Elliott Hughes8de52072015-04-08 20:06:50 -070037 virtual void SetLocale(const char* locale) = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -070038
Doug Zongker211aebc2011-10-28 15:13:10 -070039 // Set the overall recovery state ("background image").
Doug Zongker02ec6b82012-08-22 17:26:40 -070040 enum Icon { NONE, INSTALLING_UPDATE, ERASING, NO_COMMAND, ERROR };
Doug Zongker211aebc2011-10-28 15:13:10 -070041 virtual void SetBackground(Icon icon) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070042
Doug Zongker211aebc2011-10-28 15:13:10 -070043 // --- progress indicator ---
44 enum ProgressType { EMPTY, INDETERMINATE, DETERMINATE };
45 virtual void SetProgressType(ProgressType determinate) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070046
Doug Zongker211aebc2011-10-28 15:13:10 -070047 // Show a progress bar and define the scope of the next operation:
48 // portion - fraction of the progress bar the next operation will use
49 // seconds - expected time interval (progress bar moves at this minimum rate)
50 virtual void ShowProgress(float portion, float seconds) = 0;
51
52 // Set progress bar position (0.0 - 1.0 within the scope defined
53 // by the last call to ShowProgress).
54 virtual void SetProgress(float fraction) = 0;
55
56 // --- text log ---
57
58 virtual void ShowText(bool visible) = 0;
59
60 virtual bool IsTextVisible() = 0;
61
62 virtual bool WasTextEverVisible() = 0;
63
64 // Write a message to the on-screen log (shown if the user has
Tao Baob6918c72015-05-19 17:02:16 -070065 // toggled on the text display). Print() will also dump the message
66 // to stdout / log file, while PrintOnScreenOnly() not.
Elliott Hughes018ed312015-04-08 16:51:36 -070067 virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0;
Tao Baob6918c72015-05-19 17:02:16 -070068 virtual void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3) = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -070069
Elliott Hughes8de52072015-04-08 20:06:50 -070070 virtual void ShowFile(const char* filename) = 0;
71
Doug Zongker211aebc2011-10-28 15:13:10 -070072 // --- key handling ---
73
Elliott Hughes642aaa72015-04-10 12:47:46 -070074 // Wait for a key and return it. May return -1 after timeout.
Doug Zongker32a0a472011-11-01 11:00:20 -070075 virtual int WaitKey();
Doug Zongker211aebc2011-10-28 15:13:10 -070076
Doug Zongker32a0a472011-11-01 11:00:20 -070077 virtual bool IsKeyPressed(int key);
Elliott Hughes642aaa72015-04-10 12:47:46 -070078 virtual bool IsLongPress();
Doug Zongker211aebc2011-10-28 15:13:10 -070079
Elliott Hughes4af215b2015-04-10 15:00:34 -070080 // Returns true if you have the volume up/down and power trio typical
81 // of phones and tablets, false otherwise.
82 virtual bool HasThreeButtons();
83
Doug Zongker211aebc2011-10-28 15:13:10 -070084 // Erase any queued-up keys.
Doug Zongker32a0a472011-11-01 11:00:20 -070085 virtual void FlushKeys();
Doug Zongker211aebc2011-10-28 15:13:10 -070086
Elliott Hughes642aaa72015-04-10 12:47:46 -070087 // Called on each key press, even while operations are in progress.
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070088 // Return value indicates whether an immediate operation should be
89 // triggered (toggling the display, rebooting the device), or if
90 // the key should be enqueued for use by the main thread.
Elliott Hughesec283402015-04-10 10:01:53 -070091 enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE };
Elliott Hughes642aaa72015-04-10 12:47:46 -070092 virtual KeyAction CheckKey(int key, bool is_long_press);
Doug Zongkerbb01d0c2012-12-17 10:52:58 -080093
Doug Zongkerc0441d12013-07-31 11:28:24 -070094 // Called when a key is held down long enough to have been a
95 // long-press (but before the key is released). This means that
96 // if the key is eventually registered (released without any other
Elliott Hughes642aaa72015-04-10 12:47:46 -070097 // keys being pressed in the meantime), CheckKey will be called with
98 // 'is_long_press' true.
Doug Zongkerc0441d12013-07-31 11:28:24 -070099 virtual void KeyLongPress(int key);
100
Doug Zongkerc704e062014-05-23 08:40:35 -0700101 // Normally in recovery there's a key sequence that triggers
102 // immediate reboot of the device, regardless of what recovery is
103 // doing (with the default CheckKey implementation, it's pressing
104 // the power button 7 times in row). Call this to enable or
105 // disable that feature. It is enabled by default.
106 virtual void SetEnableReboot(bool enabled);
107
Doug Zongker211aebc2011-10-28 15:13:10 -0700108 // --- menu display ---
109
110 // Display some header text followed by a menu of items, which appears
111 // at the top of the screen (in place of any scrolling ui_print()
112 // output, if necessary).
113 virtual void StartMenu(const char* const * headers, const char* const * items,
114 int initial_selection) = 0;
115
Elliott Hughes642aaa72015-04-10 12:47:46 -0700116 // Set the menu highlight to the given index, wrapping if necessary.
117 // Returns the actual item selected.
Doug Zongker211aebc2011-10-28 15:13:10 -0700118 virtual int SelectMenu(int sel) = 0;
119
120 // End menu mode, resetting the text overlay so that ui_print()
121 // statements will be displayed.
122 virtual void EndMenu() = 0;
Doug Zongker32a0a472011-11-01 11:00:20 -0700123
Doug Zongkerbb01d0c2012-12-17 10:52:58 -0800124protected:
125 void EnqueueKey(int key_code);
126
Doug Zongker32a0a472011-11-01 11:00:20 -0700127private:
128 // Key event input queue
129 pthread_mutex_t key_queue_mutex;
130 pthread_cond_t key_queue_cond;
131 int key_queue[256], key_queue_len;
132 char key_pressed[KEY_MAX + 1]; // under key_queue_mutex
133 int key_last_down; // under key_queue_mutex
Doug Zongkerc0441d12013-07-31 11:28:24 -0700134 bool key_long_press; // under key_queue_mutex
135 int key_down_count; // under key_queue_mutex
Doug Zongkerc704e062014-05-23 08:40:35 -0700136 bool enable_reboot; // under key_queue_mutex
Doug Zongker32a0a472011-11-01 11:00:20 -0700137 int rel_sum;
138
Doug Zongker9e805d62013-09-04 13:44:38 -0700139 int consecutive_power_keys;
Doug Zongker9e805d62013-09-04 13:44:38 -0700140 int last_key;
141
Elliott Hughes642aaa72015-04-10 12:47:46 -0700142 bool has_power_key;
143 bool has_up_key;
144 bool has_down_key;
145
146 struct key_timer_t {
Doug Zongkerc0441d12013-07-31 11:28:24 -0700147 RecoveryUI* ui;
148 int key_code;
149 int count;
Elliott Hughes642aaa72015-04-10 12:47:46 -0700150 };
Doug Zongkerc0441d12013-07-31 11:28:24 -0700151
Elliott Hughes985022a2015-04-13 13:04:32 -0700152 pthread_t input_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700153
Elliott Hughes642aaa72015-04-10 12:47:46 -0700154 void OnKeyDetected(int key_code);
155
Elliott Hughes985022a2015-04-13 13:04:32 -0700156 static int InputCallback(int fd, uint32_t epevents, void* data);
157 int OnInputEvent(int fd, uint32_t epevents);
158 void ProcessKey(int key_code, int updown);
159
160 bool IsUsbConnected();
Doug Zongkerc0441d12013-07-31 11:28:24 -0700161
162 static void* time_key_helper(void* cookie);
163 void time_key(int key_code, int count);
Doug Zongker28ce47c2011-10-28 10:33:05 -0700164};
Doug Zongker28ce47c2011-10-28 10:33:05 -0700165
166#endif // RECOVERY_UI_H