~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_stats/memcached_stats.cc

  • Committer: Monty Taylor
  • Date: 2010-12-02 23:49:02 UTC
  • mto: (1975.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1976.
  • Revision ID: mordred@inaugust.com-20101202234902-jrvwwtjjbuoc3v3y
Updated memcached_stats plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#include <map>
41
41
 
42
42
namespace po=boost::program_options;
43
 
using namespace std;
44
 
using namespace drizzled;
 
43
 
 
44
namespace drizzle_plugin
 
45
{
 
46
 
45
47
 
46
48
/*
47
49
 * DATA_DICTIONARY tables.
53
55
/*
54
56
 * System variable related variables.
55
57
 */
56
 
static char *sysvar_memcached_servers= NULL;
 
58
static std::string sysvar_memcached_servers;
57
59
 
58
60
/**
59
61
 * Initialize the memcached stats plugin.
61
63
 * @param[in] registry the drizzled::plugin::Registry singleton
62
64
 * @return false on success; true on failure.
63
65
 */
64
 
static int init(module::Context &context)
 
66
static int init(drizzled::module::Context &context)
65
67
{
66
 
  const module::option_map &vm= context.getOptions();
67
 
 
68
 
  if(vm.count("servers"))
69
 
  {
70
 
    sysvar_memcached_servers= strdup(vm["servers"].as<string>().c_str());
71
 
  }
72
 
 
73
 
  else
74
 
  {
75
 
    sysvar_memcached_servers= strdup("");
76
 
  }
77
 
 
78
 
  SysvarHolder &sysvar_holder= SysvarHolder::singleton();
79
 
  sysvar_holder.setServersString(sysvar_memcached_servers);
80
 
  sysvar_holder.setMemoryPtr(sysvar_memcached_servers);
 
68
  const drizzled::module::option_map &vm= context.getOptions();
81
69
 
82
70
  /* we are good to go */
83
 
  stats_table_tool= new(std::nothrow)StatsTableTool; 
 
71
  stats_table_tool= new StatsTableTool; 
84
72
  context.add(stats_table_tool);
85
73
 
86
 
  analysis_table_tool= new(std::nothrow)AnalysisTableTool;
 
74
  analysis_table_tool= new AnalysisTableTool;
87
75
  context.add(analysis_table_tool);
88
76
 
 
77
  context.registerVariable(new sys_var_std_string("servers",
 
78
                                                  sysvar_memcached_servers));
 
79
                          
89
80
  return 0;
90
81
}
91
82
 
92
 
static int check_memc_servers(Session *,
93
 
                              drizzle_sys_var *,
94
 
                              void *save,
95
 
                              drizzle_value *value)
96
 
{
97
 
  char buff[STRING_BUFFER_USUAL_SIZE];
98
 
  int len= sizeof(buff);
99
 
  const char *input= value->val_str(value, buff, &len);
100
 
 
101
 
  if (input)
102
 
  {
103
 
    SysvarHolder &sysvar_holder= SysvarHolder::singleton();
104
 
    sysvar_holder.setServersStringVar(input);
105
 
    *(bool *) save= (bool) true;
106
 
    return 0;
107
 
  }
108
 
 
109
 
  *(bool *) save= (bool) false;
110
 
  return 1;
111
 
}
112
 
 
113
 
static void set_memc_servers(Session *,
114
 
                             drizzle_sys_var *,
115
 
                             void *var_ptr,
116
 
                             const void *save)
117
 
{
118
 
  if (*(bool *) save != false)
119
 
  {
120
 
    SysvarHolder &sysvar_holder= SysvarHolder::singleton();
121
 
    sysvar_holder.updateServersSysvar((const char **) var_ptr);
122
 
  }
123
 
}
124
 
 
125
 
static DRIZZLE_SYSVAR_STR(servers,
126
 
                          sysvar_memcached_servers,
127
 
                          PLUGIN_VAR_OPCMDARG,
128
 
                          N_("List of memcached servers."),
129
 
                          check_memc_servers, /* check func */
130
 
                          set_memc_servers, /* update func */
131
 
                          ""); /* default value */
132
 
 
133
83
static void init_options(drizzled::module::option_context &context)
134
84
{
135
85
  context("servers",
136
 
          po::value<string>(),
 
86
          po::value<std::string>()->default_value(""),
137
87
          N_("List of memcached servers."));
138
88
}
139
89
 
140
 
static drizzle_sys_var *system_variables[]=
141
 
{
142
 
  DRIZZLE_SYSVAR(servers),
143
 
  NULL
144
 
};
 
90
} /* namespace drizzle_plugin */
145
91
 
146
92
DRIZZLE_DECLARE_PLUGIN
147
93
{
151
97
  "Padraig O'Sullivan",
152
98
  N_("Memcached Stats as I_S tables"),
153
99
  PLUGIN_LICENSE_BSD,
154
 
  init,   /* Plugin Init      */
155
 
  system_variables, /* system variables */
156
 
  init_options    /* config options   */
 
100
  drizzle_plugin::init,   /* Plugin Init      */
 
101
  NULL, /* system variables */
 
102
  drizzle_plugin::init_options    /* config options   */
157
103
}
158
104
DRIZZLE_DECLARE_PLUGIN_END;