summaryrefslogtreecommitdiffstats
path: root/discover/parser-conf.c
diff options
context:
space:
mode:
authorGeoff Levand <geoff@infradead.org>2012-03-18 16:09:16 -0700
committerGeoff Levand <geoff@infradead.org>2012-03-18 16:09:16 -0700
commit60384121c27eb92c25955a06e8dea088290f938b (patch)
tree7d0687b0ffc4b91320979280cce42d1f3116de6d /discover/parser-conf.c
parent59c55e2b636c0f877d36dbd158ede80a6dbf7ae3 (diff)
downloadtalos-petitboot-60384121c27eb92c25955a06e8dea088290f938b.tar.gz
talos-petitboot-60384121c27eb92c25955a06e8dea088290f938b.zip
Refactor parser routine conf_get_param_pair()
Refactor conf_get_param_pair() and rename to conf_get_pair(). Add two new wrapper routines conf_get_pair_equal() and conf_get_pair_space(). Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'discover/parser-conf.c')
-rw-r--r--discover/parser-conf.c23
1 files changed, 17 insertions, 6 deletions
diff --git a/discover/parser-conf.c b/discover/parser-conf.c
index 6926a92..a21efc4 100644
--- a/discover/parser-conf.c
+++ b/discover/parser-conf.c
@@ -74,11 +74,12 @@ char *conf_replace_char(char *s, char from, char to)
}
/**
- * conf_get_param_pair - Get the next 'name=value' parameter pair.
+ * conf_get_pair - Get the next 'name/value' parameter pair.
* @str: The string to process.
* @name_out: Returns a pointer to the name.
* @value_out: Returns a pointer to the value.
- * @terminator: The pair separator/terminator.
+ * @tdelimiter: The pair separator.
+ * @terminator: The pair terminator.
*
* Parses a name=value pair returning pointers in @name_out and @value_out.
* The pair can be terminated by @terminator or a zero.
@@ -91,18 +92,27 @@ char *conf_replace_char(char *s, char from, char to)
* string.
*/
-char *conf_get_param_pair(char *str, char **name_out, char **value_out,
- char terminator)
+char *conf_get_pair(struct conf_context __attribute__((unused)) *conf, char *str,
+ char **name_out, char **value_out, char delimiter, char terminator)
{
char *sep, *end;
+ *name_out = *value_out = NULL;
+
/* terminate the value */
end = strchr(str, terminator);
if (end)
*end = 0;
- sep = strchr(str, '=');
+ conf_replace_char(str, '\t', ' ');
+
+ str = conf_strip_str(str);
+
+ if (!str)
+ goto exit;
+
+ sep = strchr(str, delimiter);
if (!sep) {
*name_out = NULL;
@@ -113,6 +123,7 @@ char *conf_get_param_pair(char *str, char **name_out, char **value_out,
*value_out = conf_strip_str(sep + 1);
}
+exit:
pb_log("%s: @%s@%s@\n", __func__, *name_out, *value_out);
return end ? end + 1 : NULL;
@@ -207,7 +218,7 @@ static void conf_parse_buf(struct conf_context *conf)
char *pos, *name, *value;
for (pos = conf->buf; pos;) {
- pos = conf_get_param_pair(pos, &name, &value, '\n');
+ pos = conf_get_pair_equal(conf, pos, &name, &value, '\n');
if (!value)
continue;
OpenPOWER on IntegriCloud