blob: eec1932c2a93002e9f22a99be8c197908499bf14 [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 },
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070031 { "Enter fastboot", Device::ENTER_FASTBOOT },
Tao Baoe5d2c252018-05-09 11:05:44 -070032 { "Apply update from ADB", Device::APPLY_ADB_SIDELOAD },
33 { "Apply update from SD card", Device::APPLY_SDCARD },
34 { "Wipe data/factory reset", Device::WIPE_DATA },
35 { "Wipe cache partition", Device::WIPE_CACHE },
36 { "Mount /system", Device::MOUNT_SYSTEM },
37 { "View recovery logs", Device::VIEW_RECOVERY_LOGS },
38 { "Run graphics test", Device::RUN_GRAPHICS_TEST },
39 { "Run locale test", Device::RUN_LOCALE_TEST },
40 { "Power off", Device::SHUTDOWN },
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070041};
42
Tao Baoe5d2c252018-05-09 11:05:44 -070043static std::vector<std::string> g_menu_items;
Elliott Hughes01fcbe12016-05-23 17:43:41 -070044
Tao Baoe5d2c252018-05-09 11:05:44 -070045static void PopulateMenuItems() {
46 g_menu_items.clear();
47 std::transform(g_menu_actions.cbegin(), g_menu_actions.cend(), std::back_inserter(g_menu_items),
48 [](const auto& entry) { return entry.first; });
49}
Elliott Hughes01fcbe12016-05-23 17:43:41 -070050
Tao Baoe5d2c252018-05-09 11:05:44 -070051Device::Device(RecoveryUI* ui) : ui_(ui) {
52 PopulateMenuItems();
53}
54
55void Device::RemoveMenuItemForAction(Device::BuiltinAction action) {
56 g_menu_actions.erase(
57 std::remove_if(g_menu_actions.begin(), g_menu_actions.end(),
58 [action](const auto& entry) { return entry.second == action; }));
59 CHECK(!g_menu_actions.empty());
60
61 // Re-populate the menu items.
62 PopulateMenuItems();
63}
Tao Bao1fe1afe2018-05-01 15:56:05 -070064
65const std::vector<std::string>& Device::GetMenuItems() {
Tao Baoe5d2c252018-05-09 11:05:44 -070066 return g_menu_items;
Elliott Hughes4af215b2015-04-10 15:00:34 -070067}
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070068
Tao Bao1fe1afe2018-05-01 15:56:05 -070069Device::BuiltinAction Device::InvokeMenuItem(size_t menu_position) {
Tao Baoe5d2c252018-05-09 11:05:44 -070070 return g_menu_actions[menu_position].second;
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070071}
Elliott Hughes4af215b2015-04-10 15:00:34 -070072
Tao Baofc5499f2017-02-23 19:06:53 -080073int Device::HandleMenuKey(int key, bool visible) {
Elliott Hughes4af215b2015-04-10 15:00:34 -070074 if (!visible) {
75 return kNoAction;
76 }
77
78 switch (key) {
79 case KEY_DOWN:
80 case KEY_VOLUMEDOWN:
81 return kHighlightDown;
82
83 case KEY_UP:
84 case KEY_VOLUMEUP:
85 return kHighlightUp;
86
87 case KEY_ENTER:
88 case KEY_POWER:
89 return kInvokeItem;
90
91 default:
92 // If you have all of the above buttons, any other buttons
93 // are ignored. Otherwise, any button cycles the highlight.
94 return ui_->HasThreeButtons() ? kNoAction : kHighlightDown;
95 }
96}