+CAPTIVE_OPTION_MEDIA_UNKNOWN as guaranteed invalid 'enum' value.
[captive.git] / src / libcaptive / include / captive / options.h
1 /* $Id$
2  * Include file with captive_options definition of libcaptive
3  * Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
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; exactly version 2 of June 1991 is required
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
20 #ifndef _CAPTIVE_CLIENT_OPTIONS_H
21 #define _CAPTIVE_CLIENT_OPTIONS_H 1
22
23
24 #include <glib/gtypes.h>
25 #include <glib/giochannel.h>
26 #include <popt.h>
27 #include <glib/glist.h>
28 #include "captive/options-module.h"
29
30
31 G_BEGIN_DECLS
32
33 extern const struct poptOption captive_popt[];
34 #define CAPTIVE_POPT_INCLUDE \
35                 { NULL,'\0',POPT_ARG_INCLUDE_TABLE,(struct poptOption *)&captive_popt,0,"Captive" }
36
37
38 enum captive_option_rwmode {
39         CAPTIVE_OPTION_RWMODE_RO,
40         CAPTIVE_OPTION_RWMODE_BLIND,
41         CAPTIVE_OPTION_RWMODE_RW,
42         };
43
44 enum captive_option_media {
45         CAPTIVE_OPTION_MEDIA_UNKNOWN,
46         CAPTIVE_OPTION_MEDIA_CDROM,
47         CAPTIVE_OPTION_MEDIA_DISK,
48         };
49
50 struct captive_options {
51         struct captive_options_module filesystem;
52         enum captive_option_rwmode rwmode;
53         enum captive_option_media media;
54         gboolean debug_messages;
55         GIOChannel *image_iochannel;
56         GList *load_module;     /* of 'struct captive_options_module *' */
57         gboolean sandbox;
58         char **sandbox_server_argv;
59         gchar *sandbox_server_ior;
60         gchar *bug_pathname;
61         };
62
63 /**
64  * captive_options:
65  * Current options set in one CORBA sandboxed child.
66  * It is also set when run in non-CORBA debugging mode.
67  * Set to %NULL in the CORBA master process.
68  */
69 extern struct captive_options *captive_options;
70
71 /* Functions handle just the fields, not the structure itself. */
72 void captive_options_init(struct captive_options *options);
73 void captive_options_copy(struct captive_options *dest,const struct captive_options *src);
74 void captive_options_free(struct captive_options *options);
75 gboolean captive_options_parse(struct captive_options *options,const gchar *captive_args);
76
77 G_END_DECLS
78
79
80 #endif /* _CAPTIVE_CLIENT_OPTIONS_H */