Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Tianjie Xu | b5108c3 | 2018-08-20 13:40:47 -0700 | [diff] [blame] | 17 | #include "recovery_ui/screen_ui.h" |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 18 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 19 | #include <dirent.h> |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 20 | #include <errno.h> |
| 21 | #include <fcntl.h> |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 22 | #include <stdarg.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | #include <sys/stat.h> |
| 27 | #include <sys/time.h> |
| 28 | #include <sys/types.h> |
| 29 | #include <time.h> |
| 30 | #include <unistd.h> |
| 31 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 32 | #include <algorithm> |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 33 | #include <chrono> |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 34 | #include <memory> |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 35 | #include <string> |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 36 | #include <thread> |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 37 | #include <unordered_map> |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 38 | #include <vector> |
| 39 | |
Tianjie Xu | c21edd4 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 40 | #include <android-base/logging.h> |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 41 | #include <android-base/properties.h> |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 42 | #include <android-base/stringprintf.h> |
Tao Bao | cb5524c | 2017-09-08 21:25:32 -0700 | [diff] [blame] | 43 | #include <android-base/strings.h> |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 44 | |
Tao Bao | 6cd8168 | 2018-05-03 21:53:11 -0700 | [diff] [blame] | 45 | #include "minui/minui.h" |
| 46 | #include "otautil/paths.h" |
Tianjie Xu | b5108c3 | 2018-08-20 13:40:47 -0700 | [diff] [blame] | 47 | #include "recovery_ui/device.h" |
| 48 | #include "recovery_ui/ui.h" |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 49 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 50 | // Return the current time as a double (including fractions of a second). |
| 51 | static double now() { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 52 | struct timeval tv; |
| 53 | gettimeofday(&tv, nullptr); |
| 54 | return tv.tv_sec + tv.tv_usec / 1000000.0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 57 | Menu::Menu(size_t initial_selection, const DrawInterface& draw_func) |
| 58 | : selection_(initial_selection), draw_funcs_(draw_func) {} |
| 59 | |
| 60 | size_t Menu::selection() const { |
| 61 | return selection_; |
| 62 | } |
| 63 | |
| 64 | TextMenu::TextMenu(bool scrollable, size_t max_items, size_t max_length, |
| 65 | const std::vector<std::string>& headers, const std::vector<std::string>& items, |
| 66 | size_t initial_selection, int char_height, const DrawInterface& draw_funcs) |
| 67 | : Menu(initial_selection, draw_funcs), |
| 68 | scrollable_(scrollable), |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 69 | max_display_items_(max_items), |
| 70 | max_item_length_(max_length), |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 71 | text_headers_(headers), |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 72 | char_height_(char_height) { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 73 | CHECK_LE(max_items, static_cast<size_t>(std::numeric_limits<int>::max())); |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 74 | |
| 75 | // It's fine to have more entries than text_rows_ if scrollable menu is supported. |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 76 | size_t items_count = scrollable_ ? items.size() : std::min(items.size(), max_display_items_); |
| 77 | for (size_t i = 0; i < items_count; ++i) { |
| 78 | text_items_.emplace_back(items[i].substr(0, max_item_length_)); |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 79 | } |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 80 | menu_start_ = std::max(0, (int)selection_ - (int)max_display_items_ + 1); |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 81 | |
| 82 | CHECK(!text_items_.empty()); |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 85 | const std::vector<std::string>& TextMenu::text_headers() const { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 86 | return text_headers_; |
| 87 | } |
| 88 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 89 | std::string TextMenu::TextItem(size_t index) const { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 90 | CHECK_LT(index, text_items_.size()); |
| 91 | |
| 92 | return text_items_[index]; |
| 93 | } |
| 94 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 95 | size_t TextMenu::MenuStart() const { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 96 | return menu_start_; |
| 97 | } |
| 98 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 99 | size_t TextMenu::MenuEnd() const { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 100 | return std::min(ItemsCount(), menu_start_ + max_display_items_); |
| 101 | } |
| 102 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 103 | size_t TextMenu::ItemsCount() const { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 104 | return text_items_.size(); |
| 105 | } |
| 106 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 107 | bool TextMenu::ItemsOverflow(std::string* cur_selection_str) const { |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 108 | if (!scrollable_ || ItemsCount() <= max_display_items_) { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 109 | return false; |
| 110 | } |
| 111 | |
| 112 | *cur_selection_str = |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 113 | android::base::StringPrintf("Current item: %zu/%zu", selection_ + 1, ItemsCount()); |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 114 | return true; |
| 115 | } |
| 116 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 117 | // TODO(xunchang) modify the function parameters to button up & down. |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 118 | int TextMenu::Select(int sel) { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 119 | CHECK_LE(ItemsCount(), static_cast<size_t>(std::numeric_limits<int>::max())); |
| 120 | int count = ItemsCount(); |
| 121 | |
| 122 | // Wraps the selection at boundary if the menu is not scrollable. |
| 123 | if (!scrollable_) { |
| 124 | if (sel < 0) { |
| 125 | selection_ = count - 1; |
| 126 | } else if (sel >= count) { |
| 127 | selection_ = 0; |
| 128 | } else { |
| 129 | selection_ = sel; |
| 130 | } |
| 131 | |
| 132 | return selection_; |
| 133 | } |
| 134 | |
| 135 | if (sel < 0) { |
| 136 | selection_ = 0; |
| 137 | } else if (sel >= count) { |
| 138 | selection_ = count - 1; |
| 139 | } else { |
| 140 | if (static_cast<size_t>(sel) < menu_start_) { |
| 141 | menu_start_--; |
| 142 | } else if (static_cast<size_t>(sel) >= MenuEnd()) { |
| 143 | menu_start_++; |
| 144 | } |
| 145 | selection_ = sel; |
| 146 | } |
| 147 | |
| 148 | return selection_; |
| 149 | } |
| 150 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 151 | int TextMenu::DrawHeader(int x, int y) const { |
| 152 | int offset = 0; |
| 153 | |
| 154 | draw_funcs_.SetColor(UIElement::HEADER); |
| 155 | if (!scrollable()) { |
| 156 | offset += draw_funcs_.DrawWrappedTextLines(x, y + offset, text_headers()); |
| 157 | } else { |
| 158 | offset += draw_funcs_.DrawTextLines(x, y + offset, text_headers()); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | return offset; |
| 162 | } |
| 163 | |
| 164 | int TextMenu::DrawItems(int x, int y, int screen_width, bool long_press) const { |
| 165 | int offset = 0; |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 166 | int padding = draw_funcs_.MenuItemPadding(); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 167 | |
| 168 | draw_funcs_.SetColor(UIElement::MENU); |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 169 | offset += draw_funcs_.DrawHorizontalRule(y + offset) + 4; |
| 170 | |
| 171 | int item_container_offset = offset; // store it for drawing scrollbar on most top |
| 172 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 173 | for (size_t i = MenuStart(); i < MenuEnd(); ++i) { |
| 174 | bool bold = false; |
| 175 | if (i == selection()) { |
| 176 | // Draw the highlight bar. |
| 177 | draw_funcs_.SetColor(long_press ? UIElement::MENU_SEL_BG_ACTIVE : UIElement::MENU_SEL_BG); |
| 178 | |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 179 | int bar_height = padding + char_height_ + padding; |
| 180 | draw_funcs_.DrawHighlightBar(0, y + offset, screen_width, bar_height); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 181 | |
| 182 | // Bold white text for the selected item. |
| 183 | draw_funcs_.SetColor(UIElement::MENU_SEL_FG); |
| 184 | bold = true; |
| 185 | } |
| 186 | offset += draw_funcs_.DrawTextLine(x, y + offset, TextItem(i), bold); |
| 187 | |
| 188 | draw_funcs_.SetColor(UIElement::MENU); |
| 189 | } |
| 190 | offset += draw_funcs_.DrawHorizontalRule(y + offset); |
| 191 | |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 192 | std::string unused; |
| 193 | if (ItemsOverflow(&unused)) { |
| 194 | int container_height = max_display_items_ * (2 * padding + char_height_); |
| 195 | int bar_height = container_height / (text_items_.size() - max_display_items_ + 1); |
| 196 | int start_y = y + item_container_offset + bar_height * menu_start_; |
| 197 | draw_funcs_.SetColor(UIElement::SCROLLBAR); |
| 198 | draw_funcs_.DrawScrollBar(start_y, bar_height); |
| 199 | } |
| 200 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 201 | return offset; |
| 202 | } |
| 203 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 204 | GraphicMenu::GraphicMenu(const GRSurface* graphic_headers, |
| 205 | const std::vector<const GRSurface*>& graphic_items, |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 206 | size_t initial_selection, const DrawInterface& draw_funcs) |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 207 | : Menu(initial_selection, draw_funcs) { |
| 208 | graphic_headers_ = graphic_headers->Clone(); |
| 209 | graphic_items_.reserve(graphic_items.size()); |
| 210 | for (const auto& item : graphic_items) { |
| 211 | graphic_items_.emplace_back(item->Clone()); |
| 212 | } |
| 213 | } |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 214 | |
| 215 | int GraphicMenu::Select(int sel) { |
| 216 | CHECK_LE(graphic_items_.size(), static_cast<size_t>(std::numeric_limits<int>::max())); |
| 217 | int count = graphic_items_.size(); |
| 218 | |
| 219 | // Wraps the selection at boundary if the menu is not scrollable. |
| 220 | if (sel < 0) { |
| 221 | selection_ = count - 1; |
| 222 | } else if (sel >= count) { |
| 223 | selection_ = 0; |
| 224 | } else { |
| 225 | selection_ = sel; |
| 226 | } |
| 227 | |
| 228 | return selection_; |
| 229 | } |
| 230 | |
| 231 | int GraphicMenu::DrawHeader(int x, int y) const { |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 232 | draw_funcs_.SetColor(UIElement::HEADER); |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 233 | draw_funcs_.DrawTextIcon(x, y, graphic_headers_.get()); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 234 | return graphic_headers_->height; |
| 235 | } |
| 236 | |
| 237 | int GraphicMenu::DrawItems(int x, int y, int screen_width, bool long_press) const { |
| 238 | int offset = 0; |
| 239 | |
| 240 | draw_funcs_.SetColor(UIElement::MENU); |
| 241 | offset += draw_funcs_.DrawHorizontalRule(y + offset) + 4; |
| 242 | |
| 243 | for (size_t i = 0; i < graphic_items_.size(); i++) { |
| 244 | auto& item = graphic_items_[i]; |
| 245 | if (i == selection_) { |
| 246 | draw_funcs_.SetColor(long_press ? UIElement::MENU_SEL_BG_ACTIVE : UIElement::MENU_SEL_BG); |
| 247 | |
| 248 | int bar_height = item->height + 4; |
| 249 | draw_funcs_.DrawHighlightBar(0, y + offset - 2, screen_width, bar_height); |
| 250 | |
| 251 | // Bold white text for the selected item. |
| 252 | draw_funcs_.SetColor(UIElement::MENU_SEL_FG); |
| 253 | } |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 254 | draw_funcs_.DrawTextIcon(x, y + offset, item.get()); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 255 | offset += item->height; |
| 256 | |
| 257 | draw_funcs_.SetColor(UIElement::MENU); |
| 258 | } |
xunchang | c7dbc73 | 2018-12-20 11:31:18 -0800 | [diff] [blame] | 259 | offset += draw_funcs_.DrawHorizontalRule(y + offset); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 260 | |
| 261 | return offset; |
| 262 | } |
| 263 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 264 | bool GraphicMenu::Validate(size_t max_width, size_t max_height, const GRSurface* graphic_headers, |
| 265 | const std::vector<const GRSurface*>& graphic_items) { |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 266 | int offset = 0; |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 267 | if (!ValidateGraphicSurface(max_width, max_height, offset, graphic_headers)) { |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 268 | return false; |
| 269 | } |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 270 | offset += graphic_headers->height; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 271 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 272 | for (const auto& item : graphic_items) { |
| 273 | if (!ValidateGraphicSurface(max_width, max_height, offset, item)) { |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 274 | return false; |
| 275 | } |
| 276 | offset += item->height; |
| 277 | } |
| 278 | |
| 279 | return true; |
| 280 | } |
| 281 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 282 | bool GraphicMenu::ValidateGraphicSurface(size_t max_width, size_t max_height, int y, |
| 283 | const GRSurface* surface) { |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 284 | if (!surface) { |
Tao Bao | a00b449 | 2019-01-16 09:29:47 -0800 | [diff] [blame] | 285 | fprintf(stderr, "Graphic surface can not be null\n"); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 286 | return false; |
| 287 | } |
| 288 | |
| 289 | if (surface->pixel_bytes != 1 || surface->width != surface->row_bytes) { |
Tao Bao | a00b449 | 2019-01-16 09:29:47 -0800 | [diff] [blame] | 290 | fprintf(stderr, "Invalid graphic surface, pixel bytes: %zu, width: %zu row_bytes: %zu\n", |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 291 | surface->pixel_bytes, surface->width, surface->row_bytes); |
| 292 | return false; |
| 293 | } |
| 294 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 295 | if (surface->width > max_width || surface->height > max_height - y) { |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 296 | fprintf(stderr, |
Tao Bao | dd78982 | 2018-11-26 16:28:07 -0800 | [diff] [blame] | 297 | "Graphic surface doesn't fit into the screen. width: %zu, height: %zu, max_width: %zu," |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 298 | " max_height: %zu, vertical offset: %d\n", |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 299 | surface->width, surface->height, max_width, max_height, y); |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 300 | return false; |
| 301 | } |
| 302 | |
| 303 | return true; |
| 304 | } |
| 305 | |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 306 | MenuDrawFunctions::MenuDrawFunctions(const DrawInterface& wrappee) |
| 307 | : wrappee_(wrappee) { |
| 308 | } |
| 309 | |
| 310 | int MenuDrawFunctions::DrawTextLine(int x, int y, const std::string& line, bool bold) const { |
| 311 | gr_text(gr_menu_font(), x, y + MenuItemPadding(), line.c_str(), bold); |
| 312 | return 2 * MenuItemPadding() + MenuCharHeight(); |
| 313 | } |
| 314 | |
| 315 | int MenuDrawFunctions::DrawTextLines(int x, int y, const std::vector<std::string>& lines) const { |
| 316 | int offset = 0; |
| 317 | for (const auto& line : lines) { |
| 318 | offset += DrawTextLine(x, y + offset, line, false); |
| 319 | } |
| 320 | return offset; |
| 321 | } |
| 322 | |
| 323 | int MenuDrawFunctions::DrawWrappedTextLines(int x, int y, const std::vector<std::string>& lines) const { |
| 324 | // Keep symmetrical margins based on the given offset (i.e. x). |
| 325 | size_t text_cols = (gr_fb_width() - x * 2) / MenuCharWidth(); |
| 326 | int offset = 0; |
| 327 | for (const auto& line : lines) { |
| 328 | size_t next_start = 0; |
| 329 | while (next_start < line.size()) { |
| 330 | std::string sub = line.substr(next_start, text_cols + 1); |
| 331 | if (sub.size() <= text_cols) { |
| 332 | next_start += sub.size(); |
| 333 | } else { |
| 334 | // Line too long and must be wrapped to text_cols columns. |
| 335 | size_t last_space = sub.find_last_of(" \t\n"); |
| 336 | if (last_space == std::string::npos) { |
| 337 | // No space found, just draw as much as we can. |
| 338 | sub.resize(text_cols); |
| 339 | next_start += text_cols; |
| 340 | } else { |
| 341 | sub.resize(last_space); |
| 342 | next_start += last_space + 1; |
| 343 | } |
| 344 | } |
| 345 | offset += DrawTextLine(x, y + offset, sub, false); |
| 346 | } |
| 347 | } |
| 348 | return offset; |
| 349 | } |
| 350 | |
| 351 | ScreenRecoveryUI::ScreenRecoveryUI() : ScreenRecoveryUI(true) {} |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 352 | |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 353 | constexpr int kDefaultMarginHeight = 0; |
| 354 | constexpr int kDefaultMarginWidth = 0; |
| 355 | constexpr int kDefaultAnimationFps = 30; |
| 356 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 357 | ScreenRecoveryUI::ScreenRecoveryUI(bool scrollable_menu) |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 358 | : margin_width_( |
| 359 | android::base::GetIntProperty("ro.recovery.ui.margin_width", kDefaultMarginWidth)), |
| 360 | margin_height_( |
| 361 | android::base::GetIntProperty("ro.recovery.ui.margin_height", kDefaultMarginHeight)), |
| 362 | animation_fps_( |
| 363 | android::base::GetIntProperty("ro.recovery.ui.animation_fps", kDefaultAnimationFps)), |
| 364 | density_(static_cast<float>(android::base::GetIntProperty("ro.sf.lcd_density", 160)) / 160.f), |
Michael Bestas | 47bc4be | 2019-03-23 17:28:22 +0200 | [diff] [blame] | 365 | blank_unblank_on_init_( |
| 366 | android::base::GetBoolProperty("ro.recovery.ui.blank_unblank_on_init", false)), |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 367 | current_icon_(NONE), |
| 368 | current_frame_(0), |
| 369 | intro_done_(false), |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 370 | progressBarType(EMPTY), |
| 371 | progressScopeStart(0), |
| 372 | progressScopeSize(0), |
| 373 | progress(0), |
| 374 | pagesIdentical(false), |
| 375 | text_cols_(0), |
| 376 | text_rows_(0), |
| 377 | text_(nullptr), |
| 378 | text_col_(0), |
| 379 | text_row_(0), |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 380 | show_text(false), |
| 381 | show_text_ever(false), |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 382 | scrollable_menu_(scrollable_menu), |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 383 | file_viewer_text_(nullptr), |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 384 | stage(-1), |
| 385 | max_stage(-1), |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 386 | locale_(""), |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 387 | rtl_locale_(false) {} |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 388 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 389 | ScreenRecoveryUI::~ScreenRecoveryUI() { |
| 390 | progress_thread_stopped_ = true; |
Tao Bao | 94371fd | 2018-06-06 07:38:54 -0700 | [diff] [blame] | 391 | if (progress_thread_.joinable()) { |
| 392 | progress_thread_.join(); |
| 393 | } |
Tao Bao | 60ac622 | 2018-06-13 14:33:51 -0700 | [diff] [blame] | 394 | // No-op if gr_init() (via Init()) was not called or had failed. |
| 395 | gr_exit(); |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 398 | const GRSurface* ScreenRecoveryUI::GetCurrentFrame() const { |
| 399 | if (current_icon_ == INSTALLING_UPDATE || current_icon_ == ERASING) { |
| 400 | return intro_done_ ? loop_frames_[current_frame_].get() : intro_frames_[current_frame_].get(); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 401 | } |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 402 | return error_icon_.get(); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 405 | const GRSurface* ScreenRecoveryUI::GetCurrentText() const { |
| 406 | switch (current_icon_) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 407 | case ERASING: |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 408 | return erasing_text_.get(); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 409 | case ERROR: |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 410 | return error_text_.get(); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 411 | case INSTALLING_UPDATE: |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 412 | return installing_text_.get(); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 413 | case NO_COMMAND: |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 414 | return no_command_text_.get(); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 415 | case NONE: |
| 416 | abort(); |
| 417 | } |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Mikhail Lappo | b49767c | 2017-03-23 21:44:26 +0100 | [diff] [blame] | 420 | int ScreenRecoveryUI::PixelsFromDp(int dp) const { |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 421 | return dp * density_; |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | // Here's the intended layout: |
| 425 | |
Elliott Hughes | 6d089a9 | 2016-07-08 17:23:41 -0700 | [diff] [blame] | 426 | // | portrait large landscape large |
| 427 | // ---------+------------------------------------------------- |
Tao Bao | 3250f72 | 2017-06-29 14:32:05 -0700 | [diff] [blame] | 428 | // gap | |
Elliott Hughes | 6d089a9 | 2016-07-08 17:23:41 -0700 | [diff] [blame] | 429 | // icon | (200dp) |
| 430 | // gap | 68dp 68dp 56dp 112dp |
| 431 | // text | (14sp) |
| 432 | // gap | 32dp 32dp 26dp 52dp |
| 433 | // progress | (2dp) |
Tao Bao | 3250f72 | 2017-06-29 14:32:05 -0700 | [diff] [blame] | 434 | // gap | |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 435 | |
Tao Bao | 3250f72 | 2017-06-29 14:32:05 -0700 | [diff] [blame] | 436 | // Note that "baseline" is actually the *top* of each icon (because that's how our drawing routines |
| 437 | // work), so that's the more useful measurement for calling code. We use even top and bottom gaps. |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 438 | |
Elliott Hughes | 6d089a9 | 2016-07-08 17:23:41 -0700 | [diff] [blame] | 439 | enum Layout { PORTRAIT = 0, PORTRAIT_LARGE = 1, LANDSCAPE = 2, LANDSCAPE_LARGE = 3, LAYOUT_MAX }; |
Tao Bao | 3250f72 | 2017-06-29 14:32:05 -0700 | [diff] [blame] | 440 | enum Dimension { TEXT = 0, ICON = 1, DIMENSION_MAX }; |
Elliott Hughes | 6d089a9 | 2016-07-08 17:23:41 -0700 | [diff] [blame] | 441 | static constexpr int kLayouts[LAYOUT_MAX][DIMENSION_MAX] = { |
Tianjie Xu | b5108c3 | 2018-08-20 13:40:47 -0700 | [diff] [blame] | 442 | { 32, 68 }, // PORTRAIT |
| 443 | { 32, 68 }, // PORTRAIT_LARGE |
| 444 | { 26, 56 }, // LANDSCAPE |
| 445 | { 52, 112 }, // LANDSCAPE_LARGE |
Elliott Hughes | 6d089a9 | 2016-07-08 17:23:41 -0700 | [diff] [blame] | 446 | }; |
| 447 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 448 | int ScreenRecoveryUI::GetAnimationBaseline() const { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 449 | return GetTextBaseline() - PixelsFromDp(kLayouts[layout_][ICON]) - |
| 450 | gr_get_height(loop_frames_[0].get()); |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 453 | int ScreenRecoveryUI::GetTextBaseline() const { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 454 | return GetProgressBaseline() - PixelsFromDp(kLayouts[layout_][TEXT]) - |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 455 | gr_get_height(installing_text_.get()); |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 458 | int ScreenRecoveryUI::GetProgressBaseline() const { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 459 | int elements_sum = gr_get_height(loop_frames_[0].get()) + PixelsFromDp(kLayouts[layout_][ICON]) + |
| 460 | gr_get_height(installing_text_.get()) + PixelsFromDp(kLayouts[layout_][TEXT]) + |
| 461 | gr_get_height(progress_bar_fill_.get()); |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 462 | int bottom_gap = (ScreenHeight() - elements_sum) / 2; |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 463 | return ScreenHeight() - bottom_gap - gr_get_height(progress_bar_fill_.get()); |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 464 | } |
| 465 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 466 | // Clear the screen and draw the currently selected background icon (if any). |
| 467 | // Should only be called with updateMutex locked. |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 468 | void ScreenRecoveryUI::draw_background_locked() { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 469 | pagesIdentical = false; |
| 470 | gr_color(0, 0, 0, 255); |
| 471 | gr_clear(); |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 472 | if (current_icon_ != NONE) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 473 | if (max_stage != -1) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 474 | int stage_height = gr_get_height(stage_marker_empty_.get()); |
| 475 | int stage_width = gr_get_width(stage_marker_empty_.get()); |
| 476 | int x = (ScreenWidth() - max_stage * gr_get_width(stage_marker_empty_.get())) / 2; |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 477 | int y = ScreenHeight() - stage_height - margin_height_; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 478 | for (int i = 0; i < max_stage; ++i) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 479 | const auto& stage_surface = (i < stage) ? stage_marker_fill_ : stage_marker_empty_; |
| 480 | DrawSurface(stage_surface.get(), 0, 0, stage_width, stage_height, x, y); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 481 | x += stage_width; |
| 482 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 483 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 484 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 485 | const auto& text_surface = GetCurrentText(); |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 486 | int text_x = (ScreenWidth() - gr_get_width(text_surface)) / 2; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 487 | int text_y = GetTextBaseline(); |
| 488 | gr_color(255, 255, 255, 255); |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 489 | DrawTextIcon(text_x, text_y, text_surface); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 490 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 491 | } |
| 492 | |
Tao Bao | ea78d86 | 2017-06-28 14:52:17 -0700 | [diff] [blame] | 493 | // Draws the animation and progress bar (if any) on the screen. Does not flip pages. Should only be |
| 494 | // called with updateMutex locked. |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 495 | void ScreenRecoveryUI::draw_foreground_locked() { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 496 | if (current_icon_ != NONE) { |
| 497 | const auto& frame = GetCurrentFrame(); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 498 | int frame_width = gr_get_width(frame); |
| 499 | int frame_height = gr_get_height(frame); |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 500 | int frame_x = (ScreenWidth() - frame_width) / 2; |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 501 | int frame_y = GetAnimationBaseline(); |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 502 | DrawSurface(frame, 0, 0, frame_width, frame_height, frame_x, frame_y); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 503 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 504 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 505 | if (progressBarType != EMPTY) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 506 | int width = gr_get_width(progress_bar_empty_.get()); |
| 507 | int height = gr_get_height(progress_bar_empty_.get()); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 508 | |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 509 | int progress_x = (ScreenWidth() - width) / 2; |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 510 | int progress_y = GetProgressBaseline(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 511 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 512 | // Erase behind the progress bar (in case this was a progress-only update) |
| 513 | gr_color(0, 0, 0, 255); |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 514 | DrawFill(progress_x, progress_y, width, height); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 515 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 516 | if (progressBarType == DETERMINATE) { |
| 517 | float p = progressScopeStart + progress * progressScopeSize; |
| 518 | int pos = static_cast<int>(p * width); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 519 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 520 | if (rtl_locale_) { |
| 521 | // Fill the progress bar from right to left. |
| 522 | if (pos > 0) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 523 | DrawSurface(progress_bar_fill_.get(), width - pos, 0, pos, height, |
| 524 | progress_x + width - pos, progress_y); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 525 | } |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 526 | if (pos < width - 1) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 527 | DrawSurface(progress_bar_empty_.get(), 0, 0, width - pos, height, progress_x, progress_y); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 528 | } |
| 529 | } else { |
| 530 | // Fill the progress bar from left to right. |
| 531 | if (pos > 0) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 532 | DrawSurface(progress_bar_fill_.get(), 0, 0, pos, height, progress_x, progress_y); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 533 | } |
| 534 | if (pos < width - 1) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 535 | DrawSurface(progress_bar_empty_.get(), pos, 0, width - pos, height, progress_x + pos, |
| 536 | progress_y); |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 537 | } |
| 538 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 539 | } |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 540 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 543 | /* Lineage teal: #167c80 */ |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 544 | void ScreenRecoveryUI::SetColor(UIElement e) const { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 545 | switch (e) { |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 546 | case UIElement::INFO: |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 547 | gr_color(249, 194, 0, 255); |
| 548 | break; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 549 | case UIElement::HEADER: |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 550 | gr_color(247, 0, 6, 255); |
| 551 | break; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 552 | case UIElement::MENU: |
| 553 | case UIElement::MENU_SEL_BG: |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 554 | gr_color(0xd8, 0xd8, 0xd8, 255); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 555 | break; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 556 | case UIElement::MENU_SEL_BG_ACTIVE: |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 557 | gr_color(0, 156, 100, 255); |
| 558 | break; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 559 | case UIElement::MENU_SEL_FG: |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 560 | case UIElement::SCROLLBAR: |
| 561 | gr_color(0x16, 0x7c, 0x80, 255); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 562 | break; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 563 | case UIElement::LOG: |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 564 | gr_color(196, 196, 196, 255); |
| 565 | break; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 566 | case UIElement::TEXT_FILL: |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 567 | gr_color(0, 0, 0, 160); |
| 568 | break; |
| 569 | default: |
| 570 | gr_color(255, 255, 255, 255); |
| 571 | break; |
| 572 | } |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 573 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 574 | |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 575 | void ScreenRecoveryUI::SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries, |
| 576 | size_t sel) { |
| 577 | SetLocale(locales_entries[sel]); |
| 578 | std::vector<std::string> text_name = { "erasing_text", "error_text", "installing_text", |
| 579 | "installing_security_text", "no_command_text" }; |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 580 | std::unordered_map<std::string, std::unique_ptr<GRSurface>> surfaces; |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 581 | for (const auto& name : text_name) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 582 | auto text_image = LoadLocalizedBitmap(name); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 583 | if (!text_image) { |
| 584 | Print("Failed to load %s\n", name.c_str()); |
| 585 | return; |
| 586 | } |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 587 | surfaces.emplace(name, std::move(text_image)); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 588 | } |
| 589 | |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 590 | std::lock_guard<std::mutex> lg(updateMutex); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 591 | gr_color(0, 0, 0, 255); |
| 592 | gr_clear(); |
| 593 | |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 594 | int text_y = margin_height_; |
| 595 | int text_x = margin_width_; |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 596 | int line_spacing = gr_sys_font()->char_height; // Put some extra space between images. |
| 597 | // Write the header and descriptive texts. |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 598 | SetColor(UIElement::INFO); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 599 | std::string header = "Show background text image"; |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 600 | text_y += DrawTextLine(text_x, text_y, header, true); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 601 | std::string locale_selection = android::base::StringPrintf( |
Tao Bao | 39c4918 | 2018-05-07 22:50:33 -0700 | [diff] [blame] | 602 | "Current locale: %s, %zu/%zu", locales_entries[sel].c_str(), sel + 1, locales_entries.size()); |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 603 | // clang-format off |
| 604 | std::vector<std::string> instruction = { |
| 605 | locale_selection, |
| 606 | "Use volume up/down to switch locales and power to exit." |
| 607 | }; |
| 608 | // clang-format on |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 609 | text_y += DrawWrappedTextLines(text_x, text_y, instruction); |
| 610 | |
| 611 | // Iterate through the text images and display them in order for the current locale. |
| 612 | for (const auto& p : surfaces) { |
| 613 | text_y += line_spacing; |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 614 | SetColor(UIElement::LOG); |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 615 | text_y += DrawTextLine(text_x, text_y, p.first, false); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 616 | gr_color(255, 255, 255, 255); |
| 617 | gr_texticon(text_x, text_y, p.second.get()); |
| 618 | text_y += gr_get_height(p.second.get()); |
| 619 | } |
| 620 | // Update the whole screen. |
| 621 | gr_flip(); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 622 | } |
| 623 | |
Tao Bao | 39c4918 | 2018-05-07 22:50:33 -0700 | [diff] [blame] | 624 | void ScreenRecoveryUI::CheckBackgroundTextImages() { |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 625 | // Load a list of locales embedded in one of the resource files. |
| 626 | std::vector<std::string> locales_entries = get_locales_in_png("installing_text"); |
| 627 | if (locales_entries.empty()) { |
| 628 | Print("Failed to load locales from the resource files\n"); |
| 629 | return; |
| 630 | } |
Tao Bao | 39c4918 | 2018-05-07 22:50:33 -0700 | [diff] [blame] | 631 | std::string saved_locale = locale_; |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 632 | size_t selected = 0; |
| 633 | SelectAndShowBackgroundText(locales_entries, selected); |
| 634 | |
| 635 | FlushKeys(); |
| 636 | while (true) { |
| 637 | int key = WaitKey(); |
Jerry Zhang | b76af93 | 2018-05-22 12:08:35 -0700 | [diff] [blame] | 638 | if (key == static_cast<int>(KeyError::INTERRUPTED)) break; |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 639 | if (key == KEY_POWER || key == KEY_ENTER) { |
| 640 | break; |
| 641 | } else if (key == KEY_UP || key == KEY_VOLUMEUP) { |
| 642 | selected = (selected == 0) ? locales_entries.size() - 1 : selected - 1; |
| 643 | SelectAndShowBackgroundText(locales_entries, selected); |
| 644 | } else if (key == KEY_DOWN || key == KEY_VOLUMEDOWN) { |
| 645 | selected = (selected == locales_entries.size() - 1) ? 0 : selected + 1; |
| 646 | SelectAndShowBackgroundText(locales_entries, selected); |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | SetLocale(saved_locale); |
| 651 | } |
| 652 | |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 653 | int ScreenRecoveryUI::ScreenWidth() const { |
| 654 | return gr_fb_width(); |
| 655 | } |
| 656 | |
| 657 | int ScreenRecoveryUI::ScreenHeight() const { |
| 658 | return gr_fb_height(); |
| 659 | } |
| 660 | |
Tao Bao | 65815b6 | 2018-10-23 10:54:02 -0700 | [diff] [blame] | 661 | void ScreenRecoveryUI::DrawSurface(const GRSurface* surface, int sx, int sy, int w, int h, int dx, |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 662 | int dy) const { |
| 663 | gr_blit(surface, sx, sy, w, h, dx, dy); |
| 664 | } |
| 665 | |
Tao Bao | ea78d86 | 2017-06-28 14:52:17 -0700 | [diff] [blame] | 666 | int ScreenRecoveryUI::DrawHorizontalRule(int y) const { |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 667 | gr_fill(0, y + 4, ScreenWidth(), y + 6); |
Tao Bao | ea78d86 | 2017-06-28 14:52:17 -0700 | [diff] [blame] | 668 | return 8; |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 669 | } |
| 670 | |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 671 | void ScreenRecoveryUI::DrawHighlightBar(int x, int y, int width, int height) const { |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 672 | if (y + height > ScreenHeight()) |
| 673 | height = ScreenHeight() - y; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 674 | gr_fill(x, y, x + width, y + height); |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 675 | } |
| 676 | |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 677 | void ScreenRecoveryUI::DrawScrollBar(int y, int height) const { |
| 678 | int x = ScreenWidth() - margin_width_; |
| 679 | int width = 8; |
| 680 | gr_fill(x - width, y, x, y + height); |
| 681 | } |
| 682 | |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 683 | void ScreenRecoveryUI::DrawFill(int x, int y, int w, int h) const { |
| 684 | gr_fill(x, y, w, h); |
| 685 | } |
| 686 | |
Tao Bao | 65815b6 | 2018-10-23 10:54:02 -0700 | [diff] [blame] | 687 | void ScreenRecoveryUI::DrawTextIcon(int x, int y, const GRSurface* surface) const { |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 688 | gr_texticon(x, y, surface); |
| 689 | } |
| 690 | |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 691 | int ScreenRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const { |
| 692 | gr_text(gr_sys_font(), x, y, line.c_str(), bold); |
Tao Bao | ea78d86 | 2017-06-28 14:52:17 -0700 | [diff] [blame] | 693 | return char_height_ + 4; |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 694 | } |
| 695 | |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 696 | int ScreenRecoveryUI::DrawTextLines(int x, int y, const std::vector<std::string>& lines) const { |
Tao Bao | ea78d86 | 2017-06-28 14:52:17 -0700 | [diff] [blame] | 697 | int offset = 0; |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 698 | for (const auto& line : lines) { |
| 699 | offset += DrawTextLine(x, y + offset, line, false); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 700 | } |
Tao Bao | ea78d86 | 2017-06-28 14:52:17 -0700 | [diff] [blame] | 701 | return offset; |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 702 | } |
| 703 | |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 704 | int ScreenRecoveryUI::DrawWrappedTextLines(int x, int y, |
| 705 | const std::vector<std::string>& lines) const { |
Tao Bao | 452b487 | 2018-05-09 11:52:09 -0700 | [diff] [blame] | 706 | // Keep symmetrical margins based on the given offset (i.e. x). |
| 707 | size_t text_cols = (ScreenWidth() - x * 2) / char_width_; |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 708 | int offset = 0; |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 709 | for (const auto& line : lines) { |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 710 | size_t next_start = 0; |
| 711 | while (next_start < line.size()) { |
Tao Bao | 452b487 | 2018-05-09 11:52:09 -0700 | [diff] [blame] | 712 | std::string sub = line.substr(next_start, text_cols + 1); |
| 713 | if (sub.size() <= text_cols) { |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 714 | next_start += sub.size(); |
| 715 | } else { |
Tao Bao | 452b487 | 2018-05-09 11:52:09 -0700 | [diff] [blame] | 716 | // Line too long and must be wrapped to text_cols columns. |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 717 | size_t last_space = sub.find_last_of(" \t\n"); |
| 718 | if (last_space == std::string::npos) { |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 719 | // No space found, just draw as much as we can. |
Tao Bao | 452b487 | 2018-05-09 11:52:09 -0700 | [diff] [blame] | 720 | sub.resize(text_cols); |
| 721 | next_start += text_cols; |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 722 | } else { |
| 723 | sub.resize(last_space); |
| 724 | next_start += last_space + 1; |
| 725 | } |
| 726 | } |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 727 | offset += DrawTextLine(x, y + offset, sub, false); |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 728 | } |
| 729 | } |
| 730 | return offset; |
| 731 | } |
| 732 | |
Jerry Zhang | 0e577ee | 2018-05-07 11:21:10 -0700 | [diff] [blame] | 733 | void ScreenRecoveryUI::SetTitle(const std::vector<std::string>& lines) { |
| 734 | title_lines_ = lines; |
| 735 | } |
| 736 | |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 737 | // Redraws everything on the screen. Does not flip pages. Should only be called with updateMutex |
| 738 | // locked. |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 739 | void ScreenRecoveryUI::draw_screen_locked() { |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 740 | if (!show_text) { |
| 741 | draw_background_locked(); |
| 742 | draw_foreground_locked(); |
| 743 | return; |
| 744 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 745 | |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 746 | gr_color(0, 0, 0, 255); |
| 747 | gr_clear(); |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 748 | |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 749 | // clang-format off |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 750 | static std::vector<std::string> REGULAR_HELP{ |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 751 | "Use volume up/down and power.", |
| 752 | }; |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 753 | static std::vector<std::string> LONG_PRESS_HELP{ |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 754 | "Any button cycles highlight.", |
| 755 | "Long-press activates.", |
| 756 | }; |
| 757 | // clang-format on |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 758 | draw_menu_and_text_buffer_locked(HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP); |
| 759 | } |
| 760 | |
| 761 | // Draws the menu and text buffer on the screen. Should only be called with updateMutex locked. |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 762 | void ScreenRecoveryUI::draw_menu_and_text_buffer_locked( |
| 763 | const std::vector<std::string>& help_message) { |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 764 | int y = margin_height_; |
David Anderson | 983e2d5 | 2019-01-02 11:35:38 -0800 | [diff] [blame] | 765 | |
| 766 | if (fastbootd_logo_ && fastbootd_logo_enabled_) { |
| 767 | // Try to get this centered on screen. |
| 768 | auto width = gr_get_width(fastbootd_logo_.get()); |
| 769 | auto height = gr_get_height(fastbootd_logo_.get()); |
| 770 | auto centered_x = ScreenWidth() / 2 - width / 2; |
| 771 | DrawSurface(fastbootd_logo_.get(), 0, 0, width, height, centered_x, y); |
| 772 | y += height; |
| 773 | } |
| 774 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 775 | if (menu_) { |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 776 | int x = margin_width_ + kMenuIndent; |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 777 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 778 | SetColor(UIElement::INFO); |
Jerry Zhang | 0e577ee | 2018-05-07 11:21:10 -0700 | [diff] [blame] | 779 | |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 780 | if (lineage_logo_) { |
| 781 | auto logo_width = gr_get_width(lineage_logo_.get()); |
| 782 | auto logo_height = gr_get_height(lineage_logo_.get()); |
| 783 | auto centered_x = ScreenWidth() / 2 - logo_width / 2; |
| 784 | DrawSurface(lineage_logo_.get(), 0, 0, logo_width, logo_height, centered_x, y); |
| 785 | y += logo_height; |
| 786 | } else { |
| 787 | for (size_t i = 0; i < title_lines_.size(); i++) { |
| 788 | y += DrawTextLine(x, y, title_lines_[i], i == 0); |
| 789 | } |
| 790 | y += DrawTextLines(x, y, help_message); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 791 | } |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 792 | |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 793 | y += menu_->DrawHeader(x, y); |
| 794 | y += menu_->DrawItems(x, y, ScreenWidth(), IsLongPress()); |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | // Display from the bottom up, until we hit the top of the screen, the bottom of the menu, or |
| 798 | // we've displayed the entire text buffer. |
Tianjie Xu | 66dbf63 | 2018-10-11 16:54:50 -0700 | [diff] [blame] | 799 | SetColor(UIElement::LOG); |
Tao Bao | cb5524c | 2017-09-08 21:25:32 -0700 | [diff] [blame] | 800 | int row = text_row_; |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 801 | size_t count = 0; |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 802 | for (int ty = ScreenHeight() - margin_height_ - char_height_; ty >= y && count < text_rows_; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 803 | ty -= char_height_, ++count) { |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 804 | DrawTextLine(margin_width_, ty, text_[row], false); |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 805 | --row; |
| 806 | if (row < 0) row = text_rows_ - 1; |
| 807 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | // Redraw everything on the screen and flip the screen (make it visible). |
| 811 | // Should only be called with updateMutex locked. |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 812 | void ScreenRecoveryUI::update_screen_locked() { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 813 | draw_screen_locked(); |
| 814 | gr_flip(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 815 | } |
| 816 | |
| 817 | // Updates only the progress bar, if possible, otherwise redraws the screen. |
| 818 | // Should only be called with updateMutex locked. |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 819 | void ScreenRecoveryUI::update_progress_locked() { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 820 | if (show_text || !pagesIdentical) { |
| 821 | draw_screen_locked(); // Must redraw the whole screen |
| 822 | pagesIdentical = true; |
| 823 | } else { |
| 824 | draw_foreground_locked(); // Draw only the progress bar and overlays |
| 825 | } |
| 826 | gr_flip(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 827 | } |
| 828 | |
Elliott Hughes | 985022a | 2015-04-13 13:04:32 -0700 | [diff] [blame] | 829 | void ScreenRecoveryUI::ProgressThreadLoop() { |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 830 | double interval = 1.0 / animation_fps_; |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 831 | while (!progress_thread_stopped_) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 832 | double start = now(); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 833 | bool redraw = false; |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 834 | { |
| 835 | std::lock_guard<std::mutex> lg(updateMutex); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 836 | |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 837 | // update the installation animation, if active |
| 838 | // skip this if we have a text overlay (too expensive to update) |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 839 | if ((current_icon_ == INSTALLING_UPDATE || current_icon_ == ERASING) && !show_text) { |
| 840 | if (!intro_done_) { |
| 841 | if (current_frame_ == intro_frames_.size() - 1) { |
| 842 | intro_done_ = true; |
| 843 | current_frame_ = 0; |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 844 | } else { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 845 | ++current_frame_; |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 846 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 847 | } else { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 848 | current_frame_ = (current_frame_ + 1) % loop_frames_.size(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 851 | redraw = true; |
| 852 | } |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 853 | |
| 854 | // move the progress bar forward on timed intervals, if configured |
| 855 | int duration = progressScopeDuration; |
| 856 | if (progressBarType == DETERMINATE && duration > 0) { |
| 857 | double elapsed = now() - progressScopeTime; |
| 858 | float p = 1.0 * elapsed / duration; |
| 859 | if (p > 1.0) p = 1.0; |
| 860 | if (p > progress) { |
| 861 | progress = p; |
| 862 | redraw = true; |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | if (redraw) update_progress_locked(); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 869 | double end = now(); |
| 870 | // minimum of 20ms delay between frames |
| 871 | double delay = interval - (end - start); |
| 872 | if (delay < 0.02) delay = 0.02; |
| 873 | usleep(static_cast<useconds_t>(delay * 1000000)); |
| 874 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 875 | } |
| 876 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 877 | std::unique_ptr<GRSurface> ScreenRecoveryUI::LoadBitmap(const std::string& filename) { |
| 878 | GRSurface* surface; |
| 879 | if (auto result = res_create_display_surface(filename.c_str(), &surface); result < 0) { |
| 880 | LOG(ERROR) << "Failed to load bitmap " << filename << " (error " << result << ")"; |
| 881 | return nullptr; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 882 | } |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 883 | return std::unique_ptr<GRSurface>(surface); |
Doug Zongker | eac881c | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 884 | } |
| 885 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 886 | std::unique_ptr<GRSurface> ScreenRecoveryUI::LoadLocalizedBitmap(const std::string& filename) { |
| 887 | GRSurface* surface; |
| 888 | if (auto result = res_create_localized_alpha_surface(filename.c_str(), locale_.c_str(), &surface); |
| 889 | result < 0) { |
| 890 | LOG(ERROR) << "Failed to load bitmap " << filename << " (error " << result << ")"; |
| 891 | return nullptr; |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 892 | } |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 893 | return std::unique_ptr<GRSurface>(surface); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 894 | } |
| 895 | |
Elliott Hughes | aa0d6af | 2015-04-08 12:42:50 -0700 | [diff] [blame] | 896 | static char** Alloc2d(size_t rows, size_t cols) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 897 | char** result = new char*[rows]; |
| 898 | for (size_t i = 0; i < rows; ++i) { |
| 899 | result[i] = new char[cols]; |
| 900 | memset(result[i], 0, cols); |
| 901 | } |
| 902 | return result; |
Elliott Hughes | aa0d6af | 2015-04-08 12:42:50 -0700 | [diff] [blame] | 903 | } |
| 904 | |
Tianjie Xu | 35926c4 | 2016-04-28 18:06:26 -0700 | [diff] [blame] | 905 | // Choose the right background string to display during update. |
| 906 | void ScreenRecoveryUI::SetSystemUpdateText(bool security_update) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 907 | if (security_update) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 908 | installing_text_ = LoadLocalizedBitmap("installing_security_text"); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 909 | } else { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 910 | installing_text_ = LoadLocalizedBitmap("installing_text"); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 911 | } |
| 912 | Redraw(); |
Tianjie Xu | 35926c4 | 2016-04-28 18:06:26 -0700 | [diff] [blame] | 913 | } |
| 914 | |
Sen Jiang | d530449 | 2016-12-09 16:20:49 -0800 | [diff] [blame] | 915 | bool ScreenRecoveryUI::InitTextParams() { |
Tao Bao | ba4edb3 | 2018-06-13 11:22:50 -0700 | [diff] [blame] | 916 | // gr_init() would return successfully on font initialization failure. |
| 917 | if (gr_sys_font() == nullptr) { |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 918 | return false; |
| 919 | } |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 920 | gr_font_size(gr_sys_font(), &char_width_, &char_height_); |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 921 | gr_font_size(gr_menu_font(), &menu_char_width_, &menu_char_height_); |
Tao Bao | 0bc88de | 2018-07-31 14:53:16 -0700 | [diff] [blame] | 922 | text_rows_ = (ScreenHeight() - margin_height_ * 2) / char_height_; |
| 923 | text_cols_ = (ScreenWidth() - margin_width_ * 2) / char_width_; |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 924 | return true; |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 925 | } |
| 926 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 927 | bool ScreenRecoveryUI::LoadWipeDataMenuText() { |
Tianjie Xu | 1a0a30a | 2018-10-25 15:22:07 -0700 | [diff] [blame] | 928 | // Ignores the errors since the member variables will stay as nullptr. |
| 929 | cancel_wipe_data_text_ = LoadLocalizedBitmap("cancel_wipe_data_text"); |
| 930 | factory_data_reset_text_ = LoadLocalizedBitmap("factory_data_reset_text"); |
| 931 | try_again_text_ = LoadLocalizedBitmap("try_again_text"); |
| 932 | wipe_data_confirmation_text_ = LoadLocalizedBitmap("wipe_data_confirmation_text"); |
| 933 | wipe_data_menu_header_text_ = LoadLocalizedBitmap("wipe_data_menu_header_text"); |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 934 | return true; |
| 935 | } |
| 936 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 937 | bool ScreenRecoveryUI::Init(const std::string& locale) { |
| 938 | RecoveryUI::Init(locale); |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 939 | |
Tao Bao | ba4edb3 | 2018-06-13 11:22:50 -0700 | [diff] [blame] | 940 | if (gr_init() == -1) { |
| 941 | return false; |
| 942 | } |
| 943 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 944 | if (!InitTextParams()) { |
| 945 | return false; |
| 946 | } |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 947 | menu_draw_funcs_ = std::make_unique<MenuDrawFunctions>(*this); |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 948 | |
Michael Bestas | 47bc4be | 2019-03-23 17:28:22 +0200 | [diff] [blame] | 949 | if (blank_unblank_on_init_) { |
| 950 | gr_fb_blank(true); |
| 951 | gr_fb_blank(false); |
| 952 | } |
| 953 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 954 | // Are we portrait or landscape? |
| 955 | layout_ = (gr_fb_width() > gr_fb_height()) ? LANDSCAPE : PORTRAIT; |
| 956 | // Are we the large variant of our base layout? |
| 957 | if (gr_fb_height() > PixelsFromDp(800)) ++layout_; |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 958 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 959 | text_ = Alloc2d(text_rows_, text_cols_ + 1); |
| 960 | file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1); |
Doug Zongker | 55a36ac | 2013-03-04 15:49:02 -0800 | [diff] [blame] | 961 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 962 | text_col_ = text_row_ = 0; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 963 | |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 964 | // Set up the locale info. |
| 965 | SetLocale(locale); |
| 966 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 967 | error_icon_ = LoadBitmap("icon_error"); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 968 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 969 | progress_bar_empty_ = LoadBitmap("progress_empty"); |
| 970 | progress_bar_fill_ = LoadBitmap("progress_fill"); |
| 971 | stage_marker_empty_ = LoadBitmap("stage_empty"); |
| 972 | stage_marker_fill_ = LoadBitmap("stage_fill"); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 973 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 974 | erasing_text_ = LoadLocalizedBitmap("erasing_text"); |
| 975 | no_command_text_ = LoadLocalizedBitmap("no_command_text"); |
| 976 | error_text_ = LoadLocalizedBitmap("error_text"); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 977 | |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 978 | lineage_logo_ = LoadBitmap("logo_image"); |
Alessandro Astone | 2effe77 | 2020-02-26 17:25:54 +0100 | [diff] [blame] | 979 | if (android::base::GetBoolProperty("ro.boot.dynamic_partitions", false) || |
| 980 | android::base::GetBoolProperty("ro.fastbootd.available", false)) { |
David Anderson | 983e2d5 | 2019-01-02 11:35:38 -0800 | [diff] [blame] | 981 | fastbootd_logo_ = LoadBitmap("fastbootd"); |
| 982 | } |
| 983 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 984 | // Background text for "installing_update" could be "installing update" or |
| 985 | // "installing security update". It will be set after Init() according to the commands in BCB. |
| 986 | installing_text_.reset(); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 987 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 988 | LoadWipeDataMenuText(); |
| 989 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 990 | LoadAnimation(); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 991 | |
Tao Bao | 26ea959 | 2018-05-09 16:32:02 -0700 | [diff] [blame] | 992 | // Keep the progress bar updated, even when the process is otherwise busy. |
| 993 | progress_thread_ = std::thread(&ScreenRecoveryUI::ProgressThreadLoop, this); |
Sen Jiang | d530449 | 2016-12-09 16:20:49 -0800 | [diff] [blame] | 994 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 995 | return true; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 996 | } |
| 997 | |
Tao Bao | 551d2c3 | 2018-05-09 20:53:13 -0700 | [diff] [blame] | 998 | std::string ScreenRecoveryUI::GetLocale() const { |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 999 | return locale_; |
| 1000 | } |
| 1001 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 1002 | void ScreenRecoveryUI::LoadAnimation() { |
Tao Bao | 6cd8168 | 2018-05-03 21:53:11 -0700 | [diff] [blame] | 1003 | std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(Paths::Get().resource_dir().c_str()), |
| 1004 | closedir); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1005 | dirent* de; |
| 1006 | std::vector<std::string> intro_frame_names; |
| 1007 | std::vector<std::string> loop_frame_names; |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 1008 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1009 | while ((de = readdir(dir.get())) != nullptr) { |
| 1010 | int value, num_chars; |
| 1011 | if (sscanf(de->d_name, "intro%d%n.png", &value, &num_chars) == 1) { |
| 1012 | intro_frame_names.emplace_back(de->d_name, num_chars); |
| 1013 | } else if (sscanf(de->d_name, "loop%d%n.png", &value, &num_chars) == 1) { |
| 1014 | loop_frame_names.emplace_back(de->d_name, num_chars); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 1015 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1016 | } |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 1017 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1018 | size_t intro_frames = intro_frame_names.size(); |
| 1019 | size_t loop_frames = loop_frame_names.size(); |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 1020 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1021 | // It's okay to not have an intro. |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1022 | if (intro_frames == 0) intro_done_ = true; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1023 | // But you must have an animation. |
| 1024 | if (loop_frames == 0) abort(); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 1025 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1026 | std::sort(intro_frame_names.begin(), intro_frame_names.end()); |
| 1027 | std::sort(loop_frame_names.begin(), loop_frame_names.end()); |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 1028 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1029 | intro_frames_.clear(); |
| 1030 | intro_frames_.reserve(intro_frames); |
| 1031 | for (const auto& frame_name : intro_frame_names) { |
| 1032 | intro_frames_.emplace_back(LoadBitmap(frame_name)); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1033 | } |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 1034 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1035 | loop_frames_.clear(); |
| 1036 | loop_frames_.reserve(loop_frames); |
| 1037 | for (const auto& frame_name : loop_frame_names) { |
| 1038 | loop_frames_.emplace_back(LoadBitmap(frame_name)); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1039 | } |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1042 | void ScreenRecoveryUI::SetBackground(Icon icon) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1043 | std::lock_guard<std::mutex> lg(updateMutex); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1044 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1045 | current_icon_ = icon; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1046 | update_screen_locked(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1049 | void ScreenRecoveryUI::SetProgressType(ProgressType type) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1050 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1051 | if (progressBarType != type) { |
| 1052 | progressBarType = type; |
| 1053 | } |
| 1054 | progressScopeStart = 0; |
| 1055 | progressScopeSize = 0; |
| 1056 | progress = 0; |
| 1057 | update_progress_locked(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1058 | } |
| 1059 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1060 | void ScreenRecoveryUI::ShowProgress(float portion, float seconds) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1061 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1062 | progressBarType = DETERMINATE; |
| 1063 | progressScopeStart += progressScopeSize; |
| 1064 | progressScopeSize = portion; |
| 1065 | progressScopeTime = now(); |
| 1066 | progressScopeDuration = seconds; |
| 1067 | progress = 0; |
| 1068 | update_progress_locked(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1069 | } |
| 1070 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1071 | void ScreenRecoveryUI::SetProgress(float fraction) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1072 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1073 | if (fraction < 0.0) fraction = 0.0; |
| 1074 | if (fraction > 1.0) fraction = 1.0; |
| 1075 | if (progressBarType == DETERMINATE && fraction > progress) { |
| 1076 | // Skip updates that aren't visibly different. |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1077 | int width = gr_get_width(progress_bar_empty_.get()); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1078 | float scale = width * progressScopeSize; |
| 1079 | if ((int)(progress * scale) != (int)(fraction * scale)) { |
| 1080 | progress = fraction; |
| 1081 | update_progress_locked(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1082 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1083 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1084 | } |
| 1085 | |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1086 | void ScreenRecoveryUI::SetStage(int current, int max) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1087 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1088 | stage = current; |
| 1089 | max_stage = max; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1090 | } |
| 1091 | |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 1092 | void ScreenRecoveryUI::PrintV(const char* fmt, bool copy_to_stdout, va_list ap) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1093 | std::string str; |
| 1094 | android::base::StringAppendV(&str, fmt, ap); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1095 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1096 | if (copy_to_stdout) { |
| 1097 | fputs(str.c_str(), stdout); |
| 1098 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1099 | |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1100 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1101 | if (text_rows_ > 0 && text_cols_ > 0) { |
| 1102 | for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) { |
| 1103 | if (*ptr == '\n' || text_col_ >= text_cols_) { |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 1104 | text_[text_row_][text_col_] = '\0'; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1105 | text_col_ = 0; |
| 1106 | text_row_ = (text_row_ + 1) % text_rows_; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1107 | } |
| 1108 | if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1109 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1110 | text_[text_row_][text_col_] = '\0'; |
| 1111 | update_screen_locked(); |
| 1112 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1113 | } |
| 1114 | |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 1115 | void ScreenRecoveryUI::Print(const char* fmt, ...) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1116 | va_list ap; |
| 1117 | va_start(ap, fmt); |
| 1118 | PrintV(fmt, true, ap); |
| 1119 | va_end(ap); |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 1120 | } |
| 1121 | |
Tianjie Xu | b5108c3 | 2018-08-20 13:40:47 -0700 | [diff] [blame] | 1122 | void ScreenRecoveryUI::PrintOnScreenOnly(const char* fmt, ...) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1123 | va_list ap; |
| 1124 | va_start(ap, fmt); |
| 1125 | PrintV(fmt, false, ap); |
| 1126 | va_end(ap); |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1129 | void ScreenRecoveryUI::PutChar(char ch) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1130 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1131 | if (ch != '\n') text_[text_row_][text_col_++] = ch; |
| 1132 | if (ch == '\n' || text_col_ >= text_cols_) { |
| 1133 | text_col_ = 0; |
| 1134 | ++text_row_; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1135 | } |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1136 | } |
| 1137 | |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1138 | void ScreenRecoveryUI::ClearText() { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1139 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1140 | text_col_ = 0; |
| 1141 | text_row_ = 0; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1142 | for (size_t i = 0; i < text_rows_; ++i) { |
| 1143 | memset(text_[i], 0, text_cols_ + 1); |
| 1144 | } |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
| 1147 | void ScreenRecoveryUI::ShowFile(FILE* fp) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1148 | std::vector<off_t> offsets; |
| 1149 | offsets.push_back(ftello(fp)); |
| 1150 | ClearText(); |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1151 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1152 | struct stat sb; |
| 1153 | fstat(fileno(fp), &sb); |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1154 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1155 | bool show_prompt = false; |
| 1156 | while (true) { |
| 1157 | if (show_prompt) { |
| 1158 | PrintOnScreenOnly("--(%d%% of %d bytes)--", |
| 1159 | static_cast<int>(100 * (double(ftello(fp)) / double(sb.st_size))), |
| 1160 | static_cast<int>(sb.st_size)); |
| 1161 | Redraw(); |
| 1162 | while (show_prompt) { |
| 1163 | show_prompt = false; |
| 1164 | int key = WaitKey(); |
Jerry Zhang | b76af93 | 2018-05-22 12:08:35 -0700 | [diff] [blame] | 1165 | if (key == static_cast<int>(KeyError::INTERRUPTED)) return; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1166 | if (key == KEY_POWER || key == KEY_ENTER) { |
| 1167 | return; |
| 1168 | } else if (key == KEY_UP || key == KEY_VOLUMEUP) { |
| 1169 | if (offsets.size() <= 1) { |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1170 | show_prompt = true; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1171 | } else { |
| 1172 | offsets.pop_back(); |
| 1173 | fseek(fp, offsets.back(), SEEK_SET); |
| 1174 | } |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1175 | } else { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1176 | if (feof(fp)) { |
| 1177 | return; |
| 1178 | } |
| 1179 | offsets.push_back(ftello(fp)); |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1180 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1181 | } |
| 1182 | ClearText(); |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1183 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1184 | |
| 1185 | int ch = getc(fp); |
| 1186 | if (ch == EOF) { |
| 1187 | while (text_row_ < text_rows_ - 1) PutChar('\n'); |
| 1188 | show_prompt = true; |
| 1189 | } else { |
| 1190 | PutChar(ch); |
| 1191 | if (text_col_ == 0 && text_row_ >= text_rows_ - 1) { |
| 1192 | show_prompt = true; |
| 1193 | } |
| 1194 | } |
| 1195 | } |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 1196 | } |
| 1197 | |
Tao Bao | 1d156b9 | 2018-05-02 12:43:18 -0700 | [diff] [blame] | 1198 | void ScreenRecoveryUI::ShowFile(const std::string& filename) { |
| 1199 | std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(filename.c_str(), "re"), fclose); |
| 1200 | if (!fp) { |
| 1201 | Print(" Unable to open %s: %s\n", filename.c_str(), strerror(errno)); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1202 | return; |
| 1203 | } |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 1204 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1205 | char** old_text = text_; |
| 1206 | size_t old_text_col = text_col_; |
| 1207 | size_t old_text_row = text_row_; |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 1208 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1209 | // Swap in the alternate screen and clear it. |
| 1210 | text_ = file_viewer_text_; |
| 1211 | ClearText(); |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 1212 | |
Tao Bao | 1d156b9 | 2018-05-02 12:43:18 -0700 | [diff] [blame] | 1213 | ShowFile(fp.get()); |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 1214 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1215 | text_ = old_text; |
| 1216 | text_col_ = old_text_col; |
| 1217 | text_row_ = old_text_row; |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1218 | } |
| 1219 | |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1220 | std::unique_ptr<Menu> ScreenRecoveryUI::CreateMenu( |
| 1221 | const GRSurface* graphic_header, const std::vector<const GRSurface*>& graphic_items, |
| 1222 | const std::vector<std::string>& text_headers, const std::vector<std::string>& text_items, |
| 1223 | size_t initial_selection) const { |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1224 | // horizontal unusable area: margin width + menu indent |
| 1225 | size_t max_width = ScreenWidth() - margin_width_ - kMenuIndent; |
| 1226 | // vertical unusable area: margin height + title lines + helper message + high light bar. |
| 1227 | // It is safe to reserve more space. |
| 1228 | size_t max_height = ScreenHeight() - margin_height_ - char_height_ * (title_lines_.size() + 3); |
| 1229 | if (GraphicMenu::Validate(max_width, max_height, graphic_header, graphic_items)) { |
| 1230 | return std::make_unique<GraphicMenu>(graphic_header, graphic_items, initial_selection, *this); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1231 | } |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1232 | |
| 1233 | fprintf(stderr, "Failed to initialize graphic menu, falling back to use the text menu.\n"); |
| 1234 | |
| 1235 | return CreateMenu(text_headers, text_items, initial_selection); |
| 1236 | } |
| 1237 | |
| 1238 | std::unique_ptr<Menu> ScreenRecoveryUI::CreateMenu(const std::vector<std::string>& text_headers, |
| 1239 | const std::vector<std::string>& text_items, |
| 1240 | size_t initial_selection) const { |
Alessandro Astone | c6ddbac | 2020-03-09 23:17:50 +0100 | [diff] [blame^] | 1241 | int menu_char_width = MenuCharWidth(); |
| 1242 | int menu_char_height = MenuCharHeight(); |
| 1243 | int menu_item_padding = MenuItemPadding(); |
| 1244 | int menu_rows = (ScreenHeight() - margin_height_*2 - gr_get_height(lineage_logo_.get())) |
| 1245 | / (menu_char_height + 2 * menu_item_padding) - text_headers.size(); |
| 1246 | int menu_cols = (ScreenWidth() - margin_width_*2 - kMenuIndent) / menu_char_width; |
| 1247 | return std::make_unique<TextMenu>(scrollable_menu_, menu_rows, menu_cols, text_headers, text_items, |
| 1248 | initial_selection, menu_char_height, *menu_draw_funcs_); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1249 | } |
| 1250 | |
| 1251 | int ScreenRecoveryUI::SelectMenu(int sel) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1252 | std::lock_guard<std::mutex> lg(updateMutex); |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 1253 | if (menu_) { |
| 1254 | int old_sel = menu_->selection(); |
| 1255 | sel = menu_->Select(sel); |
Elliott Hughes | fc06f87 | 2015-03-23 13:45:31 -0700 | [diff] [blame] | 1256 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 1257 | if (sel != old_sel) { |
| 1258 | update_screen_locked(); |
| 1259 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1260 | } |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1261 | return sel; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1262 | } |
| 1263 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1264 | size_t ScreenRecoveryUI::ShowMenu(std::unique_ptr<Menu>&& menu, bool menu_only, |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 1265 | const std::function<int(int, bool)>& key_handler) { |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1266 | // Throw away keys pressed previously, so user doesn't accidentally trigger menu items. |
| 1267 | FlushKeys(); |
| 1268 | |
Jerry Zhang | b76af93 | 2018-05-22 12:08:35 -0700 | [diff] [blame] | 1269 | // If there is a key interrupt in progress, return KeyError::INTERRUPTED without starting the |
| 1270 | // menu. |
| 1271 | if (IsKeyInterrupted()) return static_cast<size_t>(KeyError::INTERRUPTED); |
| 1272 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1273 | CHECK(menu != nullptr); |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1274 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1275 | // Starts and displays the menu |
| 1276 | menu_ = std::move(menu); |
| 1277 | Redraw(); |
| 1278 | |
| 1279 | int selected = menu_->selection(); |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1280 | int chosen_item = -1; |
| 1281 | while (chosen_item < 0) { |
| 1282 | int key = WaitKey(); |
Jerry Zhang | b76af93 | 2018-05-22 12:08:35 -0700 | [diff] [blame] | 1283 | if (key == static_cast<int>(KeyError::INTERRUPTED)) { // WaitKey() was interrupted. |
| 1284 | return static_cast<size_t>(KeyError::INTERRUPTED); |
| 1285 | } |
| 1286 | if (key == static_cast<int>(KeyError::TIMED_OUT)) { // WaitKey() timed out. |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1287 | if (WasTextEverVisible()) { |
| 1288 | continue; |
| 1289 | } else { |
| 1290 | LOG(INFO) << "Timed out waiting for key input; rebooting."; |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1291 | menu_.reset(); |
| 1292 | Redraw(); |
Jerry Zhang | b76af93 | 2018-05-22 12:08:35 -0700 | [diff] [blame] | 1293 | return static_cast<size_t>(KeyError::TIMED_OUT); |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1294 | } |
| 1295 | } |
| 1296 | |
| 1297 | bool visible = IsTextVisible(); |
| 1298 | int action = key_handler(key, visible); |
| 1299 | if (action < 0) { |
| 1300 | switch (action) { |
| 1301 | case Device::kHighlightUp: |
| 1302 | selected = SelectMenu(--selected); |
| 1303 | break; |
| 1304 | case Device::kHighlightDown: |
| 1305 | selected = SelectMenu(++selected); |
| 1306 | break; |
| 1307 | case Device::kInvokeItem: |
| 1308 | chosen_item = selected; |
| 1309 | break; |
| 1310 | case Device::kNoAction: |
| 1311 | break; |
Tom Marshall | a9ac955 | 2018-12-17 15:57:44 -0800 | [diff] [blame] | 1312 | case Device::kRefresh: |
| 1313 | chosen_item = Device::kRefresh; |
| 1314 | break; |
Tom Marshall | d23b510 | 2017-08-24 13:50:01 +0000 | [diff] [blame] | 1315 | case Device::kGoBack: |
| 1316 | chosen_item = Device::kGoBack; |
| 1317 | break; |
| 1318 | case Device::kGoHome: |
| 1319 | chosen_item = Device::kGoHome; |
| 1320 | break; |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1321 | } |
| 1322 | } else if (!menu_only) { |
| 1323 | chosen_item = action; |
| 1324 | } |
Tom Marshall | a9ac955 | 2018-12-17 15:57:44 -0800 | [diff] [blame] | 1325 | |
| 1326 | if (chosen_item == Device::kGoBack || chosen_item == Device::kGoHome || |
| 1327 | chosen_item == Device::kRefresh) { |
Tom Marshall | d23b510 | 2017-08-24 13:50:01 +0000 | [diff] [blame] | 1328 | break; |
| 1329 | } |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1330 | } |
| 1331 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1332 | menu_.reset(); |
| 1333 | Redraw(); |
| 1334 | |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 1335 | return chosen_item; |
| 1336 | } |
| 1337 | |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1338 | size_t ScreenRecoveryUI::ShowMenu(const std::vector<std::string>& headers, |
| 1339 | const std::vector<std::string>& items, size_t initial_selection, |
| 1340 | bool menu_only, |
| 1341 | const std::function<int(int, bool)>& key_handler) { |
| 1342 | auto menu = CreateMenu(headers, items, initial_selection); |
| 1343 | if (menu == nullptr) { |
| 1344 | return initial_selection; |
| 1345 | } |
| 1346 | |
| 1347 | return ShowMenu(CreateMenu(headers, items, initial_selection), menu_only, key_handler); |
| 1348 | } |
| 1349 | |
| 1350 | size_t ScreenRecoveryUI::ShowPromptWipeDataMenu(const std::vector<std::string>& backup_headers, |
| 1351 | const std::vector<std::string>& backup_items, |
| 1352 | const std::function<int(int, bool)>& key_handler) { |
Tao Bao | da409fb | 2018-10-21 23:36:26 -0700 | [diff] [blame] | 1353 | auto wipe_data_menu = CreateMenu(wipe_data_menu_header_text_.get(), |
| 1354 | { try_again_text_.get(), factory_data_reset_text_.get() }, |
| 1355 | backup_headers, backup_items, 0); |
Tianjie Xu | b99e606 | 2018-10-16 15:13:09 -0700 | [diff] [blame] | 1356 | if (wipe_data_menu == nullptr) { |
| 1357 | return 0; |
| 1358 | } |
| 1359 | |
| 1360 | return ShowMenu(std::move(wipe_data_menu), true, key_handler); |
| 1361 | } |
| 1362 | |
Tianjie Xu | 1a0a30a | 2018-10-25 15:22:07 -0700 | [diff] [blame] | 1363 | size_t ScreenRecoveryUI::ShowPromptWipeDataConfirmationMenu( |
| 1364 | const std::vector<std::string>& backup_headers, const std::vector<std::string>& backup_items, |
| 1365 | const std::function<int(int, bool)>& key_handler) { |
| 1366 | auto confirmation_menu = |
| 1367 | CreateMenu(wipe_data_confirmation_text_.get(), |
| 1368 | { cancel_wipe_data_text_.get(), factory_data_reset_text_.get() }, backup_headers, |
| 1369 | backup_items, 0); |
| 1370 | if (confirmation_menu == nullptr) { |
| 1371 | return 0; |
| 1372 | } |
| 1373 | |
| 1374 | return ShowMenu(std::move(confirmation_menu), true, key_handler); |
| 1375 | } |
| 1376 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1377 | bool ScreenRecoveryUI::IsTextVisible() { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1378 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1379 | int visible = show_text; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1380 | return visible; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1381 | } |
| 1382 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1383 | bool ScreenRecoveryUI::WasTextEverVisible() { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1384 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1385 | int ever_visible = show_text_ever; |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1386 | return ever_visible; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1387 | } |
| 1388 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1389 | void ScreenRecoveryUI::ShowText(bool visible) { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1390 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1391 | show_text = visible; |
| 1392 | if (show_text) show_text_ever = true; |
| 1393 | update_screen_locked(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1394 | } |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 1395 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 1396 | void ScreenRecoveryUI::Redraw() { |
Jerry Zhang | b31f9ce | 2018-05-21 16:04:57 -0700 | [diff] [blame] | 1397 | std::lock_guard<std::mutex> lg(updateMutex); |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1398 | update_screen_locked(); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 1399 | } |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 1400 | |
| 1401 | void ScreenRecoveryUI::KeyLongPress(int) { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 1402 | // Redraw so that if we're in the menu, the highlight |
| 1403 | // will change color to indicate a successful long press. |
| 1404 | Redraw(); |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 1405 | } |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 1406 | |
| 1407 | void ScreenRecoveryUI::SetLocale(const std::string& new_locale) { |
| 1408 | locale_ = new_locale; |
| 1409 | rtl_locale_ = false; |
| 1410 | |
| 1411 | if (!new_locale.empty()) { |
Tao Bao | 347a659 | 2018-05-08 15:58:29 -0700 | [diff] [blame] | 1412 | size_t separator = new_locale.find('-'); |
| 1413 | // lang has the language prefix prior to the separator, or full string if none exists. |
| 1414 | std::string lang = new_locale.substr(0, separator); |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 1415 | |
| 1416 | // A bit cheesy: keep an explicit list of supported RTL languages. |
| 1417 | if (lang == "ar" || // Arabic |
| 1418 | lang == "fa" || // Persian (Farsi) |
| 1419 | lang == "he" || // Hebrew (new language code) |
| 1420 | lang == "iw" || // Hebrew (old language code) |
| 1421 | lang == "ur") { // Urdu |
| 1422 | rtl_locale_ = true; |
| 1423 | } |
| 1424 | } |
| 1425 | } |