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
|
/* Copyright (C) 2009 Sun Microsystems, Inc.
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; version 2 of the License.
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 St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <config.h>
#include <drizzled/plugin/function.h>
#include "gman_servers_set.h"
#include "gman_do.h"
using namespace std;
using namespace drizzled;
plugin::Create_function<Item_func_gman_servers_set> *gman_servers_set= NULL;
plugin::Create_function<Item_func_gman_do> *gman_do= NULL;
plugin::Create_function<Item_func_gman_do_high> *gman_do_high= NULL;
plugin::Create_function<Item_func_gman_do_low> *gman_do_low= NULL;
plugin::Create_function<Item_func_gman_do_background> *gman_do_background= NULL;
plugin::Create_function<Item_func_gman_do_high_background>
*gman_do_high_background= NULL;
plugin::Create_function<Item_func_gman_do_low_background>
*gman_do_low_background= NULL;
static int gearman_udf_plugin_init(drizzled::module::Context &context)
{
gman_servers_set= new plugin::Create_function<Item_func_gman_servers_set>("gman_servers_set");
gman_do= new plugin::Create_function<Item_func_gman_do>("gman_do");
gman_do_high= new plugin::Create_function<Item_func_gman_do_high>("gman_do_high");
gman_do_low= new plugin::Create_function<Item_func_gman_do_low>("gman_do_low");
gman_do_background= new plugin::Create_function<Item_func_gman_do_background>("gman_do_background");
gman_do_high_background= new plugin::Create_function<Item_func_gman_do_high_background>("gman_do_high_background");
gman_do_low_background= new plugin::Create_function<Item_func_gman_do_low_background>("gman_do_low_background");
context.add(gman_servers_set);
context.add(gman_do);
context.add(gman_do_high);
context.add(gman_do_low);
context.add(gman_do_background);
context.add(gman_do_high_background);
context.add(gman_do_low_background);
return 0;
}
DRIZZLE_DECLARE_PLUGIN
{
DRIZZLE_VERSION_ID,
"gearman_udf",
"0.1",
"Eric Day",
"Gearman Client UDFs",
PLUGIN_LICENSE_BSD,
gearman_udf_plugin_init, /* Plugin Init */
NULL, /* depends */
NULL /* config options */
}
DRIZZLE_DECLARE_PLUGIN_END;
|