aboutsummaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2016-12-25 00:43:42 +0100
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2016-12-25 00:43:42 +0100
commit6636bd99d6767a99546b1b82ce69ade6df867b42 (patch)
tree9855c1668ffe7ba367ed0f976bc50b4cc048e8a6 /src/common
parentccb429435e162915917f2492217c4e206b9b2a96 (diff)
downloadblogc-6636bd99d6767a99546b1b82ce69ade6df867b42.tar.gz
blogc-6636bd99d6767a99546b1b82ce69ade6df867b42.tar.bz2
blogc-6636bd99d6767a99546b1b82ce69ade6df867b42.zip
config-parser: added support to parse section as list of lines
Diffstat (limited to 'src/common')
-rw-r--r--src/common/config-parser.c113
-rw-r--r--src/common/config-parser.h4
2 files changed, 106 insertions, 11 deletions
diff --git a/src/common/config-parser.c b/src/common/config-parser.c
index bfea2d4..19ca192 100644
--- a/src/common/config-parser.c
+++ b/src/common/config-parser.c
@@ -8,6 +8,7 @@
#include <stdbool.h>
#include <stdlib.h>
+#include <string.h>
#include "error.h"
#include "utils.h"
#include "config-parser.h"
@@ -20,11 +21,41 @@ typedef enum {
CONFIG_SECTION_KEY,
CONFIG_SECTION_VALUE_START,
CONFIG_SECTION_VALUE,
+ CONFIG_SECTION_LIST,
} bc_configparser_state_t;
+typedef enum {
+ CONFIG_SECTION_TYPE_MAP = 1,
+ CONFIG_SECTION_TYPE_LIST,
+} bc_configparser_section_type_t;
+
+typedef struct {
+ bc_configparser_section_type_t type;
+ void *data;
+} bc_configparser_section_t;
+
+
+static void
+free_section(bc_configparser_section_t *section)
+{
+ if (section == NULL)
+ return;
+
+ switch (section->type) {
+ case CONFIG_SECTION_TYPE_MAP:
+ bc_trie_free(section->data);
+ break;
+ case CONFIG_SECTION_TYPE_LIST:
+ bc_slist_free_full(section->data, free);
+ break;
+ }
+ free(section);
+}
+
bc_config_t*
-bc_config_parse(const char *src, size_t src_len, bc_error_t **err)
+bc_config_parse(const char *src, size_t src_len, const char *list_sections[],
+ bc_error_t **err)
{
if (err == NULL || *err != NULL)
return NULL;
@@ -32,14 +63,14 @@ bc_config_parse(const char *src, size_t src_len, bc_error_t **err)
size_t current = 0;
size_t start = 0;
- bc_trie_t *section = NULL;
+ bc_configparser_section_t *section = NULL;
char *section_name = NULL;
char *key = NULL;
char *value = NULL;
bc_config_t *rv = bc_malloc(sizeof(bc_config_t));
- rv->root = bc_trie_new((bc_free_func_t) bc_trie_free);
+ rv->root = bc_trie_new((bc_free_func_t) free_section);
bc_configparser_state_t state = CONFIG_START;
@@ -66,7 +97,14 @@ bc_config_parse(const char *src, size_t src_len, bc_error_t **err)
}
if (section != NULL) {
start = current;
- state = CONFIG_SECTION_KEY;
+ switch (section->type) {
+ case CONFIG_SECTION_TYPE_MAP:
+ state = CONFIG_SECTION_KEY;
+ break;
+ case CONFIG_SECTION_TYPE_LIST:
+ state = CONFIG_SECTION_LIST;
+ break;
+ }
continue;
}
*err = bc_error_parser(BC_ERROR_CONFIG_PARSER, src, src_len,
@@ -81,7 +119,24 @@ bc_config_parse(const char *src, size_t src_len, bc_error_t **err)
case CONFIG_SECTION:
if (c == ']') {
section_name = bc_strndup(src + start, current - start);
- section = bc_trie_new(free);
+ section = bc_malloc(sizeof(bc_configparser_section_t));
+ section->type = CONFIG_SECTION_TYPE_MAP;
+ if (list_sections != NULL) {
+ for (size_t i = 0; list_sections[i] != NULL; i++) {
+ if (0 == strcmp(section_name, list_sections[i])) {
+ section->type = CONFIG_SECTION_TYPE_LIST;
+ break;
+ }
+ }
+ }
+ switch (section->type) {
+ case CONFIG_SECTION_TYPE_MAP:
+ section->data = bc_trie_new(free);
+ break;
+ case CONFIG_SECTION_TYPE_LIST:
+ section->data = NULL;
+ break;
+ }
bc_trie_insert(rv->root, section_name, section);
free(section_name);
section_name = NULL;
@@ -122,7 +177,7 @@ bc_config_parse(const char *src, size_t src_len, bc_error_t **err)
size_t end = is_last && c != '\n' && c != '\r' ? src_len :
current;
value = bc_strndup(src + start, end - start);
- bc_trie_insert(section, bc_str_strip(key),
+ bc_trie_insert(section->data, bc_str_strip(key),
bc_strdup(bc_str_strip(value)));
free(key);
key = NULL;
@@ -133,6 +188,21 @@ bc_config_parse(const char *src, size_t src_len, bc_error_t **err)
}
break;
+ case CONFIG_SECTION_LIST:
+ if (c == '\r' || c == '\n' || is_last) {
+ size_t end = is_last && c != '\n' && c != '\r' ? src_len :
+ current;
+ value = bc_strndup(src + start, end - start);
+ section->data = bc_slist_append(section->data,
+ bc_strdup(bc_str_strip(value)));
+ free(value);
+ value = NULL;
+ state = CONFIG_START;
+ break;
+
+ }
+ break;
+
}
if (*err != NULL) {
@@ -187,12 +257,15 @@ bc_config_list_keys(bc_config_t *config, const char *section)
if (config == NULL)
return NULL;
- bc_trie_t *s = bc_trie_lookup(config->root, section);
+ bc_configparser_section_t *s = bc_trie_lookup(config->root, section);
if (s == NULL)
return NULL;
+ if (s->type != CONFIG_SECTION_TYPE_MAP)
+ return NULL;
+
bc_slist_t *l = NULL;
- bc_trie_foreach(s, (bc_trie_foreach_func_t) list_keys, &l);
+ bc_trie_foreach(s->data, (bc_trie_foreach_func_t) list_keys, &l);
char **rv = bc_malloc(sizeof(char*) * (bc_slist_length(l) + 1));
@@ -213,11 +286,14 @@ bc_config_get(bc_config_t *config, const char *section, const char *key)
if (config == NULL)
return NULL;
- bc_trie_t *s = bc_trie_lookup(config->root, section);
+ bc_configparser_section_t *s = bc_trie_lookup(config->root, section);
if (s == NULL)
return NULL;
- return bc_trie_lookup(s, key);
+ if (s->type != CONFIG_SECTION_TYPE_MAP)
+ return NULL;
+
+ return bc_trie_lookup(s->data, key);
}
@@ -232,6 +308,23 @@ bc_config_get_with_default(bc_config_t *config, const char *section, const char
}
+bc_slist_t*
+bc_config_get_list(bc_config_t *config, const char *section)
+{
+ if (config == NULL)
+ return NULL;
+
+ bc_configparser_section_t *s = bc_trie_lookup(config->root, section);
+ if (s == NULL)
+ return NULL;
+
+ if (s->type != CONFIG_SECTION_TYPE_LIST)
+ return NULL;
+
+ return s->data;
+}
+
+
void
bc_config_free(bc_config_t *config)
{
diff --git a/src/common/config-parser.h b/src/common/config-parser.h
index e249c37..0bf1706 100644
--- a/src/common/config-parser.h
+++ b/src/common/config-parser.h
@@ -17,13 +17,15 @@ typedef struct {
bc_trie_t *root;
} bc_config_t;
-bc_config_t* bc_config_parse(const char *src, size_t src_len, bc_error_t **err);
+bc_config_t* bc_config_parse(const char *src, size_t src_len,
+ const char *list_sections[], bc_error_t **err);
char** bc_config_list_sections(bc_config_t *config);
char** bc_config_list_keys(bc_config_t *config, const char *section);
const char* bc_config_get(bc_config_t *config, const char *section,
const char *key);
const char* bc_config_get_with_default(bc_config_t *config, const char *section,
const char *key, const char *default_);
+bc_slist_t* bc_config_get_list(bc_config_t *config, const char *section);
void bc_config_free(bc_config_t *config);
#endif /* _CONFIG_PARSER_H */