aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-18 17:54:46 +0100
committerMax Kellermann <max@duempel.org>2009-01-18 17:54:46 +0100
commit9c6b2a32f510778252f3a9c79725334aaec4d80b (patch)
tree84be4ae5ca15520ef686bbfbaa0bb9787c640247 /src
parenta3f03f3ccdefc8704d112405dca5db10a2f6cf94 (diff)
conf: added config_get_path()
config_get_path() is an simpler interface than parseConfigFilePath().
Diffstat (limited to 'src')
-rw-r--r--src/conf.c18
-rw-r--r--src/conf.h8
-rw-r--r--src/main.c11
3 files changed, 32 insertions, 5 deletions
diff --git a/src/conf.c b/src/conf.c
index f71ace7f..adc8ad87 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -387,6 +387,24 @@ config_get_string(const char *name, const char *default_value)
return param->value;
}
+const char *
+config_get_path(const char *name)
+{
+ struct config_param *param = config_get_param(name);
+ char *path;
+
+ if (param == NULL)
+ return NULL;
+
+ path = parsePath(param->value);
+ if (path == NULL)
+ g_error("error parsing \"%s\" at line %i\n",
+ name, param->line);
+
+ g_free(param->value);
+ return param->value = path;
+}
+
struct block_param *
getBlockParam(struct config_param * param, const char *name)
{
diff --git a/src/conf.h b/src/conf.h
index 01a2e5e1..283f763a 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -101,6 +101,14 @@ config_get_param(const char *name)
const char *
config_get_string(const char *name, const char *default_value);
+/**
+ * Returns an optional configuration variable which contains an
+ * absolute path. If there is a tilde prefix, it is expanded. Aborts
+ * MPD if the path is not a valid absolute path.
+ */
+const char *
+config_get_path(const char *name);
+
struct block_param *
getBlockParam(struct config_param *param, const char *name);
diff --git a/src/main.c b/src/main.c
index 9b1203a9..c7f9e998 100644
--- a/src/main.c
+++ b/src/main.c
@@ -81,19 +81,20 @@ struct notify main_notify;
static void openDB(Options * options, char *argv0)
{
- struct config_param *param;
+ const char *path = config_get_path(CONF_DB_FILE);
- param = parseConfigFilePath(CONF_DB_FILE,
- mapper_has_music_directory());
if (!mapper_has_music_directory()) {
- if (param != NULL)
+ if (path != NULL)
g_message("Found " CONF_DB_FILE " setting without "
CONF_MUSIC_DIR " - disabling database");
db_init(NULL);
return;
}
- db_init(param->value);
+ if (path == NULL)
+ g_error(CONF_DB_FILE " setting missing");
+
+ db_init(path);
if (options->createDB > 0 || !db_load()) {
unsigned job;