blob: 391dedb002b4fd6134025858970e7fbc830a45d2 [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
Tao Bao0bc88de2018-07-31 14:53:16 -0700145constexpr int kDefaultMarginHeight = 0;
146constexpr int kDefaultMarginWidth = 0;
147constexpr int kDefaultAnimationFps = 30;
148
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700149ScreenRecoveryUI::ScreenRecoveryUI(bool scrollable_menu)
Tao Bao0bc88de2018-07-31 14:53:16 -0700150 : margin_width_(
151 android::base::GetIntProperty("ro.recovery.ui.margin_width", kDefaultMarginWidth)),
152 margin_height_(
153 android::base::GetIntProperty("ro.recovery.ui.margin_height", kDefaultMarginHeight)),
154 animation_fps_(
155 android::base::GetIntProperty("ro.recovery.ui.animation_fps", kDefaultAnimationFps)),
156 density_(static_cast<float>(android::base::GetIntProperty("ro.sf.lcd_density", 160)) / 160.f),
Tao Bao171b4c42017-06-19 23:10:44 -0700157 currentIcon(NONE),
Tao Bao736d59c2017-01-03 10:15:33 -0800158 progressBarType(EMPTY),
159 progressScopeStart(0),
160 progressScopeSize(0),
161 progress(0),
162 pagesIdentical(false),
163 text_cols_(0),
164 text_rows_(0),
165 text_(nullptr),
166 text_col_(0),
167 text_row_(0),
Tao Bao736d59c2017-01-03 10:15:33 -0800168 show_text(false),
169 show_text_ever(false),
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700170 scrollable_menu_(scrollable_menu),
Tao Bao736d59c2017-01-03 10:15:33 -0800171 file_viewer_text_(nullptr),
172 intro_frames(0),
173 loop_frames(0),
174 current_frame(0),
175 intro_done(false),
Tao Bao736d59c2017-01-03 10:15:33 -0800176 stage(-1),
177 max_stage(-1),
Tao Baoefb49ad2017-01-31 23:03:10 -0800178 locale_(""),
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700179 rtl_locale_(false) {}
Doug Zongker211aebc2011-10-28 15:13:10 -0700180
Tao Bao26ea9592018-05-09 16:32:02 -0700181ScreenRecoveryUI::~ScreenRecoveryUI() {
182 progress_thread_stopped_ = true;
Tao Bao94371fd2018-06-06 07:38:54 -0700183 if (progress_thread_.joinable()) {
184 progress_thread_.join();
185 }
Tao Bao60ac6222018-06-13 14:33:51 -0700186 // No-op if gr_init() (via Init()) was not called or had failed.
187 gr_exit();
Tao Bao26ea9592018-05-09 16:32:02 -0700188}
189
Tao Bao99b2d772017-06-23 22:47:03 -0700190GRSurface* ScreenRecoveryUI::GetCurrentFrame() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700191 if (currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) {
192 return intro_done ? loopFrames[current_frame] : introFrames[current_frame];
193 }
194 return error_icon;
Elliott Hughes498cda62016-04-14 16:49:04 -0700195}
196
Tao Bao99b2d772017-06-23 22:47:03 -0700197GRSurface* ScreenRecoveryUI::GetCurrentText() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700198 switch (currentIcon) {
199 case ERASING:
200 return erasing_text;
201 case ERROR:
202 return error_text;
203 case INSTALLING_UPDATE:
204 return installing_text;
205 case NO_COMMAND:
206 return no_command_text;
207 case NONE:
208 abort();
209 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700210}
211
Mikhail Lappob49767c2017-03-23 21:44:26 +0100212int ScreenRecoveryUI::PixelsFromDp(int dp) const {
Tao Bao0bc88de2018-07-31 14:53:16 -0700213 return dp * density_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700214}
215
216// Here's the intended layout:
217
Elliott Hughes6d089a92016-07-08 17:23:41 -0700218// | portrait large landscape large
219// ---------+-------------------------------------------------
Tao Bao3250f722017-06-29 14:32:05 -0700220// gap |
Elliott Hughes6d089a92016-07-08 17:23:41 -0700221// icon | (200dp)
222// gap | 68dp 68dp 56dp 112dp
223// text | (14sp)
224// gap | 32dp 32dp 26dp 52dp
225// progress | (2dp)
Tao Bao3250f722017-06-29 14:32:05 -0700226// gap |
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700227
Tao Bao3250f722017-06-29 14:32:05 -0700228// Note that "baseline" is actually the *top* of each icon (because that's how our drawing routines
229// 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 -0700230
Elliott Hughes6d089a92016-07-08 17:23:41 -0700231enum Layout { PORTRAIT = 0, PORTRAIT_LARGE = 1, LANDSCAPE = 2, LANDSCAPE_LARGE = 3, LAYOUT_MAX };
Tao Bao3250f722017-06-29 14:32:05 -0700232enum Dimension { TEXT = 0, ICON = 1, DIMENSION_MAX };
Elliott Hughes6d089a92016-07-08 17:23:41 -0700233static constexpr int kLayouts[LAYOUT_MAX][DIMENSION_MAX] = {
Tao Bao3250f722017-06-29 14:32:05 -0700234 { 32, 68, }, // PORTRAIT
235 { 32, 68, }, // PORTRAIT_LARGE
236 { 26, 56, }, // LANDSCAPE
237 { 52, 112, }, // LANDSCAPE_LARGE
Elliott Hughes6d089a92016-07-08 17:23:41 -0700238};
239
Tao Bao99b2d772017-06-23 22:47:03 -0700240int ScreenRecoveryUI::GetAnimationBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700241 return GetTextBaseline() - PixelsFromDp(kLayouts[layout_][ICON]) - gr_get_height(loopFrames[0]);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700242}
243
Tao Bao99b2d772017-06-23 22:47:03 -0700244int ScreenRecoveryUI::GetTextBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700245 return GetProgressBaseline() - PixelsFromDp(kLayouts[layout_][TEXT]) -
246 gr_get_height(installing_text);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700247}
248
Tao Bao99b2d772017-06-23 22:47:03 -0700249int ScreenRecoveryUI::GetProgressBaseline() const {
Tao Bao3250f722017-06-29 14:32:05 -0700250 int elements_sum = gr_get_height(loopFrames[0]) + PixelsFromDp(kLayouts[layout_][ICON]) +
251 gr_get_height(installing_text) + PixelsFromDp(kLayouts[layout_][TEXT]) +
252 gr_get_height(progressBarFill);
Luke Song92eda4d2017-09-19 10:51:35 -0700253 int bottom_gap = (ScreenHeight() - elements_sum) / 2;
254 return ScreenHeight() - bottom_gap - gr_get_height(progressBarFill);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700255}
256
Doug Zongker211aebc2011-10-28 15:13:10 -0700257// Clear the screen and draw the currently selected background icon (if any).
258// Should only be called with updateMutex locked.
Elliott Hughes498cda62016-04-14 16:49:04 -0700259void ScreenRecoveryUI::draw_background_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700260 pagesIdentical = false;
261 gr_color(0, 0, 0, 255);
262 gr_clear();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700263 if (currentIcon != NONE) {
264 if (max_stage != -1) {
265 int stage_height = gr_get_height(stageMarkerEmpty);
266 int stage_width = gr_get_width(stageMarkerEmpty);
Luke Song92eda4d2017-09-19 10:51:35 -0700267 int x = (ScreenWidth() - max_stage * gr_get_width(stageMarkerEmpty)) / 2;
Tao Bao0bc88de2018-07-31 14:53:16 -0700268 int y = ScreenHeight() - stage_height - margin_height_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700269 for (int i = 0; i < max_stage; ++i) {
270 GRSurface* stage_surface = (i < stage) ? stageMarkerFill : stageMarkerEmpty;
Luke Song92eda4d2017-09-19 10:51:35 -0700271 DrawSurface(stage_surface, 0, 0, stage_width, stage_height, x, y);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700272 x += stage_width;
273 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700274 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700275
276 GRSurface* text_surface = GetCurrentText();
Luke Song92eda4d2017-09-19 10:51:35 -0700277 int text_x = (ScreenWidth() - gr_get_width(text_surface)) / 2;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700278 int text_y = GetTextBaseline();
279 gr_color(255, 255, 255, 255);
Luke Song92eda4d2017-09-19 10:51:35 -0700280 DrawTextIcon(text_x, text_y, text_surface);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700281 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700282}
283
Tao Baoea78d862017-06-28 14:52:17 -0700284// Draws the animation and progress bar (if any) on the screen. Does not flip pages. Should only be
285// called with updateMutex locked.
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700286void ScreenRecoveryUI::draw_foreground_locked() {
Tao Bao736d59c2017-01-03 10:15:33 -0800287 if (currentIcon != NONE) {
288 GRSurface* frame = GetCurrentFrame();
289 int frame_width = gr_get_width(frame);
290 int frame_height = gr_get_height(frame);
Luke Song92eda4d2017-09-19 10:51:35 -0700291 int frame_x = (ScreenWidth() - frame_width) / 2;
Tao Bao736d59c2017-01-03 10:15:33 -0800292 int frame_y = GetAnimationBaseline();
Luke Song92eda4d2017-09-19 10:51:35 -0700293 DrawSurface(frame, 0, 0, frame_width, frame_height, frame_x, frame_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800294 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700295
Tao Bao736d59c2017-01-03 10:15:33 -0800296 if (progressBarType != EMPTY) {
297 int width = gr_get_width(progressBarEmpty);
298 int height = gr_get_height(progressBarEmpty);
Doug Zongker211aebc2011-10-28 15:13:10 -0700299
Luke Song92eda4d2017-09-19 10:51:35 -0700300 int progress_x = (ScreenWidth() - width) / 2;
Tao Bao736d59c2017-01-03 10:15:33 -0800301 int progress_y = GetProgressBaseline();
Doug Zongker211aebc2011-10-28 15:13:10 -0700302
Tao Bao736d59c2017-01-03 10:15:33 -0800303 // Erase behind the progress bar (in case this was a progress-only update)
304 gr_color(0, 0, 0, 255);
Luke Song92eda4d2017-09-19 10:51:35 -0700305 DrawFill(progress_x, progress_y, width, height);
Doug Zongker211aebc2011-10-28 15:13:10 -0700306
Tao Bao736d59c2017-01-03 10:15:33 -0800307 if (progressBarType == DETERMINATE) {
308 float p = progressScopeStart + progress * progressScopeSize;
309 int pos = static_cast<int>(p * width);
Doug Zongker211aebc2011-10-28 15:13:10 -0700310
Tao Bao736d59c2017-01-03 10:15:33 -0800311 if (rtl_locale_) {
312 // Fill the progress bar from right to left.
313 if (pos > 0) {
Luke Song92eda4d2017-09-19 10:51:35 -0700314 DrawSurface(progressBarFill, width - pos, 0, pos, height, progress_x + width - pos,
315 progress_y);
Doug Zongker211aebc2011-10-28 15:13:10 -0700316 }
Tao Bao736d59c2017-01-03 10:15:33 -0800317 if (pos < width - 1) {
Luke Song92eda4d2017-09-19 10:51:35 -0700318 DrawSurface(progressBarEmpty, 0, 0, width - pos, height, progress_x, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800319 }
320 } else {
321 // Fill the progress bar from left to right.
322 if (pos > 0) {
Luke Song92eda4d2017-09-19 10:51:35 -0700323 DrawSurface(progressBarFill, 0, 0, pos, height, progress_x, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800324 }
325 if (pos < width - 1) {
Luke Song92eda4d2017-09-19 10:51:35 -0700326 DrawSurface(progressBarEmpty, pos, 0, width - pos, height, progress_x + pos, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800327 }
328 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700329 }
Tao Bao736d59c2017-01-03 10:15:33 -0800330 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700331}
332
Tao Bao99b2d772017-06-23 22:47:03 -0700333void ScreenRecoveryUI::SetColor(UIElement e) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700334 switch (e) {
335 case INFO:
336 gr_color(249, 194, 0, 255);
337 break;
338 case HEADER:
339 gr_color(247, 0, 6, 255);
340 break;
341 case MENU:
342 case MENU_SEL_BG:
343 gr_color(0, 106, 157, 255);
344 break;
345 case MENU_SEL_BG_ACTIVE:
346 gr_color(0, 156, 100, 255);
347 break;
348 case MENU_SEL_FG:
349 gr_color(255, 255, 255, 255);
350 break;
351 case LOG:
352 gr_color(196, 196, 196, 255);
353 break;
354 case TEXT_FILL:
355 gr_color(0, 0, 0, 160);
356 break;
357 default:
358 gr_color(255, 255, 255, 255);
359 break;
360 }
Doug Zongkerc0441d12013-07-31 11:28:24 -0700361}
Doug Zongker211aebc2011-10-28 15:13:10 -0700362
Tianjie Xu29d55752017-09-20 17:53:46 -0700363void ScreenRecoveryUI::SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries,
364 size_t sel) {
365 SetLocale(locales_entries[sel]);
366 std::vector<std::string> text_name = { "erasing_text", "error_text", "installing_text",
367 "installing_security_text", "no_command_text" };
368 std::unordered_map<std::string, std::unique_ptr<GRSurface, decltype(&free)>> surfaces;
369 for (const auto& name : text_name) {
370 GRSurface* text_image = nullptr;
371 LoadLocalizedBitmap(name.c_str(), &text_image);
372 if (!text_image) {
373 Print("Failed to load %s\n", name.c_str());
374 return;
375 }
376 surfaces.emplace(name, std::unique_ptr<GRSurface, decltype(&free)>(text_image, &free));
377 }
378
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700379 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu29d55752017-09-20 17:53:46 -0700380 gr_color(0, 0, 0, 255);
381 gr_clear();
382
Tao Bao0bc88de2018-07-31 14:53:16 -0700383 int text_y = margin_height_;
384 int text_x = margin_width_;
Tianjie Xu29d55752017-09-20 17:53:46 -0700385 int line_spacing = gr_sys_font()->char_height; // Put some extra space between images.
386 // Write the header and descriptive texts.
387 SetColor(INFO);
388 std::string header = "Show background text image";
Tao Bao93e46ad2018-05-02 14:57:21 -0700389 text_y += DrawTextLine(text_x, text_y, header, true);
Tianjie Xu29d55752017-09-20 17:53:46 -0700390 std::string locale_selection = android::base::StringPrintf(
Tao Bao39c49182018-05-07 22:50:33 -0700391 "Current locale: %s, %zu/%zu", locales_entries[sel].c_str(), sel + 1, locales_entries.size());
Tao Bao93e46ad2018-05-02 14:57:21 -0700392 // clang-format off
393 std::vector<std::string> instruction = {
394 locale_selection,
395 "Use volume up/down to switch locales and power to exit."
396 };
397 // clang-format on
Tianjie Xu29d55752017-09-20 17:53:46 -0700398 text_y += DrawWrappedTextLines(text_x, text_y, instruction);
399
400 // Iterate through the text images and display them in order for the current locale.
401 for (const auto& p : surfaces) {
402 text_y += line_spacing;
403 SetColor(LOG);
Tao Bao93e46ad2018-05-02 14:57:21 -0700404 text_y += DrawTextLine(text_x, text_y, p.first, false);
Tianjie Xu29d55752017-09-20 17:53:46 -0700405 gr_color(255, 255, 255, 255);
406 gr_texticon(text_x, text_y, p.second.get());
407 text_y += gr_get_height(p.second.get());
408 }
409 // Update the whole screen.
410 gr_flip();
Tianjie Xu29d55752017-09-20 17:53:46 -0700411}
412
Tao Bao39c49182018-05-07 22:50:33 -0700413void ScreenRecoveryUI::CheckBackgroundTextImages() {
Tianjie Xu29d55752017-09-20 17:53:46 -0700414 // Load a list of locales embedded in one of the resource files.
415 std::vector<std::string> locales_entries = get_locales_in_png("installing_text");
416 if (locales_entries.empty()) {
417 Print("Failed to load locales from the resource files\n");
418 return;
419 }
Tao Bao39c49182018-05-07 22:50:33 -0700420 std::string saved_locale = locale_;
Tianjie Xu29d55752017-09-20 17:53:46 -0700421 size_t selected = 0;
422 SelectAndShowBackgroundText(locales_entries, selected);
423
424 FlushKeys();
425 while (true) {
426 int key = WaitKey();
Jerry Zhangb76af932018-05-22 12:08:35 -0700427 if (key == static_cast<int>(KeyError::INTERRUPTED)) break;
Tianjie Xu29d55752017-09-20 17:53:46 -0700428 if (key == KEY_POWER || key == KEY_ENTER) {
429 break;
430 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
431 selected = (selected == 0) ? locales_entries.size() - 1 : selected - 1;
432 SelectAndShowBackgroundText(locales_entries, selected);
433 } else if (key == KEY_DOWN || key == KEY_VOLUMEDOWN) {
434 selected = (selected == locales_entries.size() - 1) ? 0 : selected + 1;
435 SelectAndShowBackgroundText(locales_entries, selected);
436 }
437 }
438
439 SetLocale(saved_locale);
440}
441
Luke Song92eda4d2017-09-19 10:51:35 -0700442int ScreenRecoveryUI::ScreenWidth() const {
443 return gr_fb_width();
444}
445
446int ScreenRecoveryUI::ScreenHeight() const {
447 return gr_fb_height();
448}
449
450void ScreenRecoveryUI::DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx,
451 int dy) const {
452 gr_blit(surface, sx, sy, w, h, dx, dy);
453}
454
Tao Baoea78d862017-06-28 14:52:17 -0700455int ScreenRecoveryUI::DrawHorizontalRule(int y) const {
Luke Song92eda4d2017-09-19 10:51:35 -0700456 gr_fill(0, y + 4, ScreenWidth(), y + 6);
Tao Baoea78d862017-06-28 14:52:17 -0700457 return 8;
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700458}
459
Luke Songe2bd8762017-06-12 16:08:33 -0700460void ScreenRecoveryUI::DrawHighlightBar(int x, int y, int width, int height) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700461 gr_fill(x, y, x + width, y + height);
Luke Songe2bd8762017-06-12 16:08:33 -0700462}
463
Luke Song92eda4d2017-09-19 10:51:35 -0700464void ScreenRecoveryUI::DrawFill(int x, int y, int w, int h) const {
465 gr_fill(x, y, w, h);
466}
467
468void ScreenRecoveryUI::DrawTextIcon(int x, int y, GRSurface* surface) const {
469 gr_texticon(x, y, surface);
470}
471
Tao Bao93e46ad2018-05-02 14:57:21 -0700472int ScreenRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const {
473 gr_text(gr_sys_font(), x, y, line.c_str(), bold);
Tao Baoea78d862017-06-28 14:52:17 -0700474 return char_height_ + 4;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700475}
476
Tao Bao93e46ad2018-05-02 14:57:21 -0700477int ScreenRecoveryUI::DrawTextLines(int x, int y, const std::vector<std::string>& lines) const {
Tao Baoea78d862017-06-28 14:52:17 -0700478 int offset = 0;
Tao Bao93e46ad2018-05-02 14:57:21 -0700479 for (const auto& line : lines) {
480 offset += DrawTextLine(x, y + offset, line, false);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700481 }
Tao Baoea78d862017-06-28 14:52:17 -0700482 return offset;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700483}
484
Tao Bao93e46ad2018-05-02 14:57:21 -0700485int ScreenRecoveryUI::DrawWrappedTextLines(int x, int y,
486 const std::vector<std::string>& lines) const {
Tao Bao452b4872018-05-09 11:52:09 -0700487 // Keep symmetrical margins based on the given offset (i.e. x).
488 size_t text_cols = (ScreenWidth() - x * 2) / char_width_;
Tao Bao2bbc6d62017-08-13 23:48:55 -0700489 int offset = 0;
Tao Bao93e46ad2018-05-02 14:57:21 -0700490 for (const auto& line : lines) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700491 size_t next_start = 0;
492 while (next_start < line.size()) {
Tao Bao452b4872018-05-09 11:52:09 -0700493 std::string sub = line.substr(next_start, text_cols + 1);
494 if (sub.size() <= text_cols) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700495 next_start += sub.size();
496 } else {
Tao Bao452b4872018-05-09 11:52:09 -0700497 // Line too long and must be wrapped to text_cols columns.
Tao Bao2bbc6d62017-08-13 23:48:55 -0700498 size_t last_space = sub.find_last_of(" \t\n");
499 if (last_space == std::string::npos) {
Tao Bao93e46ad2018-05-02 14:57:21 -0700500 // No space found, just draw as much as we can.
Tao Bao452b4872018-05-09 11:52:09 -0700501 sub.resize(text_cols);
502 next_start += text_cols;
Tao Bao2bbc6d62017-08-13 23:48:55 -0700503 } else {
504 sub.resize(last_space);
505 next_start += last_space + 1;
506 }
507 }
Tao Bao93e46ad2018-05-02 14:57:21 -0700508 offset += DrawTextLine(x, y + offset, sub, false);
Tao Bao2bbc6d62017-08-13 23:48:55 -0700509 }
510 }
511 return offset;
512}
513
Jerry Zhang0e577ee2018-05-07 11:21:10 -0700514void ScreenRecoveryUI::SetTitle(const std::vector<std::string>& lines) {
515 title_lines_ = lines;
516}
517
Tao Bao171b4c42017-06-19 23:10:44 -0700518// Redraws everything on the screen. Does not flip pages. Should only be called with updateMutex
519// locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700520void ScreenRecoveryUI::draw_screen_locked() {
Tao Bao171b4c42017-06-19 23:10:44 -0700521 if (!show_text) {
522 draw_background_locked();
523 draw_foreground_locked();
524 return;
525 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700526
Tao Bao171b4c42017-06-19 23:10:44 -0700527 gr_color(0, 0, 0, 255);
528 gr_clear();
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700529
Tao Bao93e46ad2018-05-02 14:57:21 -0700530 // clang-format off
Tao Bao1fe1afe2018-05-01 15:56:05 -0700531 static std::vector<std::string> REGULAR_HELP{
Tao Bao93e46ad2018-05-02 14:57:21 -0700532 "Use volume up/down and power.",
533 };
Tao Bao1fe1afe2018-05-01 15:56:05 -0700534 static std::vector<std::string> LONG_PRESS_HELP{
Tao Bao93e46ad2018-05-02 14:57:21 -0700535 "Any button cycles highlight.",
536 "Long-press activates.",
537 };
538 // clang-format on
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700539 draw_menu_and_text_buffer_locked(HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
540}
541
542// Draws the menu and text buffer on the screen. Should only be called with updateMutex locked.
Tao Bao93e46ad2018-05-02 14:57:21 -0700543void ScreenRecoveryUI::draw_menu_and_text_buffer_locked(
544 const std::vector<std::string>& help_message) {
Tao Bao0bc88de2018-07-31 14:53:16 -0700545 int y = margin_height_;
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700546 if (menu_) {
Tao Baoca6ce2c2017-07-13 11:15:27 -0700547 static constexpr int kMenuIndent = 4;
Tao Bao0bc88de2018-07-31 14:53:16 -0700548 int x = margin_width_ + kMenuIndent;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700549
Tao Bao171b4c42017-06-19 23:10:44 -0700550 SetColor(INFO);
Jerry Zhang0e577ee2018-05-07 11:21:10 -0700551
552 for (size_t i = 0; i < title_lines_.size(); i++) {
553 y += DrawTextLine(x, y, title_lines_[i], i == 0);
Doug Zongker211aebc2011-10-28 15:13:10 -0700554 }
Tao Bao171b4c42017-06-19 23:10:44 -0700555
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700556 y += DrawTextLines(x, y, help_message);
557
558 // Draw menu header.
Tao Bao171b4c42017-06-19 23:10:44 -0700559 SetColor(HEADER);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700560 if (!menu_->scrollable()) {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700561 y += DrawWrappedTextLines(x, y, menu_->text_headers());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700562 } else {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700563 y += DrawTextLines(x, y, menu_->text_headers());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700564 // Show the current menu item number in relation to total number if items don't fit on the
565 // screen.
566 std::string cur_selection_str;
567 if (menu_->ItemsOverflow(&cur_selection_str)) {
Tao Bao93e46ad2018-05-02 14:57:21 -0700568 y += DrawTextLine(x, y, cur_selection_str, true);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700569 }
570 }
Tao Bao171b4c42017-06-19 23:10:44 -0700571
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700572 // Draw menu items.
Tao Bao171b4c42017-06-19 23:10:44 -0700573 SetColor(MENU);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700574 // Do not draw the horizontal rule for wear devices.
575 if (!menu_->scrollable()) {
576 y += DrawHorizontalRule(y) + 4;
577 }
578 for (size_t i = menu_->MenuStart(); i < menu_->MenuEnd(); ++i) {
579 bool bold = false;
580 if (i == static_cast<size_t>(menu_->selection())) {
Tao Bao171b4c42017-06-19 23:10:44 -0700581 // Draw the highlight bar.
582 SetColor(IsLongPress() ? MENU_SEL_BG_ACTIVE : MENU_SEL_BG);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700583
584 int bar_height = char_height_ + 4;
585 DrawHighlightBar(0, y - 2, ScreenWidth(), bar_height);
586
Tao Bao171b4c42017-06-19 23:10:44 -0700587 // Bold white text for the selected item.
588 SetColor(MENU_SEL_FG);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700589 bold = true;
Tao Bao171b4c42017-06-19 23:10:44 -0700590 }
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700591
Tao Bao93e46ad2018-05-02 14:57:21 -0700592 y += DrawTextLine(x, y, menu_->TextItem(i), bold);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700593
594 SetColor(MENU);
Tao Bao171b4c42017-06-19 23:10:44 -0700595 }
Tao Baoea78d862017-06-28 14:52:17 -0700596 y += DrawHorizontalRule(y);
Tao Bao171b4c42017-06-19 23:10:44 -0700597 }
598
599 // Display from the bottom up, until we hit the top of the screen, the bottom of the menu, or
600 // we've displayed the entire text buffer.
601 SetColor(LOG);
Tao Baocb5524c2017-09-08 21:25:32 -0700602 int row = text_row_;
Tao Bao171b4c42017-06-19 23:10:44 -0700603 size_t count = 0;
Tao Bao0bc88de2018-07-31 14:53:16 -0700604 for (int ty = ScreenHeight() - margin_height_ - char_height_; ty >= y && count < text_rows_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700605 ty -= char_height_, ++count) {
Tao Bao0bc88de2018-07-31 14:53:16 -0700606 DrawTextLine(margin_width_, ty, text_[row], false);
Tao Bao171b4c42017-06-19 23:10:44 -0700607 --row;
608 if (row < 0) row = text_rows_ - 1;
609 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700610}
611
612// Redraw everything on the screen and flip the screen (make it visible).
613// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700614void ScreenRecoveryUI::update_screen_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700615 draw_screen_locked();
616 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700617}
618
619// Updates only the progress bar, if possible, otherwise redraws the screen.
620// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700621void ScreenRecoveryUI::update_progress_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700622 if (show_text || !pagesIdentical) {
623 draw_screen_locked(); // Must redraw the whole screen
624 pagesIdentical = true;
625 } else {
626 draw_foreground_locked(); // Draw only the progress bar and overlays
627 }
628 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700629}
630
Elliott Hughes985022a2015-04-13 13:04:32 -0700631void ScreenRecoveryUI::ProgressThreadLoop() {
Tao Bao0bc88de2018-07-31 14:53:16 -0700632 double interval = 1.0 / animation_fps_;
Tao Bao26ea9592018-05-09 16:32:02 -0700633 while (!progress_thread_stopped_) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700634 double start = now();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700635 bool redraw = false;
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700636 {
637 std::lock_guard<std::mutex> lg(updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700638
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700639 // update the installation animation, if active
640 // skip this if we have a text overlay (too expensive to update)
641 if ((currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) && !show_text) {
642 if (!intro_done) {
643 if (current_frame == intro_frames - 1) {
644 intro_done = true;
645 current_frame = 0;
646 } else {
647 ++current_frame;
648 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700649 } else {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700650 current_frame = (current_frame + 1) % loop_frames;
Doug Zongker211aebc2011-10-28 15:13:10 -0700651 }
652
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700653 redraw = true;
654 }
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700655
656 // move the progress bar forward on timed intervals, if configured
657 int duration = progressScopeDuration;
658 if (progressBarType == DETERMINATE && duration > 0) {
659 double elapsed = now() - progressScopeTime;
660 float p = 1.0 * elapsed / duration;
661 if (p > 1.0) p = 1.0;
662 if (p > progress) {
663 progress = p;
664 redraw = true;
665 }
666 }
667
668 if (redraw) update_progress_locked();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700669 }
670
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700671 double end = now();
672 // minimum of 20ms delay between frames
673 double delay = interval - (end - start);
674 if (delay < 0.02) delay = 0.02;
675 usleep(static_cast<useconds_t>(delay * 1000000));
676 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700677}
678
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700679void ScreenRecoveryUI::LoadBitmap(const char* filename, GRSurface** surface) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700680 int result = res_create_display_surface(filename, surface);
681 if (result < 0) {
682 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
683 }
Doug Zongkereac881c2014-03-07 09:21:25 -0800684}
685
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700686void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, GRSurface** surface) {
Tao Bao736d59c2017-01-03 10:15:33 -0800687 int result = res_create_localized_alpha_surface(filename, locale_.c_str(), surface);
688 if (result < 0) {
689 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
690 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700691}
692
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700693static char** Alloc2d(size_t rows, size_t cols) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700694 char** result = new char*[rows];
695 for (size_t i = 0; i < rows; ++i) {
696 result[i] = new char[cols];
697 memset(result[i], 0, cols);
698 }
699 return result;
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700700}
701
Tianjie Xu35926c42016-04-28 18:06:26 -0700702// Choose the right background string to display during update.
703void ScreenRecoveryUI::SetSystemUpdateText(bool security_update) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700704 if (security_update) {
705 LoadLocalizedBitmap("installing_security_text", &installing_text);
706 } else {
707 LoadLocalizedBitmap("installing_text", &installing_text);
708 }
709 Redraw();
Tianjie Xu35926c42016-04-28 18:06:26 -0700710}
711
Sen Jiangd5304492016-12-09 16:20:49 -0800712bool ScreenRecoveryUI::InitTextParams() {
Tao Baoba4edb32018-06-13 11:22:50 -0700713 // gr_init() would return successfully on font initialization failure.
714 if (gr_sys_font() == nullptr) {
Tao Bao171b4c42017-06-19 23:10:44 -0700715 return false;
716 }
Tao Bao171b4c42017-06-19 23:10:44 -0700717 gr_font_size(gr_sys_font(), &char_width_, &char_height_);
Tao Bao0bc88de2018-07-31 14:53:16 -0700718 text_rows_ = (ScreenHeight() - margin_height_ * 2) / char_height_;
719 text_cols_ = (ScreenWidth() - margin_width_ * 2) / char_width_;
Tao Bao171b4c42017-06-19 23:10:44 -0700720 return true;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700721}
722
Tao Bao736d59c2017-01-03 10:15:33 -0800723bool ScreenRecoveryUI::Init(const std::string& locale) {
724 RecoveryUI::Init(locale);
Tao Baoefb49ad2017-01-31 23:03:10 -0800725
Tao Baoba4edb32018-06-13 11:22:50 -0700726 if (gr_init() == -1) {
727 return false;
728 }
729
Tao Bao736d59c2017-01-03 10:15:33 -0800730 if (!InitTextParams()) {
731 return false;
732 }
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700733
Tao Bao736d59c2017-01-03 10:15:33 -0800734 // Are we portrait or landscape?
735 layout_ = (gr_fb_width() > gr_fb_height()) ? LANDSCAPE : PORTRAIT;
736 // Are we the large variant of our base layout?
737 if (gr_fb_height() > PixelsFromDp(800)) ++layout_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700738
Tao Bao736d59c2017-01-03 10:15:33 -0800739 text_ = Alloc2d(text_rows_, text_cols_ + 1);
740 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1);
Doug Zongker55a36ac2013-03-04 15:49:02 -0800741
Tao Bao736d59c2017-01-03 10:15:33 -0800742 text_col_ = text_row_ = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700743
Tao Baoefb49ad2017-01-31 23:03:10 -0800744 // Set up the locale info.
745 SetLocale(locale);
746
Tao Bao736d59c2017-01-03 10:15:33 -0800747 LoadBitmap("icon_error", &error_icon);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700748
Tao Bao736d59c2017-01-03 10:15:33 -0800749 LoadBitmap("progress_empty", &progressBarEmpty);
750 LoadBitmap("progress_fill", &progressBarFill);
Elliott Hughes498cda62016-04-14 16:49:04 -0700751
Tao Bao736d59c2017-01-03 10:15:33 -0800752 LoadBitmap("stage_empty", &stageMarkerEmpty);
753 LoadBitmap("stage_fill", &stageMarkerFill);
Doug Zongker211aebc2011-10-28 15:13:10 -0700754
Tao Bao736d59c2017-01-03 10:15:33 -0800755 // Background text for "installing_update" could be "installing update"
756 // or "installing security update". It will be set after UI init according
757 // to commands in BCB.
758 installing_text = nullptr;
759 LoadLocalizedBitmap("erasing_text", &erasing_text);
760 LoadLocalizedBitmap("no_command_text", &no_command_text);
761 LoadLocalizedBitmap("error_text", &error_text);
Elliott Hughes498cda62016-04-14 16:49:04 -0700762
Tao Bao736d59c2017-01-03 10:15:33 -0800763 LoadAnimation();
Doug Zongker02ec6b82012-08-22 17:26:40 -0700764
Tao Bao26ea9592018-05-09 16:32:02 -0700765 // Keep the progress bar updated, even when the process is otherwise busy.
766 progress_thread_ = std::thread(&ScreenRecoveryUI::ProgressThreadLoop, this);
Sen Jiangd5304492016-12-09 16:20:49 -0800767
Tao Bao736d59c2017-01-03 10:15:33 -0800768 return true;
Doug Zongker211aebc2011-10-28 15:13:10 -0700769}
770
Tao Bao551d2c32018-05-09 20:53:13 -0700771std::string ScreenRecoveryUI::GetLocale() const {
Jerry Zhang2dea53e2018-05-02 17:15:03 -0700772 return locale_;
773}
774
Elliott Hughes498cda62016-04-14 16:49:04 -0700775void ScreenRecoveryUI::LoadAnimation() {
Tao Bao6cd81682018-05-03 21:53:11 -0700776 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(Paths::Get().resource_dir().c_str()),
777 closedir);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700778 dirent* de;
779 std::vector<std::string> intro_frame_names;
780 std::vector<std::string> loop_frame_names;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700781
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700782 while ((de = readdir(dir.get())) != nullptr) {
783 int value, num_chars;
784 if (sscanf(de->d_name, "intro%d%n.png", &value, &num_chars) == 1) {
785 intro_frame_names.emplace_back(de->d_name, num_chars);
786 } else if (sscanf(de->d_name, "loop%d%n.png", &value, &num_chars) == 1) {
787 loop_frame_names.emplace_back(de->d_name, num_chars);
Elliott Hughes498cda62016-04-14 16:49:04 -0700788 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700789 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700790
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700791 intro_frames = intro_frame_names.size();
792 loop_frames = loop_frame_names.size();
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700793
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700794 // It's okay to not have an intro.
795 if (intro_frames == 0) intro_done = true;
796 // But you must have an animation.
797 if (loop_frames == 0) abort();
Elliott Hughes498cda62016-04-14 16:49:04 -0700798
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700799 std::sort(intro_frame_names.begin(), intro_frame_names.end());
800 std::sort(loop_frame_names.begin(), loop_frame_names.end());
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700801
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700802 introFrames = new GRSurface*[intro_frames];
803 for (size_t i = 0; i < intro_frames; i++) {
804 LoadBitmap(intro_frame_names.at(i).c_str(), &introFrames[i]);
805 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700806
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700807 loopFrames = new GRSurface*[loop_frames];
808 for (size_t i = 0; i < loop_frames; i++) {
809 LoadBitmap(loop_frame_names.at(i).c_str(), &loopFrames[i]);
810 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700811}
812
Elliott Hughes8de52072015-04-08 20:06:50 -0700813void ScreenRecoveryUI::SetBackground(Icon icon) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700814 std::lock_guard<std::mutex> lg(updateMutex);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700815
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700816 currentIcon = icon;
817 update_screen_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700818}
819
Elliott Hughes8de52072015-04-08 20:06:50 -0700820void ScreenRecoveryUI::SetProgressType(ProgressType type) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700821 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700822 if (progressBarType != type) {
823 progressBarType = type;
824 }
825 progressScopeStart = 0;
826 progressScopeSize = 0;
827 progress = 0;
828 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700829}
830
Elliott Hughes8de52072015-04-08 20:06:50 -0700831void ScreenRecoveryUI::ShowProgress(float portion, float seconds) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700832 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700833 progressBarType = DETERMINATE;
834 progressScopeStart += progressScopeSize;
835 progressScopeSize = portion;
836 progressScopeTime = now();
837 progressScopeDuration = seconds;
838 progress = 0;
839 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700840}
841
Elliott Hughes8de52072015-04-08 20:06:50 -0700842void ScreenRecoveryUI::SetProgress(float fraction) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700843 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700844 if (fraction < 0.0) fraction = 0.0;
845 if (fraction > 1.0) fraction = 1.0;
846 if (progressBarType == DETERMINATE && fraction > progress) {
847 // Skip updates that aren't visibly different.
848 int width = gr_get_width(progressBarEmpty);
849 float scale = width * progressScopeSize;
850 if ((int)(progress * scale) != (int)(fraction * scale)) {
851 progress = fraction;
852 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700853 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700854 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700855}
856
Doug Zongkerc87bab12013-11-25 13:53:25 -0800857void ScreenRecoveryUI::SetStage(int current, int max) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700858 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700859 stage = current;
860 max_stage = max;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800861}
862
Tao Baob6918c72015-05-19 17:02:16 -0700863void ScreenRecoveryUI::PrintV(const char* fmt, bool copy_to_stdout, va_list ap) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700864 std::string str;
865 android::base::StringAppendV(&str, fmt, ap);
Doug Zongker211aebc2011-10-28 15:13:10 -0700866
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700867 if (copy_to_stdout) {
868 fputs(str.c_str(), stdout);
869 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700870
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700871 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700872 if (text_rows_ > 0 && text_cols_ > 0) {
873 for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) {
874 if (*ptr == '\n' || text_col_ >= text_cols_) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700875 text_[text_row_][text_col_] = '\0';
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700876 text_col_ = 0;
877 text_row_ = (text_row_ + 1) % text_rows_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700878 }
879 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
Doug Zongker211aebc2011-10-28 15:13:10 -0700880 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700881 text_[text_row_][text_col_] = '\0';
882 update_screen_locked();
883 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700884}
885
Tao Baob6918c72015-05-19 17:02:16 -0700886void ScreenRecoveryUI::Print(const char* fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700887 va_list ap;
888 va_start(ap, fmt);
889 PrintV(fmt, true, ap);
890 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700891}
892
893void ScreenRecoveryUI::PrintOnScreenOnly(const char *fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700894 va_list ap;
895 va_start(ap, fmt);
896 PrintV(fmt, false, ap);
897 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700898}
899
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700900void ScreenRecoveryUI::PutChar(char ch) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700901 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700902 if (ch != '\n') text_[text_row_][text_col_++] = ch;
903 if (ch == '\n' || text_col_ >= text_cols_) {
904 text_col_ = 0;
905 ++text_row_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700906 }
Elliott Hughes8de52072015-04-08 20:06:50 -0700907}
908
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700909void ScreenRecoveryUI::ClearText() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700910 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700911 text_col_ = 0;
912 text_row_ = 0;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700913 for (size_t i = 0; i < text_rows_; ++i) {
914 memset(text_[i], 0, text_cols_ + 1);
915 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700916}
917
918void ScreenRecoveryUI::ShowFile(FILE* fp) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700919 std::vector<off_t> offsets;
920 offsets.push_back(ftello(fp));
921 ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700922
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700923 struct stat sb;
924 fstat(fileno(fp), &sb);
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700925
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700926 bool show_prompt = false;
927 while (true) {
928 if (show_prompt) {
929 PrintOnScreenOnly("--(%d%% of %d bytes)--",
930 static_cast<int>(100 * (double(ftello(fp)) / double(sb.st_size))),
931 static_cast<int>(sb.st_size));
932 Redraw();
933 while (show_prompt) {
934 show_prompt = false;
935 int key = WaitKey();
Jerry Zhangb76af932018-05-22 12:08:35 -0700936 if (key == static_cast<int>(KeyError::INTERRUPTED)) return;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700937 if (key == KEY_POWER || key == KEY_ENTER) {
938 return;
939 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
940 if (offsets.size() <= 1) {
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700941 show_prompt = true;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700942 } else {
943 offsets.pop_back();
944 fseek(fp, offsets.back(), SEEK_SET);
945 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700946 } else {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700947 if (feof(fp)) {
948 return;
949 }
950 offsets.push_back(ftello(fp));
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700951 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700952 }
953 ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700954 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700955
956 int ch = getc(fp);
957 if (ch == EOF) {
958 while (text_row_ < text_rows_ - 1) PutChar('\n');
959 show_prompt = true;
960 } else {
961 PutChar(ch);
962 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) {
963 show_prompt = true;
964 }
965 }
966 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700967}
968
Tao Bao1d156b92018-05-02 12:43:18 -0700969void ScreenRecoveryUI::ShowFile(const std::string& filename) {
970 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(filename.c_str(), "re"), fclose);
971 if (!fp) {
972 Print(" Unable to open %s: %s\n", filename.c_str(), strerror(errno));
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700973 return;
974 }
Elliott Hughesc0491632015-05-06 12:40:05 -0700975
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700976 char** old_text = text_;
977 size_t old_text_col = text_col_;
978 size_t old_text_row = text_row_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700979
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700980 // Swap in the alternate screen and clear it.
981 text_ = file_viewer_text_;
982 ClearText();
Elliott Hughesc0491632015-05-06 12:40:05 -0700983
Tao Bao1d156b92018-05-02 12:43:18 -0700984 ShowFile(fp.get());
Elliott Hughesc0491632015-05-06 12:40:05 -0700985
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700986 text_ = old_text;
987 text_col_ = old_text_col;
988 text_row_ = old_text_row;
Elliott Hughes8de52072015-04-08 20:06:50 -0700989}
990
Tao Bao1fe1afe2018-05-01 15:56:05 -0700991void ScreenRecoveryUI::StartMenu(const std::vector<std::string>& headers,
992 const std::vector<std::string>& items, size_t initial_selection) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -0700993 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700994 if (text_rows_ > 0 && text_cols_ > 1) {
Tao Baoe02a5b22018-05-02 15:46:11 -0700995 menu_ = std::make_unique<Menu>(scrollable_menu_, text_rows_, text_cols_ - 1, headers, items,
996 initial_selection);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700997 update_screen_locked();
998 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700999}
1000
1001int ScreenRecoveryUI::SelectMenu(int sel) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001002 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -07001003 if (menu_) {
1004 int old_sel = menu_->selection();
1005 sel = menu_->Select(sel);
Elliott Hughesfc06f872015-03-23 13:45:31 -07001006
Tianjie Xu5fe5eb62018-03-20 16:07:39 -07001007 if (sel != old_sel) {
1008 update_screen_locked();
1009 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001010 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001011 return sel;
Doug Zongker211aebc2011-10-28 15:13:10 -07001012}
1013
1014void ScreenRecoveryUI::EndMenu() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001015 std::lock_guard<std::mutex> lg(updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -07001016 if (menu_) {
1017 menu_.reset();
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001018 update_screen_locked();
1019 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001020}
1021
Tao Bao1fe1afe2018-05-01 15:56:05 -07001022size_t ScreenRecoveryUI::ShowMenu(const std::vector<std::string>& headers,
1023 const std::vector<std::string>& items, size_t initial_selection,
1024 bool menu_only,
1025 const std::function<int(int, bool)>& key_handler) {
Tao Bao3aec6962018-04-20 09:24:58 -07001026 // Throw away keys pressed previously, so user doesn't accidentally trigger menu items.
1027 FlushKeys();
1028
Jerry Zhangb76af932018-05-22 12:08:35 -07001029 // If there is a key interrupt in progress, return KeyError::INTERRUPTED without starting the
1030 // menu.
1031 if (IsKeyInterrupted()) return static_cast<size_t>(KeyError::INTERRUPTED);
1032
Tao Bao3aec6962018-04-20 09:24:58 -07001033 StartMenu(headers, items, initial_selection);
1034
1035 int selected = initial_selection;
1036 int chosen_item = -1;
1037 while (chosen_item < 0) {
1038 int key = WaitKey();
Jerry Zhangb76af932018-05-22 12:08:35 -07001039 if (key == static_cast<int>(KeyError::INTERRUPTED)) { // WaitKey() was interrupted.
1040 return static_cast<size_t>(KeyError::INTERRUPTED);
1041 }
1042 if (key == static_cast<int>(KeyError::TIMED_OUT)) { // WaitKey() timed out.
Tao Bao3aec6962018-04-20 09:24:58 -07001043 if (WasTextEverVisible()) {
1044 continue;
1045 } else {
1046 LOG(INFO) << "Timed out waiting for key input; rebooting.";
1047 EndMenu();
Jerry Zhangb76af932018-05-22 12:08:35 -07001048 return static_cast<size_t>(KeyError::TIMED_OUT);
Tao Bao3aec6962018-04-20 09:24:58 -07001049 }
1050 }
1051
1052 bool visible = IsTextVisible();
1053 int action = key_handler(key, visible);
1054 if (action < 0) {
1055 switch (action) {
1056 case Device::kHighlightUp:
1057 selected = SelectMenu(--selected);
1058 break;
1059 case Device::kHighlightDown:
1060 selected = SelectMenu(++selected);
1061 break;
1062 case Device::kInvokeItem:
1063 chosen_item = selected;
1064 break;
1065 case Device::kNoAction:
1066 break;
1067 }
1068 } else if (!menu_only) {
1069 chosen_item = action;
1070 }
1071 }
1072
1073 EndMenu();
1074 return chosen_item;
1075}
1076
Elliott Hughes8de52072015-04-08 20:06:50 -07001077bool ScreenRecoveryUI::IsTextVisible() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001078 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001079 int visible = show_text;
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001080 return visible;
Doug Zongker211aebc2011-10-28 15:13:10 -07001081}
1082
Elliott Hughes8de52072015-04-08 20:06:50 -07001083bool ScreenRecoveryUI::WasTextEverVisible() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001084 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001085 int ever_visible = show_text_ever;
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001086 return ever_visible;
Doug Zongker211aebc2011-10-28 15:13:10 -07001087}
1088
Elliott Hughes8de52072015-04-08 20:06:50 -07001089void ScreenRecoveryUI::ShowText(bool visible) {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001090 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001091 show_text = visible;
1092 if (show_text) show_text_ever = true;
1093 update_screen_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -07001094}
Doug Zongkerc0441d12013-07-31 11:28:24 -07001095
Elliott Hughes8de52072015-04-08 20:06:50 -07001096void ScreenRecoveryUI::Redraw() {
Jerry Zhangb31f9ce2018-05-21 16:04:57 -07001097 std::lock_guard<std::mutex> lg(updateMutex);
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001098 update_screen_locked();
Doug Zongkerc0441d12013-07-31 11:28:24 -07001099}
Elliott Hughes642aaa72015-04-10 12:47:46 -07001100
1101void ScreenRecoveryUI::KeyLongPress(int) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001102 // Redraw so that if we're in the menu, the highlight
1103 // will change color to indicate a successful long press.
1104 Redraw();
Elliott Hughes642aaa72015-04-10 12:47:46 -07001105}
Tao Baoefb49ad2017-01-31 23:03:10 -08001106
1107void ScreenRecoveryUI::SetLocale(const std::string& new_locale) {
1108 locale_ = new_locale;
1109 rtl_locale_ = false;
1110
1111 if (!new_locale.empty()) {
Tao Bao347a6592018-05-08 15:58:29 -07001112 size_t separator = new_locale.find('-');
1113 // lang has the language prefix prior to the separator, or full string if none exists.
1114 std::string lang = new_locale.substr(0, separator);
Tao Baoefb49ad2017-01-31 23:03:10 -08001115
1116 // A bit cheesy: keep an explicit list of supported RTL languages.
1117 if (lang == "ar" || // Arabic
1118 lang == "fa" || // Persian (Farsi)
1119 lang == "he" || // Hebrew (new language code)
1120 lang == "iw" || // Hebrew (old language code)
1121 lang == "ur") { // Urdu
1122 rtl_locale_ = true;
1123 }
1124 }
1125}