blob: 624116c0c184c420768a3bc597702bf7f16420de [file] [log] [blame]
Tao Bao337db142015-08-20 14:52:57 -07001/*
2 * Copyright (C) 2014 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 Bao736d59c2017-01-03 10:15:33 -080017#include "wear_ui.h"
18
Tao Bao337db142015-08-20 14:52:57 -070019#include <errno.h>
20#include <fcntl.h>
Tao Bao337db142015-08-20 14:52:57 -070021#include <stdarg.h>
Tao Bao337db142015-08-20 14:52:57 -070022#include <stdlib.h>
23#include <string.h>
24#include <sys/stat.h>
25#include <sys/time.h>
26#include <sys/types.h>
27#include <time.h>
28#include <unistd.h>
29
Tao Bao736d59c2017-01-03 10:15:33 -080030#include <string>
Tao Bao337db142015-08-20 14:52:57 -070031#include <vector>
32
Tao Bao0ecbd762017-01-16 21:16:58 -080033#include <android-base/properties.h>
34#include <android-base/strings.h>
35#include <android-base/stringprintf.h>
36#include <minui/minui.h>
37
Tao Bao337db142015-08-20 14:52:57 -070038#include "common.h"
39#include "device.h"
Tao Bao337db142015-08-20 14:52:57 -070040
Tao Bao337db142015-08-20 14:52:57 -070041// There's only (at most) one of these objects, and global callbacks
42// (for pthread_create, and the input event system) need to find it,
43// so use a global variable.
44static WearRecoveryUI* self = NULL;
45
46// Return the current time as a double (including fractions of a second).
47static double now() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070048 struct timeval tv;
49 gettimeofday(&tv, NULL);
50 return tv.tv_sec + tv.tv_usec / 1000000.0;
Tao Bao337db142015-08-20 14:52:57 -070051}
52
Tao Bao5d2e3bd2017-06-23 22:23:50 -070053WearRecoveryUI::WearRecoveryUI()
Tao Baof2be3bd2017-08-11 13:50:24 -070054 : kProgressBarBaseline(RECOVERY_UI_PROGRESS_BAR_BASELINE),
55 kMenuUnusableRows(RECOVERY_UI_MENU_UNUSABLE_ROWS) {
56 // TODO: kMenuUnusableRows should be computed based on the lines in draw_screen_locked().
Tao Bao016120f2017-08-02 17:11:04 -070057
58 // TODO: The following three variables are likely not needed. The first two are detected
59 // automatically in ScreenRecoveryUI::LoadAnimation(), based on the actual files seen on device.
Tao Bao5d2e3bd2017-06-23 22:23:50 -070060 intro_frames = 22;
61 loop_frames = 60;
Tao Bao016120f2017-08-02 17:11:04 -070062
63 touch_screen_allowed_ = true;
Tao Bao337db142015-08-20 14:52:57 -070064
Tao Bao5d2e3bd2017-06-23 22:23:50 -070065 for (size_t i = 0; i < 5; i++) backgroundIcon[i] = NULL;
Tao Bao337db142015-08-20 14:52:57 -070066
Tao Bao5d2e3bd2017-06-23 22:23:50 -070067 self = this;
Tao Bao337db142015-08-20 14:52:57 -070068}
69
Tao Bao99b2d772017-06-23 22:47:03 -070070int WearRecoveryUI::GetProgressBaseline() const {
Tao Bao016120f2017-08-02 17:11:04 -070071 return kProgressBarBaseline;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070072}
73
Tao Bao337db142015-08-20 14:52:57 -070074// Draw background frame on the screen. Does not flip pages.
75// Should only be called with updateMutex locked.
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070076// TODO merge drawing routines with screen_ui
Tao Bao5d2e3bd2017-06-23 22:23:50 -070077void WearRecoveryUI::draw_background_locked() {
78 pagesIdentical = false;
79 gr_color(0, 0, 0, 255);
80 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
Tao Bao337db142015-08-20 14:52:57 -070081
Tao Bao5d2e3bd2017-06-23 22:23:50 -070082 if (currentIcon != NONE) {
83 GRSurface* surface;
84 if (currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) {
85 if (!intro_done) {
86 surface = introFrames[current_frame];
87 } else {
88 surface = loopFrames[current_frame];
89 }
90 } else {
91 surface = backgroundIcon[currentIcon];
Tao Bao337db142015-08-20 14:52:57 -070092 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -070093
94 int width = gr_get_width(surface);
95 int height = gr_get_height(surface);
96
97 int x = (gr_fb_width() - width) / 2;
98 int y = (gr_fb_height() - height) / 2;
99
100 gr_blit(surface, 0, 0, width, height, x, y);
101 }
Tao Bao337db142015-08-20 14:52:57 -0700102}
103
Tao Baoea78d862017-06-28 14:52:17 -0700104static const char* SWIPE_HELP[] = {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700105 "Swipe up/down to move.",
106 "Swipe left/right to select.",
107 "",
108 NULL
Tao Bao337db142015-08-20 14:52:57 -0700109};
110
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700111// TODO merge drawing routines with screen_ui
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700112void WearRecoveryUI::draw_screen_locked() {
113 char cur_selection_str[50];
Tao Bao337db142015-08-20 14:52:57 -0700114
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700115 draw_background_locked();
116 if (!show_text) {
117 draw_foreground_locked();
118 } else {
119 SetColor(TEXT_FILL);
120 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
Tao Bao337db142015-08-20 14:52:57 -0700121
Tao Bao016120f2017-08-02 17:11:04 -0700122 int y = kMarginHeight;
123 int x = kMarginWidth;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700124 if (show_menu) {
125 std::string recovery_fingerprint =
126 android::base::GetProperty("ro.bootimage.build.fingerprint", "");
127 SetColor(HEADER);
Tao Baoea78d862017-06-28 14:52:17 -0700128 y += DrawTextLine(x + 4, y, "Android Recovery", true);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700129 for (auto& chunk : android::base::Split(recovery_fingerprint, ":")) {
Tao Baoea78d862017-06-28 14:52:17 -0700130 y += DrawTextLine(x + 4, y, chunk.c_str(), false);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700131 }
Tao Bao337db142015-08-20 14:52:57 -0700132
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700133 // This is actually the help strings.
Tao Baoea78d862017-06-28 14:52:17 -0700134 y += DrawTextLines(x + 4, y, SWIPE_HELP);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700135 SetColor(HEADER);
Tao Baoea78d862017-06-28 14:52:17 -0700136 y += DrawTextLines(x + 4, y, menu_headers_);
Tao Bao337db142015-08-20 14:52:57 -0700137
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700138 // Show the current menu item number in relation to total number if
139 // items don't fit on the screen.
140 if (menu_items > menu_end - menu_start) {
141 sprintf(cur_selection_str, "Current item: %d/%d", menu_sel + 1, menu_items);
142 gr_text(gr_sys_font(), x + 4, y, cur_selection_str, 1);
143 y += char_height_ + 4;
144 }
Tao Bao337db142015-08-20 14:52:57 -0700145
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700146 // Menu begins here
147 SetColor(MENU);
Tao Bao337db142015-08-20 14:52:57 -0700148
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700149 for (int i = menu_start; i < menu_end; ++i) {
150 if (i == menu_sel) {
151 // draw the highlight bar
152 SetColor(MENU_SEL_BG);
153 gr_fill(x, y - 2, gr_fb_width() - x, y + char_height_ + 2);
154 // white text of selected item
155 SetColor(MENU_SEL_FG);
156 if (menu_[i][0]) {
Tao Bao17fa5c72017-09-07 13:38:51 -0700157 gr_text(gr_sys_font(), x + 4, y, menu_[i].c_str(), 1);
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700158 }
159 SetColor(MENU);
160 } else if (menu_[i][0]) {
Tao Bao17fa5c72017-09-07 13:38:51 -0700161 gr_text(gr_sys_font(), x + 4, y, menu_[i].c_str(), 0);
Tao Bao337db142015-08-20 14:52:57 -0700162 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700163 y += char_height_ + 4;
164 }
165 SetColor(MENU);
166 y += 4;
167 gr_fill(0, y, gr_fb_width(), y + 2);
168 y += 4;
Tao Bao337db142015-08-20 14:52:57 -0700169 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700170
171 SetColor(LOG);
172
173 // display from the bottom up, until we hit the top of the
174 // screen, the bottom of the menu, or we've displayed the
175 // entire text buffer.
176 int ty;
177 int row = (text_top_ + text_rows_ - 1) % text_rows_;
178 size_t count = 0;
Tao Bao016120f2017-08-02 17:11:04 -0700179 for (int ty = gr_fb_height() - char_height_ - kMarginHeight; ty > y + 2 && count < text_rows_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700180 ty -= char_height_, ++count) {
181 gr_text(gr_sys_font(), x + 4, ty, text_[row], 0);
182 --row;
183 if (row < 0) row = text_rows_ - 1;
184 }
185 }
Tao Bao337db142015-08-20 14:52:57 -0700186}
187
Damien Bargiacchiad8b5a62016-09-09 08:18:06 -0700188// TODO merge drawing routines with screen_ui
189void WearRecoveryUI::update_progress_locked() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700190 draw_screen_locked();
191 gr_flip();
Tao Bao337db142015-08-20 14:52:57 -0700192}
193
Sen Jiangd5304492016-12-09 16:20:49 -0800194bool WearRecoveryUI::InitTextParams() {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700195 if (!ScreenRecoveryUI::InitTextParams()) {
196 return false;
197 }
Tao Bao337db142015-08-20 14:52:57 -0700198
Tao Bao016120f2017-08-02 17:11:04 -0700199 text_cols_ = (gr_fb_width() - (kMarginWidth * 2)) / char_width_;
Tao Bao337db142015-08-20 14:52:57 -0700200
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700201 if (text_rows_ > kMaxRows) text_rows_ = kMaxRows;
202 if (text_cols_ > kMaxCols) text_cols_ = kMaxCols;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700203
Tao Bao016120f2017-08-02 17:11:04 -0700204 visible_text_rows = (gr_fb_height() - (kMarginHeight * 2)) / char_height_;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700205 return true;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700206}
Tao Bao337db142015-08-20 14:52:57 -0700207
Tao Bao736d59c2017-01-03 10:15:33 -0800208bool WearRecoveryUI::Init(const std::string& locale) {
209 if (!ScreenRecoveryUI::Init(locale)) {
210 return false;
211 }
Tao Bao337db142015-08-20 14:52:57 -0700212
Tao Bao736d59c2017-01-03 10:15:33 -0800213 LoadBitmap("icon_error", &backgroundIcon[ERROR]);
214 backgroundIcon[NO_COMMAND] = backgroundIcon[ERROR];
Tim Kryger825b6b02016-11-29 13:33:29 -0800215
Tao Bao736d59c2017-01-03 10:15:33 -0800216 // This leaves backgroundIcon[INSTALLING_UPDATE] and backgroundIcon[ERASING]
217 // as NULL which is fine since draw_background_locked() doesn't use them.
Tim Kryger825b6b02016-11-29 13:33:29 -0800218
Tao Bao736d59c2017-01-03 10:15:33 -0800219 return true;
Prashant Malanif7f9e502016-03-10 03:40:20 +0000220}
221
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700222void WearRecoveryUI::SetStage(int current, int max) {
223}
Tao Bao337db142015-08-20 14:52:57 -0700224
Tao Bao736d59c2017-01-03 10:15:33 -0800225void WearRecoveryUI::Print(const char* fmt, ...) {
226 char buf[256];
227 va_list ap;
228 va_start(ap, fmt);
229 vsnprintf(buf, 256, fmt, ap);
230 va_end(ap);
Tao Bao337db142015-08-20 14:52:57 -0700231
Tao Bao736d59c2017-01-03 10:15:33 -0800232 fputs(buf, stdout);
Tao Bao337db142015-08-20 14:52:57 -0700233
Tao Bao736d59c2017-01-03 10:15:33 -0800234 // This can get called before ui_init(), so be careful.
235 pthread_mutex_lock(&updateMutex);
236 if (text_rows_ > 0 && text_cols_ > 0) {
237 char* ptr;
238 for (ptr = buf; *ptr != '\0'; ++ptr) {
239 if (*ptr == '\n' || text_col_ >= text_cols_) {
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700240 text_[text_row_][text_col_] = '\0';
Tao Bao736d59c2017-01-03 10:15:33 -0800241 text_col_ = 0;
242 text_row_ = (text_row_ + 1) % text_rows_;
243 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_;
244 }
245 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
Tao Bao337db142015-08-20 14:52:57 -0700246 }
Tao Bao736d59c2017-01-03 10:15:33 -0800247 text_[text_row_][text_col_] = '\0';
248 update_screen_locked();
249 }
250 pthread_mutex_unlock(&updateMutex);
Tao Bao337db142015-08-20 14:52:57 -0700251}
252
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700253void WearRecoveryUI::StartMenu(const char* const* headers, const char* const* items,
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700254 int initial_selection) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700255 pthread_mutex_lock(&updateMutex);
256 if (text_rows_ > 0 && text_cols_ > 0) {
257 menu_headers_ = headers;
Tao Bao17fa5c72017-09-07 13:38:51 -0700258 menu_.clear();
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700259 // "i < text_rows_" is removed from the loop termination condition,
260 // which is different from the one in ScreenRecoveryUI::StartMenu().
261 // Because WearRecoveryUI supports scrollable menu, it's fine to have
262 // more entries than text_rows_. The menu may be truncated otherwise.
263 // Bug: 23752519
Tao Bao17fa5c72017-09-07 13:38:51 -0700264 for (size_t i = 0; items[i] != nullptr; i++) {
265 menu_.emplace_back(std::string(items[i], strnlen(items[i], text_cols_ - 1)));
Tao Bao337db142015-08-20 14:52:57 -0700266 }
Tao Bao17fa5c72017-09-07 13:38:51 -0700267 menu_items = static_cast<int>(menu_.size());
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700268 show_menu = true;
269 menu_sel = initial_selection;
270 menu_start = 0;
Tao Baof2be3bd2017-08-11 13:50:24 -0700271 menu_end = visible_text_rows - 1 - kMenuUnusableRows;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700272 if (menu_items <= menu_end) menu_end = menu_items;
273 update_screen_locked();
274 }
275 pthread_mutex_unlock(&updateMutex);
Tao Bao337db142015-08-20 14:52:57 -0700276}
277
278int WearRecoveryUI::SelectMenu(int sel) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700279 int old_sel;
280 pthread_mutex_lock(&updateMutex);
281 if (show_menu) {
282 old_sel = menu_sel;
283 menu_sel = sel;
284 if (menu_sel < 0) menu_sel = 0;
285 if (menu_sel >= menu_items) menu_sel = menu_items - 1;
286 if (menu_sel < menu_start) {
287 menu_start--;
288 menu_end--;
289 } else if (menu_sel >= menu_end && menu_sel < menu_items) {
290 menu_end++;
291 menu_start++;
Tao Bao337db142015-08-20 14:52:57 -0700292 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700293 sel = menu_sel;
294 if (menu_sel != old_sel) update_screen_locked();
295 }
296 pthread_mutex_unlock(&updateMutex);
297 return sel;
Tao Bao337db142015-08-20 14:52:57 -0700298}
299
Tao Bao337db142015-08-20 14:52:57 -0700300void WearRecoveryUI::ShowFile(FILE* fp) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700301 std::vector<off_t> offsets;
302 offsets.push_back(ftello(fp));
303 ClearText();
Tao Bao337db142015-08-20 14:52:57 -0700304
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700305 struct stat sb;
306 fstat(fileno(fp), &sb);
Tao Bao337db142015-08-20 14:52:57 -0700307
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700308 bool show_prompt = false;
309 while (true) {
310 if (show_prompt) {
311 Print("--(%d%% of %d bytes)--",
312 static_cast<int>(100 * (double(ftello(fp)) / double(sb.st_size))),
313 static_cast<int>(sb.st_size));
314 Redraw();
315 while (show_prompt) {
316 show_prompt = false;
317 int key = WaitKey();
318 if (key == KEY_POWER || key == KEY_ENTER) {
319 return;
320 } else if (key == KEY_UP || key == KEY_VOLUMEUP) {
321 if (offsets.size() <= 1) {
Tao Bao337db142015-08-20 14:52:57 -0700322 show_prompt = true;
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700323 } else {
324 offsets.pop_back();
325 fseek(fp, offsets.back(), SEEK_SET);
326 }
Tao Bao337db142015-08-20 14:52:57 -0700327 } else {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700328 if (feof(fp)) {
329 return;
330 }
331 offsets.push_back(ftello(fp));
Tao Bao337db142015-08-20 14:52:57 -0700332 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700333 }
334 ClearText();
Tao Bao337db142015-08-20 14:52:57 -0700335 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700336
337 int ch = getc(fp);
338 if (ch == EOF) {
339 text_row_ = text_top_ = text_rows_ - 2;
340 show_prompt = true;
341 } else {
342 PutChar(ch);
343 if (text_col_ == 0 && text_row_ >= text_rows_ - 2) {
344 text_top_ = text_row_;
345 show_prompt = true;
346 }
347 }
348 }
Tao Bao337db142015-08-20 14:52:57 -0700349}
350
351void WearRecoveryUI::PutChar(char ch) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700352 pthread_mutex_lock(&updateMutex);
353 if (ch != '\n') text_[text_row_][text_col_++] = ch;
354 if (ch == '\n' || text_col_ >= text_cols_) {
355 text_col_ = 0;
356 ++text_row_;
357 }
358 pthread_mutex_unlock(&updateMutex);
Tao Bao337db142015-08-20 14:52:57 -0700359}
360
361void WearRecoveryUI::ShowFile(const char* filename) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700362 FILE* fp = fopen_path(filename, "re");
363 if (fp == nullptr) {
364 Print(" Unable to open %s: %s\n", filename, strerror(errno));
365 return;
366 }
367 ShowFile(fp);
368 fclose(fp);
Tao Bao337db142015-08-20 14:52:57 -0700369}
370
Prashant Malani0eb41c32016-02-25 18:27:03 -0800371void WearRecoveryUI::PrintOnScreenOnly(const char *fmt, ...) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700372 va_list ap;
373 va_start(ap, fmt);
374 PrintV(fmt, false, ap);
375 va_end(ap);
Prashant Malani0eb41c32016-02-25 18:27:03 -0800376}
377
378void WearRecoveryUI::PrintV(const char* fmt, bool copy_to_stdout, va_list ap) {
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700379 std::string str;
380 android::base::StringAppendV(&str, fmt, ap);
Prashant Malani0eb41c32016-02-25 18:27:03 -0800381
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700382 if (copy_to_stdout) {
383 fputs(str.c_str(), stdout);
384 }
Prashant Malani0eb41c32016-02-25 18:27:03 -0800385
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700386 pthread_mutex_lock(&updateMutex);
387 if (text_rows_ > 0 && text_cols_ > 0) {
388 for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) {
389 if (*ptr == '\n' || text_col_ >= text_cols_) {
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -0700390 text_[text_row_][text_col_] = '\0';
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700391 text_col_ = 0;
392 text_row_ = (text_row_ + 1) % text_rows_;
393 if (text_row_ == text_top_) text_top_ = (text_top_ + 1) % text_rows_;
394 }
395 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
Prashant Malani0eb41c32016-02-25 18:27:03 -0800396 }
Tao Bao5d2e3bd2017-06-23 22:23:50 -0700397 text_[text_row_][text_col_] = '\0';
398 update_screen_locked();
399 }
400 pthread_mutex_unlock(&updateMutex);
Prashant Malani0eb41c32016-02-25 18:27:03 -0800401}