]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-menu.c
7302c6d0dab0295e7f911b9e44cfc2185b1de9f9
[petitboot] / ui / ncurses / nc-menu.c
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #define _GNU_SOURCE
20
21 #include <assert.h>
22 #include <errno.h>
23 #include <string.h>
24
25 #include "log/log.h"
26 #include "talloc/talloc.h"
27 #include "ui/common/ui-system.h"
28 #include "nc-menu.h"
29
30 /**
31  * pmenu_exit_cb - Callback helper that runs run menu.on_exit().
32  */
33
34 int pmenu_exit_cb(struct pmenu_item *item)
35 {
36         assert(item->pmenu->on_exit);
37         item->pmenu->on_exit(item->pmenu);
38         return 0;
39 }
40
41 /**
42  * pmenu_find_selected - Find the selected pmenu_item.
43  */
44
45 struct pmenu_item *pmenu_find_selected(struct pmenu *menu)
46 {
47         return pmenu_item_from_arg(item_userptr(current_item(menu->ncm)));
48 }
49
50 static int pmenu_post(struct nc_scr *scr)
51 {
52         int result;
53         struct pmenu *menu = pmenu_from_scr(scr);
54
55         result = post_menu(menu->ncm);
56
57         nc_scr_frame_draw(scr);
58         redrawwin(menu->scr.main_ncw);
59         wrefresh(menu->scr.main_ncw);
60
61         return result;
62 }
63
64 static int pmenu_unpost(struct nc_scr *scr)
65 {
66         return unpost_menu(pmenu_from_scr(scr)->ncm);
67 }
68
69 static void pmenu_resize(struct nc_scr *scr)
70 {
71         /* FIXME: menus can't be resized, need to recreate here */
72         pmenu_unpost(scr);
73         pmenu_post(scr);
74 }
75
76 /**
77  * pmenu_item_init - Allocate and initialize a new pmenu_item instance.
78  *
79  * Returns a pointer the the initialized struct pmenu_item instance or NULL
80  * on error. The caller is responsible for calling talloc_free() for the
81  * returned instance.
82  */
83
84 struct pmenu_item *pmenu_item_alloc(struct pmenu *menu)
85 {
86         /* Items go with the menu, not the pointer array. */
87
88         struct pmenu_item *i = talloc_zero(menu, struct pmenu_item);
89
90         return i;
91 }
92
93 struct pmenu_item *pmenu_item_setup(struct pmenu *menu, struct pmenu_item *i,
94         unsigned int index, const char *name)
95 {
96         assert(i);
97         assert(name);
98
99         if (!i)
100                 return NULL;
101
102         i->i_sig = pb_item_sig;
103         i->pmenu = menu;
104         i->nci = new_item(name, NULL);
105
106         if (!i->nci) {
107                 talloc_free(i);
108                 return NULL;
109         }
110
111         set_item_userptr(i->nci, i);
112
113         menu->items[index] = i->nci;
114
115         return i;
116 }
117
118 static int pmenu_item_get_index(const struct pmenu_item *item)
119 {
120         unsigned int i;
121
122         for (i = 0; i < item->pmenu->item_count; i++)
123                 if (item->pmenu->items[i] == item->nci)
124                         return i;
125
126         pb_log("%s: not found: %p %s\n", __func__, item,
127                 (item ? item->nci->name.str : "(null)"));
128         return -1;
129 }
130
131 /**
132  * pmenu_item_replace - Replace the menu item with a new one.
133  *
134  * Use this routine to change a menu item's text.
135  */
136
137 int pmenu_item_replace(struct pmenu_item *i, const char *name)
138 {
139         struct pmenu *menu;
140         ITEM *nci;
141         int index;
142
143         assert(name);
144         assert(i->nci);
145
146         menu = i->pmenu;
147         index = pmenu_item_get_index(i);
148
149         if (index < 0) {
150                 assert(0 && "get_index failed");
151                 return -1;
152         }
153
154         nci = new_item(name, NULL);
155
156         if (!nci) {
157                 assert(0 && "new_item failed");
158                 return -1;
159         }
160
161         set_item_userptr(nci, i);
162
163         menu->scr.unpost(&menu->scr);
164         set_menu_items(menu->ncm, NULL);
165
166         // FIXME: need to assure item name is a talloc string.
167         /* talloc_free((char *)item_name(i->nci)); */
168
169         free_item(i->nci);
170         menu->items[index] = nci;
171         i->nci = nci;
172
173         set_menu_items(menu->ncm, menu->items);
174         menu->scr.post(&menu->scr);
175
176         return 0;
177 }
178
179 /**
180  * pmenu_move_cursor - Move the cursor.
181  * @req: An ncurses request or char to send to menu_driver().
182  */
183
184 static void pmenu_move_cursor(struct pmenu *menu, int req)
185 {
186         menu_driver(menu->ncm, req);
187         wrefresh(menu->scr.main_ncw);
188 }
189
190 /**
191  * pmenu_process_key - Process a user keystroke.
192  */
193
194 static void pmenu_process_key(struct nc_scr *scr)
195 {
196         struct pmenu *menu = pmenu_from_scr(scr);
197         struct pmenu_item *item = pmenu_find_selected(menu);
198
199         nc_scr_status_free(&menu->scr);
200
201         while (1) {
202                 int c = getch();
203
204                 if (c == ERR)
205                         return;
206
207                 if (1) DBGS("%d (%o)\n", c, c);
208
209                 if (menu->hot_key)
210                         c = menu->hot_key(menu, item, c);
211
212                 switch (c) {
213                 case 27: /* ESC */
214                         if (menu->on_exit)
215                                 menu->on_exit(menu);
216                         nc_flush_keys();
217                         return;
218
219                 case KEY_PPAGE:
220                         pmenu_move_cursor(menu, REQ_SCR_UPAGE);
221                         break;
222                 case KEY_NPAGE:
223                         pmenu_move_cursor(menu, REQ_SCR_DPAGE);
224                         break;
225                 case KEY_HOME:
226                         pmenu_move_cursor(menu, REQ_FIRST_ITEM);
227                         break;
228                 case KEY_END:
229                         pmenu_move_cursor(menu, REQ_LAST_ITEM);
230                         break;
231                 case KEY_UP:
232                         pmenu_move_cursor(menu, REQ_UP_ITEM);
233                         break;
234                 case KEY_DOWN:
235                         pmenu_move_cursor(menu, REQ_DOWN_ITEM);
236                         break;
237                 case KEY_LEFT:
238                 case 'e':
239                         if (item->on_edit)
240                                 item->on_edit(item);
241                         break;
242                 case 'o':
243                         DBGS("on_open: %p\n", menu->on_open);
244                         if (menu->on_open)
245                                 menu->on_open(menu);
246                         break;
247                 case '\n':
248                 case '\r':
249                         if (item->on_execute)
250                                 item->on_execute(item);
251                         break;
252                 default:
253                         menu_driver(menu->ncm, c);
254                         break;
255                 }
256         }
257 }
258
259 /**
260  * pmenu_grow - Grow the item array.
261  * @count: The count of new items.
262  *
263  * The item array must be disconnected prior to calling pmenu_grow().
264  * Returns the insert point index.
265  */
266
267 unsigned int pmenu_grow(struct pmenu *menu, unsigned int count)
268 {
269         unsigned int tmp;
270
271         assert(item_count(menu->ncm) == 0 && "not disconnected");
272
273         pb_log("%s: %u current + %u new = %u\n", __func__, menu->item_count,
274                 count, menu->item_count + count);
275
276         /* Note that items array has a null terminator. */
277
278         menu->items = talloc_realloc(menu, menu->items, ITEM *,
279                 menu->item_count + count + 1);
280
281         memmove(menu->items + menu->insert_pt + count,
282                 menu->items + menu->insert_pt,
283                 (menu->item_count - menu->insert_pt + 1) * sizeof(ITEM *));
284
285         memset(menu->items + menu->insert_pt, 0, count * sizeof(ITEM *));
286
287         tmp = menu->insert_pt;
288         menu->insert_pt += count;
289         menu->item_count += count;
290
291         return tmp;
292 }
293
294 /**
295  * pmenu_remove - Remove an item from the item array.
296  *
297  * The item array must be disconnected prior to calling pmenu_remove()
298  */
299
300 int pmenu_remove(struct pmenu *menu, struct pmenu_item *item)
301 {
302         int index;
303
304         assert(item_count(menu->ncm) == 0 && "not disconnected");
305
306         assert(menu->item_count);
307
308         pb_log("%s: %u\n", __func__, menu->item_count);
309
310         index = pmenu_item_get_index(item);
311
312         if (index < 0)
313                 return -1;
314
315         free_item(item->nci);
316         talloc_free(item);
317
318         /* Note that items array has a null terminator. */
319
320         menu->insert_pt--;
321         menu->item_count--;
322
323         memmove(&menu->items[index], &menu->items[index + 1],
324                 (menu->item_count - index + 1) * sizeof(ITEM *));
325         menu->items = talloc_realloc(menu, menu->items, ITEM *,
326                 menu->item_count + 1);
327
328         return 0;
329 }
330
331 /**
332  * pmenu_init - Allocate and initialize a new menu instance.
333  *
334  * Returns a pointer the the initialized struct pmenu instance or NULL on error.
335  * The caller is responsible for calling talloc_free() for the returned
336  * instance.
337  */
338
339 struct pmenu *pmenu_init(void *ui_ctx, unsigned int item_count,
340         void (*on_exit)(struct pmenu *))
341 {
342         struct pmenu *menu = talloc_zero(ui_ctx, struct pmenu);
343
344         if (!menu)
345                 return NULL;
346
347         /* note items array has a null terminator */
348
349         menu->items = talloc_zero_array(menu, ITEM *, item_count + 1);
350
351         if (!menu->items) {
352                 talloc_free(menu);
353                 return NULL;
354         }
355
356         nc_scr_init(&menu->scr, pb_pmenu_sig, 0, ui_ctx, pmenu_process_key,
357                 pmenu_post, pmenu_unpost, pmenu_resize);
358
359         menu->item_count = item_count;
360         menu->insert_pt = 0; /* insert from top */
361         menu->on_exit = on_exit;
362
363         return menu;
364 }
365
366 /**
367  * pmenu_setup - Create nc menu, setup nc windows.
368  *
369  */
370
371 int pmenu_setup(struct pmenu *menu)
372 {
373         assert(!menu->ncm);
374
375         menu->ncm = new_menu(menu->items);
376
377         if (!menu->ncm) {
378                 pb_log("%s:%d: new_menu failed: %s\n", __func__, __LINE__,
379                         strerror(errno));
380                 return -1;
381         }
382
383         set_menu_win(menu->ncm, menu->scr.main_ncw);
384         set_menu_sub(menu->ncm, menu->scr.sub_ncw);
385
386         /* Makes menu scrollable. */
387         set_menu_format(menu->ncm, LINES - nc_scr_frame_lines, 1);
388
389         return 0;
390 }
391
392 /**
393  * pmenu_delete - Delete a menu instance.
394  *
395  */
396
397 void pmenu_delete(struct pmenu *menu)
398 {
399         unsigned int i;
400
401         assert(menu->scr.sig == pb_pmenu_sig);
402         menu->scr.sig = pb_removed_sig;
403
404         for (i = item_count(menu->ncm); i; i--)
405                 free_item(menu->items[i - 1]);
406
407         free_menu(menu->ncm);
408         delwin(menu->scr.sub_ncw);
409         delwin(menu->scr.main_ncw);
410         talloc_free(menu);
411 }