/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- ** ** Copyright (C) 2010 Dirk-Jan C. Binnema ** ** This program is free software; you can redistribute it and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation; either version 3, or (at your option) any ** later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software Foundation, ** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ** */ #include "mu-runtime.h" #include #include /* for setlocale() */ #include /* for fileno() */ #include #include #include #include #include "mu-config.h" #include "mu-log.h" #include "mu-util.h" #define MU_XAPIAN_DIRNAME "xapian" #define MU_BOOKMARKS_FILENAME "bookmarks" #define MU_CACHE_DIRNAME "cache" #define MU_CONTACTS_FILENAME "contacts" #define MU_LOG_DIRNAME "log" struct _MuRuntimeData { gchar *_str[MU_RUNTIME_PATH_NUM]; MuConfig *_config; }; typedef struct _MuRuntimeData MuRuntimeData; /* static, global data for this singleton */ static gboolean _initialized = FALSE; static MuRuntimeData *_data = NULL; static void runtime_free (void); static gboolean init_paths (const char* muhome, MuRuntimeData *data); static gboolean mu_dir_is_readable_and_writable (const char *muhome) { if (mu_util_create_dir_maybe (muhome, 0700)) return TRUE; g_warning ("cannot use '%s' as a mu homedir", muhome); g_warning ("use --muhome= to set a different one"); return FALSE; } gboolean mu_runtime_init (const char* muhome_arg) { gchar *muhome; g_return_val_if_fail (!_initialized, FALSE); if (!mu_util_init_system()) return FALSE; if (muhome_arg) muhome = g_strdup (muhome_arg); else muhome = mu_util_guess_mu_homedir (); if (!mu_dir_is_readable_and_writable (muhome)) { runtime_free (); return FALSE; } if (!mu_log_init (muhome, TRUE, FALSE, FALSE)) { g_free (muhome); return FALSE; } _data = g_new0 (MuRuntimeData, 1); _data->_str[MU_RUNTIME_PATH_MUHOME] = muhome; init_paths (muhome, _data); return _initialized = TRUE; } static gboolean init_log (MuConfig *opts) { if (opts->log_stderr) return mu_log_init_with_fd (fileno(stderr), FALSE, opts->quiet, opts->debug); else return mu_log_init (opts->muhome, TRUE, opts->quiet, opts->debug); } gboolean mu_runtime_init_from_cmdline (int *pargc, char ***pargv) { g_return_val_if_fail (!_initialized, FALSE); if (!mu_util_init_system()) return FALSE; _data = g_new0 (MuRuntimeData, 1); _data->_config = mu_config_new (pargc, pargv); if (!_data->_config) { runtime_free (); return FALSE; } if (!mu_dir_is_readable_and_writable (_data->_config->muhome)) { runtime_free (); return FALSE; } if (!init_log (_data->_config)) { runtime_free (); return FALSE; } _data->_str[MU_RUNTIME_PATH_MUHOME] = g_strdup (_data->_config->muhome); init_paths (_data->_str[MU_RUNTIME_PATH_MUHOME], _data); return _initialized = TRUE; } static void runtime_free (void) { int i; for (i = 0; i != MU_RUNTIME_PATH_NUM; ++i) g_free (_data->_str[i]); mu_config_destroy (_data->_config); mu_log_uninit(); g_free (_data); } void mu_runtime_uninit (void) { g_return_if_fail (_initialized); runtime_free (); _initialized = FALSE; } static gboolean create_dirs_maybe (MuRuntimeData *data) { if (!mu_util_create_dir_maybe (data->_str[MU_RUNTIME_PATH_CACHE], 0700)) { g_warning ("failed to create cache dir"); return FALSE; } if (!mu_util_create_dir_maybe (data->_str[MU_RUNTIME_PATH_LOG], 0700)) { g_warning ("failed to create log dir"); return FALSE; } return TRUE; } static gboolean init_paths (const char* muhome, MuRuntimeData *data) { data->_str [MU_RUNTIME_PATH_XAPIANDB] = g_strdup_printf ("%s%c%s", muhome, G_DIR_SEPARATOR, MU_XAPIAN_DIRNAME); data->_str [MU_RUNTIME_PATH_BOOKMARKS] = g_strdup_printf ("%s%c%s", muhome, G_DIR_SEPARATOR, MU_BOOKMARKS_FILENAME); data->_str [MU_RUNTIME_PATH_CACHE] = g_strdup_printf ("%s%c%s", muhome, G_DIR_SEPARATOR, MU_CACHE_DIRNAME); data->_str [MU_RUNTIME_PATH_CONTACTS] = g_strdup_printf ("%s%c%s", data->_str[MU_RUNTIME_PATH_CACHE], G_DIR_SEPARATOR, MU_CONTACTS_FILENAME); data->_str [MU_RUNTIME_PATH_LOG] = g_strdup_printf ("%s%c%s", muhome, G_DIR_SEPARATOR, MU_LOG_DIRNAME); if (!create_dirs_maybe (data)) return FALSE; return TRUE; } const char* mu_runtime_path (MuRuntimePath path) { g_return_val_if_fail (_initialized, NULL); g_return_val_if_fail (path < MU_RUNTIME_PATH_NUM, NULL); return _data->_str[path]; } MuConfig* mu_runtime_config (void) { g_return_val_if_fail (_initialized, NULL); return _data->_config; }