]> git.ozlabs.org Git - petitboot/blob - discover/parser-conf.h
Move installed programs from bin to sbin
[petitboot] / discover / parser-conf.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_DISCOVER_CONFIG_H)
20 #define _PB_DISCOVER_CONFIG_H
21
22 #include "device-handler.h"
23
24 struct conf_global_option {
25         const char *name;
26         char *value;
27 };
28
29 struct conf_context {
30         void *parser_info;
31         struct discover_context *dc;
32         char *buf;
33         struct conf_global_option *global_options;
34         const char *const *conf_files;
35
36         void (*process_pair)(struct conf_context *conf, const char *name,
37                 char *value);
38         void (*finish)(struct conf_context *conf);
39 };
40
41 int conf_parse(struct conf_context *conf);
42 char *conf_get_param_pair(char *str, char **name_out, char **value_out,
43                 char terminator);
44 void conf_init_global_options(struct conf_context *conf);
45 const char *conf_get_global_option(struct conf_context *conf,
46         const char *name);
47 int conf_set_global_option(struct conf_context *conf, const char *name,
48         const char *value);
49
50 /* utility routines */
51
52 int conf_param_in_list(const char *const *list, const char *param);
53 char *conf_strip_str(char *s);
54
55 #endif