]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/libstrongswan/plugins/mysql/mysql_plugin.c
Moved debug.[ch] to utils folder
[thirdparty/strongswan.git] / src / libstrongswan / plugins / mysql / mysql_plugin.c
CommitLineData
552cc11b
MW
1/*
2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
552cc11b
MW
14 */
15
16#include "mysql_plugin.h"
17
18#include <library.h>
f05b4272 19#include <utils/debug.h>
552cc11b
MW
20#include "mysql_database.h"
21
22typedef struct private_mysql_plugin_t private_mysql_plugin_t;
23
24/**
25 * private data of mysql_plugin
26 */
27struct private_mysql_plugin_t {
28
29 /**
30 * public functions
31 */
32 mysql_plugin_t public;
33};
34
787b5884
MW
35METHOD(plugin_t, get_name, char*,
36 private_mysql_plugin_t *this)
37{
38 return "mysql";
39}
40
3d4f0f76
MW
41METHOD(plugin_t, get_features, int,
42 private_mysql_plugin_t *this, plugin_feature_t *features[])
43{
44 static plugin_feature_t f[] = {
45 PLUGIN_REGISTER(DATABASE, mysql_database_create),
46 PLUGIN_PROVIDE(DATABASE, DB_MYSQL),
47 };
48 *features = f;
49 return countof(f);
50}
51
4d7e8032
AS
52METHOD(plugin_t, destroy, void,
53 private_mysql_plugin_t *this)
552cc11b 54{
552cc11b
MW
55 mysql_database_deinit();
56 free(this);
57}
58
59/*
60 * see header file
61 */
9ce567f8 62plugin_t *mysql_plugin_create()
552cc11b
MW
63{
64 private_mysql_plugin_t *this;
7daf5226 65
552cc11b
MW
66 if (!mysql_database_init())
67 {
8b0e0910 68 DBG1(DBG_LIB, "MySQL client library initialization failed");
552cc11b
MW
69 return NULL;
70 }
7daf5226 71
4d7e8032
AS
72 INIT(this,
73 .public = {
74 .plugin = {
787b5884 75 .get_name = _get_name,
3d4f0f76 76 .get_features = _get_features,
4d7e8032
AS
77 .destroy = _destroy,
78 },
79 },
80 );
7daf5226 81
552cc11b
MW
82 return &this->public.plugin;
83}
84