blob: acb57663e607feb7a9d8702bc68ac7422c3a6092 [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>
22
Doug Zongker211aebc2011-10-28 15:13:10 -070023// Abstract class for controlling the user interface during recovery.
24class RecoveryUI {
25 public:
Doug Zongker32a0a472011-11-01 11:00:20 -070026 RecoveryUI();
27
Doug Zongker211aebc2011-10-28 15:13:10 -070028 virtual ~RecoveryUI() { }
Doug Zongker28ce47c2011-10-28 10:33:05 -070029
Doug Zongker211aebc2011-10-28 15:13:10 -070030 // Initialize the object; called before anything else.
Doug Zongker32a0a472011-11-01 11:00:20 -070031 virtual void Init();
Doug Zongker28ce47c2011-10-28 10:33:05 -070032
Doug Zongker5fa8c232012-09-18 12:37:02 -070033 // After calling Init(), you can tell the UI what locale it is operating in.
34 virtual void SetLocale(const char* locale) { }
35
Doug Zongker211aebc2011-10-28 15:13:10 -070036 // Set the overall recovery state ("background image").
Doug Zongker02ec6b82012-08-22 17:26:40 -070037 enum Icon { NONE, INSTALLING_UPDATE, ERASING, NO_COMMAND, ERROR };
Doug Zongker211aebc2011-10-28 15:13:10 -070038 virtual void SetBackground(Icon icon) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070039
Doug Zongker211aebc2011-10-28 15:13:10 -070040 // --- progress indicator ---
41 enum ProgressType { EMPTY, INDETERMINATE, DETERMINATE };
42 virtual void SetProgressType(ProgressType determinate) = 0;
Doug Zongker28ce47c2011-10-28 10:33:05 -070043
Doug Zongker211aebc2011-10-28 15:13:10 -070044 // Show a progress bar and define the scope of the next operation:
45 // portion - fraction of the progress bar the next operation will use
46 // seconds - expected time interval (progress bar moves at this minimum rate)
47 virtual void ShowProgress(float portion, float seconds) = 0;
48
49 // Set progress bar position (0.0 - 1.0 within the scope defined
50 // by the last call to ShowProgress).
51 virtual void SetProgress(float fraction) = 0;
52
53 // --- text log ---
54
55 virtual void ShowText(bool visible) = 0;
56
57 virtual bool IsTextVisible() = 0;
58
59 virtual bool WasTextEverVisible() = 0;
60
61 // Write a message to the on-screen log (shown if the user has
62 // toggled on the text display).
63 virtual void Print(const char* fmt, ...) = 0; // __attribute__((format(printf, 1, 2))) = 0;
64
65 // --- key handling ---
66
67 // Wait for keypress and return it. May return -1 after timeout.
Doug Zongker32a0a472011-11-01 11:00:20 -070068 virtual int WaitKey();
Doug Zongker211aebc2011-10-28 15:13:10 -070069
Doug Zongker32a0a472011-11-01 11:00:20 -070070 virtual bool IsKeyPressed(int key);
Doug Zongker211aebc2011-10-28 15:13:10 -070071
72 // Erase any queued-up keys.
Doug Zongker32a0a472011-11-01 11:00:20 -070073 virtual void FlushKeys();
Doug Zongker211aebc2011-10-28 15:13:10 -070074
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070075 // Called on each keypress, even while operations are in progress.
76 // Return value indicates whether an immediate operation should be
77 // triggered (toggling the display, rebooting the device), or if
78 // the key should be enqueued for use by the main thread.
Doug Zongker48b5b072012-01-18 13:46:26 -080079 enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE };
Doug Zongker32a0a472011-11-01 11:00:20 -070080 virtual KeyAction CheckKey(int key);
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070081
Doug Zongker211aebc2011-10-28 15:13:10 -070082 // --- menu display ---
83
84 // Display some header text followed by a menu of items, which appears
85 // at the top of the screen (in place of any scrolling ui_print()
86 // output, if necessary).
87 virtual void StartMenu(const char* const * headers, const char* const * items,
88 int initial_selection) = 0;
89
90 // Set the menu highlight to the given index, and return it (capped to
91 // the range [0..numitems).
92 virtual int SelectMenu(int sel) = 0;
93
94 // End menu mode, resetting the text overlay so that ui_print()
95 // statements will be displayed.
96 virtual void EndMenu() = 0;
Doug Zongker32a0a472011-11-01 11:00:20 -070097
98private:
99 // Key event input queue
100 pthread_mutex_t key_queue_mutex;
101 pthread_cond_t key_queue_cond;
102 int key_queue[256], key_queue_len;
103 char key_pressed[KEY_MAX + 1]; // under key_queue_mutex
104 int key_last_down; // under key_queue_mutex
105 int rel_sum;
106
107 pthread_t input_t;
108
109 static void* input_thread(void* cookie);
110 static int input_callback(int fd, short revents, void* data);
111 void process_key(int key_code, int updown);
112 bool usb_connected();
Doug Zongker28ce47c2011-10-28 10:33:05 -0700113};
Doug Zongker28ce47c2011-10-28 10:33:05 -0700114
115#endif // RECOVERY_UI_H