Finished and deployed CORBA sandbox separation
[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
29
30 G_BEGIN_DECLS
31
32 extern const struct poptOption captive_popt[];
33 #define CAPTIVE_POPT_INCLUDE \
34                 { NULL,'\0',POPT_ARG_INCLUDE_TABLE,(struct poptOption *)&captive_popt,0,"Captive" }
35
36
37 enum captive_option_rwmode {
38         CAPTIVE_OPTION_RWMODE_RO,
39         CAPTIVE_OPTION_RWMODE_BLIND,
40         CAPTIVE_OPTION_RWMODE_RW,
41         };
42
43 enum captive_option_media {
44         CAPTIVE_OPTION_MEDIA_CDROM,
45         CAPTIVE_OPTION_MEDIA_DISK,
46         };
47
48 struct captive_options {
49         gchar *filesystem;
50         enum captive_option_rwmode rwmode;
51         enum captive_option_media media;
52         gboolean debug_messages;
53         GIOChannel *image_iochannel;
54         GList *load_module;     /* of 'gchar *' */
55         gboolean sandbox;
56         };
57
58 /**
59  * captive_options:
60  * Current options set in one CORBA sandboxed child.
61  * It is also set when run in non-CORBA debugging mode.
62  * Set to %NULL in the CORBA master process.
63  */
64 extern struct captive_options *captive_options;
65
66 /* Functions handle just the fields, not the structure itself. */
67 void captive_options_init(struct captive_options *options);
68 void captive_options_copy(struct captive_options *dest,const struct captive_options *src);
69 void captive_options_free(struct captive_options *options);
70 gboolean captive_options_parse(struct captive_options *options,const gchar *captive_args);
71
72 G_END_DECLS
73
74
75 #endif /* _CAPTIVE_CLIENT_OPTIONS_H */