]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-cui.h
Add ncurses UI support
[petitboot] / ui / ncurses / nc-cui.h
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 #if !defined(_PB_NC_CUI_H)
20 #define _PB_NC_CUI_H
21
22 #include <signal.h>
23
24 #include "nc-menu.h"
25 #include "nc-ked.h"
26
27
28 struct cui_opt_data {
29         const struct device *dev;
30         const struct boot_option *opt;
31         uint32_t opt_hash;
32         struct pb_kexec_data *kd;
33 };
34
35 /**
36  * struct cui - Data structure defining a cui state machine.
37  * @c_sig: Signature for callback type checking, should be cui_sig.
38  * @abort: When set to true signals the state machine to exit.
39  * @current: Pointer to the active nc object.
40  * @main: Pointer to the user supplied main menu.
41  *
42  * Device boot_options are dynamically added and removed from the @main
43  * menu.
44  */
45
46 struct cui {
47         enum pb_nc_sig c_sig;
48         sig_atomic_t abort;
49         sig_atomic_t resize;
50         struct nc_scr *current;
51         struct pmenu *main;
52         void *platform_info;
53         unsigned int default_item;
54         int (*on_kexec)(struct cui *cui, struct cui_opt_data *cod);
55 };
56
57 struct cui *cui_init(void* platform_info,
58         int (*on_kexec)(struct cui *, struct cui_opt_data *));
59 struct nc_scr *cui_set_current(struct cui *cui, struct nc_scr *scr);
60 int cui_run(struct cui *cui, struct pmenu *main, unsigned int default_item);
61 int cui_ked_run(struct pmenu_item *item);
62
63 /* convenience routines */
64
65 void cui_abort(struct cui *cui);
66 void cui_resize(struct cui *cui);
67 void cui_on_exit(struct pmenu *menu);
68 int cui_run_cmd(struct pmenu_item *item);
69
70 static inline struct cui *cui_from_arg(void *arg)
71 {
72         struct cui *cui = (struct cui *)arg;
73
74         assert(cui->c_sig == pb_cui_sig);
75         return cui;
76 }
77
78 static inline struct cui *cui_from_pmenu(struct pmenu *menu)
79 {
80         return cui_from_arg(menu->scr.ui_ctx);
81 }
82
83 static inline struct cui *cui_from_item(struct pmenu_item *item)
84 {
85         return cui_from_pmenu(item->pmenu);
86 }
87
88 #endif