blob: a25f05f8e638c3841606b43a76bf78bc2414e441 [file] [log] [blame]
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001/*
2 * Copyright (C) 2009 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 <linux/input.h>
18
19#include "common.h"
20#include "device.h"
21#include "screen_ui.h"
22
23static const char* HEADERS[] = { "Volume up/down to move highlight;",
24 "enter button to select.",
25 "",
26 NULL };
27
28static const char* ITEMS[] = {"reboot system now",
Doug Zongker9270a202012-01-09 15:16:13 -080029 "apply update from ADB",
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070030 "wipe data/factory reset",
31 "wipe cache partition",
Doug Zongker8d9d3d52014-04-01 13:20:23 -070032 "reboot to bootloader",
33 "power down",
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070034 NULL };
35
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070036class DefaultDevice : public Device {
37 public:
38 DefaultDevice() :
Doug Zongker02abde52014-04-01 09:45:24 -070039 ui(new ScreenRecoveryUI) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070040 }
41
42 RecoveryUI* GetUI() { return ui; }
43
44 int HandleMenuKey(int key, int visible) {
45 if (visible) {
46 switch (key) {
47 case KEY_DOWN:
48 case KEY_VOLUMEDOWN:
49 return kHighlightDown;
50
51 case KEY_UP:
52 case KEY_VOLUMEUP:
53 return kHighlightUp;
54
55 case KEY_ENTER:
Doug Zongker02abde52014-04-01 09:45:24 -070056 case KEY_POWER:
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070057 return kInvokeItem;
58 }
59 }
60
61 return kNoAction;
62 }
63
64 BuiltinAction InvokeMenuItem(int menu_position) {
65 switch (menu_position) {
66 case 0: return REBOOT;
Doug Zongker9270a202012-01-09 15:16:13 -080067 case 1: return APPLY_ADB_SIDELOAD;
68 case 2: return WIPE_DATA;
69 case 3: return WIPE_CACHE;
Doug Zongker8d9d3d52014-04-01 13:20:23 -070070 case 4: return REBOOT_BOOTLOADER;
71 case 5: return SHUTDOWN;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070072 default: return NO_ACTION;
73 }
74 }
75
76 const char* const* GetMenuHeaders() { return HEADERS; }
77 const char* const* GetMenuItems() { return ITEMS; }
78
79 private:
80 RecoveryUI* ui;
81};
82
83Device* make_device() {
84 return new DefaultDevice();
85}