exchange/src/exchangedb/exchangedb_plugin.c

88 lines
2.5 KiB
C
Raw Normal View History

/*
This file is part of TALER
2016-01-19 14:39:00 +01:00
Copyright (C) 2015 GNUnet e.V.
TALER 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.
TALER 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
2016-07-07 17:55:25 +02:00
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
2016-03-01 15:35:04 +01:00
* @file exchangedb/exchangedb_plugin.c
* @brief Logic to load database plugin
* @author Christian Grothoff
2015-03-30 11:25:25 +02:00
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
*/
#include "platform.h"
2016-03-01 15:35:04 +01:00
#include "taler_exchangedb_plugin.h"
#include <ltdl.h>
/**
* Initialize the plugin.
*
* @param cfg configuration to use
* @return #GNUNET_OK on success
*/
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_Plugin *
TALER_EXCHANGEDB_plugin_load (const struct GNUNET_CONFIGURATION_Handle *cfg)
{
char *plugin_name;
char *lib_name;
struct GNUNET_CONFIGURATION_Handle *cfg_dup;
2016-03-01 15:35:04 +01:00
struct TALER_EXCHANGEDB_Plugin *plugin;
if (GNUNET_SYSERR ==
GNUNET_CONFIGURATION_get_value_string (cfg,
2016-03-01 15:35:04 +01:00
"exchange",
"db",
&plugin_name))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
2016-03-01 15:35:04 +01:00
"exchange",
"db");
2015-03-28 11:06:00 +01:00
return NULL;
}
(void) GNUNET_asprintf (&lib_name,
2016-03-01 15:35:04 +01:00
"libtaler_plugin_exchangedb_%s",
plugin_name);
GNUNET_free (plugin_name);
cfg_dup = GNUNET_CONFIGURATION_dup (cfg);
plugin = GNUNET_PLUGIN_load (lib_name, cfg_dup);
2015-03-28 11:06:00 +01:00
if (NULL != plugin)
plugin->library_name = lib_name;
else
GNUNET_free (lib_name);
GNUNET_CONFIGURATION_destroy (cfg_dup);
2015-03-28 11:06:00 +01:00
return plugin;
}
/**
* Shutdown the plugin.
2015-03-28 11:06:00 +01:00
*
* @param plugin the plugin to unload
*/
void
2016-03-01 15:35:04 +01:00
TALER_EXCHANGEDB_plugin_unload (struct TALER_EXCHANGEDB_Plugin *plugin)
{
2015-03-28 11:06:00 +01:00
char *lib_name;
if (NULL == plugin)
return;
2015-03-28 11:06:00 +01:00
lib_name = plugin->library_name;
GNUNET_assert (NULL == GNUNET_PLUGIN_unload (lib_name,
plugin));
2015-03-28 11:06:00 +01:00
GNUNET_free (lib_name);
}
2016-03-01 15:35:04 +01:00
/* end of exchangedb_plugin.c */