2009-03-04 04:28:42 +01:00
|
|
|
/*
|
2011-10-29 00:13:10 +02:00
|
|
|
* Copyright (C) 2011 The Android Open Source Project
|
2009-03-04 04:28:42 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-02-01 08:03:10 +01:00
|
|
|
#include "screen_ui.h"
|
|
|
|
|
2016-04-15 01:49:04 +02:00
|
|
|
#include <dirent.h>
|
2011-03-08 21:25:05 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <linux/input.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-03-08 21:25:05 +01:00
|
|
|
#include <sys/stat.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <sys/time.h>
|
2011-03-08 21:25:05 +01:00
|
|
|
#include <sys/types.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2018-05-02 00:56:05 +02:00
|
|
|
#include <algorithm>
|
2017-09-21 02:53:46 +02:00
|
|
|
#include <memory>
|
2017-01-03 19:15:33 +01:00
|
|
|
#include <string>
|
2017-09-21 02:53:46 +02:00
|
|
|
#include <unordered_map>
|
2015-04-11 04:12:01 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2016-08-06 03:00:04 +02:00
|
|
|
#include <android-base/logging.h>
|
2016-09-24 00:30:55 +02:00
|
|
|
#include <android-base/properties.h>
|
2015-12-05 00:30:20 +01:00
|
|
|
#include <android-base/stringprintf.h>
|
2017-09-09 06:25:32 +02:00
|
|
|
#include <android-base/strings.h>
|
2017-02-01 08:03:10 +01:00
|
|
|
#include <minui/minui.h>
|
2015-05-20 02:02:16 +02:00
|
|
|
|
2011-11-01 19:00:20 +01:00
|
|
|
#include "device.h"
|
|
|
|
#include "ui.h"
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2011-03-01 23:04:34 +01:00
|
|
|
// Return the current time as a double (including fractions of a second).
|
|
|
|
static double now() {
|
2017-06-24 07:23:50 +02:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, nullptr);
|
|
|
|
return tv.tv_sec + tv.tv_usec / 1000000.0;
|
2011-03-01 23:04:34 +01:00
|
|
|
}
|
|
|
|
|
2018-05-02 00:56:05 +02:00
|
|
|
Menu::Menu(bool scrollable, size_t max_items, size_t max_length,
|
|
|
|
const std::vector<std::string>& headers, const std::vector<std::string>& items,
|
|
|
|
size_t initial_selection)
|
2018-03-21 00:07:39 +01:00
|
|
|
: scrollable_(scrollable),
|
|
|
|
max_display_items_(max_items),
|
|
|
|
max_item_length_(max_length),
|
2018-05-03 00:46:11 +02:00
|
|
|
text_headers_(headers),
|
2018-03-21 00:07:39 +01:00
|
|
|
menu_start_(0),
|
2018-05-03 00:46:11 +02:00
|
|
|
selection_(initial_selection) {
|
2018-03-21 00:07:39 +01:00
|
|
|
CHECK_LE(max_items, static_cast<size_t>(std::numeric_limits<int>::max()));
|
2018-05-03 00:46:11 +02:00
|
|
|
|
|
|
|
// It's fine to have more entries than text_rows_ if scrollable menu is supported.
|
2018-05-02 00:56:05 +02:00
|
|
|
size_t items_count = scrollable_ ? items.size() : std::min(items.size(), max_display_items_);
|
|
|
|
for (size_t i = 0; i < items_count; ++i) {
|
|
|
|
text_items_.emplace_back(items[i].substr(0, max_item_length_));
|
2018-05-03 00:46:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CHECK(!text_items_.empty());
|
2018-03-21 00:07:39 +01:00
|
|
|
}
|
|
|
|
|
2018-05-02 00:56:05 +02:00
|
|
|
const std::vector<std::string>& Menu::text_headers() const {
|
2018-03-21 00:07:39 +01:00
|
|
|
return text_headers_;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Menu::TextItem(size_t index) const {
|
|
|
|
CHECK_LT(index, text_items_.size());
|
|
|
|
|
|
|
|
return text_items_[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t Menu::MenuStart() const {
|
|
|
|
return menu_start_;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t Menu::MenuEnd() const {
|
|
|
|
return std::min(ItemsCount(), menu_start_ + max_display_items_);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t Menu::ItemsCount() const {
|
|
|
|
return text_items_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Menu::ItemsOverflow(std::string* cur_selection_str) const {
|
2018-05-03 00:46:11 +02:00
|
|
|
if (!scrollable_ || ItemsCount() <= max_display_items_) {
|
2018-03-21 00:07:39 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*cur_selection_str =
|
2018-05-02 00:56:05 +02:00
|
|
|
android::base::StringPrintf("Current item: %zu/%zu", selection_ + 1, ItemsCount());
|
2018-03-21 00:07:39 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(xunchang) modify the function parameters to button up & down.
|
|
|
|
int Menu::Select(int sel) {
|
|
|
|
CHECK_LE(ItemsCount(), static_cast<size_t>(std::numeric_limits<int>::max()));
|
|
|
|
int count = ItemsCount();
|
|
|
|
|
|
|
|
// Wraps the selection at boundary if the menu is not scrollable.
|
|
|
|
if (!scrollable_) {
|
|
|
|
if (sel < 0) {
|
|
|
|
selection_ = count - 1;
|
|
|
|
} else if (sel >= count) {
|
|
|
|
selection_ = 0;
|
|
|
|
} else {
|
|
|
|
selection_ = sel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return selection_;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sel < 0) {
|
|
|
|
selection_ = 0;
|
|
|
|
} else if (sel >= count) {
|
|
|
|
selection_ = count - 1;
|
|
|
|
} else {
|
|
|
|
if (static_cast<size_t>(sel) < menu_start_) {
|
|
|
|
menu_start_--;
|
|
|
|
} else if (static_cast<size_t>(sel) >= MenuEnd()) {
|
|
|
|
menu_start_++;
|
|
|
|
}
|
|
|
|
selection_ = sel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return selection_;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScreenRecoveryUI::ScreenRecoveryUI() : ScreenRecoveryUI(false) {}
|
|
|
|
|
|
|
|
ScreenRecoveryUI::ScreenRecoveryUI(bool scrollable_menu)
|
2017-06-21 03:11:21 +02:00
|
|
|
: kMarginWidth(RECOVERY_UI_MARGIN_WIDTH),
|
|
|
|
kMarginHeight(RECOVERY_UI_MARGIN_HEIGHT),
|
2017-08-03 02:11:04 +02:00
|
|
|
kAnimationFps(RECOVERY_UI_ANIMATION_FPS),
|
2017-09-10 20:28:32 +02:00
|
|
|
kDensity(static_cast<float>(android::base::GetIntProperty("ro.sf.lcd_density", 160)) / 160.f),
|
2017-06-20 08:10:44 +02:00
|
|
|
currentIcon(NONE),
|
2017-01-03 19:15:33 +01:00
|
|
|
progressBarType(EMPTY),
|
|
|
|
progressScopeStart(0),
|
|
|
|
progressScopeSize(0),
|
|
|
|
progress(0),
|
|
|
|
pagesIdentical(false),
|
|
|
|
text_cols_(0),
|
|
|
|
text_rows_(0),
|
|
|
|
text_(nullptr),
|
|
|
|
text_col_(0),
|
|
|
|
text_row_(0),
|
|
|
|
show_text(false),
|
|
|
|
show_text_ever(false),
|
2018-03-21 00:07:39 +01:00
|
|
|
scrollable_menu_(scrollable_menu),
|
2017-01-03 19:15:33 +01:00
|
|
|
file_viewer_text_(nullptr),
|
|
|
|
intro_frames(0),
|
|
|
|
loop_frames(0),
|
|
|
|
current_frame(0),
|
|
|
|
intro_done(false),
|
|
|
|
stage(-1),
|
|
|
|
max_stage(-1),
|
2017-02-01 08:03:10 +01:00
|
|
|
locale_(""),
|
|
|
|
rtl_locale_(false),
|
2017-01-03 19:15:33 +01:00
|
|
|
updateMutex(PTHREAD_MUTEX_INITIALIZER) {}
|
2011-10-29 00:13:10 +02:00
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
GRSurface* ScreenRecoveryUI::GetCurrentFrame() const {
|
2017-06-24 07:23:50 +02:00
|
|
|
if (currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) {
|
|
|
|
return intro_done ? loopFrames[current_frame] : introFrames[current_frame];
|
|
|
|
}
|
|
|
|
return error_icon;
|
2016-04-15 01:49:04 +02:00
|
|
|
}
|
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
GRSurface* ScreenRecoveryUI::GetCurrentText() const {
|
2017-06-24 07:23:50 +02:00
|
|
|
switch (currentIcon) {
|
|
|
|
case ERASING:
|
|
|
|
return erasing_text;
|
|
|
|
case ERROR:
|
|
|
|
return error_text;
|
|
|
|
case INSTALLING_UPDATE:
|
|
|
|
return installing_text;
|
|
|
|
case NO_COMMAND:
|
|
|
|
return no_command_text;
|
|
|
|
case NONE:
|
|
|
|
abort();
|
|
|
|
}
|
2016-04-15 01:49:04 +02:00
|
|
|
}
|
|
|
|
|
2017-03-23 21:44:26 +01:00
|
|
|
int ScreenRecoveryUI::PixelsFromDp(int dp) const {
|
2017-09-10 20:28:32 +02:00
|
|
|
return dp * kDensity;
|
2016-04-21 02:22:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Here's the intended layout:
|
|
|
|
|
2016-07-09 02:23:41 +02:00
|
|
|
// | portrait large landscape large
|
|
|
|
// ---------+-------------------------------------------------
|
2017-06-29 23:32:05 +02:00
|
|
|
// gap |
|
2016-07-09 02:23:41 +02:00
|
|
|
// icon | (200dp)
|
|
|
|
// gap | 68dp 68dp 56dp 112dp
|
|
|
|
// text | (14sp)
|
|
|
|
// gap | 32dp 32dp 26dp 52dp
|
|
|
|
// progress | (2dp)
|
2017-06-29 23:32:05 +02:00
|
|
|
// gap |
|
2016-04-21 02:22:16 +02:00
|
|
|
|
2017-06-29 23:32:05 +02:00
|
|
|
// Note that "baseline" is actually the *top* of each icon (because that's how our drawing routines
|
|
|
|
// work), so that's the more useful measurement for calling code. We use even top and bottom gaps.
|
2016-04-21 02:22:16 +02:00
|
|
|
|
2016-07-09 02:23:41 +02:00
|
|
|
enum Layout { PORTRAIT = 0, PORTRAIT_LARGE = 1, LANDSCAPE = 2, LANDSCAPE_LARGE = 3, LAYOUT_MAX };
|
2017-06-29 23:32:05 +02:00
|
|
|
enum Dimension { TEXT = 0, ICON = 1, DIMENSION_MAX };
|
2016-07-09 02:23:41 +02:00
|
|
|
static constexpr int kLayouts[LAYOUT_MAX][DIMENSION_MAX] = {
|
2017-06-29 23:32:05 +02:00
|
|
|
{ 32, 68, }, // PORTRAIT
|
|
|
|
{ 32, 68, }, // PORTRAIT_LARGE
|
|
|
|
{ 26, 56, }, // LANDSCAPE
|
|
|
|
{ 52, 112, }, // LANDSCAPE_LARGE
|
2016-07-09 02:23:41 +02:00
|
|
|
};
|
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
int ScreenRecoveryUI::GetAnimationBaseline() const {
|
2017-06-24 07:23:50 +02:00
|
|
|
return GetTextBaseline() - PixelsFromDp(kLayouts[layout_][ICON]) - gr_get_height(loopFrames[0]);
|
2016-04-21 02:22:16 +02:00
|
|
|
}
|
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
int ScreenRecoveryUI::GetTextBaseline() const {
|
2017-06-24 07:23:50 +02:00
|
|
|
return GetProgressBaseline() - PixelsFromDp(kLayouts[layout_][TEXT]) -
|
|
|
|
gr_get_height(installing_text);
|
2016-04-21 02:22:16 +02:00
|
|
|
}
|
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
int ScreenRecoveryUI::GetProgressBaseline() const {
|
2017-06-29 23:32:05 +02:00
|
|
|
int elements_sum = gr_get_height(loopFrames[0]) + PixelsFromDp(kLayouts[layout_][ICON]) +
|
|
|
|
gr_get_height(installing_text) + PixelsFromDp(kLayouts[layout_][TEXT]) +
|
|
|
|
gr_get_height(progressBarFill);
|
2017-09-19 19:51:35 +02:00
|
|
|
int bottom_gap = (ScreenHeight() - elements_sum) / 2;
|
|
|
|
return ScreenHeight() - bottom_gap - gr_get_height(progressBarFill);
|
2016-04-21 02:22:16 +02:00
|
|
|
}
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
// Clear the screen and draw the currently selected background icon (if any).
|
2011-10-29 00:13:10 +02:00
|
|
|
// Should only be called with updateMutex locked.
|
2016-04-15 01:49:04 +02:00
|
|
|
void ScreenRecoveryUI::draw_background_locked() {
|
2017-06-24 07:23:50 +02:00
|
|
|
pagesIdentical = false;
|
|
|
|
gr_color(0, 0, 0, 255);
|
|
|
|
gr_clear();
|
|
|
|
if (currentIcon != NONE) {
|
|
|
|
if (max_stage != -1) {
|
|
|
|
int stage_height = gr_get_height(stageMarkerEmpty);
|
|
|
|
int stage_width = gr_get_width(stageMarkerEmpty);
|
2017-09-19 19:51:35 +02:00
|
|
|
int x = (ScreenWidth() - max_stage * gr_get_width(stageMarkerEmpty)) / 2;
|
|
|
|
int y = ScreenHeight() - stage_height - kMarginHeight;
|
2017-06-24 07:23:50 +02:00
|
|
|
for (int i = 0; i < max_stage; ++i) {
|
|
|
|
GRSurface* stage_surface = (i < stage) ? stageMarkerFill : stageMarkerEmpty;
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawSurface(stage_surface, 0, 0, stage_width, stage_height, x, y);
|
2017-06-24 07:23:50 +02:00
|
|
|
x += stage_width;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
|
|
|
|
GRSurface* text_surface = GetCurrentText();
|
2017-09-19 19:51:35 +02:00
|
|
|
int text_x = (ScreenWidth() - gr_get_width(text_surface)) / 2;
|
2017-06-24 07:23:50 +02:00
|
|
|
int text_y = GetTextBaseline();
|
|
|
|
gr_color(255, 255, 255, 255);
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawTextIcon(text_x, text_y, text_surface);
|
2017-06-24 07:23:50 +02:00
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2017-06-28 23:52:17 +02:00
|
|
|
// Draws the animation and progress bar (if any) on the screen. Does not flip pages. Should only be
|
|
|
|
// called with updateMutex locked.
|
2016-04-21 02:22:16 +02:00
|
|
|
void ScreenRecoveryUI::draw_foreground_locked() {
|
2017-01-03 19:15:33 +01:00
|
|
|
if (currentIcon != NONE) {
|
|
|
|
GRSurface* frame = GetCurrentFrame();
|
|
|
|
int frame_width = gr_get_width(frame);
|
|
|
|
int frame_height = gr_get_height(frame);
|
2017-09-19 19:51:35 +02:00
|
|
|
int frame_x = (ScreenWidth() - frame_width) / 2;
|
2017-01-03 19:15:33 +01:00
|
|
|
int frame_y = GetAnimationBaseline();
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawSurface(frame, 0, 0, frame_width, frame_height, frame_x, frame_y);
|
2017-01-03 19:15:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (progressBarType != EMPTY) {
|
|
|
|
int width = gr_get_width(progressBarEmpty);
|
|
|
|
int height = gr_get_height(progressBarEmpty);
|
|
|
|
|
2017-09-19 19:51:35 +02:00
|
|
|
int progress_x = (ScreenWidth() - width) / 2;
|
2017-01-03 19:15:33 +01:00
|
|
|
int progress_y = GetProgressBaseline();
|
|
|
|
|
|
|
|
// Erase behind the progress bar (in case this was a progress-only update)
|
|
|
|
gr_color(0, 0, 0, 255);
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawFill(progress_x, progress_y, width, height);
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
if (progressBarType == DETERMINATE) {
|
|
|
|
float p = progressScopeStart + progress * progressScopeSize;
|
|
|
|
int pos = static_cast<int>(p * width);
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
if (rtl_locale_) {
|
|
|
|
// Fill the progress bar from right to left.
|
|
|
|
if (pos > 0) {
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawSurface(progressBarFill, width - pos, 0, pos, height, progress_x + width - pos,
|
|
|
|
progress_y);
|
2017-01-03 19:15:33 +01:00
|
|
|
}
|
|
|
|
if (pos < width - 1) {
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawSurface(progressBarEmpty, 0, 0, width - pos, height, progress_x, progress_y);
|
2017-01-03 19:15:33 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Fill the progress bar from left to right.
|
|
|
|
if (pos > 0) {
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawSurface(progressBarFill, 0, 0, pos, height, progress_x, progress_y);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-01-03 19:15:33 +01:00
|
|
|
if (pos < width - 1) {
|
2017-09-19 19:51:35 +02:00
|
|
|
DrawSurface(progressBarEmpty, pos, 0, width - pos, height, progress_x + pos, progress_y);
|
2017-01-03 19:15:33 +01:00
|
|
|
}
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-01-03 19:15:33 +01:00
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
void ScreenRecoveryUI::SetColor(UIElement e) const {
|
2017-06-24 07:23:50 +02:00
|
|
|
switch (e) {
|
|
|
|
case INFO:
|
|
|
|
gr_color(249, 194, 0, 255);
|
|
|
|
break;
|
|
|
|
case HEADER:
|
|
|
|
gr_color(247, 0, 6, 255);
|
|
|
|
break;
|
|
|
|
case MENU:
|
|
|
|
case MENU_SEL_BG:
|
|
|
|
gr_color(0, 106, 157, 255);
|
|
|
|
break;
|
|
|
|
case MENU_SEL_BG_ACTIVE:
|
|
|
|
gr_color(0, 156, 100, 255);
|
|
|
|
break;
|
|
|
|
case MENU_SEL_FG:
|
|
|
|
gr_color(255, 255, 255, 255);
|
|
|
|
break;
|
|
|
|
case LOG:
|
|
|
|
gr_color(196, 196, 196, 255);
|
|
|
|
break;
|
|
|
|
case TEXT_FILL:
|
|
|
|
gr_color(0, 0, 0, 160);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
gr_color(255, 255, 255, 255);
|
|
|
|
break;
|
|
|
|
}
|
2013-07-31 20:28:24 +02:00
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-09-21 02:53:46 +02:00
|
|
|
void ScreenRecoveryUI::SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries,
|
|
|
|
size_t sel) {
|
|
|
|
SetLocale(locales_entries[sel]);
|
|
|
|
std::vector<std::string> text_name = { "erasing_text", "error_text", "installing_text",
|
|
|
|
"installing_security_text", "no_command_text" };
|
|
|
|
std::unordered_map<std::string, std::unique_ptr<GRSurface, decltype(&free)>> surfaces;
|
|
|
|
for (const auto& name : text_name) {
|
|
|
|
GRSurface* text_image = nullptr;
|
|
|
|
LoadLocalizedBitmap(name.c_str(), &text_image);
|
|
|
|
if (!text_image) {
|
|
|
|
Print("Failed to load %s\n", name.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
surfaces.emplace(name, std::unique_ptr<GRSurface, decltype(&free)>(text_image, &free));
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
gr_color(0, 0, 0, 255);
|
|
|
|
gr_clear();
|
|
|
|
|
|
|
|
int text_y = kMarginHeight;
|
|
|
|
int text_x = kMarginWidth;
|
|
|
|
int line_spacing = gr_sys_font()->char_height; // Put some extra space between images.
|
|
|
|
// Write the header and descriptive texts.
|
|
|
|
SetColor(INFO);
|
|
|
|
std::string header = "Show background text image";
|
2018-05-02 23:57:21 +02:00
|
|
|
text_y += DrawTextLine(text_x, text_y, header, true);
|
2017-09-21 02:53:46 +02:00
|
|
|
std::string locale_selection = android::base::StringPrintf(
|
2018-05-08 07:50:33 +02:00
|
|
|
"Current locale: %s, %zu/%zu", locales_entries[sel].c_str(), sel + 1, locales_entries.size());
|
2018-05-02 23:57:21 +02:00
|
|
|
// clang-format off
|
|
|
|
std::vector<std::string> instruction = {
|
|
|
|
locale_selection,
|
|
|
|
"Use volume up/down to switch locales and power to exit."
|
|
|
|
};
|
|
|
|
// clang-format on
|
2017-09-21 02:53:46 +02:00
|
|
|
text_y += DrawWrappedTextLines(text_x, text_y, instruction);
|
|
|
|
|
|
|
|
// Iterate through the text images and display them in order for the current locale.
|
|
|
|
for (const auto& p : surfaces) {
|
|
|
|
text_y += line_spacing;
|
|
|
|
SetColor(LOG);
|
2018-05-02 23:57:21 +02:00
|
|
|
text_y += DrawTextLine(text_x, text_y, p.first, false);
|
2017-09-21 02:53:46 +02:00
|
|
|
gr_color(255, 255, 255, 255);
|
|
|
|
gr_texticon(text_x, text_y, p.second.get());
|
|
|
|
text_y += gr_get_height(p.second.get());
|
|
|
|
}
|
|
|
|
// Update the whole screen.
|
|
|
|
gr_flip();
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
|
|
|
}
|
|
|
|
|
2018-05-08 07:50:33 +02:00
|
|
|
void ScreenRecoveryUI::CheckBackgroundTextImages() {
|
2017-09-21 02:53:46 +02:00
|
|
|
// Load a list of locales embedded in one of the resource files.
|
|
|
|
std::vector<std::string> locales_entries = get_locales_in_png("installing_text");
|
|
|
|
if (locales_entries.empty()) {
|
|
|
|
Print("Failed to load locales from the resource files\n");
|
|
|
|
return;
|
|
|
|
}
|
2018-05-08 07:50:33 +02:00
|
|
|
std::string saved_locale = locale_;
|
2017-09-21 02:53:46 +02:00
|
|
|
size_t selected = 0;
|
|
|
|
SelectAndShowBackgroundText(locales_entries, selected);
|
|
|
|
|
|
|
|
FlushKeys();
|
|
|
|
while (true) {
|
|
|
|
int key = WaitKey();
|
|
|
|
if (key == KEY_POWER || key == KEY_ENTER) {
|
|
|
|
break;
|
|
|
|
} else if (key == KEY_UP || key == KEY_VOLUMEUP) {
|
|
|
|
selected = (selected == 0) ? locales_entries.size() - 1 : selected - 1;
|
|
|
|
SelectAndShowBackgroundText(locales_entries, selected);
|
|
|
|
} else if (key == KEY_DOWN || key == KEY_VOLUMEDOWN) {
|
|
|
|
selected = (selected == locales_entries.size() - 1) ? 0 : selected + 1;
|
|
|
|
SelectAndShowBackgroundText(locales_entries, selected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SetLocale(saved_locale);
|
|
|
|
}
|
|
|
|
|
2017-09-19 19:51:35 +02:00
|
|
|
int ScreenRecoveryUI::ScreenWidth() const {
|
|
|
|
return gr_fb_width();
|
|
|
|
}
|
|
|
|
|
|
|
|
int ScreenRecoveryUI::ScreenHeight() const {
|
|
|
|
return gr_fb_height();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenRecoveryUI::DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx,
|
|
|
|
int dy) const {
|
|
|
|
gr_blit(surface, sx, sy, w, h, dx, dy);
|
|
|
|
}
|
|
|
|
|
2017-06-28 23:52:17 +02:00
|
|
|
int ScreenRecoveryUI::DrawHorizontalRule(int y) const {
|
2017-09-19 19:51:35 +02:00
|
|
|
gr_fill(0, y + 4, ScreenWidth(), y + 6);
|
2017-06-28 23:52:17 +02:00
|
|
|
return 8;
|
2015-04-13 23:36:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-13 01:08:33 +02:00
|
|
|
void ScreenRecoveryUI::DrawHighlightBar(int x, int y, int width, int height) const {
|
2017-06-24 07:23:50 +02:00
|
|
|
gr_fill(x, y, x + width, y + height);
|
2017-06-13 01:08:33 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 19:51:35 +02:00
|
|
|
void ScreenRecoveryUI::DrawFill(int x, int y, int w, int h) const {
|
|
|
|
gr_fill(x, y, w, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenRecoveryUI::DrawTextIcon(int x, int y, GRSurface* surface) const {
|
|
|
|
gr_texticon(x, y, surface);
|
|
|
|
}
|
|
|
|
|
2018-05-02 23:57:21 +02:00
|
|
|
int ScreenRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const {
|
|
|
|
gr_text(gr_sys_font(), x, y, line.c_str(), bold);
|
2017-06-28 23:52:17 +02:00
|
|
|
return char_height_ + 4;
|
2015-04-11 04:12:01 +02:00
|
|
|
}
|
|
|
|
|
2018-05-02 23:57:21 +02:00
|
|
|
int ScreenRecoveryUI::DrawTextLines(int x, int y, const std::vector<std::string>& lines) const {
|
2017-06-28 23:52:17 +02:00
|
|
|
int offset = 0;
|
2018-05-02 23:57:21 +02:00
|
|
|
for (const auto& line : lines) {
|
|
|
|
offset += DrawTextLine(x, y + offset, line, false);
|
2017-06-24 07:23:50 +02:00
|
|
|
}
|
2017-06-28 23:52:17 +02:00
|
|
|
return offset;
|
2015-04-13 23:36:02 +02:00
|
|
|
}
|
|
|
|
|
2018-05-02 23:57:21 +02:00
|
|
|
int ScreenRecoveryUI::DrawWrappedTextLines(int x, int y,
|
|
|
|
const std::vector<std::string>& lines) const {
|
2017-08-14 08:48:55 +02:00
|
|
|
int offset = 0;
|
2018-05-02 23:57:21 +02:00
|
|
|
for (const auto& line : lines) {
|
2017-08-14 08:48:55 +02:00
|
|
|
size_t next_start = 0;
|
|
|
|
while (next_start < line.size()) {
|
|
|
|
std::string sub = line.substr(next_start, text_cols_ + 1);
|
|
|
|
if (sub.size() <= text_cols_) {
|
|
|
|
next_start += sub.size();
|
|
|
|
} else {
|
|
|
|
// Line too long and must be wrapped to text_cols_ columns.
|
|
|
|
size_t last_space = sub.find_last_of(" \t\n");
|
|
|
|
if (last_space == std::string::npos) {
|
2018-05-02 23:57:21 +02:00
|
|
|
// No space found, just draw as much as we can.
|
2017-08-14 08:48:55 +02:00
|
|
|
sub.resize(text_cols_);
|
|
|
|
next_start += text_cols_;
|
|
|
|
} else {
|
|
|
|
sub.resize(last_space);
|
|
|
|
next_start += last_space + 1;
|
|
|
|
}
|
|
|
|
}
|
2018-05-02 23:57:21 +02:00
|
|
|
offset += DrawTextLine(x, y + offset, sub, false);
|
2017-08-14 08:48:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
2017-06-20 08:10:44 +02:00
|
|
|
// Redraws everything on the screen. Does not flip pages. Should only be called with updateMutex
|
|
|
|
// locked.
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::draw_screen_locked() {
|
2017-06-20 08:10:44 +02:00
|
|
|
if (!show_text) {
|
|
|
|
draw_background_locked();
|
|
|
|
draw_foreground_locked();
|
|
|
|
return;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-06-20 08:10:44 +02:00
|
|
|
gr_color(0, 0, 0, 255);
|
|
|
|
gr_clear();
|
|
|
|
|
2018-05-02 23:57:21 +02:00
|
|
|
// clang-format off
|
2018-05-02 00:56:05 +02:00
|
|
|
static std::vector<std::string> REGULAR_HELP{
|
2018-05-02 23:57:21 +02:00
|
|
|
"Use volume up/down and power.",
|
|
|
|
};
|
2018-05-02 00:56:05 +02:00
|
|
|
static std::vector<std::string> LONG_PRESS_HELP{
|
2018-05-02 23:57:21 +02:00
|
|
|
"Any button cycles highlight.",
|
|
|
|
"Long-press activates.",
|
|
|
|
};
|
|
|
|
// clang-format on
|
2018-03-21 00:07:39 +01:00
|
|
|
draw_menu_and_text_buffer_locked(HasThreeButtons() ? REGULAR_HELP : LONG_PRESS_HELP);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draws the menu and text buffer on the screen. Should only be called with updateMutex locked.
|
2018-05-02 23:57:21 +02:00
|
|
|
void ScreenRecoveryUI::draw_menu_and_text_buffer_locked(
|
|
|
|
const std::vector<std::string>& help_message) {
|
2017-06-21 03:11:21 +02:00
|
|
|
int y = kMarginHeight;
|
2018-03-21 00:07:39 +01:00
|
|
|
if (menu_) {
|
2017-07-13 20:15:27 +02:00
|
|
|
static constexpr int kMenuIndent = 4;
|
|
|
|
int x = kMarginWidth + kMenuIndent;
|
2017-06-20 08:10:44 +02:00
|
|
|
|
|
|
|
SetColor(INFO);
|
2017-06-28 23:52:17 +02:00
|
|
|
y += DrawTextLine(x, y, "Android Recovery", true);
|
2017-07-13 20:15:27 +02:00
|
|
|
std::string recovery_fingerprint =
|
|
|
|
android::base::GetProperty("ro.bootimage.build.fingerprint", "");
|
2017-06-20 08:10:44 +02:00
|
|
|
for (const auto& chunk : android::base::Split(recovery_fingerprint, ":")) {
|
2018-05-02 23:57:21 +02:00
|
|
|
y += DrawTextLine(x, y, chunk, false);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-06-20 08:10:44 +02:00
|
|
|
|
2018-03-21 00:07:39 +01:00
|
|
|
y += DrawTextLines(x, y, help_message);
|
|
|
|
|
|
|
|
// Draw menu header.
|
2017-06-20 08:10:44 +02:00
|
|
|
SetColor(HEADER);
|
2018-03-21 00:07:39 +01:00
|
|
|
if (!menu_->scrollable()) {
|
2018-05-02 00:56:05 +02:00
|
|
|
y += DrawWrappedTextLines(x, y, menu_->text_headers());
|
2018-03-21 00:07:39 +01:00
|
|
|
} else {
|
2018-05-02 00:56:05 +02:00
|
|
|
y += DrawTextLines(x, y, menu_->text_headers());
|
2018-03-21 00:07:39 +01:00
|
|
|
// Show the current menu item number in relation to total number if items don't fit on the
|
|
|
|
// screen.
|
|
|
|
std::string cur_selection_str;
|
|
|
|
if (menu_->ItemsOverflow(&cur_selection_str)) {
|
2018-05-02 23:57:21 +02:00
|
|
|
y += DrawTextLine(x, y, cur_selection_str, true);
|
2018-03-21 00:07:39 +01:00
|
|
|
}
|
|
|
|
}
|
2017-06-20 08:10:44 +02:00
|
|
|
|
2018-03-21 00:07:39 +01:00
|
|
|
// Draw menu items.
|
2017-06-20 08:10:44 +02:00
|
|
|
SetColor(MENU);
|
2018-03-21 00:07:39 +01:00
|
|
|
// Do not draw the horizontal rule for wear devices.
|
|
|
|
if (!menu_->scrollable()) {
|
|
|
|
y += DrawHorizontalRule(y) + 4;
|
|
|
|
}
|
|
|
|
for (size_t i = menu_->MenuStart(); i < menu_->MenuEnd(); ++i) {
|
|
|
|
bool bold = false;
|
|
|
|
if (i == static_cast<size_t>(menu_->selection())) {
|
2017-06-20 08:10:44 +02:00
|
|
|
// Draw the highlight bar.
|
|
|
|
SetColor(IsLongPress() ? MENU_SEL_BG_ACTIVE : MENU_SEL_BG);
|
2018-03-21 00:07:39 +01:00
|
|
|
|
|
|
|
int bar_height = char_height_ + 4;
|
|
|
|
DrawHighlightBar(0, y - 2, ScreenWidth(), bar_height);
|
|
|
|
|
2017-06-20 08:10:44 +02:00
|
|
|
// Bold white text for the selected item.
|
|
|
|
SetColor(MENU_SEL_FG);
|
2018-03-21 00:07:39 +01:00
|
|
|
bold = true;
|
2017-06-20 08:10:44 +02:00
|
|
|
}
|
2018-03-21 00:07:39 +01:00
|
|
|
|
2018-05-02 23:57:21 +02:00
|
|
|
y += DrawTextLine(x, y, menu_->TextItem(i), bold);
|
2018-03-21 00:07:39 +01:00
|
|
|
|
|
|
|
SetColor(MENU);
|
2017-06-20 08:10:44 +02:00
|
|
|
}
|
2017-06-28 23:52:17 +02:00
|
|
|
y += DrawHorizontalRule(y);
|
2017-06-20 08:10:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Display from the bottom up, until we hit the top of the screen, the bottom of the menu, or
|
|
|
|
// we've displayed the entire text buffer.
|
|
|
|
SetColor(LOG);
|
2017-09-09 06:25:32 +02:00
|
|
|
int row = text_row_;
|
2017-06-20 08:10:44 +02:00
|
|
|
size_t count = 0;
|
2017-09-19 19:51:35 +02:00
|
|
|
for (int ty = ScreenHeight() - kMarginHeight - char_height_; ty >= y && count < text_rows_;
|
2017-06-24 07:23:50 +02:00
|
|
|
ty -= char_height_, ++count) {
|
2017-07-13 20:15:27 +02:00
|
|
|
DrawTextLine(kMarginWidth, ty, text_[row], false);
|
2017-06-20 08:10:44 +02:00
|
|
|
--row;
|
|
|
|
if (row < 0) row = text_rows_ - 1;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Redraw everything on the screen and flip the screen (make it visible).
|
2011-10-29 00:13:10 +02:00
|
|
|
// Should only be called with updateMutex locked.
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::update_screen_locked() {
|
2017-06-24 07:23:50 +02:00
|
|
|
draw_screen_locked();
|
|
|
|
gr_flip();
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Updates only the progress bar, if possible, otherwise redraws the screen.
|
2011-10-29 00:13:10 +02:00
|
|
|
// Should only be called with updateMutex locked.
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::update_progress_locked() {
|
2017-06-24 07:23:50 +02:00
|
|
|
if (show_text || !pagesIdentical) {
|
|
|
|
draw_screen_locked(); // Must redraw the whole screen
|
|
|
|
pagesIdentical = true;
|
|
|
|
} else {
|
|
|
|
draw_foreground_locked(); // Draw only the progress bar and overlays
|
|
|
|
}
|
|
|
|
gr_flip();
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Keeps the progress bar updated, even when the process is otherwise busy.
|
2015-04-13 22:04:32 +02:00
|
|
|
void* ScreenRecoveryUI::ProgressThreadStartRoutine(void* data) {
|
2017-06-24 07:23:50 +02:00
|
|
|
reinterpret_cast<ScreenRecoveryUI*>(data)->ProgressThreadLoop();
|
|
|
|
return nullptr;
|
2011-11-01 19:00:20 +01:00
|
|
|
}
|
|
|
|
|
2015-04-13 22:04:32 +02:00
|
|
|
void ScreenRecoveryUI::ProgressThreadLoop() {
|
2017-08-03 02:11:04 +02:00
|
|
|
double interval = 1.0 / kAnimationFps;
|
2017-06-24 07:23:50 +02:00
|
|
|
while (true) {
|
|
|
|
double start = now();
|
|
|
|
pthread_mutex_lock(&updateMutex);
|
2011-03-01 23:04:34 +01:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
bool redraw = false;
|
|
|
|
|
|
|
|
// update the installation animation, if active
|
|
|
|
// skip this if we have a text overlay (too expensive to update)
|
|
|
|
if ((currentIcon == INSTALLING_UPDATE || currentIcon == ERASING) && !show_text) {
|
|
|
|
if (!intro_done) {
|
|
|
|
if (current_frame == intro_frames - 1) {
|
|
|
|
intro_done = true;
|
|
|
|
current_frame = 0;
|
|
|
|
} else {
|
|
|
|
++current_frame;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
} else {
|
|
|
|
current_frame = (current_frame + 1) % loop_frames;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
redraw = true;
|
|
|
|
}
|
2011-03-01 23:04:34 +01:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
// move the progress bar forward on timed intervals, if configured
|
|
|
|
int duration = progressScopeDuration;
|
|
|
|
if (progressBarType == DETERMINATE && duration > 0) {
|
|
|
|
double elapsed = now() - progressScopeTime;
|
|
|
|
float p = 1.0 * elapsed / duration;
|
|
|
|
if (p > 1.0) p = 1.0;
|
|
|
|
if (p > progress) {
|
|
|
|
progress = p;
|
|
|
|
redraw = true;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
|
|
|
|
if (redraw) update_progress_locked();
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
|
|
|
double end = now();
|
|
|
|
// minimum of 20ms delay between frames
|
|
|
|
double delay = interval - (end - start);
|
|
|
|
if (delay < 0.02) delay = 0.02;
|
|
|
|
usleep(static_cast<useconds_t>(delay * 1000000));
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2015-04-15 19:58:56 +02:00
|
|
|
void ScreenRecoveryUI::LoadBitmap(const char* filename, GRSurface** surface) {
|
2017-06-24 07:23:50 +02:00
|
|
|
int result = res_create_display_surface(filename, surface);
|
|
|
|
if (result < 0) {
|
|
|
|
LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
|
|
|
|
}
|
2014-03-07 18:21:25 +01:00
|
|
|
}
|
|
|
|
|
2015-04-15 19:58:56 +02:00
|
|
|
void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, GRSurface** surface) {
|
2017-01-03 19:15:33 +01:00
|
|
|
int result = res_create_localized_alpha_surface(filename, locale_.c_str(), surface);
|
|
|
|
if (result < 0) {
|
|
|
|
LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
|
|
|
|
}
|
2012-08-23 02:26:40 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 21:42:50 +02:00
|
|
|
static char** Alloc2d(size_t rows, size_t cols) {
|
2017-06-24 07:23:50 +02:00
|
|
|
char** result = new char*[rows];
|
|
|
|
for (size_t i = 0; i < rows; ++i) {
|
|
|
|
result[i] = new char[cols];
|
|
|
|
memset(result[i], 0, cols);
|
|
|
|
}
|
|
|
|
return result;
|
2015-04-08 21:42:50 +02:00
|
|
|
}
|
|
|
|
|
2016-04-29 03:06:26 +02:00
|
|
|
// Choose the right background string to display during update.
|
|
|
|
void ScreenRecoveryUI::SetSystemUpdateText(bool security_update) {
|
2017-06-24 07:23:50 +02:00
|
|
|
if (security_update) {
|
|
|
|
LoadLocalizedBitmap("installing_security_text", &installing_text);
|
|
|
|
} else {
|
|
|
|
LoadLocalizedBitmap("installing_text", &installing_text);
|
|
|
|
}
|
|
|
|
Redraw();
|
2016-04-29 03:06:26 +02:00
|
|
|
}
|
|
|
|
|
2016-12-10 01:20:49 +01:00
|
|
|
bool ScreenRecoveryUI::InitTextParams() {
|
2017-06-20 08:10:44 +02:00
|
|
|
if (gr_init() < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-06-20 08:10:44 +02:00
|
|
|
gr_font_size(gr_sys_font(), &char_width_, &char_height_);
|
2017-09-19 19:51:35 +02:00
|
|
|
text_rows_ = (ScreenHeight() - kMarginHeight * 2) / char_height_;
|
|
|
|
text_cols_ = (ScreenWidth() - kMarginWidth * 2) / char_width_;
|
2017-06-20 08:10:44 +02:00
|
|
|
return true;
|
2016-08-25 03:28:43 +02:00
|
|
|
}
|
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
bool ScreenRecoveryUI::Init(const std::string& locale) {
|
|
|
|
RecoveryUI::Init(locale);
|
2017-02-01 08:03:10 +01:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
if (!InitTextParams()) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-08-25 03:28:43 +02:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
// Are we portrait or landscape?
|
|
|
|
layout_ = (gr_fb_width() > gr_fb_height()) ? LANDSCAPE : PORTRAIT;
|
|
|
|
// Are we the large variant of our base layout?
|
|
|
|
if (gr_fb_height() > PixelsFromDp(800)) ++layout_;
|
2016-04-21 02:22:16 +02:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
text_ = Alloc2d(text_rows_, text_cols_ + 1);
|
|
|
|
file_viewer_text_ = Alloc2d(text_rows_, text_cols_ + 1);
|
2013-03-05 00:49:02 +01:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
text_col_ = text_row_ = 0;
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-02-01 08:03:10 +01:00
|
|
|
// Set up the locale info.
|
|
|
|
SetLocale(locale);
|
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
LoadBitmap("icon_error", &error_icon);
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
LoadBitmap("progress_empty", &progressBarEmpty);
|
|
|
|
LoadBitmap("progress_fill", &progressBarFill);
|
2016-04-15 01:49:04 +02:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
LoadBitmap("stage_empty", &stageMarkerEmpty);
|
|
|
|
LoadBitmap("stage_fill", &stageMarkerFill);
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
// Background text for "installing_update" could be "installing update"
|
|
|
|
// or "installing security update". It will be set after UI init according
|
|
|
|
// to commands in BCB.
|
|
|
|
installing_text = nullptr;
|
|
|
|
LoadLocalizedBitmap("erasing_text", &erasing_text);
|
|
|
|
LoadLocalizedBitmap("no_command_text", &no_command_text);
|
|
|
|
LoadLocalizedBitmap("error_text", &error_text);
|
2016-04-15 01:49:04 +02:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
LoadAnimation();
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
pthread_create(&progress_thread_, nullptr, ProgressThreadStartRoutine, this);
|
2016-12-10 01:20:49 +01:00
|
|
|
|
2017-01-03 19:15:33 +01:00
|
|
|
return true;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2018-05-03 02:15:03 +02:00
|
|
|
std::string ScreenRecoveryUI::GetLocale() {
|
|
|
|
return locale_;
|
|
|
|
}
|
|
|
|
|
2016-04-15 01:49:04 +02:00
|
|
|
void ScreenRecoveryUI::LoadAnimation() {
|
2017-06-24 07:23:50 +02:00
|
|
|
std::unique_ptr<DIR, decltype(&closedir)> dir(opendir("/res/images"), closedir);
|
|
|
|
dirent* de;
|
|
|
|
std::vector<std::string> intro_frame_names;
|
|
|
|
std::vector<std::string> loop_frame_names;
|
|
|
|
|
|
|
|
while ((de = readdir(dir.get())) != nullptr) {
|
|
|
|
int value, num_chars;
|
|
|
|
if (sscanf(de->d_name, "intro%d%n.png", &value, &num_chars) == 1) {
|
|
|
|
intro_frame_names.emplace_back(de->d_name, num_chars);
|
|
|
|
} else if (sscanf(de->d_name, "loop%d%n.png", &value, &num_chars) == 1) {
|
|
|
|
loop_frame_names.emplace_back(de->d_name, num_chars);
|
2016-04-15 01:49:04 +02:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
}
|
2016-04-15 01:49:04 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
intro_frames = intro_frame_names.size();
|
|
|
|
loop_frames = loop_frame_names.size();
|
2016-08-25 03:28:43 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
// It's okay to not have an intro.
|
|
|
|
if (intro_frames == 0) intro_done = true;
|
|
|
|
// But you must have an animation.
|
|
|
|
if (loop_frames == 0) abort();
|
2016-04-15 01:49:04 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
std::sort(intro_frame_names.begin(), intro_frame_names.end());
|
|
|
|
std::sort(loop_frame_names.begin(), loop_frame_names.end());
|
2016-08-25 03:28:43 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
introFrames = new GRSurface*[intro_frames];
|
|
|
|
for (size_t i = 0; i < intro_frames; i++) {
|
|
|
|
LoadBitmap(intro_frame_names.at(i).c_str(), &introFrames[i]);
|
|
|
|
}
|
2016-04-15 01:49:04 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
loopFrames = new GRSurface*[loop_frames];
|
|
|
|
for (size_t i = 0; i < loop_frames; i++) {
|
|
|
|
LoadBitmap(loop_frame_names.at(i).c_str(), &loopFrames[i]);
|
|
|
|
}
|
2016-04-15 01:49:04 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::SetBackground(Icon icon) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
2012-08-23 02:26:40 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
currentIcon = icon;
|
|
|
|
update_screen_locked();
|
2012-09-04 23:28:25 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::SetProgressType(ProgressType type) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
if (progressBarType != type) {
|
|
|
|
progressBarType = type;
|
|
|
|
}
|
|
|
|
progressScopeStart = 0;
|
|
|
|
progressScopeSize = 0;
|
|
|
|
progress = 0;
|
|
|
|
update_progress_locked();
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::ShowProgress(float portion, float seconds) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
progressBarType = DETERMINATE;
|
|
|
|
progressScopeStart += progressScopeSize;
|
|
|
|
progressScopeSize = portion;
|
|
|
|
progressScopeTime = now();
|
|
|
|
progressScopeDuration = seconds;
|
|
|
|
progress = 0;
|
|
|
|
update_progress_locked();
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::SetProgress(float fraction) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
if (fraction < 0.0) fraction = 0.0;
|
|
|
|
if (fraction > 1.0) fraction = 1.0;
|
|
|
|
if (progressBarType == DETERMINATE && fraction > progress) {
|
|
|
|
// Skip updates that aren't visibly different.
|
|
|
|
int width = gr_get_width(progressBarEmpty);
|
|
|
|
float scale = width * progressScopeSize;
|
|
|
|
if ((int)(progress * scale) != (int)(fraction * scale)) {
|
|
|
|
progress = fraction;
|
|
|
|
update_progress_locked();
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2013-11-25 22:53:25 +01:00
|
|
|
void ScreenRecoveryUI::SetStage(int current, int max) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
stage = current;
|
|
|
|
max_stage = max;
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2013-11-25 22:53:25 +01:00
|
|
|
}
|
|
|
|
|
2015-05-20 02:02:16 +02:00
|
|
|
void ScreenRecoveryUI::PrintV(const char* fmt, bool copy_to_stdout, va_list ap) {
|
2017-06-24 07:23:50 +02:00
|
|
|
std::string str;
|
|
|
|
android::base::StringAppendV(&str, fmt, ap);
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
if (copy_to_stdout) {
|
|
|
|
fputs(str.c_str(), stdout);
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
if (text_rows_ > 0 && text_cols_ > 0) {
|
|
|
|
for (const char* ptr = str.c_str(); *ptr != '\0'; ++ptr) {
|
|
|
|
if (*ptr == '\n' || text_col_ >= text_cols_) {
|
2015-05-06 21:40:05 +02:00
|
|
|
text_[text_row_][text_col_] = '\0';
|
2017-06-24 07:23:50 +02:00
|
|
|
text_col_ = 0;
|
|
|
|
text_row_ = (text_row_ + 1) % text_rows_;
|
|
|
|
}
|
|
|
|
if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
text_[text_row_][text_col_] = '\0';
|
|
|
|
update_screen_locked();
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2015-05-20 02:02:16 +02:00
|
|
|
void ScreenRecoveryUI::Print(const char* fmt, ...) {
|
2017-06-24 07:23:50 +02:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
PrintV(fmt, true, ap);
|
|
|
|
va_end(ap);
|
2015-05-20 02:02:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenRecoveryUI::PrintOnScreenOnly(const char *fmt, ...) {
|
2017-06-24 07:23:50 +02:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
PrintV(fmt, false, ap);
|
|
|
|
va_end(ap);
|
2015-05-20 02:02:16 +02:00
|
|
|
}
|
|
|
|
|
2015-04-11 04:12:01 +02:00
|
|
|
void ScreenRecoveryUI::PutChar(char ch) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
if (ch != '\n') text_[text_row_][text_col_++] = ch;
|
|
|
|
if (ch == '\n' || text_col_ >= text_cols_) {
|
|
|
|
text_col_ = 0;
|
|
|
|
++text_row_;
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2015-04-09 05:06:50 +02:00
|
|
|
}
|
|
|
|
|
2015-04-11 04:12:01 +02:00
|
|
|
void ScreenRecoveryUI::ClearText() {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
text_col_ = 0;
|
|
|
|
text_row_ = 0;
|
|
|
|
for (size_t i = 0; i < text_rows_; ++i) {
|
|
|
|
memset(text_[i], 0, text_cols_ + 1);
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2015-04-11 04:12:01 +02:00
|
|
|
}
|
2015-04-09 05:06:50 +02:00
|
|
|
|
2015-04-11 04:12:01 +02:00
|
|
|
void ScreenRecoveryUI::ShowFile(FILE* fp) {
|
2017-06-24 07:23:50 +02:00
|
|
|
std::vector<off_t> offsets;
|
|
|
|
offsets.push_back(ftello(fp));
|
|
|
|
ClearText();
|
|
|
|
|
|
|
|
struct stat sb;
|
|
|
|
fstat(fileno(fp), &sb);
|
|
|
|
|
|
|
|
bool show_prompt = false;
|
|
|
|
while (true) {
|
|
|
|
if (show_prompt) {
|
|
|
|
PrintOnScreenOnly("--(%d%% of %d bytes)--",
|
|
|
|
static_cast<int>(100 * (double(ftello(fp)) / double(sb.st_size))),
|
|
|
|
static_cast<int>(sb.st_size));
|
|
|
|
Redraw();
|
|
|
|
while (show_prompt) {
|
|
|
|
show_prompt = false;
|
|
|
|
int key = WaitKey();
|
|
|
|
if (key == KEY_POWER || key == KEY_ENTER) {
|
|
|
|
return;
|
|
|
|
} else if (key == KEY_UP || key == KEY_VOLUMEUP) {
|
|
|
|
if (offsets.size() <= 1) {
|
2015-04-11 04:12:01 +02:00
|
|
|
show_prompt = true;
|
2017-06-24 07:23:50 +02:00
|
|
|
} else {
|
|
|
|
offsets.pop_back();
|
|
|
|
fseek(fp, offsets.back(), SEEK_SET);
|
|
|
|
}
|
2015-04-11 04:12:01 +02:00
|
|
|
} else {
|
2017-06-24 07:23:50 +02:00
|
|
|
if (feof(fp)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
offsets.push_back(ftello(fp));
|
2015-04-09 05:06:50 +02:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
}
|
|
|
|
ClearText();
|
2015-04-09 05:06:50 +02:00
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
|
|
|
|
int ch = getc(fp);
|
|
|
|
if (ch == EOF) {
|
|
|
|
while (text_row_ < text_rows_ - 1) PutChar('\n');
|
|
|
|
show_prompt = true;
|
|
|
|
} else {
|
|
|
|
PutChar(ch);
|
|
|
|
if (text_col_ == 0 && text_row_ >= text_rows_ - 1) {
|
|
|
|
show_prompt = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-11 04:12:01 +02:00
|
|
|
}
|
2015-04-09 05:06:50 +02:00
|
|
|
|
2018-05-02 21:43:18 +02:00
|
|
|
void ScreenRecoveryUI::ShowFile(const std::string& filename) {
|
|
|
|
std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(filename.c_str(), "re"), fclose);
|
|
|
|
if (!fp) {
|
|
|
|
Print(" Unable to open %s: %s\n", filename.c_str(), strerror(errno));
|
2017-06-24 07:23:50 +02:00
|
|
|
return;
|
|
|
|
}
|
2015-05-06 21:40:05 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
char** old_text = text_;
|
|
|
|
size_t old_text_col = text_col_;
|
|
|
|
size_t old_text_row = text_row_;
|
2015-05-06 21:40:05 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
// Swap in the alternate screen and clear it.
|
|
|
|
text_ = file_viewer_text_;
|
|
|
|
ClearText();
|
2015-05-06 21:40:05 +02:00
|
|
|
|
2018-05-02 21:43:18 +02:00
|
|
|
ShowFile(fp.get());
|
2015-05-06 21:40:05 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
text_ = old_text;
|
|
|
|
text_col_ = old_text_col;
|
|
|
|
text_row_ = old_text_row;
|
2015-04-09 05:06:50 +02:00
|
|
|
}
|
|
|
|
|
2018-05-02 00:56:05 +02:00
|
|
|
void ScreenRecoveryUI::StartMenu(const std::vector<std::string>& headers,
|
|
|
|
const std::vector<std::string>& items, size_t initial_selection) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
2018-03-21 00:07:39 +01:00
|
|
|
if (text_rows_ > 0 && text_cols_ > 1) {
|
2018-05-03 00:46:11 +02:00
|
|
|
menu_ = std::make_unique<Menu>(scrollable_menu_, text_rows_, text_cols_ - 1, headers, items,
|
|
|
|
initial_selection);
|
2017-06-24 07:23:50 +02:00
|
|
|
update_screen_locked();
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2011-10-29 00:13:10 +02:00
|
|
|
int ScreenRecoveryUI::SelectMenu(int sel) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
2018-03-21 00:07:39 +01:00
|
|
|
if (menu_) {
|
|
|
|
int old_sel = menu_->selection();
|
|
|
|
sel = menu_->Select(sel);
|
2015-03-23 21:45:31 +01:00
|
|
|
|
2018-03-21 00:07:39 +01:00
|
|
|
if (sel != old_sel) {
|
|
|
|
update_screen_locked();
|
|
|
|
}
|
2017-06-24 07:23:50 +02:00
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
|
|
|
return sel;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2011-10-29 00:13:10 +02:00
|
|
|
void ScreenRecoveryUI::EndMenu() {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
2018-03-21 00:07:39 +01:00
|
|
|
if (menu_) {
|
|
|
|
menu_.reset();
|
2017-06-24 07:23:50 +02:00
|
|
|
update_screen_locked();
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2018-05-02 00:56:05 +02:00
|
|
|
size_t ScreenRecoveryUI::ShowMenu(const std::vector<std::string>& headers,
|
|
|
|
const std::vector<std::string>& items, size_t initial_selection,
|
|
|
|
bool menu_only,
|
|
|
|
const std::function<int(int, bool)>& key_handler) {
|
Add ScreenRecoveryUI::ShowMenu().
From caller's PoV, RecoveryUI::{Start,Select,End}Menu should always be
used together, i.e. to show a menu and get user's selection. This CL
provides ShowMenu() as one-stop service (which is based on
get_menu_selection() from recovery.cpp).
Also move RecoveryUI::{Start,Select,End}Menu into ScreenRecoveryUI, with
a dropped access level from public to protected.
Due to the dependency on recovery / librecovery refactoring, will add
testcases in follow-up CLs.
Test: Build and boot into recovery image. Check the menus (main menu,
'View recovery logs', 'Wipe data/factory reset').
Change-Id: Ie17aa78144871a12affd6f9075e045f76608a0ba
2018-04-20 18:24:58 +02:00
|
|
|
// Throw away keys pressed previously, so user doesn't accidentally trigger menu items.
|
|
|
|
FlushKeys();
|
|
|
|
|
|
|
|
StartMenu(headers, items, initial_selection);
|
|
|
|
|
|
|
|
int selected = initial_selection;
|
|
|
|
int chosen_item = -1;
|
|
|
|
while (chosen_item < 0) {
|
|
|
|
int key = WaitKey();
|
|
|
|
if (key == -1) { // WaitKey() timed out.
|
|
|
|
if (WasTextEverVisible()) {
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
LOG(INFO) << "Timed out waiting for key input; rebooting.";
|
|
|
|
EndMenu();
|
2018-05-02 00:56:05 +02:00
|
|
|
return static_cast<size_t>(-1);
|
Add ScreenRecoveryUI::ShowMenu().
From caller's PoV, RecoveryUI::{Start,Select,End}Menu should always be
used together, i.e. to show a menu and get user's selection. This CL
provides ShowMenu() as one-stop service (which is based on
get_menu_selection() from recovery.cpp).
Also move RecoveryUI::{Start,Select,End}Menu into ScreenRecoveryUI, with
a dropped access level from public to protected.
Due to the dependency on recovery / librecovery refactoring, will add
testcases in follow-up CLs.
Test: Build and boot into recovery image. Check the menus (main menu,
'View recovery logs', 'Wipe data/factory reset').
Change-Id: Ie17aa78144871a12affd6f9075e045f76608a0ba
2018-04-20 18:24:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool visible = IsTextVisible();
|
|
|
|
int action = key_handler(key, visible);
|
|
|
|
if (action < 0) {
|
|
|
|
switch (action) {
|
|
|
|
case Device::kHighlightUp:
|
|
|
|
selected = SelectMenu(--selected);
|
|
|
|
break;
|
|
|
|
case Device::kHighlightDown:
|
|
|
|
selected = SelectMenu(++selected);
|
|
|
|
break;
|
|
|
|
case Device::kInvokeItem:
|
|
|
|
chosen_item = selected;
|
|
|
|
break;
|
|
|
|
case Device::kNoAction:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (!menu_only) {
|
|
|
|
chosen_item = action;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EndMenu();
|
|
|
|
return chosen_item;
|
|
|
|
}
|
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
bool ScreenRecoveryUI::IsTextVisible() {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
int visible = show_text;
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
|
|
|
return visible;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
bool ScreenRecoveryUI::WasTextEverVisible() {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
int ever_visible = show_text_ever;
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
|
|
|
return ever_visible;
|
2011-01-25 22:15:30 +01:00
|
|
|
}
|
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::ShowText(bool visible) {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
show_text = visible;
|
|
|
|
if (show_text) show_text_ever = true;
|
|
|
|
update_screen_locked();
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2010-09-03 20:00:13 +02:00
|
|
|
}
|
2013-07-31 20:28:24 +02:00
|
|
|
|
2015-04-09 05:06:50 +02:00
|
|
|
void ScreenRecoveryUI::Redraw() {
|
2017-06-24 07:23:50 +02:00
|
|
|
pthread_mutex_lock(&updateMutex);
|
|
|
|
update_screen_locked();
|
|
|
|
pthread_mutex_unlock(&updateMutex);
|
2013-07-31 20:28:24 +02:00
|
|
|
}
|
2015-04-10 21:47:46 +02:00
|
|
|
|
|
|
|
void ScreenRecoveryUI::KeyLongPress(int) {
|
2017-06-24 07:23:50 +02:00
|
|
|
// Redraw so that if we're in the menu, the highlight
|
|
|
|
// will change color to indicate a successful long press.
|
|
|
|
Redraw();
|
2015-04-10 21:47:46 +02:00
|
|
|
}
|
2017-02-01 08:03:10 +01:00
|
|
|
|
|
|
|
void ScreenRecoveryUI::SetLocale(const std::string& new_locale) {
|
|
|
|
locale_ = new_locale;
|
|
|
|
rtl_locale_ = false;
|
|
|
|
|
|
|
|
if (!new_locale.empty()) {
|
|
|
|
size_t underscore = new_locale.find('_');
|
|
|
|
// lang has the language prefix prior to '_', or full string if '_' doesn't exist.
|
|
|
|
std::string lang = new_locale.substr(0, underscore);
|
|
|
|
|
|
|
|
// A bit cheesy: keep an explicit list of supported RTL languages.
|
|
|
|
if (lang == "ar" || // Arabic
|
|
|
|
lang == "fa" || // Persian (Farsi)
|
|
|
|
lang == "he" || // Hebrew (new language code)
|
|
|
|
lang == "iw" || // Hebrew (old language code)
|
|
|
|
lang == "ur") { // Urdu
|
|
|
|
rtl_locale_ = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|