~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/status.h

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#ifndef PLUGIN_DATA_ENGINE_STATUS_H
 
22
#define PLUGIN_DATA_ENGINE_STATUS_H
 
23
 
 
24
#include "config.h"
 
25
 
 
26
#include "drizzled/plugin/table_function.h"
 
27
#include "drizzled/field.h"
 
28
 
 
29
class StateTool : public drizzled::plugin::TableFunction
 
30
{
 
31
  sql_var_t option_type;
 
32
 
 
33
public:
 
34
 
 
35
  StateTool(const char *arg, bool global);
 
36
 
 
37
  virtual drizzle_show_var *getVariables()= 0;
 
38
 
 
39
  virtual bool hasStatus()
 
40
  {
 
41
    return true;
 
42
  }
 
43
 
 
44
  class Generator : public drizzled::plugin::TableFunction::Generator 
 
45
  {
 
46
    sql_var_t option_type;
 
47
    bool has_status;
 
48
    drizzle_show_var *variables;
 
49
    system_status_var status;
 
50
    system_status_var *status_ptr;
 
51
 
 
52
    void fill(const char *name, char *value, SHOW_TYPE show_type);
 
53
 
 
54
    system_status_var *getStatus()
 
55
    {
 
56
      return status_ptr;
 
57
    }
 
58
 
 
59
  public:
 
60
    Generator(Field **arg, sql_var_t option_arg,
 
61
              drizzle_show_var *show_arg,
 
62
              bool status_arg);
 
63
    ~Generator();
 
64
 
 
65
    bool populate();
 
66
 
 
67
  };
 
68
 
 
69
  Generator *generator(Field **arg)
 
70
  {
 
71
    return new Generator(arg, option_type, getVariables(), hasStatus());
 
72
  }
 
73
};
 
74
 
 
75
class StatusTool : public StateTool
 
76
{
 
77
public:
 
78
  StatusTool(bool global) :
 
79
    StateTool(global ? "GLOBAL_STATUS" : "SESSION_STATUS", global)
 
80
  { }
 
81
 
 
82
  drizzle_show_var *getVariables()
 
83
  {
 
84
    return getFrontOfStatusVars();
 
85
  }
 
86
};
 
87
 
 
88
 
 
89
class StatementsTool : public StateTool
 
90
{
 
91
public:
 
92
  StatementsTool(bool global) :
 
93
    StateTool(global ? "GLOBAL_STATEMENTS" : "SESSION_STATEMENTS", global)
 
94
    { }
 
95
 
 
96
  drizzle_show_var *getVariables()
 
97
  {
 
98
    return getCommandStatusVars();
 
99
  }
 
100
};
 
101
 
 
102
#include "plugin/data_engine/variables.h"
 
103
 
 
104
#endif // PLUGIN_DATA_ENGINE_STATUS_H