diff options
author | Michael Terry <michael.terry@canonical.com> | 2014-03-17 22:05:57 -0400 |
---|---|---|
committer | Michael Terry <michael.terry@canonical.com> | 2014-03-17 22:05:57 -0400 |
commit | 9ee502417ce58ab161b86ecca91b954663ca1b31 (patch) | |
tree | a869b94ce289eb30ec213574c2e41a3ce751fec0 /common/configuration.c | |
parent | 7eb48d9cba1ac45532b51b0953a59dbfe72ba9a0 (diff) | |
download | lightdm-9ee502417ce58ab161b86ecca91b954663ca1b31.tar.gz |
Move config loading into one function; move that function into libcommon; call it from liblightdm too
Diffstat (limited to 'common/configuration.c')
-rw-r--r-- | common/configuration.c | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/common/configuration.c b/common/configuration.c index 8ced3642..015d2fc4 100644 --- a/common/configuration.c +++ b/common/configuration.c @@ -9,6 +9,8 @@ * license. */ +#include <string.h> + #include "configuration.h" struct ConfigurationPrivate @@ -70,6 +72,122 @@ config_load_from_file (Configuration *config, const gchar *path, GError **error) return TRUE; } +static gchar * +path_make_absolute (gchar *path) +{ + gchar *cwd, *abs_path; + + if (!path) + return NULL; + + if (g_path_is_absolute (path)) + return path; + + cwd = g_get_current_dir (); + abs_path = g_build_filename (cwd, path, NULL); + g_free (path); + + return abs_path; +} + +static int +compare_strings (gconstpointer a, gconstpointer b) +{ + return strcmp (a, b); +} + +static void +load_config_directory (const gchar *path, GList **messages) +{ + GDir *dir; + GList *files = NULL, *link; + GError *error = NULL; + + /* Find configuration files */ + dir = g_dir_open (path, 0, &error); + if (error && !g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) + g_printerr ("Failed to open configuration directory %s: %s\n", path, error->message); + g_clear_error (&error); + if (dir) + { + const gchar *name; + while ((name = g_dir_read_name (dir))) + files = g_list_append (files, g_strdup (name)); + g_dir_close (dir); + } + + /* Sort alphabetically and load onto existing configuration */ + files = g_list_sort (files, compare_strings); + for (link = files; link; link = link->next) + { + gchar *filename = link->data; + gchar *conf_path; + + conf_path = g_build_filename (path, filename, NULL); + if (g_str_has_suffix (filename, ".conf")) + { + if (messages) + *messages = g_list_append (*messages, g_strdup_printf ("Loading configuration from %s", conf_path)); + config_load_from_file (config_get_instance (), conf_path, &error); + if (error && !g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) + g_printerr ("Failed to load configuration from %s: %s\n", filename, error->message); + g_clear_error (&error); + } + else + g_debug ("Ignoring configuration file %s, it does not have .conf suffix", conf_path); + g_free (conf_path); + } + g_list_free_full (files, g_free); +} + +gboolean +config_load_from_standard_locations (Configuration *config, const gchar *config_path, GList **messages) +{ + gchar *config_dir, *config_d_dir = NULL; + gboolean explicit_config = FALSE; + gboolean success = TRUE; + GError *error = NULL; + + if (config_path) + { + config_dir = g_path_get_basename (config_path); + config_dir = path_make_absolute (config_dir); + explicit_config = TRUE; + } + else + { + config_dir = g_strdup (CONFIG_DIR); + config_d_dir = g_build_filename (config_dir, "lightdm.conf.d", NULL); + config_path = g_build_filename (config_dir, "lightdm.conf", NULL); + } + config_set_string (config, "LightDM", "config-directory", config_dir); + g_free (config_dir); + + load_config_directory (SYSTEM_CONFIG_DIR, messages); + if (config_d_dir) + load_config_directory (config_d_dir, messages); + g_free (config_d_dir); + + if (messages) + *messages = g_list_append (*messages, g_strdup_printf ("Loading configuration from %s", config_path)); + if (!config_load_from_file (config, config_path, &error)) + { + gboolean is_empty; + + is_empty = error && g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT); + + if (explicit_config || !is_empty) + { + if (error) + g_printerr ("Failed to load configuration from %s: %s\n", config_path, error->message); + success = FALSE; + } + } + g_clear_error (&error); + + return success; +} + gchar ** config_get_groups (Configuration *config) { |