27
27
* THE POSSIBILITY OF SUCH DAMAGE.
31
#include <drizzled/show.h>
32
#include <drizzled/gettext.h>
31
#include "drizzled/show.h"
32
#include "drizzled/gettext.h"
33
33
#include <boost/program_options.hpp>
34
34
#include <drizzled/module/option_map.h>
35
35
#include "stats_table.h"
63
61
* @param[in] registry the drizzled::plugin::Registry singleton
64
62
* @return false on success; true on failure.
66
static int init(drizzled::module::Context &context)
64
static int init(module::Context &context)
68
const drizzled::module::option_map &vm= context.getOptions();
66
const module::option_map &vm= context.getOptions();
68
if(vm.count("servers"))
70
sysvar_memcached_servers= strdup(vm["servers"].as<string>().c_str());
75
sysvar_memcached_servers= "";
78
SysvarHolder &sysvar_holder= SysvarHolder::singleton();
79
sysvar_holder.setServersString(sysvar_memcached_servers);
70
81
/* we are good to go */
71
stats_table_tool= new StatsTableTool;
82
stats_table_tool= new(std::nothrow)StatsTableTool;
72
83
context.add(stats_table_tool);
74
analysis_table_tool= new AnalysisTableTool;
85
analysis_table_tool= new(std::nothrow)AnalysisTableTool;
75
86
context.add(analysis_table_tool);
77
context.registerVariable(new sys_var_std_string("servers",
78
sysvar_memcached_servers));
91
static int check_memc_servers(Session *,
96
char buff[STRING_BUFFER_USUAL_SIZE];
97
int len= sizeof(buff);
98
const char *input= value->val_str(value, buff, &len);
102
SysvarHolder &sysvar_holder= SysvarHolder::singleton();
103
sysvar_holder.setServersStringVar(input);
104
*(bool *) save= (bool) true;
108
*(bool *) save= (bool) false;
112
static void set_memc_servers(Session *,
117
if (*(bool *) save != false)
119
SysvarHolder &sysvar_holder= SysvarHolder::singleton();
120
sysvar_holder.updateServersSysvar((const char **) var_ptr);
124
static DRIZZLE_SYSVAR_STR(servers,
125
sysvar_memcached_servers,
127
N_("List of memcached servers."),
128
check_memc_servers, /* check func */
129
set_memc_servers, /* update func */
130
""); /* default value */
83
132
static void init_options(drizzled::module::option_context &context)
85
134
context("servers",
86
po::value<std::string>()->default_value(""),
87
_("List of memcached servers."));
136
N_("List of memcached servers."));
90
} /* namespace drizzle_plugin */
139
static drizzle_sys_var *system_variables[]=
141
DRIZZLE_SYSVAR(servers),
92
145
DRIZZLE_DECLARE_PLUGIN
97
150
"Padraig O'Sullivan",
98
151
N_("Memcached Stats as I_S tables"),
99
152
PLUGIN_LICENSE_BSD,
100
drizzle_plugin::init, /* Plugin Init */
102
drizzle_plugin::init_options /* config options */
153
init, /* Plugin Init */
154
system_variables, /* system variables */
155
init_options /* config options */
104
157
DRIZZLE_DECLARE_PLUGIN_END;