blob: f5fc6930a2cb5fd428fa61164bffa238b11a49b7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jason Hobbsb69bf522011-08-23 11:06:49 +00002/*
3 * Copyright 2010-2011 Calxeda, Inc.
Leon Yudfaad822019-06-21 12:12:39 +08004 * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
Jason Hobbsb69bf522011-08-23 11:06:49 +00005 */
6
7#include <common.h>
Simon Glass18d66532014-04-10 20:01:25 -06008#include <cli.h>
Jason Hobbsb69bf522011-08-23 11:06:49 +00009#include <malloc.h>
10#include <errno.h>
11#include <linux/list.h>
12
13#include "menu.h"
14
15/*
16 * Internally, each item in a menu is represented by a struct menu_item.
17 *
18 * These items will be alloc'd and initialized by menu_item_add and destroyed
19 * by menu_item_destroy, and the consumer of the interface never sees that
20 * this struct is used at all.
21 */
22struct menu_item {
23 char *key;
24 void *data;
25 struct list_head list;
26};
27
28/*
29 * The menu is composed of a list of items along with settings and callbacks
30 * provided by the user. An incomplete definition of this struct is available
31 * in menu.h, but the full definition is here to prevent consumers from
32 * relying on its contents.
33 */
34struct menu {
35 struct menu_item *default_item;
Jason Hobbsb41bc5a2011-08-23 11:06:50 +000036 int timeout;
Jason Hobbsb69bf522011-08-23 11:06:49 +000037 char *title;
38 int prompt;
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -070039 void (*display_statusline)(struct menu *);
Jason Hobbsb69bf522011-08-23 11:06:49 +000040 void (*item_data_print)(void *);
Pali Rohárfc9d64f2013-03-23 14:50:40 +000041 char *(*item_choice)(void *);
42 void *item_choice_data;
Jason Hobbsb69bf522011-08-23 11:06:49 +000043 struct list_head items;
Leon Yudfaad822019-06-21 12:12:39 +080044 int item_cnt;
Jason Hobbsb69bf522011-08-23 11:06:49 +000045};
46
47/*
48 * An iterator function for menu items. callback will be called for each item
49 * in m, with m, a pointer to the item, and extra being passed to callback. If
50 * callback returns a value other than NULL, iteration stops and the value
51 * return by callback is returned from menu_items_iter. This allows it to be
52 * used for search type operations. It is also safe for callback to remove the
53 * item from the list of items.
54 */
55static inline void *menu_items_iter(struct menu *m,
56 void *(*callback)(struct menu *, struct menu_item *, void *),
57 void *extra)
58{
59 struct list_head *pos, *n;
60 struct menu_item *item;
61 void *ret;
62
63 list_for_each_safe(pos, n, &m->items) {
64 item = list_entry(pos, struct menu_item, list);
65
66 ret = callback(m, item, extra);
67
68 if (ret)
69 return ret;
70 }
71
72 return NULL;
73}
74
75/*
76 * Print a menu_item. If the consumer provided an item_data_print function
77 * when creating the menu, call it with a pointer to the item's private data.
78 * Otherwise, print the key of the item.
79 */
80static inline void *menu_item_print(struct menu *m,
81 struct menu_item *item,
82 void *extra)
83{
Wolfgang Denkd887ad52011-11-28 20:19:41 +010084 if (!m->item_data_print) {
Anatolij Gustschin21574972011-12-03 06:46:07 +000085 puts(item->key);
Wolfgang Denkd887ad52011-11-28 20:19:41 +010086 putc('\n');
87 } else {
Jason Hobbsb69bf522011-08-23 11:06:49 +000088 m->item_data_print(item->data);
Wolfgang Denkd887ad52011-11-28 20:19:41 +010089 }
Jason Hobbsb69bf522011-08-23 11:06:49 +000090
91 return NULL;
92}
93
94/*
95 * Free the memory used by a menu item. This includes the memory used by its
96 * key.
97 */
98static inline void *menu_item_destroy(struct menu *m,
99 struct menu_item *item,
100 void *extra)
101{
102 if (item->key)
103 free(item->key);
104
105 free(item);
106
107 return NULL;
108}
109
110/*
111 * Display a menu so the user can make a choice of an item. First display its
112 * title, if any, and then each item in the menu.
113 */
114static inline void menu_display(struct menu *m)
115{
Wolfgang Denkd887ad52011-11-28 20:19:41 +0100116 if (m->title) {
117 puts(m->title);
118 putc('\n');
119 }
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700120 if (m->display_statusline)
121 m->display_statusline(m);
Jason Hobbsb69bf522011-08-23 11:06:49 +0000122
123 menu_items_iter(m, menu_item_print, NULL);
124}
125
126/*
127 * Check if an item's key matches a provided string, pointed to by extra. If
128 * extra is NULL, an item with a NULL key will match. Otherwise, the item's
129 * key has to match according to strcmp.
130 *
131 * This is called via menu_items_iter, so it returns a pointer to the item if
132 * the key matches, and returns NULL otherwise.
133 */
134static inline void *menu_item_key_match(struct menu *m,
135 struct menu_item *item, void *extra)
136{
137 char *item_key = extra;
138
139 if (!item_key || !item->key) {
140 if (item_key == item->key)
141 return item;
142
143 return NULL;
144 }
145
146 if (strcmp(item->key, item_key) == 0)
147 return item;
148
149 return NULL;
150}
151
152/*
153 * Find the first item with a key matching item_key, if any exists.
154 */
155static inline struct menu_item *menu_item_by_key(struct menu *m,
156 char *item_key)
157{
158 return menu_items_iter(m, menu_item_key_match, item_key);
159}
160
161/*
Jason Hobbsb69bf522011-08-23 11:06:49 +0000162 * Set *choice to point to the default item's data, if any default item was
163 * set, and returns 1. If no default item was set, returns -ENOENT.
164 */
Anatolij Gustschin6a3439f2013-03-23 14:52:04 +0000165int menu_default_choice(struct menu *m, void **choice)
Jason Hobbsb69bf522011-08-23 11:06:49 +0000166{
167 if (m->default_item) {
168 *choice = m->default_item->data;
169 return 1;
170 }
171
172 return -ENOENT;
173}
174
175/*
176 * Displays the menu and asks the user to choose an item. *choice will point
177 * to the private data of the item the user chooses. The user makes a choice
178 * by inputting a string matching the key of an item. Invalid choices will
179 * cause the user to be prompted again, repeatedly, until the user makes a
180 * valid choice. The user can exit the menu without making a choice via ^c.
181 *
182 * Returns 1 if the user made a choice, or -EINTR if they bail via ^c.
183 */
184static inline int menu_interactive_choice(struct menu *m, void **choice)
185{
186 char cbuf[CONFIG_SYS_CBSIZE];
187 struct menu_item *choice_item = NULL;
188 int readret;
189
190 while (!choice_item) {
191 cbuf[0] = '\0';
192
193 menu_display(m);
194
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000195 if (!m->item_choice) {
Simon Glasse1bf8242014-04-10 20:01:27 -0600196 readret = cli_readline_into_buffer("Enter choice: ",
Masahiro Yamada86fbad22018-05-24 17:04:57 +0900197 cbuf, m->timeout);
Jason Hobbsb69bf522011-08-23 11:06:49 +0000198
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000199 if (readret >= 0) {
200 choice_item = menu_item_by_key(m, cbuf);
201 if (!choice_item)
202 printf("%s not found\n", cbuf);
Tuomas Tynkkynen9b081d82015-05-07 21:29:19 +0300203 } else if (readret == -1) {
204 printf("<INTERRUPT>\n");
205 return -EINTR;
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000206 } else {
207 return menu_default_choice(m, choice);
Heiko Schocherfc4fa6a2012-01-16 22:24:29 +0000208 }
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000209 } else {
210 char *key = m->item_choice(m->item_choice_data);
211
212 if (key)
213 choice_item = menu_item_by_key(m, key);
214 }
215
216 if (!choice_item)
217 m->timeout = 0;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000218 }
219
220 *choice = choice_item->data;
221
222 return 1;
223}
224
225/*
226 * menu_default_set() - Sets the default choice for the menu. This is safe to
227 * call more than once on a menu.
228 *
229 * m - Points to a menu created by menu_create().
230 *
231 * item_key - Points to a string that, when compared using strcmp, matches the
232 * key for an existing item in the menu.
233 *
234 * Returns 1 if successful, -EINVAL if m is NULL, or -ENOENT if no item with a
235 * key matching item_key is found.
236 */
237int menu_default_set(struct menu *m, char *item_key)
238{
239 struct menu_item *item;
240
241 if (!m)
242 return -EINVAL;
243
244 item = menu_item_by_key(m, item_key);
245
246 if (!item)
247 return -ENOENT;
248
249 m->default_item = item;
250
251 return 1;
252}
253
254/*
255 * menu_get_choice() - Returns the user's selected menu entry, or the default
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000256 * if the menu is set to not prompt or the timeout expires. This is safe to
257 * call more than once.
Jason Hobbsb69bf522011-08-23 11:06:49 +0000258 *
259 * m - Points to a menu created by menu_create().
260 *
261 * choice - Points to a location that will store a pointer to the selected
262 * menu item. If no item is selected or there is an error, no value will be
263 * written at the location it points to.
264 *
265 * Returns 1 if successful, -EINVAL if m or choice is NULL, -ENOENT if no
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000266 * default has been set and the menu is set to not prompt or the timeout
267 * expires, or -EINTR if the user exits the menu via ^c.
Jason Hobbsb69bf522011-08-23 11:06:49 +0000268 */
269int menu_get_choice(struct menu *m, void **choice)
270{
271 if (!m || !choice)
272 return -EINVAL;
273
Masahisa Kojima7f675252022-04-28 17:09:37 +0900274 if (!m->item_cnt)
275 return -ENOENT;
276
Masahisa Kojimac23bb032022-04-28 17:09:36 +0900277 if (!m->prompt)
Jason Hobbsb69bf522011-08-23 11:06:49 +0000278 return menu_default_choice(m, choice);
279
280 return menu_interactive_choice(m, choice);
281}
282
283/*
284 * menu_item_add() - Adds or replaces a menu item. Note that this replaces the
285 * data of an item if it already exists, but doesn't change the order of the
286 * item.
287 *
288 * m - Points to a menu created by menu_create().
289 *
290 * item_key - Points to a string that will uniquely identify the item. The
291 * string will be copied to internal storage, and is safe to discard after
292 * passing to menu_item_add.
293 *
294 * item_data - An opaque pointer associated with an item. It is never
295 * dereferenced internally, but will be passed to the item_data_print, and
296 * will be returned from menu_get_choice if the menu item is selected.
297 *
298 * Returns 1 if successful, -EINVAL if m is NULL, or -ENOMEM if there is
299 * insufficient memory to add the menu item.
300 */
301int menu_item_add(struct menu *m, char *item_key, void *item_data)
302{
303 struct menu_item *item;
304
305 if (!m)
306 return -EINVAL;
307
308 item = menu_item_by_key(m, item_key);
309
310 if (item) {
311 item->data = item_data;
312 return 1;
313 }
314
315 item = malloc(sizeof *item);
316 if (!item)
317 return -ENOMEM;
318
319 item->key = strdup(item_key);
320
321 if (!item->key) {
322 free(item);
323 return -ENOMEM;
324 }
325
326 item->data = item_data;
327
328 list_add_tail(&item->list, &m->items);
Leon Yudfaad822019-06-21 12:12:39 +0800329 m->item_cnt++;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000330
331 return 1;
332}
333
334/*
335 * menu_create() - Creates a menu handle with default settings
336 *
337 * title - If not NULL, points to a string that will be displayed before the
338 * list of menu items. It will be copied to internal storage, and is safe to
339 * discard after passing to menu_create().
340 *
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000341 * timeout - A delay in seconds to wait for user input. If 0, timeout is
342 * disabled, and the default choice will be returned unless prompt is 1.
343 *
344 * prompt - If 0, don't ask for user input unless there is an interrupted
345 * timeout. If 1, the user will be prompted for input regardless of the value
346 * of timeout.
Jason Hobbsb69bf522011-08-23 11:06:49 +0000347 *
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700348 * display_statusline - If not NULL, will be called to show a statusline when
349 * the menu is displayed.
350 *
Jason Hobbsb69bf522011-08-23 11:06:49 +0000351 * item_data_print - If not NULL, will be called for each item when the menu
352 * is displayed, with the pointer to the item's data passed as the argument.
353 * If NULL, each item's key will be printed instead. Since an item's key is
354 * what must be entered to select an item, the item_data_print function should
355 * make it obvious what the key for each entry is.
356 *
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000357 * item_choice - If not NULL, will be called when asking the user to choose an
Alexander Merkledd8d8da2016-03-17 15:44:47 +0100358 * item. Returns a key string corresponding to the chosen item or NULL if
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000359 * no item has been selected.
360 *
361 * item_choice_data - Will be passed as the argument to the item_choice function
362 *
Jason Hobbsb69bf522011-08-23 11:06:49 +0000363 * Returns a pointer to the menu if successful, or NULL if there is
364 * insufficient memory available to create the menu.
365 */
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000366struct menu *menu_create(char *title, int timeout, int prompt,
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700367 void (*display_statusline)(struct menu *),
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000368 void (*item_data_print)(void *),
369 char *(*item_choice)(void *),
370 void *item_choice_data)
Jason Hobbsb69bf522011-08-23 11:06:49 +0000371{
372 struct menu *m;
373
374 m = malloc(sizeof *m);
375
376 if (!m)
377 return NULL;
378
379 m->default_item = NULL;
380 m->prompt = prompt;
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000381 m->timeout = timeout;
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700382 m->display_statusline = display_statusline;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000383 m->item_data_print = item_data_print;
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000384 m->item_choice = item_choice;
385 m->item_choice_data = item_choice_data;
Leon Yudfaad822019-06-21 12:12:39 +0800386 m->item_cnt = 0;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000387
388 if (title) {
389 m->title = strdup(title);
390 if (!m->title) {
391 free(m);
392 return NULL;
393 }
394 } else
395 m->title = NULL;
396
397
398 INIT_LIST_HEAD(&m->items);
399
400 return m;
401}
402
403/*
404 * menu_destroy() - frees the memory used by a menu and its items.
405 *
406 * m - Points to a menu created by menu_create().
407 *
408 * Returns 1 if successful, or -EINVAL if m is NULL.
409 */
410int menu_destroy(struct menu *m)
411{
412 if (!m)
413 return -EINVAL;
414
415 menu_items_iter(m, menu_item_destroy, NULL);
416
417 if (m->title)
418 free(m->title);
419
420 free(m);
421
422 return 1;
423}