1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* Copyright (C) 2009 Sony Computer Entertainment Inc.
* Copyright 2009 Sony Corp.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#if !defined(_PB_DISCOVER_CONFIG_H)
#define _PB_DISCOVER_CONFIG_H
#include "device-handler.h"
struct conf_global_option {
const char *name;
char *value;
};
struct conf_context {
void *parser_info;
struct discover_context *dc;
struct conf_global_option *global_options;
char *(*get_pair)(struct conf_context *conf, char *str, char **name_out,
char **value_out, char terminator);
void (*process_pair)(struct conf_context *conf, const char *name,
char *value);
void (*finish)(struct conf_context *conf);
};
void conf_parse_buf(struct conf_context *conf, char *buf, int len);
char *conf_get_pair(struct conf_context *conf, char *str, char **name_out,
char **value_out, char delimiter, char terminator);
void conf_init_global_options(struct conf_context *conf);
const char *conf_get_global_option(struct conf_context *conf,
const char *name);
int conf_set_global_option(struct conf_context *conf, const char *name,
const char *value);
static inline char *conf_get_pair_equal(struct conf_context *conf, char *str,
char **name_out, char **value_out, char terminator)
{
return conf_get_pair(conf, str, name_out, value_out, '=', terminator);
}
static inline char *conf_get_pair_space(struct conf_context *conf, char *str,
char **name_out, char **value_out, char terminator)
{
return conf_get_pair(conf, str, name_out, value_out, ' ', terminator);
}
/* utility routines */
int conf_param_in_list(const char *const *list, const char *param);
char *conf_strip_str(char *s);
char *conf_replace_char(char *s, char from, char to);
#endif
|