~jaypipes/drizzle/split-xa-resource-manager

« back to all changes in this revision

Viewing changes to plugin/status_dictionary/state_tool.h

  • Committer: Jay Pipes
  • Date: 2010-02-14 20:26:43 UTC
  • mfrom: (1273.1.27 staging)
  • Revision ID: jpipes@serialcoder-20100214202643-ahuqvc8rhn8u7y33
Merge trunk and resolve conflicts

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_STATUS_DICTIONARY_STATE_TOOL_H
 
22
#define PLUGIN_STATUS_DICTIONARY_STATE_TOOL_H
 
23
 
 
24
class StateTool : public drizzled::plugin::TableFunction
 
25
{
 
26
  drizzled::sql_var_t option_type;
 
27
 
 
28
public:
 
29
 
 
30
  StateTool(const char *arg, bool global);
 
31
 
 
32
  virtual drizzled::drizzle_show_var *getVariables()= 0;
 
33
 
 
34
  virtual bool hasStatus()
 
35
  {
 
36
    return true;
 
37
  }
 
38
 
 
39
  class Generator : public drizzled::plugin::TableFunction::Generator 
 
40
  {
 
41
    drizzled::sql_var_t option_type;
 
42
    bool has_status;
 
43
    drizzled::drizzle_show_var *variables;
 
44
    drizzled::system_status_var status;
 
45
    drizzled::system_status_var *status_ptr;
 
46
 
 
47
    void fill(const char *name, char *value, drizzled::SHOW_TYPE show_type);
 
48
 
 
49
    drizzled::system_status_var *getStatus()
 
50
    {
 
51
      return status_ptr;
 
52
    }
 
53
 
 
54
  public:
 
55
    Generator(drizzled::Field **arg, drizzled::sql_var_t option_arg,
 
56
              drizzled::drizzle_show_var *show_arg,
 
57
              bool status_arg);
 
58
    ~Generator();
 
59
 
 
60
    bool populate();
 
61
 
 
62
  };
 
63
 
 
64
  Generator *generator(drizzled::Field **arg)
 
65
  {
 
66
    return new Generator(arg, option_type, getVariables(), hasStatus());
 
67
  }
 
68
};
 
69
 
 
70
#endif /* PLUGIN_STATUS_DICTIONARY_STATE_TOOL_H */