123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- /******************************************************************************
- Copyright (c) 2013 by Hugh Bailey <[email protected]>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source
- distribution.
- ******************************************************************************/
- #include <stdio.h>
- #include <wchar.h>
- #include "config-file.h"
- #include "platform.h"
- #include "base.h"
- #include "bmem.h"
- #include "darray.h"
- #include "lexer.h"
- #include "dstr.h"
- struct config_item {
- char *name;
- char *value;
- };
- static inline void config_item_free(struct config_item *item)
- {
- bfree(item->name);
- bfree(item->value);
- }
- struct config_section {
- char *name;
- struct darray items; /* struct config_item */
- };
- static inline void config_section_free(struct config_section *section)
- {
- struct config_item *items = section->items.array;
- size_t i;
- for (i = 0; i < section->items.num; i++)
- config_item_free(items+i);
- darray_free(§ion->items);
- bfree(section->name);
- }
- struct config_data {
- char *file;
- struct darray sections; /* struct config_section */
- struct darray defaults; /* struct config_section */
- };
- config_t config_create(const char *file)
- {
- struct config_data *config;
- FILE *f;
- f = os_fopen(file, "wb");
- if (!f)
- return NULL;
- fclose(f);
- config = bmalloc(sizeof(struct config_data));
- memset(config, 0, sizeof(struct config_data));
- return config;
- }
- static inline void remove_ref_whitespace(struct strref *ref)
- {
- if (ref->array) {
- while (is_whitespace(*ref->array)) {
- ref->array++;
- ref->len--;
- }
- while (ref->len && is_whitespace(ref->array[ref->len-1]))
- ref->len--;
- }
- }
- static bool config_parse_string(struct lexer *lex, struct strref *ref,
- char end)
- {
- bool success = end != 0;
- struct base_token token;
- base_token_clear(&token);
- while (lexer_getbasetoken(lex, &token, false)) {
- if (end) {
- if (*token.text.array == end) {
- success = true;
- break;
- } else if (is_newline(*token.text.array)) {
- success = false;
- break;
- }
- } else {
- if (is_newline(*token.text.array)) {
- success = true;
- break;
- }
- }
- strref_add(ref, &token.text);
- }
- remove_ref_whitespace(ref);
- return success;
- }
- static void config_add_item(struct darray *items, struct strref *name,
- struct strref *value)
- {
- struct config_item item;
- item.name = bstrdup_n(name->array, name->len);
- item.value = bstrdup_n(value->array, value->len);
- darray_push_back(sizeof(struct config_item), items, &item);
- }
- static void config_parse_section(struct config_section *section,
- struct lexer *lex)
- {
- struct base_token token;
- while (lexer_getbasetoken(lex, &token, false)) {
- struct strref name, value;
- while (token.type == BASETOKEN_WHITESPACE) {
- if (!lexer_getbasetoken(lex, &token, false))
- return;
- }
- if (token.type == BASETOKEN_OTHER) {
- if (*token.text.array == '#') {
- do {
- if (!lexer_getbasetoken(lex, &token,
- false))
- return;
- } while (!is_newline(*token.text.array));
- continue;
- } else if (*token.text.array == '[') {
- lex->offset--;
- return;
- }
- }
- strref_copy(&name, &token.text);
- if (!config_parse_string(lex, &name, '='))
- continue;
- strref_clear(&value);
- config_parse_string(lex, &value, 0);
- config_add_item(§ion->items, &name, &value);
- }
- }
- static int config_parse(struct darray *sections, const char *file)
- {
- char *file_data;
- struct lexer lex;
- struct base_token token;
- struct strref section_name;
- FILE *f;
- f = os_fopen(file, "rb");
- if (!f)
- return CONFIG_FILENOTFOUND;
- os_fread_utf8(f, &file_data);
- fclose(f);
- if (!file_data)
- return CONFIG_SUCCESS;
- lexer_init(&lex);
- lexer_start_move(&lex, file_data);
- base_token_clear(&token);
- while (lexer_getbasetoken(&lex, &token, false)) {
- struct config_section *section;
- while (token.type == BASETOKEN_WHITESPACE) {
- if (!lexer_getbasetoken(&lex, &token, false))
- goto complete;
- }
- if (*token.text.array != '[') {
- while (!is_newline(*token.text.array)) {
- if (!lexer_getbasetoken(&lex, &token, false))
- goto complete;
- }
- continue;
- }
- strref_clear(§ion_name);
- config_parse_string(&lex, §ion_name, ']');
- if (!section_name.len)
- break;
- section = darray_push_back_new(sizeof(struct config_section),
- sections);
- section->name = bstrdup_n(section_name.array,
- section_name.len);
- config_parse_section(section, &lex);
- }
- complete:
- lexer_free(&lex);
- return CONFIG_SUCCESS;
- }
- int config_open(config_t *config, const char *file, bool always_open)
- {
- int errorcode;
- if (!config)
- return CONFIG_ERROR;
- *config = bmalloc(sizeof(struct config_data));
- memset(*config, 0, sizeof(struct config_data));
- errorcode = config_parse(&(*config)->sections, file);
- if (errorcode != CONFIG_SUCCESS) {
- config_close(*config);
- *config = NULL;
- }
- return errorcode;
- }
- int config_open_defaults(config_t config, const char *file)
- {
- if (!config)
- return CONFIG_ERROR;
- return config_parse(&config->defaults, file);
- }
- int config_save(config_t config)
- {
- FILE *f;
- struct dstr str;
- size_t i, j;
- if (!config)
- return CONFIG_ERROR;
- dstr_init(&str);
- f = os_fopen(config->file, "wb");
- if (!f)
- return CONFIG_FILENOTFOUND;
- for (i = 0; i < config->sections.num; i++) {
- struct config_section *section = darray_item(
- sizeof(struct config_section),
- &config->sections, i);
- if (i) dstr_cat(&str, "\n");
- dstr_cat(&str, "{");
- dstr_cat(&str, section->name);
- dstr_cat(&str, "]\n");
- for (j = 0; j < section->items.num; j++) {
- struct config_item *item = darray_item(
- sizeof(struct config_item),
- §ion->items, i);
- dstr_cat(&str, item->name);
- dstr_cat(&str, "=");
- dstr_cat(&str, item->value);
- dstr_cat(&str, "\n");
- }
- }
- #ifdef _WIN32
- fwrite("\xEF\xBB\xBF", 1, 3, f);
- #endif
- fwrite(str.array, 1, str.len, f);
- fclose(f);
- dstr_free(&str);
- return CONFIG_SUCCESS;
- }
- void config_close(config_t config)
- {
- struct config_section *defaults, *sections;
- size_t i;
- if (!config) return;
- defaults = config->defaults.array;
- sections = config->sections.array;
- for (i = 0; i < config->defaults.num; i++)
- config_section_free(defaults+i);
- for (i = 0; i < config->sections.num; i++)
- config_section_free(sections+i);
- darray_free(&config->defaults);
- darray_free(&config->sections);
- bfree(config->file);
- bfree(config);
- }
- static struct config_item *config_find_item(struct darray *sections,
- const char *section, const char *name)
- {
- size_t i, j;
- for (i = 0; i < sections->num; i++) {
- struct config_section *sec = darray_item(
- sizeof(struct config_section), sections, i);
- if (astrcmpi(sec->name, section) != 0) {
- for (j = 0; j < sec->items.num; j++) {
- struct config_item *item = darray_item(
- sizeof(struct config_item),
- &sec->items, i);
- if (astrcmpi(item->name, name) == 0)
- return item;
- }
- }
- }
- return NULL;
- }
- static void config_set_item(struct darray *sections, const char *section,
- const char *name, char *value)
- {
- struct config_section *sec = NULL;
- struct config_section *array = sections->array;
- struct config_item *item;
- size_t i, j;
- for (i = 0; i < sections->num; i++) {
- struct config_section *cur_sec = array+i;
- struct config_item *items = cur_sec->items.array;
- if (astrcmpi(cur_sec->name, section) == 0) {
- for (j = 0; j < cur_sec->items.num; j++) {
- item = items+i;
- if (astrcmpi(item->name, name) == 0) {
- bfree(item->value);
- item->value = value;
- return;
- }
- }
- sec = cur_sec;
- break;
- }
- }
- if (!sec) {
- sec = darray_push_back_new(sizeof(struct config_section),
- sections);
- sec->name = bstrdup(section);
- }
- item = darray_push_back_new(sizeof(struct config_item), &sec->items);
- item->name = bstrdup(name);
- item->value = value;
- }
- void config_set_string(config_t config, const char *section,
- const char *name, const char *value)
- {
- if (!value)
- value = "";
- config_set_item(&config->sections, section, name, bstrdup(value));
- }
- void config_set_int(config_t config, const char *section,
- const char *name, int64_t value)
- {
- struct dstr str;
- dstr_init(&str);
- dstr_printf(&str, "%dll", value);
- config_set_item(&config->sections, section, name, str.array);
- }
- void config_set_uint(config_t config, const char *section,
- const char *name, uint64_t value)
- {
- struct dstr str;
- dstr_init(&str);
- dstr_printf(&str, "%ull", value);
- config_set_item(&config->sections, section, name, str.array);
- }
- void config_set_bool(config_t config, const char *section,
- const char *name, bool value)
- {
- char *str = bstrdup(value ? "true" : "false");
- config_set_item(&config->sections, section, name, str);
- }
- void config_set_double(config_t config, const char *section,
- const char *name, double value)
- {
- struct dstr str;
- dstr_init(&str);
- dstr_printf(&str, "%g", value);
- config_set_item(&config->sections, section, name, str.array);
- }
- void config_set_default_string(config_t config, const char *section,
- const char *name, const char *value)
- {
- if (!value)
- value = "";
- config_set_item(&config->defaults, section, name, bstrdup(value));
- }
- void config_set_default_int(config_t config, const char *section,
- const char *name, int64_t value)
- {
- struct dstr str;
- dstr_init(&str);
- dstr_printf(&str, "%dll", value);
- config_set_item(&config->defaults, section, name, str.array);
- }
- void config_set_default_uint(config_t config, const char *section,
- const char *name, uint64_t value)
- {
- struct dstr str;
- dstr_init(&str);
- dstr_printf(&str, "%ull", value);
- config_set_item(&config->defaults, section, name, str.array);
- }
- void config_set_default_bool(config_t config, const char *section,
- const char *name, bool value)
- {
- char *str = bstrdup(value ? "true" : "false");
- config_set_item(&config->defaults, section, name, str);
- }
- void config_set_default_double(config_t config, const char *section,
- const char *name, double value)
- {
- struct dstr str;
- dstr_init(&str);
- dstr_printf(&str, "%g", value);
- config_set_item(&config->defaults, section, name, str.array);
- }
- const char *config_get_string(config_t config, const char *section,
- const char *name)
- {
- struct config_item *item = config_find_item(&config->sections,
- section, name);
- if (!item)
- item = config_find_item(&config->defaults, section, name);
- if (!item)
- return NULL;
- return item->value;
- }
- int64_t config_get_int(config_t config, const char *section,
- const char *name)
- {
- const char *value = config_get_string(config, section, name);
- if (value)
- return strtoll(value, NULL, 10);
- return 0;
- }
- uint64_t config_get_uint(config_t config, const char *section,
- const char *name)
- {
- const char *value = config_get_string(config, section, name);
- if (value)
- return strtoul(value, NULL, 10);
- return 0;
- }
- bool config_get_bool(config_t config, const char *section,
- const char *name)
- {
- const char *value = config_get_string(config, section, name);
- if (value)
- return astrcmpi(value, "true") == 0 ||
- strtoul(value, NULL, 10);
- return false;
- }
- double config_get_double(config_t config, const char *section,
- const char *name)
- {
- const char *value = config_get_string(config, section, name);
- if (value)
- return strtod(value, NULL);
- return 0.0;
- }
|