From 10ca3e8c315794138ac4c413aea179ea8a0e1249 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Fri, 2 Aug 2019 15:28:28 +0200 Subject: Possibility to specify alternative config file Introduce `profanity -c` to specify an alternative config file. --- src/config/preferences.c | 9 +++++++-- src/config/preferences.h | 2 +- src/main.c | 4 +++- src/profanity.c | 10 +++++----- src/profanity.h | 3 ++- 5 files changed, 18 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/config/preferences.c b/src/config/preferences.c index 80b6cc15..e8f19996 100644 --- a/src/config/preferences.c +++ b/src/config/preferences.c @@ -79,10 +79,15 @@ static gboolean _get_default_boolean(preference_t pref); static char* _get_default_string(preference_t pref); void -prefs_load(void) +prefs_load(char *config_file) { GError *err; - prefs_loc = files_get_config_path(FILE_PROFRC); + + if (config_file == NULL) { + prefs_loc = files_get_config_path(FILE_PROFRC); + } else { + prefs_loc = config_file; + } if (g_file_test(prefs_loc, G_FILE_TEST_EXISTS)) { g_chmod(prefs_loc, S_IRUSR | S_IWUSR); diff --git a/src/config/preferences.h b/src/config/preferences.h index d5ba4bb2..08f13cb0 100644 --- a/src/config/preferences.h +++ b/src/config/preferences.h @@ -166,7 +166,7 @@ typedef struct prof_winplacement_t { int inputwin_pos; } ProfWinPlacement; -void prefs_load(void); +void prefs_load(char *config_file); void prefs_save(void); void prefs_close(void); diff --git a/src/main.c b/src/main.c index e7259b7b..ae40e9f0 100644 --- a/src/main.c +++ b/src/main.c @@ -61,6 +61,7 @@ static gboolean version = FALSE; static char *log = "INFO"; static char *account_name = NULL; +static char *config_file = NULL; int main(int argc, char **argv) @@ -75,6 +76,7 @@ main(int argc, char **argv) { "version", 'v', 0, G_OPTION_ARG_NONE, &version, "Show version information", NULL }, { "account", 'a', 0, G_OPTION_ARG_STRING, &account_name, "Auto connect to an account on startup" }, { "log",'l', 0, G_OPTION_ARG_STRING, &log, "Set logging levels, DEBUG, INFO (default), WARN, ERROR", "LEVEL" }, + { "config",'c', 0, G_OPTION_ARG_STRING, &config_file, "Use an alternative configuration file", NULL }, { NULL } }; @@ -169,7 +171,7 @@ main(int argc, char **argv) return 0; } - prof_run(log, account_name); + prof_run(log, account_name, config_file); return 0; } diff --git a/src/profanity.c b/src/profanity.c index 324aa36d..f286d3df 100644 --- a/src/profanity.c +++ b/src/profanity.c @@ -85,7 +85,7 @@ #include "omemo/omemo.h" #endif -static void _init(char *log_level); +static void _init(char *log_level, char *config_file); static void _shutdown(void); static void _connect_default(const char * const account); @@ -93,9 +93,9 @@ static gboolean cont = TRUE; static gboolean force_quit = FALSE; void -prof_run(char *log_level, char *account_name) +prof_run(char *log_level, char *account_name, char *config_file) { - _init(log_level); + _init(log_level, config_file); plugins_on_start(); _connect_default(account_name); @@ -156,7 +156,7 @@ _connect_default(const char *const account) } static void -_init(char *log_level) +_init(char *log_level, char *config_file) { setlocale(LC_ALL, ""); // ignore SIGPIPE @@ -171,7 +171,7 @@ _init(char *log_level) pthread_mutex_lock(&lock); files_create_directories(); log_level_t prof_log_level = log_level_from_string(log_level); - prefs_load(); + prefs_load(config_file); log_init(prof_log_level); log_stderr_init(PROF_LEVEL_ERROR); if (strcmp(PACKAGE_STATUS, "development") == 0) { diff --git a/src/profanity.h b/src/profanity.h index cf3040b5..abf8a1a7 100644 --- a/src/profanity.h +++ b/src/profanity.h @@ -2,6 +2,7 @@ * profanity.h * * Copyright (C) 2012 - 2019 James Booth + * Copyright (C) 2019 Michael Vetter * * This file is part of Profanity. * @@ -38,7 +39,7 @@ #include #include -void prof_run(char *log_level, char *account_name); +void prof_run(char *log_level, char *account_name, char * config_file); void prof_set_quit(void); pthread_mutex_t lock; -- cgit 1.4.1-2-gfad0