]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/generic-main.c
ui/ncurses: remove boot_editor_attr_field
[petitboot] / ui / ncurses / generic-main.c
1 /*
2  * Petitboot generic ncurses bootloader UI
3  *
4  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
5  *  Copyright 2009 Sony Corp.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; version 2 of the License.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22
23 #define _GNU_SOURCE
24
25 #include <assert.h>
26 #include <errno.h>
27 #include <getopt.h>
28 #include <signal.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sys/time.h>
32
33 #include "log/log.h"
34 #include "talloc/talloc.h"
35 #include "waiter/waiter.h"
36 #include "ui/common/discover-client.h"
37 #include "nc-cui.h"
38
39 static void print_version(void)
40 {
41         printf("petitboot-nc (" PACKAGE_NAME ") " PACKAGE_VERSION "\n");
42 }
43
44 static void print_usage(void)
45 {
46         print_version();
47         printf(
48 "Usage: petitboot-nc [-h, --help] [-l, --log log-file]\n"
49 "                    [-s, --start-daemon] [-V, --version]\n");
50 }
51
52 /**
53  * enum opt_value - Tri-state options variables.
54  */
55
56 enum opt_value {opt_undef = 0, opt_yes, opt_no};
57
58 /**
59  * struct opts - Values from command line options.
60  */
61
62 struct opts {
63         enum opt_value show_help;
64         const char *log_file;
65         enum opt_value start_daemon;
66         enum opt_value show_version;
67 };
68
69 /**
70  * opts_parse - Parse the command line options.
71  */
72
73 static int opts_parse(struct opts *opts, int argc, char *argv[])
74 {
75         static const struct option long_options[] = {
76                 {"help",         no_argument,       NULL, 'h'},
77                 {"log",          required_argument, NULL, 'l'},
78                 {"start-daemon", no_argument,       NULL, 's'},
79                 {"version",      no_argument,       NULL, 'V'},
80                 { NULL,          0,                 NULL, 0},
81         };
82         static const char short_options[] = "dhl:sV";
83         static const struct opts default_values = {
84                 .log_file = "/var/log/petitboot/petitboot-nc.log",
85         };
86
87         *opts = default_values;
88
89         while (1) {
90                 int c = getopt_long(argc, argv, short_options, long_options,
91                         NULL);
92
93                 if (c == EOF)
94                         break;
95
96                 switch (c) {
97                 case 'h':
98                         opts->show_help = opt_yes;
99                         break;
100                 case 'l':
101                         opts->log_file = optarg;
102                         break;
103                 case 's':
104                         opts->start_daemon = opt_yes;
105                         break;
106                 case 'V':
107                         opts->show_version = opt_yes;
108                         break;
109                 default:
110                         opts->show_help = opt_yes;
111                         return -1;
112                 }
113         }
114
115         return 0;
116 }
117
118 /**
119  * struct pb_cui - Main cui program instance.
120  * @mm: Main menu.
121  * @svm: Set video mode menu.
122  */
123
124 struct pb_cui {
125         struct pmenu *mm;
126         struct cui *cui;
127 };
128
129 static int pmenu_sysinfo(struct pmenu_item *item)
130 {
131         cui_show_sysinfo(cui_from_item(item));
132         return 0;
133 }
134
135 static int pmenu_config(struct pmenu_item *item)
136 {
137         cui_show_config(cui_from_item(item));
138         return 0;
139 }
140
141 /**
142  * pb_mm_init - Setup the main menu instance.
143  */
144
145 static struct pmenu *pb_mm_init(struct pb_cui *pb_cui)
146 {
147         int result;
148         struct pmenu *m;
149         struct pmenu_item *i;
150
151         m = pmenu_init(pb_cui->cui, 4, cui_on_exit);
152
153         if (!m) {
154                 pb_log("%s: failed\n", __func__);
155                 return NULL;
156         }
157
158         m->on_new = cui_item_new;
159
160         m->scr.frame.ltitle = talloc_asprintf(m,
161                 "Petitboot (" PACKAGE_VERSION ")");
162         m->scr.frame.rtitle = NULL;
163         m->scr.frame.help = talloc_strdup(m,
164                 "Enter=accept, e=edit, n=new, x=exit");
165         m->scr.frame.status = talloc_strdup(m, "Welcome to Petitboot");
166
167         i = pmenu_item_init(m, 0, " ");
168         item_opts_off(i->nci, O_SELECTABLE);
169         i = pmenu_item_init(m, 1, "System information");
170         i->on_execute = pmenu_sysinfo;
171         i = pmenu_item_init(m, 2, "System configuration");
172         i->on_execute = pmenu_config;
173         i = pmenu_item_init(m, 3, "Exit to shell");
174         i->on_execute = pmenu_exit_cb;
175
176         result = pmenu_setup(m);
177
178         if (result) {
179                 pb_log("%s:%d: pmenu_setup failed: %s\n", __func__, __LINE__,
180                         strerror(errno));
181                 goto fail_setup;
182         }
183
184         menu_opts_off(m->ncm, O_SHOWDESC);
185         set_menu_mark(m->ncm, " *");
186         set_current_item(m->ncm, i->nci);
187
188         return m;
189
190 fail_setup:
191         talloc_free(m);
192         return NULL;
193 }
194
195 static struct pb_cui pb;
196
197 static void sig_handler(int signum)
198 {
199         DBGS("%d\n", signum);
200
201         switch (signum) {
202         case SIGWINCH:
203                 if (pb.cui)
204                         cui_resize(pb.cui);
205                 break;
206         default:
207                 assert(0 && "unknown sig");
208                 /* fall through */
209         case SIGINT:
210         case SIGHUP:
211         case SIGTERM:
212                 if (pb.cui)
213                         cui_abort(pb.cui);
214                 break;
215         }
216 }
217
218 /**
219  * main - cui bootloader main routine.
220  */
221
222 int main(int argc, char *argv[])
223 {
224         static struct sigaction sa;
225         int result;
226         int cui_result;
227         struct opts opts;
228         FILE *log;
229
230         result = opts_parse(&opts, argc, argv);
231
232         if (result) {
233                 print_usage();
234                 return EXIT_FAILURE;
235         }
236
237         if (opts.show_help == opt_yes) {
238                 print_usage();
239                 return EXIT_SUCCESS;
240         }
241
242         if (opts.show_version == opt_yes) {
243                 print_version();
244                 return EXIT_SUCCESS;
245         }
246
247         log = stderr;
248         if (strcmp(opts.log_file, "-")) {
249                 log = fopen(opts.log_file, "a");
250
251                 if (!log)
252                         log = fopen("/dev/null", "a");
253         }
254
255         pb_log_init(log);
256
257         pb_log("--- petitboot-nc ---\n");
258
259         sa.sa_handler = sig_handler;
260         result = sigaction(SIGALRM, &sa, NULL);
261         result += sigaction(SIGHUP, &sa, NULL);
262         result += sigaction(SIGINT, &sa, NULL);
263         result += sigaction(SIGTERM, &sa, NULL);
264         result += sigaction(SIGWINCH, &sa, NULL);
265
266         if (result) {
267                 pb_log("%s sigaction failed.\n", __func__);
268                 return EXIT_FAILURE;
269         }
270
271         pb.cui = cui_init(&pb, NULL, opts.start_daemon);
272
273         if (!pb.cui)
274                 return EXIT_FAILURE;
275
276         pb.mm = pb_mm_init(&pb);
277
278         cui_result = cui_run(pb.cui, pb.mm, 0);
279
280         pmenu_delete(pb.mm);
281
282         talloc_free(pb.cui);
283
284         pb_log("--- end ---\n");
285
286         return cui_result ? EXIT_FAILURE : EXIT_SUCCESS;
287 }