2008-12-02 07:49:24 +01:00
|
|
|
/*
|
|
|
|
|
ConfigFacade - C++ convenience wrapper and startup of the config system
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-12-02 07:49:24 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Hermann Vosseler <Ichthyostega@web.de>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-12-02 07:49:24 +01:00
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
2010-12-17 23:28:49 +01:00
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
2008-12-02 07:49:24 +01:00
|
|
|
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.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-12-02 07:49:24 +01:00
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-12-02 07:49:24 +01:00
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
2009-01-25 00:24:42 +01:00
|
|
|
#include "include/logging.h"
|
2008-12-02 07:49:24 +01:00
|
|
|
#include "include/lifecycle.h"
|
2011-02-06 05:06:16 +01:00
|
|
|
#include "include/config-facade.h"
|
|
|
|
|
#include "common/appstate.hpp"
|
|
|
|
|
#include "lib/searchpath.hpp"
|
|
|
|
|
#include "lib/util.hpp"
|
2008-12-02 07:49:24 +01:00
|
|
|
|
2011-02-06 02:39:34 +01:00
|
|
|
extern "C" {
|
|
|
|
|
#include "common/config.h"
|
2008-12-02 07:49:24 +01:00
|
|
|
}
|
|
|
|
|
|
2011-02-06 05:06:16 +01:00
|
|
|
|
|
|
|
|
/** key to fetch the search path for extended configuration.
|
|
|
|
|
* Will corresponding value is defined in the basic setup.ini
|
|
|
|
|
* and will be fed to the (planned) full-blown config system
|
|
|
|
|
* after the basic application bootstrap was successful.
|
|
|
|
|
*/
|
|
|
|
|
#define KEY_CONFIG_PATH "Lumiera.configpath"
|
|
|
|
|
|
|
|
|
|
/** Similarly, this key is used to fetch the configured default
|
|
|
|
|
* plugin/module search path from the basic setup.ini
|
|
|
|
|
* This patch is used by the plugin-loader to discover
|
|
|
|
|
* lumiera plugins and extensions.
|
|
|
|
|
*/
|
|
|
|
|
#define KEY_PLUGIN_PATH "Lumiera.modulepath"
|
|
|
|
|
|
2008-12-02 07:49:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace lumiera {
|
|
|
|
|
|
2011-02-06 05:06:16 +01:00
|
|
|
using util::cStr;
|
|
|
|
|
using util::isnil;
|
|
|
|
|
using lib::Literal;
|
|
|
|
|
|
2008-12-02 07:49:24 +01:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
pull_up_ConfigSystem ()
|
|
|
|
|
{
|
2009-01-24 03:13:08 +01:00
|
|
|
TRACE (common, "booting up config system");
|
2008-12-02 07:49:24 +01:00
|
|
|
Config::instance();
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-06 05:06:16 +01:00
|
|
|
LifecycleHook trigger__ (ON_BASIC_INIT, &pull_up_ConfigSystem);
|
2008-12-02 07:49:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** storage for the single system-wide config facade instance */
|
2009-09-30 00:27:14 +02:00
|
|
|
lib::Singleton<Config> Config::instance;
|
2008-12-02 07:49:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Config::Config ()
|
|
|
|
|
{
|
2011-02-06 05:06:16 +01:00
|
|
|
string extendedConfigSearchPath = AppState::instance().fetchSetupValue (KEY_CONFIG_PATH);
|
|
|
|
|
lumiera_config_init (cStr(extendedConfigSearchPath));
|
2008-12-02 07:49:24 +01:00
|
|
|
INFO (config, "Config system ready.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Config::~Config()
|
|
|
|
|
{
|
|
|
|
|
lumiera_config_destroy();
|
2011-02-06 05:06:16 +01:00
|
|
|
TRACE (config, "config system closed.");
|
2008-12-02 07:49:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-02-06 05:06:16 +01:00
|
|
|
/** @note because the full-blown Config system isn't implemented yet
|
|
|
|
|
* we retrieve the contents of setup.ini as a preliminary solution
|
|
|
|
|
*/
|
|
|
|
|
string
|
|
|
|
|
Config::get (lib::Literal key)
|
2008-12-02 07:49:24 +01:00
|
|
|
{
|
2011-02-06 05:06:16 +01:00
|
|
|
string value = AppState::instance().fetchSetupValue (key);
|
|
|
|
|
if (isnil (value))
|
|
|
|
|
throw error::Config ("Configuration value for key=\""+key+"\" is missing");
|
|
|
|
|
|
|
|
|
|
return value;
|
2008-12-02 07:49:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lumiera
|
2011-02-06 05:06:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" { /* ==== implementation C interface for accessing setup.ini ======= */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
using lumiera::Config;
|
|
|
|
|
using lib::SearchPathSplitter;
|
|
|
|
|
using util::isnil;
|
|
|
|
|
using util::cStr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const char*
|
|
|
|
|
lumiera_get_plugin_path_default ()
|
|
|
|
|
{
|
|
|
|
|
static string pathSpec;
|
|
|
|
|
if (isnil (pathSpec))
|
|
|
|
|
{
|
|
|
|
|
pathSpec += "plugin.path="; // syntax expected by lumiera_config_setdefault
|
|
|
|
|
|
|
|
|
|
// fetch plugin search path from setup.ini and expand any $ORIGIN token
|
|
|
|
|
SearchPathSplitter pathElement(Config::get (KEY_PLUGIN_PATH));
|
|
|
|
|
while (pathElement)
|
2011-02-07 00:54:16 +01:00
|
|
|
pathSpec += pathElement.next() +":";
|
2011-02-06 05:06:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return cStr(pathSpec);
|
|
|
|
|
}
|
|
|
|
|
}
|