blob: 3b0942c49bf3154422b16c9a9023f034dbbb4de2 [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 Baoc16fd8a2018-04-30 17:12:03 -070019#include "ui.h"
20
Elliott Hughes4af215b2015-04-10 15:00:34 -070021static const char* MENU_ITEMS[] = {
Tianjie Xu29d55752017-09-20 17:53:46 -070022 "Reboot system now",
23 "Reboot to bootloader",
24 "Apply update from ADB",
25 "Apply update from SD card",
26 "Wipe data/factory reset",
Alex Deymo4344d632016-08-03 21:03:53 -070027#ifndef AB_OTA_UPDATER
Tianjie Xu29d55752017-09-20 17:53:46 -070028 "Wipe cache partition",
Alex Deymo4344d632016-08-03 21:03:53 -070029#endif // !AB_OTA_UPDATER
Tianjie Xu29d55752017-09-20 17:53:46 -070030 "Mount /system",
31 "View recovery logs",
32 "Run graphics test",
33 "Run locale test",
34 "Power off",
35 nullptr,
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070036};
37
Elliott Hughes01fcbe12016-05-23 17:43:41 -070038static const Device::BuiltinAction MENU_ACTIONS[] = {
Tianjie Xu29d55752017-09-20 17:53:46 -070039 Device::REBOOT,
40 Device::REBOOT_BOOTLOADER,
41 Device::APPLY_ADB_SIDELOAD,
42 Device::APPLY_SDCARD,
43 Device::WIPE_DATA,
Alex Deymo4344d632016-08-03 21:03:53 -070044#ifndef AB_OTA_UPDATER
Tianjie Xu29d55752017-09-20 17:53:46 -070045 Device::WIPE_CACHE,
Alex Deymo4344d632016-08-03 21:03:53 -070046#endif // !AB_OTA_UPDATER
Tianjie Xu29d55752017-09-20 17:53:46 -070047 Device::MOUNT_SYSTEM,
48 Device::VIEW_RECOVERY_LOGS,
49 Device::RUN_GRAPHICS_TEST,
50 Device::RUN_LOCALE_TEST,
51 Device::SHUTDOWN,
Elliott Hughes01fcbe12016-05-23 17:43:41 -070052};
53
Alex Deymo4344d632016-08-03 21:03:53 -070054static_assert(sizeof(MENU_ITEMS) / sizeof(MENU_ITEMS[0]) ==
55 sizeof(MENU_ACTIONS) / sizeof(MENU_ACTIONS[0]) + 1,
56 "MENU_ITEMS and MENU_ACTIONS should have the same length, "
57 "except for the extra NULL entry in MENU_ITEMS.");
Elliott Hughes01fcbe12016-05-23 17:43:41 -070058
Elliott Hughes4af215b2015-04-10 15:00:34 -070059const char* const* Device::GetMenuItems() {
60 return MENU_ITEMS;
61}
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070062
63Device::BuiltinAction Device::InvokeMenuItem(int menu_position) {
Elliott Hughes01fcbe12016-05-23 17:43:41 -070064 return menu_position < 0 ? NO_ACTION : MENU_ACTIONS[menu_position];
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070065}
Elliott Hughes4af215b2015-04-10 15:00:34 -070066
Tao Baofc5499f2017-02-23 19:06:53 -080067int Device::HandleMenuKey(int key, bool visible) {
Elliott Hughes4af215b2015-04-10 15:00:34 -070068 if (!visible) {
69 return kNoAction;
70 }
71
72 switch (key) {
73 case KEY_DOWN:
74 case KEY_VOLUMEDOWN:
75 return kHighlightDown;
76
77 case KEY_UP:
78 case KEY_VOLUMEUP:
79 return kHighlightUp;
80
81 case KEY_ENTER:
82 case KEY_POWER:
83 return kInvokeItem;
84
85 default:
86 // If you have all of the above buttons, any other buttons
87 // are ignored. Otherwise, any button cycles the highlight.
88 return ui_->HasThreeButtons() ? kNoAction : kHighlightDown;
89 }
90}