]> git.ozlabs.org Git - petitboot/blob - ui/twin/pbt-main.c
542f9497a8c07f45e4d1c8b283200c3b5d276bfc
[petitboot] / ui / twin / pbt-main.c
1 /*
2  *  Copyright Geoff Levand <geoff@infradead.org>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; version 2 of the License.
7  *
8  *  This program is distributed in the hope that it will be useful,
9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *  GNU General Public License for more details.
12  *
13  *  You should have received a copy of the GNU General Public License
14  *  along with this program; if not, write to the Free Software
15  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16  */
17
18 #if defined(HAVE_CONFIG_H)
19 #include "config.h"
20 #endif
21
22 #define _GNU_SOURCE
23 #include <stdio.h>
24 #include <getopt.h>
25
26 #include "pbt-main.h"
27
28 void pbt_print_version(void)
29 {
30         printf("petitboot-twin (" PACKAGE_NAME ") " PACKAGE_VERSION "\n");
31 }
32
33 void pbt_print_usage(void)
34 {
35         pbt_print_version();
36         printf(
37 "Usage: petitboot-twin [-h, --help] [-l, --log log-file]\n"
38 "                      [-r, --reset-defaults] [-s, --start-daemon]\n"
39 "                      [-t, --timeout] [-V, --version]\n"
40 "                      [[-f --fbdev] | [-x --x11]]\n");
41 }
42
43 /**
44  * pbt_opts_parse - Parse the command line options.
45  */
46
47 int pbt_opts_parse(struct pbt_opts *opts, int argc, char *argv[])
48 {
49         static const struct option long_options[] = {
50                 {"fbdev",          no_argument,       NULL, 'f'},
51                 {"help",           no_argument,       NULL, 'h'},
52                 {"log",            required_argument, NULL, 'l'},
53                 {"reset-defaults", no_argument,       NULL, 'r'},
54                 {"start-daemon",   no_argument,       NULL, 's'},
55                 {"timeout",        no_argument,       NULL, 't'},
56                 {"version",        no_argument,       NULL, 'V'},
57                 {"x11",            no_argument,       NULL, 'x'},
58                 { NULL, 0, NULL, 0},
59         };
60         static const char short_options[] = "dfhl:strVx";
61         static const struct pbt_opts default_values = {
62                 .backend = pbt_twin_x11,
63                 .log_file = "/var/log/petitboot/petitboot-twin.log",
64         };
65
66         *opts = default_values;
67
68         while (1) {
69                 int c = getopt_long(argc, argv, short_options, long_options,
70                         NULL);
71
72                 if (c == EOF)
73                         break;
74
75                 switch (c) {
76                 case 'f':
77                         opts->backend = pbt_twin_fbdev;
78                         break;
79                 case 'h':
80                         opts->show_help = pbt_opt_yes;
81                         break;
82                 case 'l':
83                         opts->log_file = optarg;
84                         break;
85                 case 's':
86                         opts->start_daemon = pbt_opt_yes;
87                         break;
88                 case 't':
89                         opts->use_timeout = pbt_opt_yes;
90                         break;
91                 case 'r':
92                         opts->reset_defaults = pbt_opt_yes;
93                         break;
94                 case 'V':
95                         opts->show_version = pbt_opt_yes;
96                         break;
97                 case 'x':
98                         opts->backend = pbt_twin_x11;
99                         break;
100                 default:
101                         opts->show_help = pbt_opt_yes;
102                         return -1;
103                 }
104         }
105
106         return optind != argc;
107 }