aboutsummaryrefslogtreecommitdiffstats
path: root/device.cpp
blob: e337001c41f9f68c4b7df9bf797dd15ad08eab7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * 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.
 */

#include "device.h"

enum menu_action_type {
    ACTION_NONE,
    ACTION_SUBMENU,
    ACTION_INVOKE
};

struct menu_entry;
struct menu {
    const char**        names;
    const menu_entry*   entries;
};

union menu_action {
    const menu*                 submenu;
    Device::BuiltinAction       action;
};

struct menu_entry {
    menu_action_type    action_type;
    const menu_action   action;
};

static const char* WIPE_MENU_NAMES[] = {
#ifndef RELEASE_BUILD
    "Wipe data (keep media)",
#endif
    "Full factory reset",
    "Wipe cache partition",
    nullptr
};
static const menu_entry WIPE_MENU_ENTRIES[] = {
#ifndef RELEASE_BUILD
    { ACTION_INVOKE, { .action = Device::WIPE_DATA } },
#endif
    { ACTION_INVOKE, { .action = Device::WIPE_FULL } },
    { ACTION_INVOKE, { .action = Device::WIPE_CACHE } },
    { ACTION_NONE, { .action = Device::NO_ACTION } }
};
static const menu WIPE_MENU = {
    WIPE_MENU_NAMES,
    WIPE_MENU_ENTRIES
};

static const char* ADVANCED_MENU_NAMES[] = {
    "Reboot recovery",
#ifdef DOWNLOAD_MODE
    "Reboot to download mode",
#else
    "Reboot to bootloader",
#endif
#ifndef RELEASE_BUILD
    "Mount /system",
    "Wipe system partition",
#endif
    "View recovery logs",
    "Power off",
    nullptr
};
static const menu_entry ADVANCED_MENU_ENTRIES[] = {
    { ACTION_INVOKE, { .action = Device::REBOOT_RECOVERY } },
#ifdef DOWNLOAD_MODE
    { ACTION_INVOKE, { .action = Device::REBOOT_BOOTLOADER } },
#else
    { ACTION_INVOKE, { .action = Device::REBOOT_BOOTLOADER } },
#endif
#ifndef RELEASE_BUILD
    { ACTION_INVOKE, { .action = Device::MOUNT_SYSTEM } },
    { ACTION_INVOKE, { .action = Device::WIPE_SYSTEM } },
#endif
    { ACTION_INVOKE, { .action = Device::VIEW_RECOVERY_LOGS } },
    { ACTION_INVOKE, { .action = Device::SHUTDOWN } },
    { ACTION_NONE, { .action = Device::NO_ACTION } }
};
static const menu ADVANCED_MENU = {
    ADVANCED_MENU_NAMES,
    ADVANCED_MENU_ENTRIES
};

static const char* MAIN_MENU_NAMES[] = {
    "Reboot system now",
    "Apply update",
    "Factory reset",
    "Advanced",
    nullptr
};
static const menu_entry MAIN_MENU_ENTRIES[] = {
    { ACTION_INVOKE, { .action = Device::REBOOT } },
    { ACTION_INVOKE, { .action = Device::APPLY_UPDATE } },
    { ACTION_SUBMENU, { .submenu = &WIPE_MENU } },
    { ACTION_SUBMENU, { .submenu = &ADVANCED_MENU } },
    { ACTION_NONE, { .action = Device::NO_ACTION } }
};
static const menu MAIN_MENU = {
    MAIN_MENU_NAMES,
    MAIN_MENU_ENTRIES
};

Device::Device(RecoveryUI* ui) :
        ui_(ui) {
    menu_stack.push(&MAIN_MENU);
}

const char* const* Device::GetMenuItems() {
    const menu* m = menu_stack.top();
    return m->names;
}

Device::BuiltinAction Device::InvokeMenuItem(int menu_position) {
  if (menu_position < 0) {
    if (menu_position == Device::kGoBack) {
        if (menu_stack.size() > 1) {
            menu_stack.pop();
        }
    }
    return NO_ACTION;
  }
  const menu* m = menu_stack.top();
  const menu_entry* entry = m->entries + menu_position;
  if (entry->action_type == ACTION_SUBMENU) {
      menu_stack.push(entry->action.submenu);
      return NO_ACTION;
  }
  return entry->action.action;
}

void Device::GoHome() {
    while (menu_stack.size() > 1) {
        menu_stack.pop();
    }
}

int Device::HandleMenuKey(int key, int visible) {
  if (!visible) {
    return kNoAction;
  }

  if (key & KEY_FLAG_ABS) {
    return key;
  }

  switch (key) {
    case KEY_RIGHTSHIFT:
    case KEY_DOWN:
    case KEY_VOLUMEDOWN:
    case KEY_MENU:
      return kHighlightDown;

    case KEY_LEFTSHIFT:
    case KEY_UP:
    case KEY_VOLUMEUP:
    case KEY_SEARCH:
      return kHighlightUp;

    case KEY_ENTER:
    case KEY_POWER:
    case BTN_MOUSE:
    case KEY_SEND:
      return kInvokeItem;

    case KEY_BACKSPACE:
    case KEY_BACK:
      return kGoBack;

    case KEY_HOME:
    case KEY_HOMEPAGE:
      return kGoHome;

    default:
      // If you have all of the above buttons, any other buttons
      // are ignored. Otherwise, any button cycles the highlight.
      return ui_->HasThreeButtons() ? kNoAction : kHighlightDown;
  }
}