blob: c14f29d490c23047e64710c21599ff565bf76abf [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
Tao Baoefb49ad2017-01-31 23:03:10 -080017#include "screen_ui.h"
18
Elliott Hughes498cda62016-04-14 16:49:04 -070019#include <dirent.h>
Doug Zongker211aebc2011-10-28 15:13:10 -070020#include <errno.h>
21#include <fcntl.h>
Doug Zongker211aebc2011-10-28 15:13:10 -070022#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 Bao1fe1afe2018-05-01 15:56:05 -070032#include <algorithm>
Tao Bao26ea9592018-05-09 16:32:02 -070033#include <chrono>
Tianjie Xu29d55752017-09-20 17:53:46 -070034#include <memory>
Tao Bao736d59c2017-01-03 10:15:33 -080035#include <string>
Tao Bao26ea9592018-05-09 16:32:02 -070036#include <thread>
Tianjie Xu29d55752017-09-20 17:53:46 -070037#include <unordered_map>
Elliott Hughes95fc63e2015-04-10 19:12:01 -070038#include <vector>
39
Tianjie Xuc21edd42016-08-05 18:00:04 -070040#include <android-base/logging.h>
Elliott Hughescb220402016-09-23 15:30:55 -070041#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080042#include <android-base/stringprintf.h>
Tao Baocb5524c2017-09-08 21:25:32 -070043#include <android-base/strings.h>
Tao Baob6918c72015-05-19 17:02:16 -070044
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070045#include "device.h"
Tao Bao6cd81682018-05-03 21:53:11 -070046#include "minui/minui.h"
47#include "otautil/paths.h"
Doug Zongker32a0a472011-11-01 11:00:20 -070048#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070049
Doug Zongker211aebc2011-10-28 15:13:10 -070050// Return the current time as a double (including fractions of a second).
51static double now() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070052 struct timeval tv;
53 gettimeofday(&tv, nullptr);
54 return tv.tv_sec + tv.tv_usec / 1000000.0;
Doug Zongker211aebc2011-10-28 15:13:10 -070055}
56
Tao Bao1fe1afe2018-05-01 15:56:05 -070057Menu::Menu(bool scrollable, size_t max_items, size_t max_length,
58 const std::vector<std::string>& headers, const std::vector<std::string>& items,
59 size_t initial_selection)
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070060 : scrollable_(scrollable),
61 max_display_items_(max_items),
62 max_item_length_(max_length),
Tao Baoe02a5b22018-05-02 15:46:11 -070063 text_headers_(headers),
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070064 menu_start_(0),
Tao Baoe02a5b22018-05-02 15:46:11 -070065 selection_(initial_selection) {
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070066 CHECK_LE(max_items, static_cast<size_t>(std::numeric_limits<int>::max()));
Tao Baoe02a5b22018-05-02 15:46:11 -070067
68 // It's fine to have more entries than text_rows_ if scrollable menu is supported.
Tao Bao1fe1afe2018-05-01 15:56:05 -070069 size_t items_count = scrollable_ ? items.size() : std::min(items.size(), max_display_items_);
70 for (size_t i = 0; i < items_count; ++i) {
71 text_items_.emplace_back(items[i].substr(0, max_item_length_));
Tao Baoe02a5b22018-05-02 15:46:11 -070072 }
73
74 CHECK(!text_items_.empty());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070075}
76
Tao Bao1fe1afe2018-05-01 15:56:05 -070077const std::vector<std::string>& Menu::text_headers() const {
Tianjie Xu5fe5eb62018-03-20 16:07:39 -070078 return text_headers_;
79}
80
81std::string Menu::TextItem(size_t index) const {
82 CHECK_LT(index, text_items_.size());
83
84 return text_items_[index];
85}
86
87size_t Menu::MenuStart() const {
88 return menu_start_;
89}
90
91size_t Menu::MenuEnd() const {
92 return std::min(ItemsCount(), menu_start_ + max_display_items_);
93}
94
95size_t Menu::ItemsCount() const {
96 return text_items_.size();
97}
98
99bool Menu::ItemsOverflow(std::string* cur_selection_str) const {
Tao Baoe02a5b22018-05-02 15:46:11 -0700100 if (!scrollable_ || ItemsCount() <= max_display_items_) {
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700101 return false;
102 }
103
104 *cur_selection_str =
Tao Bao1fe1afe2018-05-01 15:56:05 -0700105 android::base::StringPrintf("Current item: %zu/%zu", selection_ + 1, ItemsCount());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700106 return true;
107}
108
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700109// TODO(xunchang) modify the function parameters to button up & down.
110int Menu::Select(int sel) {
111 CHECK_LE(ItemsCount(), static_cast<size_t>(std::numeric_limits<int>::max()));
112 int count = ItemsCount();
113
114 // Wraps the selection at boundary if the menu is not scrollable.
115 if (!scrollable_) {
116 if (sel < 0) {
117 selection_ = count - 1;
118 } else if (sel >= count) {
119 selection_ = 0;
120 } else {
121 selection_ = sel;
122 }
123
124 return selection_;
125 }
126
127 if (sel < 0) {
128 selection_ = 0;
129 } else if (sel >= count) {
130 selection_ = count - 1;
131 } else {
132 if (static_cast<size_t>(sel) < menu_start_) {
133 menu_start_--;
134 } else if (static_cast<size_t>(sel) >= MenuEnd()) {
135 menu_start_++;
136 }
137 selection_ = sel;
138 }
139
140 return selection_;
141}
142
143ScreenRecoveryUI::ScreenRecoveryUI() : ScreenRecoveryUI(false) {}
144
145ScreenRecoveryUI::ScreenRecoveryUI(bool scrollable_menu)
Tao Bao4521b702017-06-20 18:11:21 -0700146 : kMarginWidth(RECOVERY_UI_MARGIN_WIDTH),
147 kMarginHeight(RECOVERY_UI_MARGIN_HEIGHT),
Tao Bao0470cee2017-08-02 17:11:04 -0700148 kAnimationFps(RECOVERY_UI_ANIMATION_FPS),
Tao Bao75779652017-09-10 11:28:32 -0700149 kDensity(static_cast<float>(android::base::GetIntProperty("ro.sf.lcd_density", 160)) / 160.f),
Tao Bao171b4c42017-06-19 23:10:44 -0700150 currentIcon(NONE),
Tao Bao736d59c2017-01-03 10:15:33 -0800151 progressBarType(EMPTY),
152 progressScopeStart(0),
153 progressScopeSize(0),
154 progress(0),
155 pagesIdentical(false),
156 text_cols_(0),
157 text_rows_(0),
158 text_(nullptr),
159 text_col_(0),
160 text_row_(0),
Tao Bao736d59c2017-01-03 10:15:33 -0800161 show_text(false),
162 show_text_ever(false),
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700163 scrollable_menu_(scrollable_menu),
Tao Bao736d59c2017-01-03 10:15:33 -0800164 file_viewer_text_(nullptr),
165 intro_frames(0),
166 loop_frames(0),
167 current_frame(0),
168 intro_done(false),
Tao Bao736d59c2017-01-03 10:15:33 -0800169 stage(-1),
170 max_stage(-1),
Tao Baoefb49ad2017-01-31 23:03:10 -0800171 locale_(""),
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700172 rtl_locale_(false) {}
Doug Zongker211aebc2011-10-28 15:13:10 -0700173
Tao Bao26ea9592018-05-09 16:32:02 -0700174ScreenRecoveryUI::~ScreenRecoveryUI() {
175 progress_thread_stopped_ = true;
Tao Bao94371fd2018-06-06 07:38:54 -0700176 if (progress_thread_.joinable()) {
177 progress_thread_.join();
178 }
Tao Bao60ac6222018-06-13 14:33:51 -0700179 // No-op if gr_init() (via Init()) was not called or had failed.
180 gr_exit();
Tao Bao26ea9592018-05-09 16:32:02 -0700181}
182
Tao Bao99b2d772017-06-23 22:47:03 -0700183GRSurface* ScreenRecoveryUI::GetCurrentFrame() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700184 if (currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) {
185 return intro_done ? loopFrames[current_frame] : introFrames[current_frame];
186 }
187 return error_icon;
Elliott Hughes498cda62016-04-14 16:49:04 -0700188}
189
Tao Bao99b2d772017-06-23 22:47:03 -0700190GRSurface* ScreenRecoveryUI::GetCurrentText() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700191 switch (currentIcon) {
192 case ERASING:
193 return erasing_text;
194 case ERROR:
195 return error_text;
196 case INSTALLING_UPDATE:
197 return installing_text;
198 case NO_COMMAND:
199 return no_command_text;
200 case NONE:
201 abort();
202 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700203}
204
Mikhail Lappob49767c2017-03-23 21:44:26 +0100205int ScreenRecoveryUI::PixelsFromDp(int dp) const {
Tao Bao75779652017-09-10 11:28:32 -0700206 return dp * kDensity;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700207}
208
209// Here's the intended layout:
210
Elliott Hughes6d089a92016-07-08 17:23:41 -0700211// | portrait large landscape large
212// ---------+-------------------------------------------------
Tao Bao3250f722017-06-29 14:32:05 -0700213// gap |
Elliott Hughes6d089a92016-07-08 17:23:41 -0700214// icon | (200dp)
215// gap | 68dp 68dp 56dp 112dp
216// text | (14sp)
217// gap | 32dp 32dp 26dp 52dp
218// progress | (2dp)
Tao Bao3250f722017-06-29 14:32:05 -0700219// gap |
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700220
Tao Bao3250f722017-06-29 14:32:05 -0700221// Note that "baseline" is actually the *top* of each icon (because that's how our drawing routines
222// 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 -0700223
Elliott Hughes6d089a92016-07-08 17:23:41 -0700224enum Layout { PORTRAIT = 0, PORTRAIT_LARGE = 1, LANDSCAPE = 2, LANDSCAPE_LARGE = 3, LAYOUT_MAX };
Tao Bao3250f722017-06-29 14:32:05 -0700225enum Dimension { TEXT = 0, ICON = 1, DIMENSION_MAX };
Elliott Hughes6d089a92016-07-08 17:23:41 -0700226static constexpr int kLayouts[LAYOUT_MAX][DIMENSION_MAX] = {
Tao Bao3250f722017-06-29 14:32:05 -0700227 { 32, 68, }, // PORTRAIT
228 { 32, 68, }, // PORTRAIT_LARGE
229 { 26, 56, }, // LANDSCAPE
230 { 52, 112, }, // LANDSCAPE_LARGE
Elliott Hughes6d089a92016-07-08 17:23:41 -0700231};
232
Tao Bao99b2d772017-06-23 22:47:03 -0700233int ScreenRecoveryUI::GetAnimationBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700234 return GetTextBaseline() - PixelsFromDp(kLayouts[layout_][ICON]) - gr_get_height(loopFrames[0]);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700235}
236
Tao Bao99b2d772017-06-23 22:47:03 -0700237int ScreenRecoveryUI::GetTextBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700238 return GetProgressBaseline() - PixelsFromDp(kLayouts[layout_][TEXT]) -
239 gr_get_height(installing_text);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700240}
241
Tao Bao99b2d772017-06-23 22:47:03 -0700242int ScreenRecoveryUI::GetProgressBaseline() const {
Tao Bao3250f722017-06-29 14:32:05 -0700243 int elements_sum = gr_get_height(loopFrames[0]) + PixelsFromDp(kLayouts[layout_][ICON]) +
244 gr_get_height(installing_text) + PixelsFromDp(kLayouts[layout_][TEXT]) +
245 gr_get_height(progressBarFill);
Luke Song92eda4d2017-09-19 10:51:35 -0700246 int bottom_gap = (ScreenHeight() - elements_sum) / 2;
247 return ScreenHeight() - bottom_gap - gr_get_height(progressBarFill);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700248}
249
Doug Zongker211aebc2011-10-28 15:13:10 -0700250// Clear the screen and draw the currently selected background icon (if any).
251// Should only be called with updateMutex locked.
Elliott Hughes498cda62016-04-14 16:49:04 -0700252void ScreenRecoveryUI::draw_background_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700253 pagesIdentical = false;
254 gr_color(0, 0, 0, 255);
255 gr_clear();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700256 if (currentIcon != NONE) {
257 if (max_stage != -1) {
258 int stage_height = gr_get_height(stageMarkerEmpty);
259 int stage_width = gr_get_width(stageMarkerEmpty);
Luke Song92eda4d2017-09-19 10:51:35 -0700260 int x = (ScreenWidth() - max_stage * gr_get_width(stageMarkerEmpty)) / 2;
261 int y = ScreenHeight() - stage_height - kMarginHeight;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700262 for (int i = 0; i < max_stage; ++i) {
263 GRSurface* stage_surface = (i < stage) ? stageMarkerFill : stageMarkerEmpty;
Luke Song92eda4d2017-09-19 10:51:35 -0700264 DrawSurface(stage_surface, 0, 0, stage_width, stage_height, x, y);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700265 x += stage_width;
266 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700267 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700268
269 GRSurface* text_surface = GetCurrentText();
Luke Song92eda4d2017-09-19 10:51:35 -0700270 int text_x = (ScreenWidth() - gr_get_width(text_surface)) / 2;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700271 int text_y = GetTextBaseline();
272 gr_color(255, 255, 255, 255);
Luke Song92eda4d2017-09-19 10:51:35 -0700273 DrawTextIcon(text_x, text_y, text_surface);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700274 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700275}
276
Tao Baoea78d862017-06-28 14:52:17 -0700277// Draws the animation and progress bar (if any) on the screen. Does not flip pages. Should only be
278// called with updateMutex locked.
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700279void ScreenRecoveryUI::draw_foreground_locked() {
Tao Bao736d59c2017-01-03 10:15:33 -0800280 if (currentIcon != NONE) {
281 GRSurface* frame = GetCurrentFrame();
282 int frame_width = gr_get_width(frame);
283 int frame_height = gr_get_height(frame);
Luke Song92eda4d2017-09-19 10:51:35 -0700284 int frame_x = (ScreenWidth() - frame_width) / 2;
Tao Bao736d59c2017-01-03 10:15:33 -0800285 int frame_y = GetAnimationBaseline();
Luke Song92eda4d2017-09-19 10:51:35 -0700286 DrawSurface(frame, 0, 0, frame_width, frame_height, frame_x, frame_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800287 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700288
Tao Bao736d59c2017-01-03 10:15:33 -0800289 if (progressBarType != EMPTY) {
290 int width = gr_get_width(progressBarEmpty);
291 int height = gr_get_height(progressBarEmpty);
Doug Zongker211aebc2011-10-28 15:13:10 -0700292
Luke Song92eda4d2017-09-19 10:51:35 -0700293 int progress_x = (ScreenWidth() - width) / 2;
Tao Bao736d59c2017-01-03 10:15:33 -0800294 int progress_y = GetProgressBaseline();
Doug Zongker211aebc2011-10-28 15:13:10 -0700295
Tao Bao736d59c2017-01-03 10:15:33 -0800296 // Erase behind the progress bar (in case this was a progress-only update)
297 gr_color(0, 0, 0, 255);
Luke Song92eda4d2017-09-19 10:51:35 -0700298 DrawFill(progress_x, progress_y, width, height);
Doug Zongker211aebc2011-10-28 15:13:10 -0700299
Tao Bao736d59c2017-01-03 10:15:33 -0800300 if (progressBarType == DETERMINATE) {
301 float p = progressScopeStart + progress * progressScopeSize;
302 int pos = static_cast<int>(p * width);
Doug Zongker211aebc2011-10-28 15:13:10 -0700303
Tao Bao736d59c2017-01-03 10:15:33 -0800304 if (rtl_locale_) {
305 // Fill the progress bar from right to left.
306 if (pos > 0) {
Luke Song92eda4d2017-09-19 10:51:35 -0700307 DrawSurface(progressBarFill, width - pos, 0, pos, height, progress_x + width - pos,
308 progress_y);
Doug Zongker211aebc2011-10-28 15:13:10 -0700309 }
Tao Bao736d59c2017-01-03 10:15:33 -0800310 if (pos < width - 1) {
Luke Song92eda4d2017-09-19 10:51:35 -0700311 DrawSurface(progressBarEmpty, 0, 0, width - pos, height, progress_x, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800312 }
313 } else {
314 // Fill the progress bar from left to right.
315 if (pos > 0) {
Luke Song92eda4d2017-09-19 10:51:35 -0700316 DrawSurface(progressBarFill, 0, 0, pos, height, progress_x, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800317 }
318 if (pos < width - 1) {
Luke Song92eda4d2017-09-19 10:51:35 -0700319 DrawSurface(progressBarEmpty, pos, 0, width - pos, height, progress_x + pos, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800320 }
321 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700322 }
Tao Bao736d59c2017-01-03 10:15:33 -0800323 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700324}
325
Tao Bao99b2d772017-06-23 22:47:03 -0700326void ScreenRecoveryUI::SetColor(UIElement e) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700327 switch (e) {
328 case INFO:
329 gr_color(249, 194, 0, 255);
330 break;
331 case HEADER:
332 gr_color(247, 0, 6, 255);
333 break;
334 case MENU:
335 case MENU_SEL_BG:
336 gr_color(0, 106, 157, 255);
337 break;
338 case MENU_SEL_BG_ACTIVE:
339 gr_color(0, 156, 100, 255);
340 break;
341 case MENU_SEL_FG:
342 gr_color(255, 255, 255, 255);
343 break;
344 case LOG:
345 gr_color(196, 196, 196, 255);
346 break;
347 case TEXT_FILL:
348 gr_color(0, 0, 0, 160);
349 break;
350 default:
351 gr_color(255, 255, 255, 255);
352 break;
353 }
Doug Zongkerc0441d12013-07-31 11:28:24 -0700354}
Doug Zongker211aebc2011-10-28 15:13:10 -0700355
Tianjie Xu29d55752017-09-20 17:53:46 -0700356void ScreenRecoveryUI::SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries,
357 size_t sel) {
358 SetLocale(locales_entries[sel]);
359 std::vector<std::string> text_name = { "erasing_text", "error_text", "installing_text",
360 "installing_security_text", "no_command_text" };
361 std::unordered_map<std::string, std::unique_ptr<GRSurface, decltype(&free)>> surfaces;
362 for (const auto& name : text_name) {
363 GRSurface* text_image = nullptr;
364 LoadLocalizedBitmap(name.c_str(), &text_image);
365 if (!text_image) {
366 Print("Failed to load %s\n", name.c_str());
367 return;
368 }
369 surfaces.emplace(name, std::unique_ptr<GRSurface, decltype(&free)>(text_image, &free));
370 }
371
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700372 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu29d55752017-09-20 17:53:46 -0700373 gr_color(0, 0, 0, 255);
374 gr_clear();
375
376 int text_y = kMarginHeight;
377 int text_x = kMarginWidth;
378 int line_spacing = gr_sys_font()->char_height; // Put some extra space between images.
379 // Write the header and descriptive texts.
380 SetColor(INFO);
381 std::string header = "Show background text image";
Tao Bao93e46ad2018-05-02 14:57:21 -0700382 text_y += DrawTextLine(text_x, text_y, header, true);
Tianjie Xu29d55752017-09-20 17:53:46 -0700383 std::string locale_selection = android::base::StringPrintf(
Tao Bao39c49182018-05-07 22:50:33 -0700384 "Current locale: %s, %zu/%zu", locales_entries[sel].c_str(), sel + 1, locales_entries.size());
Tao Bao93e46ad2018-05-02 14:57:21 -0700385 // clang-format off
386 std::vector<std::string> instruction = {
387 locale_selection,
388 "Use volume up/down to switch locales and power to exit."
389 };
390 // clang-format on
Tianjie Xu29d55752017-09-20 17:53:46 -0700391 text_y += DrawWrappedTextLines(text_x, text_y, instruction);
392
393 // Iterate through the text images and display them in order for the current locale.
394 for (const auto& p : surfaces) {
395 text_y += line_spacing;
396 SetColor(LOG);
Tao Bao93e46ad2018-05-02 14:57:21 -0700397 text_y += DrawTextLine(text_x, text_y, p.first, false);
Tianjie Xu29d55752017-09-20 17:53:46 -0700398 gr_color(255, 255, 255, 255);
399 gr_texticon(text_x, text_y, p.second.get());
400 text_y += gr_get_height(p.second.get());
401 }
402 // Update the whole screen.
403 gr_flip();
Tianjie Xu29d55752017-09-20 17:53:46 -0700404}
405
Tao Bao39c49182018-05-07 22:50:33 -0700406void ScreenRecoveryUI::CheckBackgroundTextImages() {
Tianjie Xu29d55752017-09-20 17:53:46 -0700407 // Load a list of locales embedded in one of the resource files.
408 std::vector<std::string> locales_entries = get_locales_in_png("installing_text");
409 if (locales_entries.empty()) {
410 Print("Failed to load locales from the resource files\n");
411 return;
412 }
Tao Bao39c49182018-05-07 22:50:33 -0700413 std::string saved_locale = locale_;
Tianjie Xu29d55752017-09-20 17:53:46 -0700414 size_t selected = 0;
415 SelectAndShowBackgroundText(locales_entries, selected);
416
417 FlushKeys();
418 while (true) {
419 int key = WaitKey();
Jerry Zhangb76af932018-05-22 12:08:35 -0700420 if (key == static_cast<int>(KeyError::INTERRUPTED)) break;
Tianjie Xu29d55752017-09-20 17:53:46 -0700421 if (key == KEY_POWER || key == KEY_ENTER) {
422 break;
423 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
424 selected = (selected == 0) ? locales_entries.size() - 1 : selected - 1;
425 SelectAndShowBackgroundText(locales_entries, selected);
426 } else if (key == KEY_DOWN || key == KEY_VOLUMEDOWN) {
427 selected = (selected == locales_entries.size() - 1) ? 0 : selected + 1;
428 SelectAndShowBackgroundText(locales_entries, selected);
429 }
430 }
431
432 SetLocale(saved_locale);
433}
434
Luke Song92eda4d2017-09-19 10:51:35 -0700435int ScreenRecoveryUI::ScreenWidth() const {
436 return gr_fb_width();
437}
438
439int ScreenRecoveryUI::ScreenHeight() const {
440 return gr_fb_height();
441}
442
443void ScreenRecoveryUI::DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx,
444 int dy) const {
445 gr_blit(surface, sx, sy, w, h, dx, dy);
446}
447
Tao Baoea78d862017-06-28 14:52:17 -0700448int ScreenRecoveryUI::DrawHorizontalRule(int y) const {
Luke Song92eda4d2017-09-19 10:51:35 -0700449 gr_fill(0, y + 4, ScreenWidth(), y + 6);
Tao Baoea78d862017-06-28 14:52:17 -0700450 return 8;
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700451}
452
Luke Songe2bd8762017-06-12 16:08:33 -0700453void ScreenRecoveryUI::DrawHighlightBar(int x, int y, int width, int height) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700454 gr_fill(x, y, x + width, y + height);
Luke Songe2bd8762017-06-12 16:08:33 -0700455}
456
Luke Song92eda4d2017-09-19 10:51:35 -0700457void ScreenRecoveryUI::DrawFill(int x, int y, int w, int h) const {
458 gr_fill(x, y, w, h);
459}
460
461void ScreenRecoveryUI::DrawTextIcon(int x, int y, GRSurface* surface) const {
462 gr_texticon(x, y, surface);
463}
464
Tao Bao93e46ad2018-05-02 14:57:21 -0700465int ScreenRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const {
466 gr_text(gr_sys_font(), x, y, line.c_str(), bold);
Tao Baoea78d862017-06-28 14:52:17 -0700467 return char_height_ + 4;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700468}
469
Tao Bao93e46ad2018-05-02 14:57:21 -0700470int ScreenRecoveryUI::DrawTextLines(int x, int y, const std::vector<std::string>& lines) const {
Tao Baoea78d862017-06-28 14:52:17 -0700471 int offset = 0;
Tao Bao93e46ad2018-05-02 14:57:21 -0700472 for (const auto& line : lines) {
473 offset += DrawTextLine(x, y + offset, line, false);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700474 }
Tao Baoea78d862017-06-28 14:52:17 -0700475 return offset;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700476}
477
Tao Bao93e46ad2018-05-02 14:57:21 -0700478int ScreenRecoveryUI::DrawWrappedTextLines(int x, int y,
479 const std::vector<std::string>& lines) const {
Tao Bao452b4872018-05-09 11:52:09 -0700480 // Keep symmetrical margins based on the given offset (i.e. x).
481 size_t text_cols = (ScreenWidth() - x * 2) / char_width_;
Tao Bao2bbc6d62017-08-13 23:48:55 -0700482 int offset = 0;
Tao Bao93e46ad2018-05-02 14:57:21 -0700483 for (const auto& line : lines) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700484 size_t next_start = 0;
485 while (next_start < line.size()) {
Tao Bao452b4872018-05-09 11:52:09 -0700486 std::string sub = line.substr(next_start, text_cols + 1);
487 if (sub.size() <= text_cols) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700488 next_start += sub.size();
489 } else {
Tao Bao452b4872018-05-09 11:52:09 -0700490 // Line too long and must be wrapped to text_cols columns.
Tao Bao2bbc6d62017-08-13 23:48:55 -0700491 size_t last_space = sub.find_last_of(" \t\n");
492 if (last_space == std::string::npos) {
Tao Bao93e46ad2018-05-02 14:57:21 -0700493 // No space found, just draw as much as we can.
Tao Bao452b4872018-05-09 11:52:09 -0700494 sub.resize(text_cols);
495 next_start += text_cols;
Tao Bao2bbc6d62017-08-13 23:48:55 -0700496 } else {
497 sub.resize(last_space);
498 next_start += last_space + 1;
499 }
500 }
Tao Bao93e46ad2018-05-02 14:57:21 -0700501 offset += DrawTextLine(x, y + offset, sub, false);
Tao Bao2bbc6d62017-08-13 23:48:55 -0700502 }
503 }
504 return offset;
505}
506
Jerry Zhang0e577ee2018-05-07 11:21:10 -0700507void ScreenRecoveryUI::SetTitle(const std::vector<std::string>& lines) {
508 title_lines_ = lines;
509}
510
Tao Bao171b4c42017-06-19 23:10:44 -0700511// Redraws everything on the screen. Does not flip pages. Should only be called with updateMutex
512// locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700513void ScreenRecoveryUI::draw_screen_locked() {
Tao Bao171b4c42017-06-19 23:10:44 -0700514 if (!show_text) {
515 draw_background_locked();
516 draw_foreground_locked();
517 return;
518 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700519
Tao Bao171b4c42017-06-19 23:10:44 -0700520 gr_color(0, 0, 0, 255);
521 gr_clear();
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700522
Tao Bao93e46ad2018-05-02 14:57:21 -0700523 // clang-format off
Tao Bao1fe1afe2018-05-01 15:56:05 -0700524 static std::vector<std::string> REGULAR_HELP{
Tao Bao93e46ad2018-05-02 14:57:21 -0700525 "Use volume up/down and power.",
526 };
Tao Bao1fe1afe2018-05-01 15:56:05 -0700527 static std::vector<std::string> LONG_PRESS_HELP{
Tao Bao93e46ad2018-05-02 14:57:21 -0700528 "Any button cycles highlight.",
529 "Long-press activates.",
530 };
531 // clang-format on
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700532 draw_menu_and_text_buffer_locked(HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
533}
534
535// Draws the menu and text buffer on the screen. Should only be called with updateMutex locked.
Tao Bao93e46ad2018-05-02 14:57:21 -0700536void ScreenRecoveryUI::draw_menu_and_text_buffer_locked(
537 const std::vector<std::string>& help_message) {
Tao Bao4521b702017-06-20 18:11:21 -0700538 int y = kMarginHeight;
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700539 if (menu_) {
Tao Baoca6ce2c2017-07-13 11:15:27 -0700540 static constexpr int kMenuIndent = 4;
541 int x = kMarginWidth + kMenuIndent;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700542
Tao Bao171b4c42017-06-19 23:10:44 -0700543 SetColor(INFO);
Jerry Zhang0e577ee2018-05-07 11:21:10 -0700544
545 for (size_t i = 0; i < title_lines_.size(); i++) {
546 y += DrawTextLine(x, y, title_lines_[i], i == 0);
Doug Zongker211aebc2011-10-28 15:13:10 -0700547 }
Tao Bao171b4c42017-06-19 23:10:44 -0700548
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700549 y += DrawTextLines(x, y, help_message);
550
551 // Draw menu header.
Tao Bao171b4c42017-06-19 23:10:44 -0700552 SetColor(HEADER);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700553 if (!menu_->scrollable()) {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700554 y += DrawWrappedTextLines(x, y, menu_->text_headers());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700555 } else {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700556 y += DrawTextLines(x, y, menu_->text_headers());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700557 // Show the current menu item number in relation to total number if items don't fit on the
558 // screen.
559 std::string cur_selection_str;
560 if (menu_->ItemsOverflow(&cur_selection_str)) {
Tao Bao93e46ad2018-05-02 14:57:21 -0700561 y += DrawTextLine(x, y, cur_selection_str, true);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700562 }
563 }
Tao Bao171b4c42017-06-19 23:10:44 -0700564
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700565 // Draw menu items.
Tao Bao171b4c42017-06-19 23:10:44 -0700566 SetColor(MENU);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700567 // Do not draw the horizontal rule for wear devices.
568 if (!menu_->scrollable()) {
569 y += DrawHorizontalRule(y) + 4;
570 }
571 for (size_t i = menu_->MenuStart(); i < menu_->MenuEnd(); ++i) {
572 bool bold = false;
573 if (i == static_cast<size_t>(menu_->selection())) {
Tao Bao171b4c42017-06-19 23:10:44 -0700574 // Draw the highlight bar.
575 SetColor(IsLongPress() ? MENU_SEL_BG_ACTIVE : MENU_SEL_BG);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700576
577 int bar_height = char_height_ + 4;
578 DrawHighlightBar(0, y - 2, ScreenWidth(), bar_height);
579
Tao Bao171b4c42017-06-19 23:10:44 -0700580 // Bold white text for the selected item.
581 SetColor(MENU_SEL_FG);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700582 bold = true;
Tao Bao171b4c42017-06-19 23:10:44 -0700583 }
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700584
Tao Bao93e46ad2018-05-02 14:57:21 -0700585 y += DrawTextLine(x, y, menu_->TextItem(i), bold);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700586
587 SetColor(MENU);
Tao Bao171b4c42017-06-19 23:10:44 -0700588 }
Tao Baoea78d862017-06-28 14:52:17 -0700589 y += DrawHorizontalRule(y);
Tao Bao171b4c42017-06-19 23:10:44 -0700590 }
591
592 // Display from the bottom up, until we hit the top of the screen, the bottom of the menu, or
593 // we've displayed the entire text buffer.
594 SetColor(LOG);
Tao Baocb5524c2017-09-08 21:25:32 -0700595 int row = text_row_;
Tao Bao171b4c42017-06-19 23:10:44 -0700596 size_t count = 0;
Luke Song92eda4d2017-09-19 10:51:35 -0700597 for (int ty = ScreenHeight() - kMarginHeight - char_height_; ty >= y && count < text_rows_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700598 ty -= char_height_, ++count) {
Tao Baoca6ce2c2017-07-13 11:15:27 -0700599 DrawTextLine(kMarginWidth, ty, text_[row], false);
Tao Bao171b4c42017-06-19 23:10:44 -0700600 --row;
601 if (row < 0) row = text_rows_ - 1;
602 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700603}
604
605// Redraw everything on the screen and flip the screen (make it visible).
606// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700607void ScreenRecoveryUI::update_screen_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700608 draw_screen_locked();
609 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700610}
611
612// Updates only the progress bar, if possible, otherwise redraws the screen.
613// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700614void ScreenRecoveryUI::update_progress_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700615 if (show_text || !pagesIdentical) {
616 draw_screen_locked(); // Must redraw the whole screen
617 pagesIdentical = true;
618 } else {
619 draw_foreground_locked(); // Draw only the progress bar and overlays
620 }
621 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700622}
623
Elliott Hughes985022a2015-04-13 13:04:32 -0700624void ScreenRecoveryUI::ProgressThreadLoop() {
Tao Bao0470cee2017-08-02 17:11:04 -0700625 double interval = 1.0 / kAnimationFps;
Tao Bao26ea9592018-05-09 16:32:02 -0700626 while (!progress_thread_stopped_) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700627 double start = now();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700628 bool redraw = false;
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700629 {
630 std::lock_guard<std::mutex> lg(updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700631
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700632 // update the installation animation, if active
633 // skip this if we have a text overlay (too expensive to update)
634 if ((currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) && !show_text) {
635 if (!intro_done) {
636 if (current_frame == intro_frames - 1) {
637 intro_done = true;
638 current_frame = 0;
639 } else {
640 ++current_frame;
641 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700642 } else {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700643 current_frame = (current_frame + 1) % loop_frames;
Doug Zongker211aebc2011-10-28 15:13:10 -0700644 }
645
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700646 redraw = true;
647 }
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700648
649 // move the progress bar forward on timed intervals, if configured
650 int duration = progressScopeDuration;
651 if (progressBarType == DETERMINATE && duration > 0) {
652 double elapsed = now() - progressScopeTime;
653 float p = 1.0 * elapsed / duration;
654 if (p > 1.0) p = 1.0;
655 if (p > progress) {
656 progress = p;
657 redraw = true;
658 }
659 }
660
661 if (redraw) update_progress_locked();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700662 }
663
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700664 double end = now();
665 // minimum of 20ms delay between frames
666 double delay = interval - (end - start);
667 if (delay < 0.02) delay = 0.02;
668 usleep(static_cast<useconds_t>(delay * 1000000));
669 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700670}
671
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700672void ScreenRecoveryUI::LoadBitmap(const char* filename, GRSurface** surface) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700673 int result = res_create_display_surface(filename, surface);
674 if (result < 0) {
675 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
676 }
Doug Zongkereac881c2014-03-07 09:21:25 -0800677}
678
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700679void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, GRSurface** surface) {
Tao Bao736d59c2017-01-03 10:15:33 -0800680 int result = res_create_localized_alpha_surface(filename, locale_.c_str(), surface);
681 if (result < 0) {
682 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
683 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700684}
685
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700686static char** Alloc2d(size_t rows, size_t cols) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700687 char** result = new char*[rows];
688 for (size_t i = 0; i < rows; ++i) {
689 result[i] = new char[cols];
690 memset(result[i], 0, cols);
691 }
692 return result;
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700693}
694
Tianjie Xu35926c42016-04-28 18:06:26 -0700695// Choose the right background string to display during update.
696void ScreenRecoveryUI::SetSystemUpdateText(bool security_update) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700697 if (security_update) {
698 LoadLocalizedBitmap("installing_security_text", &installing_text);
699 } else {
700 LoadLocalizedBitmap("installing_text", &installing_text);
701 }
702 Redraw();
Tianjie Xu35926c42016-04-28 18:06:26 -0700703}
704
Sen Jiangd5304492016-12-09 16:20:49 -0800705bool ScreenRecoveryUI::InitTextParams() {
Tao Baoba4edb32018-06-13 11:22:50 -0700706 // gr_init() would return successfully on font initialization failure.
707 if (gr_sys_font() == nullptr) {
Tao Bao171b4c42017-06-19 23:10:44 -0700708 return false;
709 }
Tao Bao171b4c42017-06-19 23:10:44 -0700710 gr_font_size(gr_sys_font(), &char_width_, &char_height_);
Luke Song92eda4d2017-09-19 10:51:35 -0700711 text_rows_ = (ScreenHeight() - kMarginHeight * 2) / char_height_;
712 text_cols_ = (ScreenWidth() - kMarginWidth * 2) / char_width_;
Tao Bao171b4c42017-06-19 23:10:44 -0700713 return true;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700714}
715
Tao Bao736d59c2017-01-03 10:15:33 -0800716bool ScreenRecoveryUI::Init(const std::string& locale) {
717 RecoveryUI::Init(locale);
Tao Baoefb49ad2017-01-31 23:03:10 -0800718
Tao Baoba4edb32018-06-13 11:22:50 -0700719 if (gr_init() == -1) {
720 return false;
721 }
722
Tao Bao736d59c2017-01-03 10:15:33 -0800723 if (!InitTextParams()) {
724 return false;
725 }
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700726
Tao Bao736d59c2017-01-03 10:15:33 -0800727 // Are we portrait or landscape?
728 layout_ = (gr_fb_width() > gr_fb_height()) ? LANDSCAPE : PORTRAIT;
729 // Are we the large variant of our base layout?
730 if (gr_fb_height() > PixelsFromDp(800)) ++layout_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700731
Tao Bao736d59c2017-01-03 10:15:33 -0800732 text_ = Alloc2d(text_rows_, text_cols_ + 1);
733 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1);
Doug Zongker55a36ac2013-03-04 15:49:02 -0800734
Tao Bao736d59c2017-01-03 10:15:33 -0800735 text_col_ = text_row_ = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700736
Tao Baoefb49ad2017-01-31 23:03:10 -0800737 // Set up the locale info.
738 SetLocale(locale);
739
Tao Bao736d59c2017-01-03 10:15:33 -0800740 LoadBitmap("icon_error", &error_icon);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700741
Tao Bao736d59c2017-01-03 10:15:33 -0800742 LoadBitmap("progress_empty", &progressBarEmpty);
743 LoadBitmap("progress_fill", &progressBarFill);
Elliott Hughes498cda62016-04-14 16:49:04 -0700744
Tao Bao736d59c2017-01-03 10:15:33 -0800745 LoadBitmap("stage_empty", &stageMarkerEmpty);
746 LoadBitmap("stage_fill", &stageMarkerFill);
Doug Zongker211aebc2011-10-28 15:13:10 -0700747
Tao Bao736d59c2017-01-03 10:15:33 -0800748 // Background text for "installing_update" could be "installing update"
749 // or "installing security update". It will be set after UI init according
750 // to commands in BCB.
751 installing_text = nullptr;
752 LoadLocalizedBitmap("erasing_text", &erasing_text);
753 LoadLocalizedBitmap("no_command_text", &no_command_text);
754 LoadLocalizedBitmap("error_text", &error_text);
Elliott Hughes498cda62016-04-14 16:49:04 -0700755
Tao Bao736d59c2017-01-03 10:15:33 -0800756 LoadAnimation();
Doug Zongker02ec6b82012-08-22 17:26:40 -0700757
Tao Bao26ea9592018-05-09 16:32:02 -0700758 // Keep the progress bar updated, even when the process is otherwise busy.
759 progress_thread_ = std::thread(&ScreenRecoveryUI::ProgressThreadLoop, this);
Sen Jiangd5304492016-12-09 16:20:49 -0800760
Tao Bao736d59c2017-01-03 10:15:33 -0800761 return true;
Doug Zongker211aebc2011-10-28 15:13:10 -0700762}
763
Tao Bao551d2c32018-05-09 20:53:13 -0700764std::string ScreenRecoveryUI::GetLocale() const {
Jerry Zhang2dea53e2018-05-02 17:15:03 -0700765 return locale_;
766}
767
Elliott Hughes498cda62016-04-14 16:49:04 -0700768void ScreenRecoveryUI::LoadAnimation() {
Tao Bao6cd81682018-05-03 21:53:11 -0700769 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(Paths::Get().resource_dir().c_str()),
770 closedir);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700771 dirent* de;
772 std::vector<std::string> intro_frame_names;
773 std::vector<std::string> loop_frame_names;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700774
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700775 while ((de = readdir(dir.get())) != nullptr) {
776 int value, num_chars;
777 if (sscanf(de->d_name, "intro%d%n.png", &value, &num_chars) == 1) {
778 intro_frame_names.emplace_back(de->d_name, num_chars);
779 } else if (sscanf(de->d_name, "loop%d%n.png", &value, &num_chars) == 1) {
780 loop_frame_names.emplace_back(de->d_name, num_chars);
Elliott Hughes498cda62016-04-14 16:49:04 -0700781 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700782 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700783
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700784 intro_frames = intro_frame_names.size();
785 loop_frames = loop_frame_names.size();
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700786
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700787 // It's okay to not have an intro.
788 if (intro_frames == 0) intro_done = true;
789 // But you must have an animation.
790 if (loop_frames == 0) abort();
Elliott Hughes498cda62016-04-14 16:49:04 -0700791
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700792 std::sort(intro_frame_names.begin(), intro_frame_names.end());
793 std::sort(loop_frame_names.begin(), loop_frame_names.end());
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700794
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700795 introFrames = new GRSurface*[intro_frames];
796 for (size_t i = 0; i < intro_frames; i++) {
797 LoadBitmap(intro_frame_names.at(i).c_str(), &introFrames[i]);
798 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700799
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700800 loopFrames = new GRSurface*[loop_frames];
801 for (size_t i = 0; i < loop_frames; i++) {
802 LoadBitmap(loop_frame_names.at(i).c_str(), &loopFrames[i]);
803 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700804}
805
Elliott Hughes8de52072015-04-08 20:06:50 -0700806void ScreenRecoveryUI::SetBackground(Icon icon) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700807 std::lock_guard<std::mutex> lg(updateMutex);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700808
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700809 currentIcon = icon;
810 update_screen_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700811}
812
Elliott Hughes8de52072015-04-08 20:06:50 -0700813void ScreenRecoveryUI::SetProgressType(ProgressType type) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700814 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700815 if (progressBarType != type) {
816 progressBarType = type;
817 }
818 progressScopeStart = 0;
819 progressScopeSize = 0;
820 progress = 0;
821 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700822}
823
Elliott Hughes8de52072015-04-08 20:06:50 -0700824void ScreenRecoveryUI::ShowProgress(float portion, float seconds) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700825 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700826 progressBarType = DETERMINATE;
827 progressScopeStart += progressScopeSize;
828 progressScopeSize = portion;
829 progressScopeTime = now();
830 progressScopeDuration = seconds;
831 progress = 0;
832 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700833}
834
Elliott Hughes8de52072015-04-08 20:06:50 -0700835void ScreenRecoveryUI::SetProgress(float fraction) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700836 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700837 if (fraction < 0.0) fraction = 0.0;
838 if (fraction > 1.0) fraction = 1.0;
839 if (progressBarType == DETERMINATE && fraction > progress) {
840 // Skip updates that aren't visibly different.
841 int width = gr_get_width(progressBarEmpty);
842 float scale = width * progressScopeSize;
843 if ((int)(progress * scale) != (int)(fraction * scale)) {
844 progress = fraction;
845 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700846 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700847 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700848}
849
Doug Zongkerc87bab12013-11-25 13:53:25 -0800850void ScreenRecoveryUI::SetStage(int current, int max) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700851 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700852 stage = current;
853 max_stage = max;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800854}
855
Tao Baob6918c72015-05-19 17:02:16 -0700856void ScreenRecoveryUI::PrintV(const char* fmt, bool copy_to_stdout, va_list ap) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700857 std::string str;
858 android::base::StringAppendV(&str, fmt, ap);
Doug Zongker211aebc2011-10-28 15:13:10 -0700859
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700860 if (copy_to_stdout) {
861 fputs(str.c_str(), stdout);
862 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700863
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700864 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700865 if (text_rows_ > 0 && text_cols_ > 0) {
866 for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) {
867 if (*ptr == '\n' || text_col_ >= text_cols_) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700868 text_[text_row_][text_col_] = '\0';
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700869 text_col_ = 0;
870 text_row_ = (text_row_ + 1) % text_rows_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700871 }
872 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
Doug Zongker211aebc2011-10-28 15:13:10 -0700873 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700874 text_[text_row_][text_col_] = '\0';
875 update_screen_locked();
876 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700877}
878
Tao Baob6918c72015-05-19 17:02:16 -0700879void ScreenRecoveryUI::Print(const char* fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700880 va_list ap;
881 va_start(ap, fmt);
882 PrintV(fmt, true, ap);
883 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700884}
885
886void ScreenRecoveryUI::PrintOnScreenOnly(const char *fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700887 va_list ap;
888 va_start(ap, fmt);
889 PrintV(fmt, false, ap);
890 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700891}
892
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700893void ScreenRecoveryUI::PutChar(char ch) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700894 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700895 if (ch != '\n') text_[text_row_][text_col_++] = ch;
896 if (ch == '\n' || text_col_ >= text_cols_) {
897 text_col_ = 0;
898 ++text_row_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700899 }
Elliott Hughes8de52072015-04-08 20:06:50 -0700900}
901
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700902void ScreenRecoveryUI::ClearText() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700903 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700904 text_col_ = 0;
905 text_row_ = 0;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700906 for (size_t i = 0; i < text_rows_; ++i) {
907 memset(text_[i], 0, text_cols_ + 1);
908 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700909}
910
911void ScreenRecoveryUI::ShowFile(FILE* fp) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700912 std::vector<off_t> offsets;
913 offsets.push_back(ftello(fp));
914 ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700915
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700916 struct stat sb;
917 fstat(fileno(fp), &sb);
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700918
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700919 bool show_prompt = false;
920 while (true) {
921 if (show_prompt) {
922 PrintOnScreenOnly("--(%d%% of %d bytes)--",
923 static_cast<int>(100 * (double(ftello(fp)) / double(sb.st_size))),
924 static_cast<int>(sb.st_size));
925 Redraw();
926 while (show_prompt) {
927 show_prompt = false;
928 int key = WaitKey();
Jerry Zhangb76af932018-05-22 12:08:35 -0700929 if (key == static_cast<int>(KeyError::INTERRUPTED)) return;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700930 if (key == KEY_POWER || key == KEY_ENTER) {
931 return;
932 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
933 if (offsets.size() <= 1) {
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700934 show_prompt = true;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700935 } else {
936 offsets.pop_back();
937 fseek(fp, offsets.back(), SEEK_SET);
938 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700939 } else {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700940 if (feof(fp)) {
941 return;
942 }
943 offsets.push_back(ftello(fp));
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700944 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700945 }
946 ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700947 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700948
949 int ch = getc(fp);
950 if (ch == EOF) {
951 while (text_row_ < text_rows_ - 1) PutChar('\n');
952 show_prompt = true;
953 } else {
954 PutChar(ch);
955 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) {
956 show_prompt = true;
957 }
958 }
959 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700960}
961
Tao Bao1d156b92018-05-02 12:43:18 -0700962void ScreenRecoveryUI::ShowFile(const std::string& filename) {
963 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(filename.c_str(), "re"), fclose);
964 if (!fp) {
965 Print(" Unable to open %s: %s\n", filename.c_str(), strerror(errno));
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700966 return;
967 }
Elliott Hughesc0491632015-05-06 12:40:05 -0700968
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700969 char** old_text = text_;
970 size_t old_text_col = text_col_;
971 size_t old_text_row = text_row_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700972
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700973 // Swap in the alternate screen and clear it.
974 text_ = file_viewer_text_;
975 ClearText();
Elliott Hughesc0491632015-05-06 12:40:05 -0700976
Tao Bao1d156b92018-05-02 12:43:18 -0700977 ShowFile(fp.get());
Elliott Hughesc0491632015-05-06 12:40:05 -0700978
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700979 text_ = old_text;
980 text_col_ = old_text_col;
981 text_row_ = old_text_row;
Elliott Hughes8de52072015-04-08 20:06:50 -0700982}
983
Tao Bao1fe1afe2018-05-01 15:56:05 -0700984void ScreenRecoveryUI::StartMenu(const std::vector<std::string>& headers,
985 const std::vector<std::string>& items, size_t initial_selection) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700986 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700987 if (text_rows_ > 0 && text_cols_ > 1) {
Tao Baoe02a5b22018-05-02 15:46:11 -0700988 menu_ = std::make_unique<Menu>(scrollable_menu_, text_rows_, text_cols_ - 1, headers, items,
989 initial_selection);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700990 update_screen_locked();
991 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700992}
993
994int ScreenRecoveryUI::SelectMenu(int sel) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700995 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700996 if (menu_) {
997 int old_sel = menu_->selection();
998 sel = menu_->Select(sel);
Elliott Hughesfc06f872015-03-23 13:45:31 -0700999
Tianjie Xu5fe5eb62018-03-20 16:07:39 -07001000 if (sel != old_sel) {
1001 update_screen_locked();
1002 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001003 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001004 return sel;
Doug Zongker211aebc2011-10-28 15:13:10 -07001005}
1006
1007void ScreenRecoveryUI::EndMenu() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001008 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -07001009 if (menu_) {
1010 menu_.reset();
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001011 update_screen_locked();
1012 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001013}
1014
Tao Bao1fe1afe2018-05-01 15:56:05 -07001015size_t ScreenRecoveryUI::ShowMenu(const std::vector<std::string>& headers,
1016 const std::vector<std::string>& items, size_t initial_selection,
1017 bool menu_only,
1018 const std::function<int(int, bool)>& key_handler) {
Tao Bao3aec6962018-04-20 09:24:58 -07001019 // Throw away keys pressed previously, so user doesn't accidentally trigger menu items.
1020 FlushKeys();
1021
Jerry Zhangb76af932018-05-22 12:08:35 -07001022 // If there is a key interrupt in progress, return KeyError::INTERRUPTED without starting the
1023 // menu.
1024 if (IsKeyInterrupted()) return static_cast<size_t>(KeyError::INTERRUPTED);
1025
Tao Bao3aec6962018-04-20 09:24:58 -07001026 StartMenu(headers, items, initial_selection);
1027
1028 int selected = initial_selection;
1029 int chosen_item = -1;
1030 while (chosen_item < 0) {
1031 int key = WaitKey();
Jerry Zhangb76af932018-05-22 12:08:35 -07001032 if (key == static_cast<int>(KeyError::INTERRUPTED)) { // WaitKey() was interrupted.
1033 return static_cast<size_t>(KeyError::INTERRUPTED);
1034 }
1035 if (key == static_cast<int>(KeyError::TIMED_OUT)) { // WaitKey() timed out.
Tao Bao3aec6962018-04-20 09:24:58 -07001036 if (WasTextEverVisible()) {
1037 continue;
1038 } else {
1039 LOG(INFO) << "Timed out waiting for key input; rebooting.";
1040 EndMenu();
Jerry Zhangb76af932018-05-22 12:08:35 -07001041 return static_cast<size_t>(KeyError::TIMED_OUT);
Tao Bao3aec6962018-04-20 09:24:58 -07001042 }
1043 }
1044
1045 bool visible = IsTextVisible();
1046 int action = key_handler(key, visible);
1047 if (action < 0) {
1048 switch (action) {
1049 case Device::kHighlightUp:
1050 selected = SelectMenu(--selected);
1051 break;
1052 case Device::kHighlightDown:
1053 selected = SelectMenu(++selected);
1054 break;
1055 case Device::kInvokeItem:
1056 chosen_item = selected;
1057 break;
1058 case Device::kNoAction:
1059 break;
1060 }
1061 } else if (!menu_only) {
1062 chosen_item = action;
1063 }
1064 }
1065
1066 EndMenu();
1067 return chosen_item;
1068}
1069
Elliott Hughes8de52072015-04-08 20:06:50 -07001070bool ScreenRecoveryUI::IsTextVisible() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001071 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001072 int visible = show_text;
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001073 return visible;
Doug Zongker211aebc2011-10-28 15:13:10 -07001074}
1075
Elliott Hughes8de52072015-04-08 20:06:50 -07001076bool ScreenRecoveryUI::WasTextEverVisible() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001077 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001078 int ever_visible = show_text_ever;
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001079 return ever_visible;
Doug Zongker211aebc2011-10-28 15:13:10 -07001080}
1081
Elliott Hughes8de52072015-04-08 20:06:50 -07001082void ScreenRecoveryUI::ShowText(bool visible) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001083 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001084 show_text = visible;
1085 if (show_text) show_text_ever = true;
1086 update_screen_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -07001087}
Doug Zongkerc0441d12013-07-31 11:28:24 -07001088
Elliott Hughes8de52072015-04-08 20:06:50 -07001089void ScreenRecoveryUI::Redraw() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001090 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001091 update_screen_locked();
Doug Zongkerc0441d12013-07-31 11:28:24 -07001092}
Elliott Hughes642aaa72015-04-10 12:47:46 -07001093
1094void ScreenRecoveryUI::KeyLongPress(int) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001095 // Redraw so that if we're in the menu, the highlight
1096 // will change color to indicate a successful long press.
1097 Redraw();
Elliott Hughes642aaa72015-04-10 12:47:46 -07001098}
Tao Baoefb49ad2017-01-31 23:03:10 -08001099
1100void ScreenRecoveryUI::SetLocale(const std::string& new_locale) {
1101 locale_ = new_locale;
1102 rtl_locale_ = false;
1103
1104 if (!new_locale.empty()) {
Tao Bao347a6592018-05-08 15:58:29 -07001105 size_t separator = new_locale.find('-');
1106 // lang has the language prefix prior to the separator, or full string if none exists.
1107 std::string lang = new_locale.substr(0, separator);
Tao Baoefb49ad2017-01-31 23:03:10 -08001108
1109 // A bit cheesy: keep an explicit list of supported RTL languages.
1110 if (lang == "ar" || // Arabic
1111 lang == "fa" || // Persian (Farsi)
1112 lang == "he" || // Hebrew (new language code)
1113 lang == "iw" || // Hebrew (old language code)
1114 lang == "ur") { // Urdu
1115 rtl_locale_ = true;
1116 }
1117 }
1118}