blob: 3c6334e5cd4469970ae8fab8106d2afbd0919193 [file] [log] [blame]
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -07001/*
2 * Copyright (C) 2015 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
17#include "device.h"
18
Tao Baoe5d2c252018-05-09 11:05:44 -070019#include <algorithm>
20#include <string>
21#include <utility>
22#include <vector>
23
Tao Bao1fe1afe2018-05-01 15:56:05 -070024#include <android-base/logging.h>
Tao Bao1fe1afe2018-05-01 15:56:05 -070025
Tao Baoc16fd8a2018-04-30 17:12:03 -070026#include "ui.h"
27
Tao Baoe5d2c252018-05-09 11:05:44 -070028static std::vector<std::pair<std::string, Device::BuiltinAction>> g_menu_actions{
29 { "Reboot system now", Device::REBOOT },
30 { "Reboot to bootloader", Device::REBOOT_BOOTLOADER },
31 { "Apply update from ADB", Device::APPLY_ADB_SIDELOAD },
32 { "Apply update from SD card", Device::APPLY_SDCARD },
33 { "Wipe data/factory reset", Device::WIPE_DATA },
34 { "Wipe cache partition", Device::WIPE_CACHE },
35 { "Mount /system", Device::MOUNT_SYSTEM },
36 { "View recovery logs", Device::VIEW_RECOVERY_LOGS },
37 { "Run graphics test", Device::RUN_GRAPHICS_TEST },
38 { "Run locale test", Device::RUN_LOCALE_TEST },
39 { "Power off", Device::SHUTDOWN },
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070040};
41
Tao Baoe5d2c252018-05-09 11:05:44 -070042static std::vector<std::string> g_menu_items;
Elliott Hughes01fcbe12016-05-23 17:43:41 -070043
Tao Baoe5d2c252018-05-09 11:05:44 -070044static void PopulateMenuItems() {
45 g_menu_items.clear();
46 std::transform(g_menu_actions.cbegin(), g_menu_actions.cend(), std::back_inserter(g_menu_items),
47 [](const auto& entry) { return entry.first; });
48}
Elliott Hughes01fcbe12016-05-23 17:43:41 -070049
Tao Baoe5d2c252018-05-09 11:05:44 -070050Device::Device(RecoveryUI* ui) : ui_(ui) {
51 PopulateMenuItems();
52}
53
54void Device::RemoveMenuItemForAction(Device::BuiltinAction action) {
55 g_menu_actions.erase(
56 std::remove_if(g_menu_actions.begin(), g_menu_actions.end(),
57 [action](const auto& entry) { return entry.second == action; }));
58 CHECK(!g_menu_actions.empty());
59
60 // Re-populate the menu items.
61 PopulateMenuItems();
62}
Tao Bao1fe1afe2018-05-01 15:56:05 -070063
64const std::vector<std::string>& Device::GetMenuItems() {
Tao Baoe5d2c252018-05-09 11:05:44 -070065 return g_menu_items;
Elliott Hughes4af215b2015-04-10 15:00:34 -070066}
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070067
Tao Bao1fe1afe2018-05-01 15:56:05 -070068Device::BuiltinAction Device::InvokeMenuItem(size_t menu_position) {
Tao Baoe5d2c252018-05-09 11:05:44 -070069 return g_menu_actions[menu_position].second;
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070070}
Elliott Hughes4af215b2015-04-10 15:00:34 -070071
Tao Baofc5499f2017-02-23 19:06:53 -080072int Device::HandleMenuKey(int key, bool visible) {
Elliott Hughes4af215b2015-04-10 15:00:34 -070073 if (!visible) {
74 return kNoAction;
75 }
76
77 switch (key) {
78 case KEY_DOWN:
79 case KEY_VOLUMEDOWN:
80 return kHighlightDown;
81
82 case KEY_UP:
83 case KEY_VOLUMEUP:
84 return kHighlightUp;
85
86 case KEY_ENTER:
87 case KEY_POWER:
88 return kInvokeItem;
89
90 default:
91 // If you have all of the above buttons, any other buttons
92 // are ignored. Otherwise, any button cycles the highlight.
93 return ui_->HasThreeButtons() ? kNoAction : kHighlightDown;
94 }
95}