1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/*
* Copyright (C) 2001 - 2002 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
* Copyright (C) 2001 - 2004 Rodrigo Moya <rodrigo@gnome-db.org>
* Copyright (C) 2002 - 2008 Vivien Malerba <malerba@gnome-db.org>
* Copyright (C) 2005 Bas Driessen <bas.driessen@xobas.com>
* Copyright (C) 2008 Murray Cumming <murrayc@murrayc.com>
* Copyright (C) 2010 David King <davidk@openismus.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <glib/gi18n-lib.h>
#include <gmodule.h>
#include <libgda/gda-server-provider-extra.h>
#include <libgda/binreloc/gda-binreloc.h>
#include "gda-postgres.h"
#include "gda-postgres-provider.h"
static gchar *module_path = NULL;
const gchar *plugin_get_name (void);
const gchar *plugin_get_description (void);
gchar *plugin_get_dsn_spec (void);
GdaServerProvider *plugin_create_provider (void);
/*
* Functions executed when calling g_module_open() and g_module_close()
*/
const gchar *
g_module_check_init (G_GNUC_UNUSED GModule *module)
{
/*g_module_make_resident (module);*/
return NULL;
}
void
g_module_unload (G_GNUC_UNUSED GModule *module)
{
g_free (module_path);
module_path = NULL;
}
/*
* Normal plugin functions
*/
void
plugin_init (const gchar *real_path)
{
/* This is never freed, but that is OK. It is only called once. */
/* But it would be nice to have some cleanup function just to shut valgrind up. murrayc. */
if (real_path) {
if(module_path) {
g_free (module_path);
module_path = NULL;
}
module_path = g_strdup (real_path);
}
}
const gchar *
plugin_get_name (void)
{
return POSTGRES_PROVIDER_NAME;
}
const gchar *
plugin_get_description (void)
{
return _("Provider for PostgreSQL databases");
}
gchar *
plugin_get_dsn_spec (void)
{
gchar *ret, *dir;
dir = gda_gbr_get_file_path (GDA_DATA_DIR, LIBGDA_ABI_NAME, NULL);
ret = gda_server_provider_load_file_contents (module_path, dir, "postgres_specs_dsn.xml");
g_free (dir);
return ret;
}
GdaServerProvider *
plugin_create_provider (void)
{
GdaServerProvider *prov;
prov = (GdaServerProvider*) g_object_new (GDA_TYPE_POSTGRES_PROVIDER, NULL);
g_object_set_data ((GObject *) prov, "GDA_PROVIDER_DIR", module_path);
return prov;
}
|