]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-menu.c
ui/ncurses: Add discover client to struct cui
[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                 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 'e':
238                         if (item->on_edit)
239                                 item->on_edit(item);
240                         break;
241                 case 'o':
242                         DBGS("on_open: %p\n", menu->on_open);
243                         if (menu->on_open)
244                                 menu->on_open(menu);
245                         break;
246                 case '\n':
247                 case '\r':
248                         if (item->on_execute)
249                                 item->on_execute(item);
250                         break;
251                 default:
252                         menu_driver(menu->ncm, c);
253                         break;
254                 }
255         }
256 }
257
258 /**
259  * pmenu_grow - Grow the item array.
260  * @count: The count of new items.
261  *
262  * The item array must be disconnected prior to calling pmenu_grow().
263  * Returns the insert point index.
264  */
265
266 unsigned int pmenu_grow(struct pmenu *menu, unsigned int count)
267 {
268         unsigned int tmp;
269
270         assert(item_count(menu->ncm) == 0 && "not disconnected");
271
272         pb_log("%s: %u current + %u new = %u\n", __func__, menu->item_count,
273                 count, menu->item_count + count);
274
275         /* Note that items array has a null terminator. */
276
277         menu->items = talloc_realloc(menu, menu->items, ITEM *,
278                 menu->item_count + count + 1);
279
280         memmove(menu->items + menu->insert_pt + count,
281                 menu->items + menu->insert_pt,
282                 (menu->item_count - menu->insert_pt + 1) * sizeof(ITEM *));
283
284         memset(menu->items + menu->insert_pt, 0, count * sizeof(ITEM *));
285
286         tmp = menu->insert_pt;
287         menu->insert_pt += count;
288         menu->item_count += count;
289
290         return tmp;
291 }
292
293 /**
294  * pmenu_remove - Remove an item from the item array.
295  *
296  * The item array must be disconnected prior to calling pmenu_remove()
297  */
298
299 int pmenu_remove(struct pmenu *menu, struct pmenu_item *item)
300 {
301         int index;
302
303         assert(item_count(menu->ncm) == 0 && "not disconnected");
304
305         assert(menu->item_count);
306
307         pb_log("%s: %u\n", __func__, menu->item_count);
308
309         index = pmenu_item_get_index(item);
310
311         if (index < 0)
312                 return -1;
313
314         free_item(item->nci);
315         talloc_free(item);
316
317         /* Note that items array has a null terminator. */
318
319         menu->insert_pt--;
320         menu->item_count--;
321
322         memmove(&menu->items[index], &menu->items[index + 1],
323                 (menu->item_count - index + 1) * sizeof(ITEM *));
324         menu->items = talloc_realloc(menu, menu->items, ITEM *,
325                 menu->item_count + 1);
326
327         return 0;
328 }
329
330 /**
331  * pmenu_init - Allocate and initialize a new menu instance.
332  *
333  * Returns a pointer the the initialized struct pmenu instance or NULL on error.
334  * The caller is responsible for calling talloc_free() for the returned
335  * instance.
336  */
337
338 struct pmenu *pmenu_init(void *ui_ctx, unsigned int item_count,
339         void (*on_exit)(struct pmenu *))
340 {
341         struct pmenu *menu = talloc_zero(ui_ctx, struct pmenu);
342
343         if (!menu)
344                 return NULL;
345
346         /* note items array has a null terminator */
347
348         menu->items = talloc_zero_array(menu, ITEM *, item_count + 1);
349
350         if (!menu->items) {
351                 talloc_free(menu);
352                 return NULL;
353         }
354
355         nc_scr_init(&menu->scr, pb_pmenu_sig, 0, ui_ctx, pmenu_process_key,
356                 pmenu_post, pmenu_unpost, pmenu_resize);
357
358         menu->item_count = item_count;
359         menu->insert_pt = 0; /* insert from top */
360         menu->on_exit = on_exit;
361
362         return menu;
363 }
364
365 /**
366  * pmenu_setup - Create nc menu, setup nc windows.
367  *
368  */
369
370 int pmenu_setup(struct pmenu *menu)
371 {
372         assert(!menu->ncm);
373
374         menu->ncm = new_menu(menu->items);
375
376         if (!menu->ncm) {
377                 pb_log("%s:%d: new_menu failed: %s\n", __func__, __LINE__,
378                         strerror(errno));
379                 return -1;
380         }
381
382         set_menu_win(menu->ncm, menu->scr.main_ncw);
383         set_menu_sub(menu->ncm, menu->scr.sub_ncw);
384
385         /* Makes menu scrollable. */
386         set_menu_format(menu->ncm, LINES - nc_scr_frame_lines, 1);
387
388         return 0;
389 }
390
391 /**
392  * pmenu_delete - Delete a menu instance.
393  *
394  */
395
396 void pmenu_delete(struct pmenu *menu)
397 {
398         unsigned int i;
399
400         assert(menu->scr.sig == pb_pmenu_sig);
401         menu->scr.sig = pb_removed_sig;
402
403         for (i = item_count(menu->ncm); i; i--)
404                 free_item(menu->items[i - 1]);
405
406         free_menu(menu->ncm);
407         delwin(menu->scr.sub_ncw);
408         delwin(menu->scr.main_ncw);
409         talloc_free(menu);
410 }