~ubuntu-branches/ubuntu/trusty/drizzle/trusty-proposed

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

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_SCHEMA_DICTIONARY_SCHEMAS_H
 
22
#define PLUGIN_SCHEMA_DICTIONARY_SCHEMAS_H
 
23
 
 
24
class SchemasTool : public drizzled::plugin::TableFunction
 
25
{
 
26
public:
 
27
 
 
28
  SchemasTool();
 
29
 
 
30
  SchemasTool(const char *schema_arg, const char *table_arg) :
 
31
    drizzled::plugin::TableFunction(schema_arg, table_arg)
 
32
  { }
 
33
 
 
34
  SchemasTool(const char *table_arg) :
 
35
    drizzled::plugin::TableFunction("data_dictionary", table_arg)
 
36
  { }
 
37
 
 
38
  class Generator : public drizzled::plugin::TableFunction::Generator 
 
39
  {
 
40
    drizzled::message::Schema schema;
 
41
    std::set<std::string> schema_names;
 
42
    std::set<std::string>::const_iterator schema_iterator;
 
43
    std::string schema_predicate;
 
44
    bool is_schema_primed;
 
45
    bool is_schema_parsed;
 
46
 
 
47
    virtual void fill();
 
48
    virtual bool checkSchema();
 
49
 
 
50
  public:
 
51
    Generator(drizzled::Field **arg);
 
52
 
 
53
    const std::string &schema_name()
 
54
    {
 
55
      assert(is_schema_primed);
 
56
      return is_schema_parsed ? schema.name() : (*schema_iterator);
 
57
    }
 
58
 
 
59
    void setSchemaPredicate(const std::string &arg)
 
60
    {
 
61
      schema_predicate= arg;
 
62
    }
 
63
 
 
64
    bool populate();
 
65
    bool nextSchemaCore();
 
66
    bool nextSchema();
 
67
    bool isSchemaPrimed()
 
68
    {
 
69
      return is_schema_primed;
 
70
    }
 
71
  };
 
72
 
 
73
  Generator *generator(drizzled::Field **arg)
 
74
  {
 
75
    return new Generator(arg);
 
76
  }
 
77
};
 
78
 
 
79
class SchemaNames : public SchemasTool
 
80
{
 
81
public:
 
82
  SchemaNames() :
 
83
    SchemasTool("SCHEMA_NAMES")
 
84
  {
 
85
    add_field("SCHEMA_NAME");
 
86
  }
 
87
 
 
88
  class Generator : public SchemasTool::Generator 
 
89
  {
 
90
    void fill()
 
91
    {
 
92
      /* SCHEMA_NAME */
 
93
      push(schema_name());
 
94
    }
 
95
 
 
96
  public:
 
97
    Generator(drizzled::Field **arg) :
 
98
      SchemasTool::Generator(arg)
 
99
    { }
 
100
  };
 
101
 
 
102
  Generator *generator(drizzled::Field **arg)
 
103
  {
 
104
    return new Generator(arg);
 
105
  }
 
106
};
 
107
 
 
108
 
 
109
#endif /* PLUGIN_SCHEMA_DICTIONARY_SCHEMAS_H */