blob: b8f6ea28bad1460ccd27bb3805ac009d1deab12e [file] [log] [blame]
Doug Zongker211aebc2011-10-28 15:13:10 -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
Elliott Hughes498cda62016-04-14 16:49:04 -070017#include <dirent.h>
Doug Zongker211aebc2011-10-28 15:13:10 -070018#include <errno.h>
19#include <fcntl.h>
20#include <linux/input.h>
21#include <pthread.h>
22#include <stdarg.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/stat.h>
27#include <sys/time.h>
28#include <sys/types.h>
29#include <time.h>
30#include <unistd.h>
31
Tao Bao736d59c2017-01-03 10:15:33 -080032#include <string>
Elliott Hughes95fc63e2015-04-10 19:12:01 -070033#include <vector>
34
Tianjie Xuc21edd42016-08-05 18:00:04 -070035#include <android-base/logging.h>
Elliott Hughescb220402016-09-23 15:30:55 -070036#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080037#include <android-base/strings.h>
38#include <android-base/stringprintf.h>
Tao Baob6918c72015-05-19 17:02:16 -070039
Doug Zongker211aebc2011-10-28 15:13:10 -070040#include "common.h"
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070041#include "device.h"
Doug Zongker32a0a472011-11-01 11:00:20 -070042#include "minui/minui.h"
43#include "screen_ui.h"
44#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070045
Doug Zongker211aebc2011-10-28 15:13:10 -070046// Return the current time as a double (including fractions of a second).
47static double now() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070048 struct timeval tv;
49 gettimeofday(&tv, nullptr);
50 return tv.tv_sec + tv.tv_usec / 1000000.0;
Doug Zongker211aebc2011-10-28 15:13:10 -070051}
52
Tao Bao736d59c2017-01-03 10:15:33 -080053ScreenRecoveryUI::ScreenRecoveryUI()
Tao Bao4521b702017-06-20 18:11:21 -070054 : kMarginWidth(RECOVERY_UI_MARGIN_WIDTH),
55 kMarginHeight(RECOVERY_UI_MARGIN_HEIGHT),
Tao Bao016120f2017-08-02 17:11:04 -070056 kAnimationFps(RECOVERY_UI_ANIMATION_FPS),
Tao Bao4521b702017-06-20 18:11:21 -070057 density_(static_cast<float>(android::base::GetIntProperty("ro.sf.lcd_density", 160)) / 160.f),
Tao Bao171b4c42017-06-19 23:10:44 -070058 currentIcon(NONE),
Tao Bao736d59c2017-01-03 10:15:33 -080059 progressBarType(EMPTY),
60 progressScopeStart(0),
61 progressScopeSize(0),
62 progress(0),
63 pagesIdentical(false),
64 text_cols_(0),
65 text_rows_(0),
66 text_(nullptr),
67 text_col_(0),
68 text_row_(0),
69 text_top_(0),
70 show_text(false),
71 show_text_ever(false),
Tao Bao17fa5c72017-09-07 13:38:51 -070072 menu_headers_(nullptr),
Tao Bao736d59c2017-01-03 10:15:33 -080073 show_menu(false),
74 menu_items(0),
75 menu_sel(0),
76 file_viewer_text_(nullptr),
77 intro_frames(0),
78 loop_frames(0),
79 current_frame(0),
80 intro_done(false),
Tao Bao736d59c2017-01-03 10:15:33 -080081 stage(-1),
82 max_stage(-1),
83 updateMutex(PTHREAD_MUTEX_INITIALIZER) {}
Doug Zongker211aebc2011-10-28 15:13:10 -070084
Tao Bao99b2d772017-06-23 22:47:03 -070085GRSurface* ScreenRecoveryUI::GetCurrentFrame() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070086 if (currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) {
87 return intro_done ? loopFrames[current_frame] : introFrames[current_frame];
88 }
89 return error_icon;
Elliott Hughes498cda62016-04-14 16:49:04 -070090}
91
Tao Bao99b2d772017-06-23 22:47:03 -070092GRSurface* ScreenRecoveryUI::GetCurrentText() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070093 switch (currentIcon) {
94 case ERASING:
95 return erasing_text;
96 case ERROR:
97 return error_text;
98 case INSTALLING_UPDATE:
99 return installing_text;
100 case NO_COMMAND:
101 return no_command_text;
102 case NONE:
103 abort();
104 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700105}
106
Mikhail Lappob49767c2017-03-23 21:44:26 +0100107int ScreenRecoveryUI::PixelsFromDp(int dp) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700108 return dp * density_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700109}
110
111// Here's the intended layout:
112
Elliott Hughes6d089a92016-07-08 17:23:41 -0700113// | portrait large landscape large
114// ---------+-------------------------------------------------
Tao Bao3250f722017-06-29 14:32:05 -0700115// gap |
Elliott Hughes6d089a92016-07-08 17:23:41 -0700116// icon | (200dp)
117// gap | 68dp 68dp 56dp 112dp
118// text | (14sp)
119// gap | 32dp 32dp 26dp 52dp
120// progress | (2dp)
Tao Bao3250f722017-06-29 14:32:05 -0700121// gap |
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700122
Tao Bao3250f722017-06-29 14:32:05 -0700123// Note that "baseline" is actually the *top* of each icon (because that's how our drawing routines
124// work), so that's the more useful measurement for calling code. We use even top and bottom gaps.
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700125
Elliott Hughes6d089a92016-07-08 17:23:41 -0700126enum Layout { PORTRAIT = 0, PORTRAIT_LARGE = 1, LANDSCAPE = 2, LANDSCAPE_LARGE = 3, LAYOUT_MAX };
Tao Bao3250f722017-06-29 14:32:05 -0700127enum Dimension { TEXT = 0, ICON = 1, DIMENSION_MAX };
Elliott Hughes6d089a92016-07-08 17:23:41 -0700128static constexpr int kLayouts[LAYOUT_MAX][DIMENSION_MAX] = {
Tao Bao3250f722017-06-29 14:32:05 -0700129 { 32, 68, }, // PORTRAIT
130 { 32, 68, }, // PORTRAIT_LARGE
131 { 26, 56, }, // LANDSCAPE
132 { 52, 112, }, // LANDSCAPE_LARGE
Elliott Hughes6d089a92016-07-08 17:23:41 -0700133};
134
Tao Bao99b2d772017-06-23 22:47:03 -0700135int ScreenRecoveryUI::GetAnimationBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700136 return GetTextBaseline() - PixelsFromDp(kLayouts[layout_][ICON]) - gr_get_height(loopFrames[0]);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700137}
138
Tao Bao99b2d772017-06-23 22:47:03 -0700139int ScreenRecoveryUI::GetTextBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700140 return GetProgressBaseline() - PixelsFromDp(kLayouts[layout_][TEXT]) -
141 gr_get_height(installing_text);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700142}
143
Tao Bao99b2d772017-06-23 22:47:03 -0700144int ScreenRecoveryUI::GetProgressBaseline() const {
Tao Bao3250f722017-06-29 14:32:05 -0700145 int elements_sum = gr_get_height(loopFrames[0]) + PixelsFromDp(kLayouts[layout_][ICON]) +
146 gr_get_height(installing_text) + PixelsFromDp(kLayouts[layout_][TEXT]) +
147 gr_get_height(progressBarFill);
148 int bottom_gap = (gr_fb_height() - elements_sum) / 2;
149 return gr_fb_height() - bottom_gap - gr_get_height(progressBarFill);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700150}
151
Doug Zongker211aebc2011-10-28 15:13:10 -0700152// Clear the screen and draw the currently selected background icon (if any).
153// Should only be called with updateMutex locked.
Elliott Hughes498cda62016-04-14 16:49:04 -0700154void ScreenRecoveryUI::draw_background_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700155 pagesIdentical = false;
156 gr_color(0, 0, 0, 255);
157 gr_clear();
Doug Zongker211aebc2011-10-28 15:13:10 -0700158
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700159 if (currentIcon != NONE) {
160 if (max_stage != -1) {
161 int stage_height = gr_get_height(stageMarkerEmpty);
162 int stage_width = gr_get_width(stageMarkerEmpty);
163 int x = (gr_fb_width() - max_stage * gr_get_width(stageMarkerEmpty)) / 2;
164 int y = gr_fb_height() - stage_height;
165 for (int i = 0; i < max_stage; ++i) {
166 GRSurface* stage_surface = (i < stage) ? stageMarkerFill : stageMarkerEmpty;
167 gr_blit(stage_surface, 0, 0, stage_width, stage_height, x, y);
168 x += stage_width;
169 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700170 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700171
172 GRSurface* text_surface = GetCurrentText();
173 int text_x = (gr_fb_width() - gr_get_width(text_surface)) / 2;
174 int text_y = GetTextBaseline();
175 gr_color(255, 255, 255, 255);
176 gr_texticon(text_x, text_y, text_surface);
177 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700178}
179
Tao Baoea78d862017-06-28 14:52:17 -0700180// Draws the animation and progress bar (if any) on the screen. Does not flip pages. Should only be
181// called with updateMutex locked.
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700182void ScreenRecoveryUI::draw_foreground_locked() {
Tao Bao736d59c2017-01-03 10:15:33 -0800183 if (currentIcon != NONE) {
184 GRSurface* frame = GetCurrentFrame();
185 int frame_width = gr_get_width(frame);
186 int frame_height = gr_get_height(frame);
187 int frame_x = (gr_fb_width() - frame_width) / 2;
188 int frame_y = GetAnimationBaseline();
189 gr_blit(frame, 0, 0, frame_width, frame_height, frame_x, frame_y);
190 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700191
Tao Bao736d59c2017-01-03 10:15:33 -0800192 if (progressBarType != EMPTY) {
193 int width = gr_get_width(progressBarEmpty);
194 int height = gr_get_height(progressBarEmpty);
Doug Zongker211aebc2011-10-28 15:13:10 -0700195
Tao Bao736d59c2017-01-03 10:15:33 -0800196 int progress_x = (gr_fb_width() - width) / 2;
197 int progress_y = GetProgressBaseline();
Doug Zongker211aebc2011-10-28 15:13:10 -0700198
Tao Bao736d59c2017-01-03 10:15:33 -0800199 // Erase behind the progress bar (in case this was a progress-only update)
200 gr_color(0, 0, 0, 255);
201 gr_fill(progress_x, progress_y, width, height);
Doug Zongker211aebc2011-10-28 15:13:10 -0700202
Tao Bao736d59c2017-01-03 10:15:33 -0800203 if (progressBarType == DETERMINATE) {
204 float p = progressScopeStart + progress * progressScopeSize;
205 int pos = static_cast<int>(p * width);
Doug Zongker211aebc2011-10-28 15:13:10 -0700206
Tao Bao736d59c2017-01-03 10:15:33 -0800207 if (rtl_locale_) {
208 // Fill the progress bar from right to left.
209 if (pos > 0) {
210 gr_blit(progressBarFill, width - pos, 0, pos, height, progress_x + width - pos,
211 progress_y);
Doug Zongker211aebc2011-10-28 15:13:10 -0700212 }
Tao Bao736d59c2017-01-03 10:15:33 -0800213 if (pos < width - 1) {
214 gr_blit(progressBarEmpty, 0, 0, width - pos, height, progress_x, progress_y);
215 }
216 } else {
217 // Fill the progress bar from left to right.
218 if (pos > 0) {
219 gr_blit(progressBarFill, 0, 0, pos, height, progress_x, progress_y);
220 }
221 if (pos < width - 1) {
222 gr_blit(progressBarEmpty, pos, 0, width - pos, height, progress_x + pos, progress_y);
223 }
224 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700225 }
Tao Bao736d59c2017-01-03 10:15:33 -0800226 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700227}
228
Tao Bao99b2d772017-06-23 22:47:03 -0700229void ScreenRecoveryUI::SetColor(UIElement e) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700230 switch (e) {
231 case INFO:
232 gr_color(249, 194, 0, 255);
233 break;
234 case HEADER:
235 gr_color(247, 0, 6, 255);
236 break;
237 case MENU:
238 case MENU_SEL_BG:
239 gr_color(0, 106, 157, 255);
240 break;
241 case MENU_SEL_BG_ACTIVE:
242 gr_color(0, 156, 100, 255);
243 break;
244 case MENU_SEL_FG:
245 gr_color(255, 255, 255, 255);
246 break;
247 case LOG:
248 gr_color(196, 196, 196, 255);
249 break;
250 case TEXT_FILL:
251 gr_color(0, 0, 0, 160);
252 break;
253 default:
254 gr_color(255, 255, 255, 255);
255 break;
256 }
Doug Zongkerc0441d12013-07-31 11:28:24 -0700257}
Doug Zongker211aebc2011-10-28 15:13:10 -0700258
Tao Baoea78d862017-06-28 14:52:17 -0700259int ScreenRecoveryUI::DrawHorizontalRule(int y) const {
260 gr_fill(0, y + 4, gr_fb_width(), y + 6);
261 return 8;
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700262}
263
Luke Songe2bd8762017-06-12 16:08:33 -0700264void ScreenRecoveryUI::DrawHighlightBar(int x, int y, int width, int height) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700265 gr_fill(x, y, x + width, y + height);
Luke Songe2bd8762017-06-12 16:08:33 -0700266}
267
Tao Baoea78d862017-06-28 14:52:17 -0700268int ScreenRecoveryUI::DrawTextLine(int x, int y, const char* line, bool bold) const {
269 gr_text(gr_sys_font(), x, y, line, bold);
270 return char_height_ + 4;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700271}
272
Tao Baoea78d862017-06-28 14:52:17 -0700273int ScreenRecoveryUI::DrawTextLines(int x, int y, const char* const* lines) const {
274 int offset = 0;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700275 for (size_t i = 0; lines != nullptr && lines[i] != nullptr; ++i) {
Tao Baoea78d862017-06-28 14:52:17 -0700276 offset += DrawTextLine(x, y + offset, lines[i], false);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700277 }
Tao Baoea78d862017-06-28 14:52:17 -0700278 return offset;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700279}
280
Tao Baoee6fefd2017-08-13 23:48:55 -0700281int ScreenRecoveryUI::DrawWrappedTextLines(int x, int y, const char* const* lines) const {
282 int offset = 0;
283 for (size_t i = 0; lines != nullptr && lines[i] != nullptr; ++i) {
284 // The line will be wrapped if it exceeds text_cols_.
285 std::string line(lines[i]);
286 size_t next_start = 0;
287 while (next_start < line.size()) {
288 std::string sub = line.substr(next_start, text_cols_ + 1);
289 if (sub.size() <= text_cols_) {
290 next_start += sub.size();
291 } else {
292 // Line too long and must be wrapped to text_cols_ columns.
293 size_t last_space = sub.find_last_of(" \t\n");
294 if (last_space == std::string::npos) {
295 // No space found, just draw as much as we can
296 sub.resize(text_cols_);
297 next_start += text_cols_;
298 } else {
299 sub.resize(last_space);
300 next_start += last_space + 1;
301 }
302 }
303 offset += DrawTextLine(x, y + offset, sub.c_str(), false);
304 }
305 }
306 return offset;
307}
308
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700309static const char* REGULAR_HELP[] = {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700310 "Use volume up/down and power.",
311 NULL
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700312};
313
314static const char* LONG_PRESS_HELP[] = {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700315 "Any button cycles highlight.",
316 "Long-press activates.",
317 NULL
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700318};
319
Tao Bao171b4c42017-06-19 23:10:44 -0700320// Redraws everything on the screen. Does not flip pages. Should only be called with updateMutex
321// locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700322void ScreenRecoveryUI::draw_screen_locked() {
Tao Bao171b4c42017-06-19 23:10:44 -0700323 if (!show_text) {
324 draw_background_locked();
325 draw_foreground_locked();
326 return;
327 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700328
Tao Bao171b4c42017-06-19 23:10:44 -0700329 gr_color(0, 0, 0, 255);
330 gr_clear();
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700331
Tao Bao4521b702017-06-20 18:11:21 -0700332 int y = kMarginHeight;
Tao Bao171b4c42017-06-19 23:10:44 -0700333 if (show_menu) {
Tao Baoca6ce2c2017-07-13 11:15:27 -0700334 static constexpr int kMenuIndent = 4;
335 int x = kMarginWidth + kMenuIndent;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700336
Tao Bao171b4c42017-06-19 23:10:44 -0700337 SetColor(INFO);
Tao Baoea78d862017-06-28 14:52:17 -0700338 y += DrawTextLine(x, y, "Android Recovery", true);
Tao Baoca6ce2c2017-07-13 11:15:27 -0700339 std::string recovery_fingerprint =
340 android::base::GetProperty("ro.bootimage.build.fingerprint", "");
Tao Bao171b4c42017-06-19 23:10:44 -0700341 for (const auto& chunk : android::base::Split(recovery_fingerprint, ":")) {
Tao Baoea78d862017-06-28 14:52:17 -0700342 y += DrawTextLine(x, y, chunk.c_str(), false);
Doug Zongker211aebc2011-10-28 15:13:10 -0700343 }
Tao Baoea78d862017-06-28 14:52:17 -0700344 y += DrawTextLines(x, y, HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
Tao Bao171b4c42017-06-19 23:10:44 -0700345
346 SetColor(HEADER);
Tao Bao2cf6fe22017-08-16 13:25:55 -0700347 // Ignore kMenuIndent, which is not taken into account by text_cols_.
348 y += DrawWrappedTextLines(kMarginWidth, y, menu_headers_);
Tao Bao171b4c42017-06-19 23:10:44 -0700349
350 SetColor(MENU);
Tao Baoea78d862017-06-28 14:52:17 -0700351 y += DrawHorizontalRule(y) + 4;
Tao Bao171b4c42017-06-19 23:10:44 -0700352 for (int i = 0; i < menu_items; ++i) {
353 if (i == menu_sel) {
354 // Draw the highlight bar.
355 SetColor(IsLongPress() ? MENU_SEL_BG_ACTIVE : MENU_SEL_BG);
356 DrawHighlightBar(0, y - 2, gr_fb_width(), char_height_ + 4);
357 // Bold white text for the selected item.
358 SetColor(MENU_SEL_FG);
Tao Bao17fa5c72017-09-07 13:38:51 -0700359 y += DrawTextLine(x, y, menu_[i].c_str(), true);
Tao Bao171b4c42017-06-19 23:10:44 -0700360 SetColor(MENU);
361 } else {
Tao Bao17fa5c72017-09-07 13:38:51 -0700362 y += DrawTextLine(x, y, menu_[i].c_str(), false);
Tao Bao171b4c42017-06-19 23:10:44 -0700363 }
364 }
Tao Baoea78d862017-06-28 14:52:17 -0700365 y += DrawHorizontalRule(y);
Tao Bao171b4c42017-06-19 23:10:44 -0700366 }
367
368 // Display from the bottom up, until we hit the top of the screen, the bottom of the menu, or
369 // we've displayed the entire text buffer.
370 SetColor(LOG);
371 int row = (text_top_ + text_rows_ - 1) % text_rows_;
372 size_t count = 0;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700373 for (int ty = gr_fb_height() - kMarginHeight - char_height_; ty >= y && count < text_rows_;
374 ty -= char_height_, ++count) {
Tao Baoca6ce2c2017-07-13 11:15:27 -0700375 DrawTextLine(kMarginWidth, ty, text_[row], false);
Tao Bao171b4c42017-06-19 23:10:44 -0700376 --row;
377 if (row < 0) row = text_rows_ - 1;
378 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700379}
380
381// Redraw everything on the screen and flip the screen (make it visible).
382// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700383void ScreenRecoveryUI::update_screen_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700384 draw_screen_locked();
385 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700386}
387
388// Updates only the progress bar, if possible, otherwise redraws the screen.
389// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700390void ScreenRecoveryUI::update_progress_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700391 if (show_text || !pagesIdentical) {
392 draw_screen_locked(); // Must redraw the whole screen
393 pagesIdentical = true;
394 } else {
395 draw_foreground_locked(); // Draw only the progress bar and overlays
396 }
397 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700398}
399
400// Keeps the progress bar updated, even when the process is otherwise busy.
Elliott Hughes985022a2015-04-13 13:04:32 -0700401void* ScreenRecoveryUI::ProgressThreadStartRoutine(void* data) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700402 reinterpret_cast<ScreenRecoveryUI*>(data)->ProgressThreadLoop();
403 return nullptr;
Doug Zongker32a0a472011-11-01 11:00:20 -0700404}
405
Elliott Hughes985022a2015-04-13 13:04:32 -0700406void ScreenRecoveryUI::ProgressThreadLoop() {
Tao Bao016120f2017-08-02 17:11:04 -0700407 double interval = 1.0 / kAnimationFps;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700408 while (true) {
409 double start = now();
410 pthread_mutex_lock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700411
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700412 bool redraw = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700413
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700414 // update the installation animation, if active
415 // skip this if we have a text overlay (too expensive to update)
416 if ((currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) && !show_text) {
417 if (!intro_done) {
418 if (current_frame == intro_frames - 1) {
419 intro_done = true;
420 current_frame = 0;
421 } else {
422 ++current_frame;
Doug Zongker211aebc2011-10-28 15:13:10 -0700423 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700424 } else {
425 current_frame = (current_frame + 1) % loop_frames;
426 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700427
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700428 redraw = true;
Doug Zongker211aebc2011-10-28 15:13:10 -0700429 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700430
431 // move the progress bar forward on timed intervals, if configured
432 int duration = progressScopeDuration;
433 if (progressBarType == DETERMINATE && duration > 0) {
434 double elapsed = now() - progressScopeTime;
435 float p = 1.0 * elapsed / duration;
436 if (p > 1.0) p = 1.0;
437 if (p > progress) {
438 progress = p;
439 redraw = true;
440 }
441 }
442
443 if (redraw) update_progress_locked();
444
445 pthread_mutex_unlock(&updateMutex);
446 double end = now();
447 // minimum of 20ms delay between frames
448 double delay = interval - (end - start);
449 if (delay < 0.02) delay = 0.02;
450 usleep(static_cast<useconds_t>(delay * 1000000));
451 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700452}
453
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700454void ScreenRecoveryUI::LoadBitmap(const char* filename, GRSurface** surface) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700455 int result = res_create_display_surface(filename, surface);
456 if (result < 0) {
457 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
458 }
Doug Zongkereac881c2014-03-07 09:21:25 -0800459}
460
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700461void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, GRSurface** surface) {
Tao Bao736d59c2017-01-03 10:15:33 -0800462 int result = res_create_localized_alpha_surface(filename, locale_.c_str(), surface);
463 if (result < 0) {
464 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
465 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700466}
467
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700468static char** Alloc2d(size_t rows, size_t cols) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700469 char** result = new char*[rows];
470 for (size_t i = 0; i < rows; ++i) {
471 result[i] = new char[cols];
472 memset(result[i], 0, cols);
473 }
474 return result;
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700475}
476
Tianjie Xu35926c42016-04-28 18:06:26 -0700477// Choose the right background string to display during update.
478void ScreenRecoveryUI::SetSystemUpdateText(bool security_update) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700479 if (security_update) {
480 LoadLocalizedBitmap("installing_security_text", &installing_text);
481 } else {
482 LoadLocalizedBitmap("installing_text", &installing_text);
483 }
484 Redraw();
Tianjie Xu35926c42016-04-28 18:06:26 -0700485}
486
Sen Jiangd5304492016-12-09 16:20:49 -0800487bool ScreenRecoveryUI::InitTextParams() {
Tao Bao171b4c42017-06-19 23:10:44 -0700488 if (gr_init() < 0) {
489 return false;
490 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700491
Tao Bao171b4c42017-06-19 23:10:44 -0700492 gr_font_size(gr_sys_font(), &char_width_, &char_height_);
Tao Bao4521b702017-06-20 18:11:21 -0700493 text_rows_ = (gr_fb_height() - kMarginHeight * 2) / char_height_;
494 text_cols_ = (gr_fb_width() - kMarginWidth * 2) / char_width_;
Tao Bao171b4c42017-06-19 23:10:44 -0700495 return true;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700496}
497
Tao Bao736d59c2017-01-03 10:15:33 -0800498bool ScreenRecoveryUI::Init(const std::string& locale) {
499 RecoveryUI::Init(locale);
500 if (!InitTextParams()) {
501 return false;
502 }
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700503
Tao Bao736d59c2017-01-03 10:15:33 -0800504 // Are we portrait or landscape?
505 layout_ = (gr_fb_width() > gr_fb_height()) ? LANDSCAPE : PORTRAIT;
506 // Are we the large variant of our base layout?
507 if (gr_fb_height() > PixelsFromDp(800)) ++layout_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700508
Tao Bao736d59c2017-01-03 10:15:33 -0800509 text_ = Alloc2d(text_rows_, text_cols_ + 1);
510 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1);
Doug Zongker55a36ac2013-03-04 15:49:02 -0800511
Tao Bao736d59c2017-01-03 10:15:33 -0800512 text_col_ = text_row_ = 0;
513 text_top_ = 1;
Doug Zongker211aebc2011-10-28 15:13:10 -0700514
Tao Bao736d59c2017-01-03 10:15:33 -0800515 LoadBitmap("icon_error", &error_icon);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700516
Tao Bao736d59c2017-01-03 10:15:33 -0800517 LoadBitmap("progress_empty", &progressBarEmpty);
518 LoadBitmap("progress_fill", &progressBarFill);
Elliott Hughes498cda62016-04-14 16:49:04 -0700519
Tao Bao736d59c2017-01-03 10:15:33 -0800520 LoadBitmap("stage_empty", &stageMarkerEmpty);
521 LoadBitmap("stage_fill", &stageMarkerFill);
Doug Zongker211aebc2011-10-28 15:13:10 -0700522
Tao Bao736d59c2017-01-03 10:15:33 -0800523 // Background text for "installing_update" could be "installing update"
524 // or "installing security update". It will be set after UI init according
525 // to commands in BCB.
526 installing_text = nullptr;
527 LoadLocalizedBitmap("erasing_text", &erasing_text);
528 LoadLocalizedBitmap("no_command_text", &no_command_text);
529 LoadLocalizedBitmap("error_text", &error_text);
Elliott Hughes498cda62016-04-14 16:49:04 -0700530
Tao Bao736d59c2017-01-03 10:15:33 -0800531 LoadAnimation();
Doug Zongker02ec6b82012-08-22 17:26:40 -0700532
Tao Bao736d59c2017-01-03 10:15:33 -0800533 pthread_create(&progress_thread_, nullptr, ProgressThreadStartRoutine, this);
Sen Jiangd5304492016-12-09 16:20:49 -0800534
Tao Bao736d59c2017-01-03 10:15:33 -0800535 return true;
Doug Zongker211aebc2011-10-28 15:13:10 -0700536}
537
Elliott Hughes498cda62016-04-14 16:49:04 -0700538void ScreenRecoveryUI::LoadAnimation() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700539 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir("/res/images"), closedir);
540 dirent* de;
541 std::vector<std::string> intro_frame_names;
542 std::vector<std::string> loop_frame_names;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700543
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700544 while ((de = readdir(dir.get())) != nullptr) {
545 int value, num_chars;
546 if (sscanf(de->d_name, "intro%d%n.png", &value, &num_chars) == 1) {
547 intro_frame_names.emplace_back(de->d_name, num_chars);
548 } else if (sscanf(de->d_name, "loop%d%n.png", &value, &num_chars) == 1) {
549 loop_frame_names.emplace_back(de->d_name, num_chars);
Elliott Hughes498cda62016-04-14 16:49:04 -0700550 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700551 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700552
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700553 intro_frames = intro_frame_names.size();
554 loop_frames = loop_frame_names.size();
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700555
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700556 // It's okay to not have an intro.
557 if (intro_frames == 0) intro_done = true;
558 // But you must have an animation.
559 if (loop_frames == 0) abort();
Elliott Hughes498cda62016-04-14 16:49:04 -0700560
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700561 std::sort(intro_frame_names.begin(), intro_frame_names.end());
562 std::sort(loop_frame_names.begin(), loop_frame_names.end());
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700563
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700564 introFrames = new GRSurface*[intro_frames];
565 for (size_t i = 0; i < intro_frames; i++) {
566 LoadBitmap(intro_frame_names.at(i).c_str(), &introFrames[i]);
567 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700568
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700569 loopFrames = new GRSurface*[loop_frames];
570 for (size_t i = 0; i < loop_frames; i++) {
571 LoadBitmap(loop_frame_names.at(i).c_str(), &loopFrames[i]);
572 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700573}
574
Elliott Hughes8de52072015-04-08 20:06:50 -0700575void ScreenRecoveryUI::SetBackground(Icon icon) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700576 pthread_mutex_lock(&updateMutex);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700577
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700578 currentIcon = icon;
579 update_screen_locked();
Doug Zongker52eeea4f2012-09-04 14:28:25 -0700580
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700581 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700582}
583
Elliott Hughes8de52072015-04-08 20:06:50 -0700584void ScreenRecoveryUI::SetProgressType(ProgressType type) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700585 pthread_mutex_lock(&updateMutex);
586 if (progressBarType != type) {
587 progressBarType = type;
588 }
589 progressScopeStart = 0;
590 progressScopeSize = 0;
591 progress = 0;
592 update_progress_locked();
593 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700594}
595
Elliott Hughes8de52072015-04-08 20:06:50 -0700596void ScreenRecoveryUI::ShowProgress(float portion, float seconds) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700597 pthread_mutex_lock(&updateMutex);
598 progressBarType = DETERMINATE;
599 progressScopeStart += progressScopeSize;
600 progressScopeSize = portion;
601 progressScopeTime = now();
602 progressScopeDuration = seconds;
603 progress = 0;
604 update_progress_locked();
605 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700606}
607
Elliott Hughes8de52072015-04-08 20:06:50 -0700608void ScreenRecoveryUI::SetProgress(float fraction) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700609 pthread_mutex_lock(&updateMutex);
610 if (fraction < 0.0) fraction = 0.0;
611 if (fraction > 1.0) fraction = 1.0;
612 if (progressBarType == DETERMINATE && fraction > progress) {
613 // Skip updates that aren't visibly different.
614 int width = gr_get_width(progressBarEmpty);
615 float scale = width * progressScopeSize;
616 if ((int)(progress * scale) != (int)(fraction * scale)) {
617 progress = fraction;
618 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700619 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700620 }
621 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700622}
623
Doug Zongkerc87bab12013-11-25 13:53:25 -0800624void ScreenRecoveryUI::SetStage(int current, int max) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700625 pthread_mutex_lock(&updateMutex);
626 stage = current;
627 max_stage = max;
628 pthread_mutex_unlock(&updateMutex);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800629}
630
Tao Baob6918c72015-05-19 17:02:16 -0700631void ScreenRecoveryUI::PrintV(const char* fmt, bool copy_to_stdout, va_list ap) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700632 std::string str;
633 android::base::StringAppendV(&str, fmt, ap);
Doug Zongker211aebc2011-10-28 15:13:10 -0700634
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700635 if (copy_to_stdout) {
636 fputs(str.c_str(), stdout);
637 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700638
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700639 pthread_mutex_lock(&updateMutex);
640 if (text_rows_ > 0 && text_cols_ > 0) {
641 for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) {
642 if (*ptr == '\n' || text_col_ >= text_cols_) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700643 text_[text_row_][text_col_] = '\0';
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700644 text_col_ = 0;
645 text_row_ = (text_row_ + 1) % text_rows_;
646 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_;
647 }
648 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
Doug Zongker211aebc2011-10-28 15:13:10 -0700649 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700650 text_[text_row_][text_col_] = '\0';
651 update_screen_locked();
652 }
653 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700654}
655
Tao Baob6918c72015-05-19 17:02:16 -0700656void ScreenRecoveryUI::Print(const char* fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700657 va_list ap;
658 va_start(ap, fmt);
659 PrintV(fmt, true, ap);
660 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700661}
662
663void ScreenRecoveryUI::PrintOnScreenOnly(const char *fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700664 va_list ap;
665 va_start(ap, fmt);
666 PrintV(fmt, false, ap);
667 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700668}
669
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700670void ScreenRecoveryUI::PutChar(char ch) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700671 pthread_mutex_lock(&updateMutex);
672 if (ch != '\n') text_[text_row_][text_col_++] = ch;
673 if (ch == '\n' || text_col_ >= text_cols_) {
674 text_col_ = 0;
675 ++text_row_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700676
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700677 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_;
678 }
679 pthread_mutex_unlock(&updateMutex);
Elliott Hughes8de52072015-04-08 20:06:50 -0700680}
681
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700682void ScreenRecoveryUI::ClearText() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700683 pthread_mutex_lock(&updateMutex);
684 text_col_ = 0;
685 text_row_ = 0;
686 text_top_ = 1;
687 for (size_t i = 0; i < text_rows_; ++i) {
688 memset(text_[i], 0, text_cols_ + 1);
689 }
690 pthread_mutex_unlock(&updateMutex);
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700691}
692
693void ScreenRecoveryUI::ShowFile(FILE* fp) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700694 std::vector<off_t> offsets;
695 offsets.push_back(ftello(fp));
696 ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700697
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700698 struct stat sb;
699 fstat(fileno(fp), &sb);
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700700
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700701 bool show_prompt = false;
702 while (true) {
703 if (show_prompt) {
704 PrintOnScreenOnly("--(%d%% of %d bytes)--",
705 static_cast<int>(100 * (double(ftello(fp)) / double(sb.st_size))),
706 static_cast<int>(sb.st_size));
707 Redraw();
708 while (show_prompt) {
709 show_prompt = false;
710 int key = WaitKey();
711 if (key == KEY_POWER || key == KEY_ENTER) {
712 return;
713 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
714 if (offsets.size() <= 1) {
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700715 show_prompt = true;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700716 } else {
717 offsets.pop_back();
718 fseek(fp, offsets.back(), SEEK_SET);
719 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700720 } else {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700721 if (feof(fp)) {
722 return;
723 }
724 offsets.push_back(ftello(fp));
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700725 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700726 }
727 ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700728 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700729
730 int ch = getc(fp);
731 if (ch == EOF) {
732 while (text_row_ < text_rows_ - 1) PutChar('\n');
733 show_prompt = true;
734 } else {
735 PutChar(ch);
736 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) {
737 show_prompt = true;
738 }
739 }
740 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700741}
742
Elliott Hughes8de52072015-04-08 20:06:50 -0700743void ScreenRecoveryUI::ShowFile(const char* filename) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700744 FILE* fp = fopen_path(filename, "re");
745 if (fp == nullptr) {
746 Print(" Unable to open %s: %s\n", filename, strerror(errno));
747 return;
748 }
Elliott Hughesc0491632015-05-06 12:40:05 -0700749
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700750 char** old_text = text_;
751 size_t old_text_col = text_col_;
752 size_t old_text_row = text_row_;
753 size_t old_text_top = text_top_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700754
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700755 // Swap in the alternate screen and clear it.
756 text_ = file_viewer_text_;
757 ClearText();
Elliott Hughesc0491632015-05-06 12:40:05 -0700758
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700759 ShowFile(fp);
760 fclose(fp);
Elliott Hughesc0491632015-05-06 12:40:05 -0700761
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700762 text_ = old_text;
763 text_col_ = old_text_col;
764 text_row_ = old_text_row;
765 text_top_ = old_text_top;
Elliott Hughes8de52072015-04-08 20:06:50 -0700766}
767
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700768void ScreenRecoveryUI::StartMenu(const char* const* headers, const char* const* items,
Doug Zongker211aebc2011-10-28 15:13:10 -0700769 int initial_selection) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700770 pthread_mutex_lock(&updateMutex);
771 if (text_rows_ > 0 && text_cols_ > 0) {
772 menu_headers_ = headers;
Tao Bao17fa5c72017-09-07 13:38:51 -0700773 menu_.clear();
774 for (size_t i = 0; i < text_rows_ && items[i] != nullptr; ++i) {
775 menu_.emplace_back(std::string(items[i], strnlen(items[i], text_cols_ - 1)));
Doug Zongker211aebc2011-10-28 15:13:10 -0700776 }
Tao Bao17fa5c72017-09-07 13:38:51 -0700777 menu_items = static_cast<int>(menu_.size());
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700778 show_menu = true;
779 menu_sel = initial_selection;
780 update_screen_locked();
781 }
782 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700783}
784
785int ScreenRecoveryUI::SelectMenu(int sel) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700786 pthread_mutex_lock(&updateMutex);
787 if (show_menu) {
788 int old_sel = menu_sel;
789 menu_sel = sel;
Elliott Hughesfc06f872015-03-23 13:45:31 -0700790
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700791 // Wrap at top and bottom.
792 if (menu_sel < 0) menu_sel = menu_items - 1;
793 if (menu_sel >= menu_items) menu_sel = 0;
Elliott Hughesfc06f872015-03-23 13:45:31 -0700794
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700795 sel = menu_sel;
796 if (menu_sel != old_sel) update_screen_locked();
797 }
798 pthread_mutex_unlock(&updateMutex);
799 return sel;
Doug Zongker211aebc2011-10-28 15:13:10 -0700800}
801
802void ScreenRecoveryUI::EndMenu() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700803 pthread_mutex_lock(&updateMutex);
804 if (show_menu && text_rows_ > 0 && text_cols_ > 0) {
805 show_menu = false;
806 update_screen_locked();
807 }
808 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700809}
810
Elliott Hughes8de52072015-04-08 20:06:50 -0700811bool ScreenRecoveryUI::IsTextVisible() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700812 pthread_mutex_lock(&updateMutex);
813 int visible = show_text;
814 pthread_mutex_unlock(&updateMutex);
815 return visible;
Doug Zongker211aebc2011-10-28 15:13:10 -0700816}
817
Elliott Hughes8de52072015-04-08 20:06:50 -0700818bool ScreenRecoveryUI::WasTextEverVisible() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700819 pthread_mutex_lock(&updateMutex);
820 int ever_visible = show_text_ever;
821 pthread_mutex_unlock(&updateMutex);
822 return ever_visible;
Doug Zongker211aebc2011-10-28 15:13:10 -0700823}
824
Elliott Hughes8de52072015-04-08 20:06:50 -0700825void ScreenRecoveryUI::ShowText(bool visible) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700826 pthread_mutex_lock(&updateMutex);
827 show_text = visible;
828 if (show_text) show_text_ever = true;
829 update_screen_locked();
830 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700831}
Doug Zongkerc0441d12013-07-31 11:28:24 -0700832
Elliott Hughes8de52072015-04-08 20:06:50 -0700833void ScreenRecoveryUI::Redraw() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700834 pthread_mutex_lock(&updateMutex);
835 update_screen_locked();
836 pthread_mutex_unlock(&updateMutex);
Doug Zongkerc0441d12013-07-31 11:28:24 -0700837}
Elliott Hughes642aaa72015-04-10 12:47:46 -0700838
839void ScreenRecoveryUI::KeyLongPress(int) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700840 // Redraw so that if we're in the menu, the highlight
841 // will change color to indicate a successful long press.
842 Redraw();
Elliott Hughes642aaa72015-04-10 12:47:46 -0700843}