~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_stats/stats_table.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-29 19:34:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1167.
  • Revision ID: osullivan.padraig@gmail.com-20090929193458-zs97say0t1t85b4h
Created plugin which simply adds I_S tables for querying memcached stats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 *  Copyright (C) 2009 Sun Microsystems
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; version 2 of the License.
 
7
 *
 
8
 *  This program is distributed in the hope that it will be useful,
 
9
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 *  GNU General Public License for more details.
 
12
 *
 
13
 *  You should have received a copy of the GNU General Public License
 
14
 *  along with this program; if not, write to the Free Software
 
15
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
16
 */
 
17
 
 
18
#ifndef PLUGIN_MEMCACHED_STATS_STATS_TABLE_H
 
19
#define PLUGIN_MEMCACHED_STATS_STATS_TABLE_H
 
20
 
 
21
#include "drizzled/info_schema.h"
 
22
 
 
23
#include <vector>
 
24
 
 
25
class MemcachedStatsISMethods : public InfoSchemaMethods
 
26
{
 
27
public:
 
28
  MemcachedStatsISMethods(const std::string &in_servers)
 
29
    :
 
30
      InfoSchemaMethods(),
 
31
      servers_string(in_servers)
 
32
  {}
 
33
 
 
34
  virtual int fillTable(Session *session,
 
35
                        TableList *tables,
 
36
                        COND *cond);
 
37
 
 
38
  void setServersString(const std::string &in_servers)
 
39
  {
 
40
    servers_string.assign(in_servers);
 
41
  }
 
42
 
 
43
private:
 
44
  std::string servers_string;
 
45
};
 
46
 
 
47
bool createMemcachedStatsColumns(std::vector<const ColumnInfo *> &cols);
 
48
 
 
49
void clearMemcachedColumns(std::vector<const ColumnInfo *> &cols);
 
50
 
 
51
#endif /* PLUGIN_MEMCACHED_STATS_STATS_TABLE_H */