blob: 4ea458f1d645e5854fc1e61140272f7c852cff1d [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>
22#include <linux/input.h>
23#include <pthread.h>
24#include <stdarg.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <sys/stat.h>
29#include <sys/time.h>
30#include <sys/types.h>
31#include <time.h>
32#include <unistd.h>
33
Tao Bao1fe1afe2018-05-01 15:56:05 -070034#include <algorithm>
Tianjie Xu29d55752017-09-20 17:53:46 -070035#include <memory>
Tao Bao736d59c2017-01-03 10:15:33 -080036#include <string>
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_(""),
172 rtl_locale_(false),
Tao Bao736d59c2017-01-03 10:15:33 -0800173 updateMutex(PTHREAD_MUTEX_INITIALIZER) {}
Doug Zongker211aebc2011-10-28 15:13:10 -0700174
Tao Bao99b2d772017-06-23 22:47:03 -0700175GRSurface* ScreenRecoveryUI::GetCurrentFrame() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700176 if (currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) {
177 return intro_done ? loopFrames[current_frame] : introFrames[current_frame];
178 }
179 return error_icon;
Elliott Hughes498cda62016-04-14 16:49:04 -0700180}
181
Tao Bao99b2d772017-06-23 22:47:03 -0700182GRSurface* ScreenRecoveryUI::GetCurrentText() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700183 switch (currentIcon) {
184 case ERASING:
185 return erasing_text;
186 case ERROR:
187 return error_text;
188 case INSTALLING_UPDATE:
189 return installing_text;
190 case NO_COMMAND:
191 return no_command_text;
192 case NONE:
193 abort();
194 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700195}
196
Mikhail Lappob49767c2017-03-23 21:44:26 +0100197int ScreenRecoveryUI::PixelsFromDp(int dp) const {
Tao Bao75779652017-09-10 11:28:32 -0700198 return dp * kDensity;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700199}
200
201// Here's the intended layout:
202
Elliott Hughes6d089a92016-07-08 17:23:41 -0700203// | portrait large landscape large
204// ---------+-------------------------------------------------
Tao Bao3250f722017-06-29 14:32:05 -0700205// gap |
Elliott Hughes6d089a92016-07-08 17:23:41 -0700206// icon | (200dp)
207// gap | 68dp 68dp 56dp 112dp
208// text | (14sp)
209// gap | 32dp 32dp 26dp 52dp
210// progress | (2dp)
Tao Bao3250f722017-06-29 14:32:05 -0700211// gap |
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700212
Tao Bao3250f722017-06-29 14:32:05 -0700213// Note that "baseline" is actually the *top* of each icon (because that's how our drawing routines
214// 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 -0700215
Elliott Hughes6d089a92016-07-08 17:23:41 -0700216enum Layout { PORTRAIT = 0, PORTRAIT_LARGE = 1, LANDSCAPE = 2, LANDSCAPE_LARGE = 3, LAYOUT_MAX };
Tao Bao3250f722017-06-29 14:32:05 -0700217enum Dimension { TEXT = 0, ICON = 1, DIMENSION_MAX };
Elliott Hughes6d089a92016-07-08 17:23:41 -0700218static constexpr int kLayouts[LAYOUT_MAX][DIMENSION_MAX] = {
Tao Bao3250f722017-06-29 14:32:05 -0700219 { 32, 68, }, // PORTRAIT
220 { 32, 68, }, // PORTRAIT_LARGE
221 { 26, 56, }, // LANDSCAPE
222 { 52, 112, }, // LANDSCAPE_LARGE
Elliott Hughes6d089a92016-07-08 17:23:41 -0700223};
224
Tao Bao99b2d772017-06-23 22:47:03 -0700225int ScreenRecoveryUI::GetAnimationBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700226 return GetTextBaseline() - PixelsFromDp(kLayouts[layout_][ICON]) - gr_get_height(loopFrames[0]);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700227}
228
Tao Bao99b2d772017-06-23 22:47:03 -0700229int ScreenRecoveryUI::GetTextBaseline() const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700230 return GetProgressBaseline() - PixelsFromDp(kLayouts[layout_][TEXT]) -
231 gr_get_height(installing_text);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700232}
233
Tao Bao99b2d772017-06-23 22:47:03 -0700234int ScreenRecoveryUI::GetProgressBaseline() const {
Tao Bao3250f722017-06-29 14:32:05 -0700235 int elements_sum = gr_get_height(loopFrames[0]) + PixelsFromDp(kLayouts[layout_][ICON]) +
236 gr_get_height(installing_text) + PixelsFromDp(kLayouts[layout_][TEXT]) +
237 gr_get_height(progressBarFill);
Luke Song92eda4d2017-09-19 10:51:35 -0700238 int bottom_gap = (ScreenHeight() - elements_sum) / 2;
239 return ScreenHeight() - bottom_gap - gr_get_height(progressBarFill);
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700240}
241
Doug Zongker211aebc2011-10-28 15:13:10 -0700242// Clear the screen and draw the currently selected background icon (if any).
243// Should only be called with updateMutex locked.
Elliott Hughes498cda62016-04-14 16:49:04 -0700244void ScreenRecoveryUI::draw_background_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700245 pagesIdentical = false;
246 gr_color(0, 0, 0, 255);
247 gr_clear();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700248 if (currentIcon != NONE) {
249 if (max_stage != -1) {
250 int stage_height = gr_get_height(stageMarkerEmpty);
251 int stage_width = gr_get_width(stageMarkerEmpty);
Luke Song92eda4d2017-09-19 10:51:35 -0700252 int x = (ScreenWidth() - max_stage * gr_get_width(stageMarkerEmpty)) / 2;
253 int y = ScreenHeight() - stage_height - kMarginHeight;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700254 for (int i = 0; i < max_stage; ++i) {
255 GRSurface* stage_surface = (i < stage) ? stageMarkerFill : stageMarkerEmpty;
Luke Song92eda4d2017-09-19 10:51:35 -0700256 DrawSurface(stage_surface, 0, 0, stage_width, stage_height, x, y);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700257 x += stage_width;
258 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700259 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700260
261 GRSurface* text_surface = GetCurrentText();
Luke Song92eda4d2017-09-19 10:51:35 -0700262 int text_x = (ScreenWidth() - gr_get_width(text_surface)) / 2;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700263 int text_y = GetTextBaseline();
264 gr_color(255, 255, 255, 255);
Luke Song92eda4d2017-09-19 10:51:35 -0700265 DrawTextIcon(text_x, text_y, text_surface);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700266 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700267}
268
Tao Baoea78d862017-06-28 14:52:17 -0700269// Draws the animation and progress bar (if any) on the screen. Does not flip pages. Should only be
270// called with updateMutex locked.
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700271void ScreenRecoveryUI::draw_foreground_locked() {
Tao Bao736d59c2017-01-03 10:15:33 -0800272 if (currentIcon != NONE) {
273 GRSurface* frame = GetCurrentFrame();
274 int frame_width = gr_get_width(frame);
275 int frame_height = gr_get_height(frame);
Luke Song92eda4d2017-09-19 10:51:35 -0700276 int frame_x = (ScreenWidth() - frame_width) / 2;
Tao Bao736d59c2017-01-03 10:15:33 -0800277 int frame_y = GetAnimationBaseline();
Luke Song92eda4d2017-09-19 10:51:35 -0700278 DrawSurface(frame, 0, 0, frame_width, frame_height, frame_x, frame_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800279 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700280
Tao Bao736d59c2017-01-03 10:15:33 -0800281 if (progressBarType != EMPTY) {
282 int width = gr_get_width(progressBarEmpty);
283 int height = gr_get_height(progressBarEmpty);
Doug Zongker211aebc2011-10-28 15:13:10 -0700284
Luke Song92eda4d2017-09-19 10:51:35 -0700285 int progress_x = (ScreenWidth() - width) / 2;
Tao Bao736d59c2017-01-03 10:15:33 -0800286 int progress_y = GetProgressBaseline();
Doug Zongker211aebc2011-10-28 15:13:10 -0700287
Tao Bao736d59c2017-01-03 10:15:33 -0800288 // Erase behind the progress bar (in case this was a progress-only update)
289 gr_color(0, 0, 0, 255);
Luke Song92eda4d2017-09-19 10:51:35 -0700290 DrawFill(progress_x, progress_y, width, height);
Doug Zongker211aebc2011-10-28 15:13:10 -0700291
Tao Bao736d59c2017-01-03 10:15:33 -0800292 if (progressBarType == DETERMINATE) {
293 float p = progressScopeStart + progress * progressScopeSize;
294 int pos = static_cast<int>(p * width);
Doug Zongker211aebc2011-10-28 15:13:10 -0700295
Tao Bao736d59c2017-01-03 10:15:33 -0800296 if (rtl_locale_) {
297 // Fill the progress bar from right to left.
298 if (pos > 0) {
Luke Song92eda4d2017-09-19 10:51:35 -0700299 DrawSurface(progressBarFill, width - pos, 0, pos, height, progress_x + width - pos,
300 progress_y);
Doug Zongker211aebc2011-10-28 15:13:10 -0700301 }
Tao Bao736d59c2017-01-03 10:15:33 -0800302 if (pos < width - 1) {
Luke Song92eda4d2017-09-19 10:51:35 -0700303 DrawSurface(progressBarEmpty, 0, 0, width - pos, height, progress_x, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800304 }
305 } else {
306 // Fill the progress bar from left to right.
307 if (pos > 0) {
Luke Song92eda4d2017-09-19 10:51:35 -0700308 DrawSurface(progressBarFill, 0, 0, pos, height, progress_x, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800309 }
310 if (pos < width - 1) {
Luke Song92eda4d2017-09-19 10:51:35 -0700311 DrawSurface(progressBarEmpty, pos, 0, width - pos, height, progress_x + pos, progress_y);
Tao Bao736d59c2017-01-03 10:15:33 -0800312 }
313 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700314 }
Tao Bao736d59c2017-01-03 10:15:33 -0800315 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700316}
317
Tao Bao99b2d772017-06-23 22:47:03 -0700318void ScreenRecoveryUI::SetColor(UIElement e) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700319 switch (e) {
320 case INFO:
321 gr_color(249, 194, 0, 255);
322 break;
323 case HEADER:
324 gr_color(247, 0, 6, 255);
325 break;
326 case MENU:
327 case MENU_SEL_BG:
328 gr_color(0, 106, 157, 255);
329 break;
330 case MENU_SEL_BG_ACTIVE:
331 gr_color(0, 156, 100, 255);
332 break;
333 case MENU_SEL_FG:
334 gr_color(255, 255, 255, 255);
335 break;
336 case LOG:
337 gr_color(196, 196, 196, 255);
338 break;
339 case TEXT_FILL:
340 gr_color(0, 0, 0, 160);
341 break;
342 default:
343 gr_color(255, 255, 255, 255);
344 break;
345 }
Doug Zongkerc0441d12013-07-31 11:28:24 -0700346}
Doug Zongker211aebc2011-10-28 15:13:10 -0700347
Tianjie Xu29d55752017-09-20 17:53:46 -0700348void ScreenRecoveryUI::SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries,
349 size_t sel) {
350 SetLocale(locales_entries[sel]);
351 std::vector<std::string> text_name = { "erasing_text", "error_text", "installing_text",
352 "installing_security_text", "no_command_text" };
353 std::unordered_map<std::string, std::unique_ptr<GRSurface, decltype(&free)>> surfaces;
354 for (const auto& name : text_name) {
355 GRSurface* text_image = nullptr;
356 LoadLocalizedBitmap(name.c_str(), &text_image);
357 if (!text_image) {
358 Print("Failed to load %s\n", name.c_str());
359 return;
360 }
361 surfaces.emplace(name, std::unique_ptr<GRSurface, decltype(&free)>(text_image, &free));
362 }
363
364 pthread_mutex_lock(&updateMutex);
365 gr_color(0, 0, 0, 255);
366 gr_clear();
367
368 int text_y = kMarginHeight;
369 int text_x = kMarginWidth;
370 int line_spacing = gr_sys_font()->char_height; // Put some extra space between images.
371 // Write the header and descriptive texts.
372 SetColor(INFO);
373 std::string header = "Show background text image";
Tao Bao93e46ad2018-05-02 14:57:21 -0700374 text_y += DrawTextLine(text_x, text_y, header, true);
Tianjie Xu29d55752017-09-20 17:53:46 -0700375 std::string locale_selection = android::base::StringPrintf(
Tao Bao39c49182018-05-07 22:50:33 -0700376 "Current locale: %s, %zu/%zu", locales_entries[sel].c_str(), sel + 1, locales_entries.size());
Tao Bao93e46ad2018-05-02 14:57:21 -0700377 // clang-format off
378 std::vector<std::string> instruction = {
379 locale_selection,
380 "Use volume up/down to switch locales and power to exit."
381 };
382 // clang-format on
Tianjie Xu29d55752017-09-20 17:53:46 -0700383 text_y += DrawWrappedTextLines(text_x, text_y, instruction);
384
385 // Iterate through the text images and display them in order for the current locale.
386 for (const auto& p : surfaces) {
387 text_y += line_spacing;
388 SetColor(LOG);
Tao Bao93e46ad2018-05-02 14:57:21 -0700389 text_y += DrawTextLine(text_x, text_y, p.first, false);
Tianjie Xu29d55752017-09-20 17:53:46 -0700390 gr_color(255, 255, 255, 255);
391 gr_texticon(text_x, text_y, p.second.get());
392 text_y += gr_get_height(p.second.get());
393 }
394 // Update the whole screen.
395 gr_flip();
396 pthread_mutex_unlock(&updateMutex);
397}
398
Tao Bao39c49182018-05-07 22:50:33 -0700399void ScreenRecoveryUI::CheckBackgroundTextImages() {
Tianjie Xu29d55752017-09-20 17:53:46 -0700400 // Load a list of locales embedded in one of the resource files.
401 std::vector<std::string> locales_entries = get_locales_in_png("installing_text");
402 if (locales_entries.empty()) {
403 Print("Failed to load locales from the resource files\n");
404 return;
405 }
Tao Bao39c49182018-05-07 22:50:33 -0700406 std::string saved_locale = locale_;
Tianjie Xu29d55752017-09-20 17:53:46 -0700407 size_t selected = 0;
408 SelectAndShowBackgroundText(locales_entries, selected);
409
410 FlushKeys();
411 while (true) {
412 int key = WaitKey();
413 if (key == KEY_POWER || key == KEY_ENTER) {
414 break;
415 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
416 selected = (selected == 0) ? locales_entries.size() - 1 : selected - 1;
417 SelectAndShowBackgroundText(locales_entries, selected);
418 } else if (key == KEY_DOWN || key == KEY_VOLUMEDOWN) {
419 selected = (selected == locales_entries.size() - 1) ? 0 : selected + 1;
420 SelectAndShowBackgroundText(locales_entries, selected);
421 }
422 }
423
424 SetLocale(saved_locale);
425}
426
Luke Song92eda4d2017-09-19 10:51:35 -0700427int ScreenRecoveryUI::ScreenWidth() const {
428 return gr_fb_width();
429}
430
431int ScreenRecoveryUI::ScreenHeight() const {
432 return gr_fb_height();
433}
434
435void ScreenRecoveryUI::DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx,
436 int dy) const {
437 gr_blit(surface, sx, sy, w, h, dx, dy);
438}
439
Tao Baoea78d862017-06-28 14:52:17 -0700440int ScreenRecoveryUI::DrawHorizontalRule(int y) const {
Luke Song92eda4d2017-09-19 10:51:35 -0700441 gr_fill(0, y + 4, ScreenWidth(), y + 6);
Tao Baoea78d862017-06-28 14:52:17 -0700442 return 8;
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700443}
444
Luke Songe2bd8762017-06-12 16:08:33 -0700445void ScreenRecoveryUI::DrawHighlightBar(int x, int y, int width, int height) const {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700446 gr_fill(x, y, x + width, y + height);
Luke Songe2bd8762017-06-12 16:08:33 -0700447}
448
Luke Song92eda4d2017-09-19 10:51:35 -0700449void ScreenRecoveryUI::DrawFill(int x, int y, int w, int h) const {
450 gr_fill(x, y, w, h);
451}
452
453void ScreenRecoveryUI::DrawTextIcon(int x, int y, GRSurface* surface) const {
454 gr_texticon(x, y, surface);
455}
456
Tao Bao93e46ad2018-05-02 14:57:21 -0700457int ScreenRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const {
458 gr_text(gr_sys_font(), x, y, line.c_str(), bold);
Tao Baoea78d862017-06-28 14:52:17 -0700459 return char_height_ + 4;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700460}
461
Tao Bao93e46ad2018-05-02 14:57:21 -0700462int ScreenRecoveryUI::DrawTextLines(int x, int y, const std::vector<std::string>& lines) const {
Tao Baoea78d862017-06-28 14:52:17 -0700463 int offset = 0;
Tao Bao93e46ad2018-05-02 14:57:21 -0700464 for (const auto& line : lines) {
465 offset += DrawTextLine(x, y + offset, line, false);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700466 }
Tao Baoea78d862017-06-28 14:52:17 -0700467 return offset;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700468}
469
Tao Bao93e46ad2018-05-02 14:57:21 -0700470int ScreenRecoveryUI::DrawWrappedTextLines(int x, int y,
471 const std::vector<std::string>& lines) const {
Tao Bao452b4872018-05-09 11:52:09 -0700472 // Keep symmetrical margins based on the given offset (i.e. x).
473 size_t text_cols = (ScreenWidth() - x * 2) / char_width_;
Tao Bao2bbc6d62017-08-13 23:48:55 -0700474 int offset = 0;
Tao Bao93e46ad2018-05-02 14:57:21 -0700475 for (const auto& line : lines) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700476 size_t next_start = 0;
477 while (next_start < line.size()) {
Tao Bao452b4872018-05-09 11:52:09 -0700478 std::string sub = line.substr(next_start, text_cols + 1);
479 if (sub.size() <= text_cols) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700480 next_start += sub.size();
481 } else {
Tao Bao452b4872018-05-09 11:52:09 -0700482 // Line too long and must be wrapped to text_cols columns.
Tao Bao2bbc6d62017-08-13 23:48:55 -0700483 size_t last_space = sub.find_last_of(" \t\n");
484 if (last_space == std::string::npos) {
Tao Bao93e46ad2018-05-02 14:57:21 -0700485 // No space found, just draw as much as we can.
Tao Bao452b4872018-05-09 11:52:09 -0700486 sub.resize(text_cols);
487 next_start += text_cols;
Tao Bao2bbc6d62017-08-13 23:48:55 -0700488 } else {
489 sub.resize(last_space);
490 next_start += last_space + 1;
491 }
492 }
Tao Bao93e46ad2018-05-02 14:57:21 -0700493 offset += DrawTextLine(x, y + offset, sub, false);
Tao Bao2bbc6d62017-08-13 23:48:55 -0700494 }
495 }
496 return offset;
497}
498
Tao Bao171b4c42017-06-19 23:10:44 -0700499// Redraws everything on the screen. Does not flip pages. Should only be called with updateMutex
500// locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700501void ScreenRecoveryUI::draw_screen_locked() {
Tao Bao171b4c42017-06-19 23:10:44 -0700502 if (!show_text) {
503 draw_background_locked();
504 draw_foreground_locked();
505 return;
506 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700507
Tao Bao171b4c42017-06-19 23:10:44 -0700508 gr_color(0, 0, 0, 255);
509 gr_clear();
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700510
Tao Bao93e46ad2018-05-02 14:57:21 -0700511 // clang-format off
Tao Bao1fe1afe2018-05-01 15:56:05 -0700512 static std::vector<std::string> REGULAR_HELP{
Tao Bao93e46ad2018-05-02 14:57:21 -0700513 "Use volume up/down and power.",
514 };
Tao Bao1fe1afe2018-05-01 15:56:05 -0700515 static std::vector<std::string> LONG_PRESS_HELP{
Tao Bao93e46ad2018-05-02 14:57:21 -0700516 "Any button cycles highlight.",
517 "Long-press activates.",
518 };
519 // clang-format on
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700520 draw_menu_and_text_buffer_locked(HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
521}
522
523// Draws the menu and text buffer on the screen. Should only be called with updateMutex locked.
Tao Bao93e46ad2018-05-02 14:57:21 -0700524void ScreenRecoveryUI::draw_menu_and_text_buffer_locked(
525 const std::vector<std::string>& help_message) {
Tao Bao4521b702017-06-20 18:11:21 -0700526 int y = kMarginHeight;
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700527 if (menu_) {
Tao Baoca6ce2c2017-07-13 11:15:27 -0700528 static constexpr int kMenuIndent = 4;
529 int x = kMarginWidth + kMenuIndent;
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700530
Tao Bao171b4c42017-06-19 23:10:44 -0700531 SetColor(INFO);
Tao Baoea78d862017-06-28 14:52:17 -0700532 y += DrawTextLine(x, y, "Android Recovery", true);
Tao Baoca6ce2c2017-07-13 11:15:27 -0700533 std::string recovery_fingerprint =
534 android::base::GetProperty("ro.bootimage.build.fingerprint", "");
Tao Bao171b4c42017-06-19 23:10:44 -0700535 for (const auto& chunk : android::base::Split(recovery_fingerprint, ":")) {
Tao Bao93e46ad2018-05-02 14:57:21 -0700536 y += DrawTextLine(x, y, chunk, false);
Doug Zongker211aebc2011-10-28 15:13:10 -0700537 }
Tao Bao171b4c42017-06-19 23:10:44 -0700538
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700539 y += DrawTextLines(x, y, help_message);
540
541 // Draw menu header.
Tao Bao171b4c42017-06-19 23:10:44 -0700542 SetColor(HEADER);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700543 if (!menu_->scrollable()) {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700544 y += DrawWrappedTextLines(x, y, menu_->text_headers());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700545 } else {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700546 y += DrawTextLines(x, y, menu_->text_headers());
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700547 // Show the current menu item number in relation to total number if items don't fit on the
548 // screen.
549 std::string cur_selection_str;
550 if (menu_->ItemsOverflow(&cur_selection_str)) {
Tao Bao93e46ad2018-05-02 14:57:21 -0700551 y += DrawTextLine(x, y, cur_selection_str, true);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700552 }
553 }
Tao Bao171b4c42017-06-19 23:10:44 -0700554
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700555 // Draw menu items.
Tao Bao171b4c42017-06-19 23:10:44 -0700556 SetColor(MENU);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700557 // Do not draw the horizontal rule for wear devices.
558 if (!menu_->scrollable()) {
559 y += DrawHorizontalRule(y) + 4;
560 }
561 for (size_t i = menu_->MenuStart(); i < menu_->MenuEnd(); ++i) {
562 bool bold = false;
563 if (i == static_cast<size_t>(menu_->selection())) {
Tao Bao171b4c42017-06-19 23:10:44 -0700564 // Draw the highlight bar.
565 SetColor(IsLongPress() ? MENU_SEL_BG_ACTIVE : MENU_SEL_BG);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700566
567 int bar_height = char_height_ + 4;
568 DrawHighlightBar(0, y - 2, ScreenWidth(), bar_height);
569
Tao Bao171b4c42017-06-19 23:10:44 -0700570 // Bold white text for the selected item.
571 SetColor(MENU_SEL_FG);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700572 bold = true;
Tao Bao171b4c42017-06-19 23:10:44 -0700573 }
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700574
Tao Bao93e46ad2018-05-02 14:57:21 -0700575 y += DrawTextLine(x, y, menu_->TextItem(i), bold);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700576
577 SetColor(MENU);
Tao Bao171b4c42017-06-19 23:10:44 -0700578 }
Tao Baoea78d862017-06-28 14:52:17 -0700579 y += DrawHorizontalRule(y);
Tao Bao171b4c42017-06-19 23:10:44 -0700580 }
581
582 // Display from the bottom up, until we hit the top of the screen, the bottom of the menu, or
583 // we've displayed the entire text buffer.
584 SetColor(LOG);
Tao Baocb5524c2017-09-08 21:25:32 -0700585 int row = text_row_;
Tao Bao171b4c42017-06-19 23:10:44 -0700586 size_t count = 0;
Luke Song92eda4d2017-09-19 10:51:35 -0700587 for (int ty = ScreenHeight() - kMarginHeight - char_height_; ty >= y && count < text_rows_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700588 ty -= char_height_, ++count) {
Tao Baoca6ce2c2017-07-13 11:15:27 -0700589 DrawTextLine(kMarginWidth, ty, text_[row], false);
Tao Bao171b4c42017-06-19 23:10:44 -0700590 --row;
591 if (row < 0) row = text_rows_ - 1;
592 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700593}
594
595// Redraw everything on the screen and flip the screen (make it visible).
596// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700597void ScreenRecoveryUI::update_screen_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700598 draw_screen_locked();
599 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700600}
601
602// Updates only the progress bar, if possible, otherwise redraws the screen.
603// Should only be called with updateMutex locked.
Elliott Hughes8de52072015-04-08 20:06:50 -0700604void ScreenRecoveryUI::update_progress_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700605 if (show_text || !pagesIdentical) {
606 draw_screen_locked(); // Must redraw the whole screen
607 pagesIdentical = true;
608 } else {
609 draw_foreground_locked(); // Draw only the progress bar and overlays
610 }
611 gr_flip();
Doug Zongker211aebc2011-10-28 15:13:10 -0700612}
613
614// Keeps the progress bar updated, even when the process is otherwise busy.
Elliott Hughes985022a2015-04-13 13:04:32 -0700615void* ScreenRecoveryUI::ProgressThreadStartRoutine(void* data) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700616 reinterpret_cast<ScreenRecoveryUI*>(data)->ProgressThreadLoop();
617 return nullptr;
Doug Zongker32a0a472011-11-01 11:00:20 -0700618}
619
Elliott Hughes985022a2015-04-13 13:04:32 -0700620void ScreenRecoveryUI::ProgressThreadLoop() {
Tao Bao0470cee2017-08-02 17:11:04 -0700621 double interval = 1.0 / kAnimationFps;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700622 while (true) {
623 double start = now();
624 pthread_mutex_lock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700625
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700626 bool redraw = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700627
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700628 // update the installation animation, if active
629 // skip this if we have a text overlay (too expensive to update)
630 if ((currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) && !show_text) {
631 if (!intro_done) {
632 if (current_frame == intro_frames - 1) {
633 intro_done = true;
634 current_frame = 0;
635 } else {
636 ++current_frame;
Doug Zongker211aebc2011-10-28 15:13:10 -0700637 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700638 } else {
639 current_frame = (current_frame + 1) % loop_frames;
640 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700641
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700642 redraw = true;
Doug Zongker211aebc2011-10-28 15:13:10 -0700643 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700644
645 // move the progress bar forward on timed intervals, if configured
646 int duration = progressScopeDuration;
647 if (progressBarType == DETERMINATE && duration > 0) {
648 double elapsed = now() - progressScopeTime;
649 float p = 1.0 * elapsed / duration;
650 if (p > 1.0) p = 1.0;
651 if (p > progress) {
652 progress = p;
653 redraw = true;
654 }
655 }
656
657 if (redraw) update_progress_locked();
658
659 pthread_mutex_unlock(&updateMutex);
660 double end = now();
661 // minimum of 20ms delay between frames
662 double delay = interval - (end - start);
663 if (delay < 0.02) delay = 0.02;
664 usleep(static_cast<useconds_t>(delay * 1000000));
665 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700666}
667
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700668void ScreenRecoveryUI::LoadBitmap(const char* filename, GRSurface** surface) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700669 int result = res_create_display_surface(filename, surface);
670 if (result < 0) {
671 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
672 }
Doug Zongkereac881c2014-03-07 09:21:25 -0800673}
674
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700675void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, GRSurface** surface) {
Tao Bao736d59c2017-01-03 10:15:33 -0800676 int result = res_create_localized_alpha_surface(filename, locale_.c_str(), surface);
677 if (result < 0) {
678 LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
679 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700680}
681
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700682static char** Alloc2d(size_t rows, size_t cols) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700683 char** result = new char*[rows];
684 for (size_t i = 0; i < rows; ++i) {
685 result[i] = new char[cols];
686 memset(result[i], 0, cols);
687 }
688 return result;
Elliott Hughesaa0d6af2015-04-08 12:42:50 -0700689}
690
Tianjie Xu35926c42016-04-28 18:06:26 -0700691// Choose the right background string to display during update.
692void ScreenRecoveryUI::SetSystemUpdateText(bool security_update) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700693 if (security_update) {
694 LoadLocalizedBitmap("installing_security_text", &installing_text);
695 } else {
696 LoadLocalizedBitmap("installing_text", &installing_text);
697 }
698 Redraw();
Tianjie Xu35926c42016-04-28 18:06:26 -0700699}
700
Sen Jiangd5304492016-12-09 16:20:49 -0800701bool ScreenRecoveryUI::InitTextParams() {
Tao Bao171b4c42017-06-19 23:10:44 -0700702 if (gr_init() < 0) {
703 return false;
704 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700705
Tao Bao171b4c42017-06-19 23:10:44 -0700706 gr_font_size(gr_sys_font(), &char_width_, &char_height_);
Luke Song92eda4d2017-09-19 10:51:35 -0700707 text_rows_ = (ScreenHeight() - kMarginHeight * 2) / char_height_;
708 text_cols_ = (ScreenWidth() - kMarginWidth * 2) / char_width_;
Tao Bao171b4c42017-06-19 23:10:44 -0700709 return true;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700710}
711
Tao Bao736d59c2017-01-03 10:15:33 -0800712bool ScreenRecoveryUI::Init(const std::string& locale) {
713 RecoveryUI::Init(locale);
Tao Baoefb49ad2017-01-31 23:03:10 -0800714
Tao Bao736d59c2017-01-03 10:15:33 -0800715 if (!InitTextParams()) {
716 return false;
717 }
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700718
Tao Bao736d59c2017-01-03 10:15:33 -0800719 // Are we portrait or landscape?
720 layout_ = (gr_fb_width() > gr_fb_height()) ? LANDSCAPE : PORTRAIT;
721 // Are we the large variant of our base layout?
722 if (gr_fb_height() > PixelsFromDp(800)) ++layout_;
Elliott Hughesfaf36e02016-04-20 17:22:16 -0700723
Tao Bao736d59c2017-01-03 10:15:33 -0800724 text_ = Alloc2d(text_rows_, text_cols_ + 1);
725 file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1);
Doug Zongker55a36ac2013-03-04 15:49:02 -0800726
Tao Bao736d59c2017-01-03 10:15:33 -0800727 text_col_ = text_row_ = 0;
Doug Zongker211aebc2011-10-28 15:13:10 -0700728
Tao Baoefb49ad2017-01-31 23:03:10 -0800729 // Set up the locale info.
730 SetLocale(locale);
731
Tao Bao736d59c2017-01-03 10:15:33 -0800732 LoadBitmap("icon_error", &error_icon);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700733
Tao Bao736d59c2017-01-03 10:15:33 -0800734 LoadBitmap("progress_empty", &progressBarEmpty);
735 LoadBitmap("progress_fill", &progressBarFill);
Elliott Hughes498cda62016-04-14 16:49:04 -0700736
Tao Bao736d59c2017-01-03 10:15:33 -0800737 LoadBitmap("stage_empty", &stageMarkerEmpty);
738 LoadBitmap("stage_fill", &stageMarkerFill);
Doug Zongker211aebc2011-10-28 15:13:10 -0700739
Tao Bao736d59c2017-01-03 10:15:33 -0800740 // Background text for "installing_update" could be "installing update"
741 // or "installing security update". It will be set after UI init according
742 // to commands in BCB.
743 installing_text = nullptr;
744 LoadLocalizedBitmap("erasing_text", &erasing_text);
745 LoadLocalizedBitmap("no_command_text", &no_command_text);
746 LoadLocalizedBitmap("error_text", &error_text);
Elliott Hughes498cda62016-04-14 16:49:04 -0700747
Tao Bao736d59c2017-01-03 10:15:33 -0800748 LoadAnimation();
Doug Zongker02ec6b82012-08-22 17:26:40 -0700749
Tao Bao736d59c2017-01-03 10:15:33 -0800750 pthread_create(&progress_thread_, nullptr, ProgressThreadStartRoutine, this);
Sen Jiangd5304492016-12-09 16:20:49 -0800751
Tao Bao736d59c2017-01-03 10:15:33 -0800752 return true;
Doug Zongker211aebc2011-10-28 15:13:10 -0700753}
754
Tao Bao551d2c32018-05-09 20:53:13 -0700755std::string ScreenRecoveryUI::GetLocale() const {
Jerry Zhang2dea53e2018-05-02 17:15:03 -0700756 return locale_;
757}
758
Elliott Hughes498cda62016-04-14 16:49:04 -0700759void ScreenRecoveryUI::LoadAnimation() {
Tao Bao6cd81682018-05-03 21:53:11 -0700760 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(Paths::Get().resource_dir().c_str()),
761 closedir);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700762 dirent* de;
763 std::vector<std::string> intro_frame_names;
764 std::vector<std::string> loop_frame_names;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700765
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700766 while ((de = readdir(dir.get())) != nullptr) {
767 int value, num_chars;
768 if (sscanf(de->d_name, "intro%d%n.png", &value, &num_chars) == 1) {
769 intro_frame_names.emplace_back(de->d_name, num_chars);
770 } else if (sscanf(de->d_name, "loop%d%n.png", &value, &num_chars) == 1) {
771 loop_frame_names.emplace_back(de->d_name, num_chars);
Elliott Hughes498cda62016-04-14 16:49:04 -0700772 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700773 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700774
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700775 intro_frames = intro_frame_names.size();
776 loop_frames = loop_frame_names.size();
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700777
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700778 // It's okay to not have an intro.
779 if (intro_frames == 0) intro_done = true;
780 // But you must have an animation.
781 if (loop_frames == 0) abort();
Elliott Hughes498cda62016-04-14 16:49:04 -0700782
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700783 std::sort(intro_frame_names.begin(), intro_frame_names.end());
784 std::sort(loop_frame_names.begin(), loop_frame_names.end());
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700785
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700786 introFrames = new GRSurface*[intro_frames];
787 for (size_t i = 0; i < intro_frames; i++) {
788 LoadBitmap(intro_frame_names.at(i).c_str(), &introFrames[i]);
789 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700790
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700791 loopFrames = new GRSurface*[loop_frames];
792 for (size_t i = 0; i < loop_frames; i++) {
793 LoadBitmap(loop_frame_names.at(i).c_str(), &loopFrames[i]);
794 }
Elliott Hughes498cda62016-04-14 16:49:04 -0700795}
796
Elliott Hughes8de52072015-04-08 20:06:50 -0700797void ScreenRecoveryUI::SetBackground(Icon icon) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700798 pthread_mutex_lock(&updateMutex);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700799
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700800 currentIcon = icon;
801 update_screen_locked();
Doug Zongker52eeea4f2012-09-04 14:28:25 -0700802
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700803 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700804}
805
Elliott Hughes8de52072015-04-08 20:06:50 -0700806void ScreenRecoveryUI::SetProgressType(ProgressType type) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700807 pthread_mutex_lock(&updateMutex);
808 if (progressBarType != type) {
809 progressBarType = type;
810 }
811 progressScopeStart = 0;
812 progressScopeSize = 0;
813 progress = 0;
814 update_progress_locked();
815 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700816}
817
Elliott Hughes8de52072015-04-08 20:06:50 -0700818void ScreenRecoveryUI::ShowProgress(float portion, float seconds) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700819 pthread_mutex_lock(&updateMutex);
820 progressBarType = DETERMINATE;
821 progressScopeStart += progressScopeSize;
822 progressScopeSize = portion;
823 progressScopeTime = now();
824 progressScopeDuration = seconds;
825 progress = 0;
826 update_progress_locked();
827 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700828}
829
Elliott Hughes8de52072015-04-08 20:06:50 -0700830void ScreenRecoveryUI::SetProgress(float fraction) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700831 pthread_mutex_lock(&updateMutex);
832 if (fraction < 0.0) fraction = 0.0;
833 if (fraction > 1.0) fraction = 1.0;
834 if (progressBarType == DETERMINATE && fraction > progress) {
835 // Skip updates that aren't visibly different.
836 int width = gr_get_width(progressBarEmpty);
837 float scale = width * progressScopeSize;
838 if ((int)(progress * scale) != (int)(fraction * scale)) {
839 progress = fraction;
840 update_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700841 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700842 }
843 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700844}
845
Doug Zongkerc87bab12013-11-25 13:53:25 -0800846void ScreenRecoveryUI::SetStage(int current, int max) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700847 pthread_mutex_lock(&updateMutex);
848 stage = current;
849 max_stage = max;
850 pthread_mutex_unlock(&updateMutex);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800851}
852
Tao Baob6918c72015-05-19 17:02:16 -0700853void ScreenRecoveryUI::PrintV(const char* fmt, bool copy_to_stdout, va_list ap) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700854 std::string str;
855 android::base::StringAppendV(&str, fmt, ap);
Doug Zongker211aebc2011-10-28 15:13:10 -0700856
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700857 if (copy_to_stdout) {
858 fputs(str.c_str(), stdout);
859 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700860
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700861 pthread_mutex_lock(&updateMutex);
862 if (text_rows_ > 0 && text_cols_ > 0) {
863 for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) {
864 if (*ptr == '\n' || text_col_ >= text_cols_) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700865 text_[text_row_][text_col_] = '\0';
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700866 text_col_ = 0;
867 text_row_ = (text_row_ + 1) % text_rows_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700868 }
869 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
Doug Zongker211aebc2011-10-28 15:13:10 -0700870 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700871 text_[text_row_][text_col_] = '\0';
872 update_screen_locked();
873 }
874 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700875}
876
Tao Baob6918c72015-05-19 17:02:16 -0700877void ScreenRecoveryUI::Print(const char* fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700878 va_list ap;
879 va_start(ap, fmt);
880 PrintV(fmt, true, ap);
881 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700882}
883
884void ScreenRecoveryUI::PrintOnScreenOnly(const char *fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700885 va_list ap;
886 va_start(ap, fmt);
887 PrintV(fmt, false, ap);
888 va_end(ap);
Tao Baob6918c72015-05-19 17:02:16 -0700889}
890
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700891void ScreenRecoveryUI::PutChar(char ch) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700892 pthread_mutex_lock(&updateMutex);
893 if (ch != '\n') text_[text_row_][text_col_++] = ch;
894 if (ch == '\n' || text_col_ >= text_cols_) {
895 text_col_ = 0;
896 ++text_row_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700897 }
898 pthread_mutex_unlock(&updateMutex);
Elliott Hughes8de52072015-04-08 20:06:50 -0700899}
900
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700901void ScreenRecoveryUI::ClearText() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700902 pthread_mutex_lock(&updateMutex);
903 text_col_ = 0;
904 text_row_ = 0;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700905 for (size_t i = 0; i < text_rows_; ++i) {
906 memset(text_[i], 0, text_cols_ + 1);
907 }
908 pthread_mutex_unlock(&updateMutex);
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();
929 if (key == KEY_POWER || key == KEY_ENTER) {
930 return;
931 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
932 if (offsets.size() <= 1) {
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700933 show_prompt = true;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700934 } else {
935 offsets.pop_back();
936 fseek(fp, offsets.back(), SEEK_SET);
937 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700938 } else {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700939 if (feof(fp)) {
940 return;
941 }
942 offsets.push_back(ftello(fp));
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700943 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700944 }
945 ClearText();
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700946 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700947
948 int ch = getc(fp);
949 if (ch == EOF) {
950 while (text_row_ < text_rows_ - 1) PutChar('\n');
951 show_prompt = true;
952 } else {
953 PutChar(ch);
954 if (text_col_ == 0 && text_row_ >= text_rows_ - 1) {
955 show_prompt = true;
956 }
957 }
958 }
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700959}
960
Tao Bao1d156b92018-05-02 12:43:18 -0700961void ScreenRecoveryUI::ShowFile(const std::string& filename) {
962 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(filename.c_str(), "re"), fclose);
963 if (!fp) {
964 Print(" Unable to open %s: %s\n", filename.c_str(), strerror(errno));
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700965 return;
966 }
Elliott Hughesc0491632015-05-06 12:40:05 -0700967
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700968 char** old_text = text_;
969 size_t old_text_col = text_col_;
970 size_t old_text_row = text_row_;
Elliott Hughesc0491632015-05-06 12:40:05 -0700971
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700972 // Swap in the alternate screen and clear it.
973 text_ = file_viewer_text_;
974 ClearText();
Elliott Hughesc0491632015-05-06 12:40:05 -0700975
Tao Bao1d156b92018-05-02 12:43:18 -0700976 ShowFile(fp.get());
Elliott Hughesc0491632015-05-06 12:40:05 -0700977
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700978 text_ = old_text;
979 text_col_ = old_text_col;
980 text_row_ = old_text_row;
Elliott Hughes8de52072015-04-08 20:06:50 -0700981}
982
Tao Bao1fe1afe2018-05-01 15:56:05 -0700983void ScreenRecoveryUI::StartMenu(const std::vector<std::string>& headers,
984 const std::vector<std::string>& items, size_t initial_selection) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700985 pthread_mutex_lock(&updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -0700986 if (text_rows_ > 0 && text_cols_ > 1) {
Tao Baoe02a5b22018-05-02 15:46:11 -0700987 menu_ = std::make_unique<Menu>(scrollable_menu_, text_rows_, text_cols_ - 1, headers, items,
988 initial_selection);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700989 update_screen_locked();
990 }
991 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -0700992}
993
994int ScreenRecoveryUI::SelectMenu(int sel) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700995 pthread_mutex_lock(&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 }
1004 pthread_mutex_unlock(&updateMutex);
1005 return sel;
Doug Zongker211aebc2011-10-28 15:13:10 -07001006}
1007
1008void ScreenRecoveryUI::EndMenu() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001009 pthread_mutex_lock(&updateMutex);
Tianjie Xu5fe5eb62018-03-20 16:07:39 -07001010 if (menu_) {
1011 menu_.reset();
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001012 update_screen_locked();
1013 }
1014 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -07001015}
1016
Tao Bao1fe1afe2018-05-01 15:56:05 -07001017size_t ScreenRecoveryUI::ShowMenu(const std::vector<std::string>& headers,
1018 const std::vector<std::string>& items, size_t initial_selection,
1019 bool menu_only,
1020 const std::function<int(int, bool)>& key_handler) {
Tao Bao3aec6962018-04-20 09:24:58 -07001021 // Throw away keys pressed previously, so user doesn't accidentally trigger menu items.
1022 FlushKeys();
1023
1024 StartMenu(headers, items, initial_selection);
1025
1026 int selected = initial_selection;
1027 int chosen_item = -1;
1028 while (chosen_item < 0) {
1029 int key = WaitKey();
1030 if (key == -1) { // WaitKey() timed out.
1031 if (WasTextEverVisible()) {
1032 continue;
1033 } else {
1034 LOG(INFO) << "Timed out waiting for key input; rebooting.";
1035 EndMenu();
Tao Bao1fe1afe2018-05-01 15:56:05 -07001036 return static_cast<size_t>(-1);
Tao Bao3aec6962018-04-20 09:24:58 -07001037 }
1038 }
1039
1040 bool visible = IsTextVisible();
1041 int action = key_handler(key, visible);
1042 if (action < 0) {
1043 switch (action) {
1044 case Device::kHighlightUp:
1045 selected = SelectMenu(--selected);
1046 break;
1047 case Device::kHighlightDown:
1048 selected = SelectMenu(++selected);
1049 break;
1050 case Device::kInvokeItem:
1051 chosen_item = selected;
1052 break;
1053 case Device::kNoAction:
1054 break;
1055 }
1056 } else if (!menu_only) {
1057 chosen_item = action;
1058 }
1059 }
1060
1061 EndMenu();
1062 return chosen_item;
1063}
1064
Elliott Hughes8de52072015-04-08 20:06:50 -07001065bool ScreenRecoveryUI::IsTextVisible() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001066 pthread_mutex_lock(&updateMutex);
1067 int visible = show_text;
1068 pthread_mutex_unlock(&updateMutex);
1069 return visible;
Doug Zongker211aebc2011-10-28 15:13:10 -07001070}
1071
Elliott Hughes8de52072015-04-08 20:06:50 -07001072bool ScreenRecoveryUI::WasTextEverVisible() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001073 pthread_mutex_lock(&updateMutex);
1074 int ever_visible = show_text_ever;
1075 pthread_mutex_unlock(&updateMutex);
1076 return ever_visible;
Doug Zongker211aebc2011-10-28 15:13:10 -07001077}
1078
Elliott Hughes8de52072015-04-08 20:06:50 -07001079void ScreenRecoveryUI::ShowText(bool visible) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001080 pthread_mutex_lock(&updateMutex);
1081 show_text = visible;
1082 if (show_text) show_text_ever = true;
1083 update_screen_locked();
1084 pthread_mutex_unlock(&updateMutex);
Doug Zongker211aebc2011-10-28 15:13:10 -07001085}
Doug Zongkerc0441d12013-07-31 11:28:24 -07001086
Elliott Hughes8de52072015-04-08 20:06:50 -07001087void ScreenRecoveryUI::Redraw() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001088 pthread_mutex_lock(&updateMutex);
1089 update_screen_locked();
1090 pthread_mutex_unlock(&updateMutex);
Doug Zongkerc0441d12013-07-31 11:28:24 -07001091}
Elliott Hughes642aaa72015-04-10 12:47:46 -07001092
1093void ScreenRecoveryUI::KeyLongPress(int) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -07001094 // Redraw so that if we're in the menu, the highlight
1095 // will change color to indicate a successful long press.
1096 Redraw();
Elliott Hughes642aaa72015-04-10 12:47:46 -07001097}
Tao Baoefb49ad2017-01-31 23:03:10 -08001098
1099void ScreenRecoveryUI::SetLocale(const std::string& new_locale) {
1100 locale_ = new_locale;
1101 rtl_locale_ = false;
1102
1103 if (!new_locale.empty()) {
1104 size_t underscore = new_locale.find('_');
1105 // lang has the language prefix prior to '_', or full string if '_' doesn't exist.
1106 std::string lang = new_locale.substr(0, underscore);
1107
1108 // A bit cheesy: keep an explicit list of supported RTL languages.
1109 if (lang == "ar" || // Arabic
1110 lang == "fa" || // Persian (Farsi)
1111 lang == "he" || // Hebrew (new language code)
1112 lang == "iw" || // Hebrew (old language code)
1113 lang == "ur") { // Urdu
1114 rtl_locale_ = true;
1115 }
1116 }
1117}