~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_columns.h

  • Committer: Brian Aker
  • Date: 2010-12-08 22:35:56 UTC
  • mfrom: (1819.9.158 update-innobase)
  • Revision ID: brian@tangent.org-20101208223556-37mi4omqg7lkjzf3
Merge in Stewart's changes, 1.3 changes.

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 Brian Aker
 
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_SHOW_DICTIONARY_SHOW_COLUMNS_H
 
22
#define PLUGIN_SHOW_DICTIONARY_SHOW_COLUMNS_H
 
23
 
 
24
class ShowColumns : public show_dictionary::Show
 
25
{
 
26
public:
 
27
  ShowColumns();
 
28
 
 
29
  bool visable() { return false; }
 
30
 
 
31
  class Generator : public show_dictionary::Show::Generator 
 
32
  {
 
33
    bool is_tables_primed;
 
34
    bool is_columns_primed;
 
35
 
 
36
    int32_t column_iterator;
 
37
    drizzled::message::table::shared_ptr table_proto;
 
38
    drizzled::message::Table::Field column;
 
39
 
 
40
    bool nextColumnCore();
 
41
    bool nextColumn();
 
42
 
 
43
    std::string table_name;
 
44
 
 
45
    drizzled::message::table::shared_ptr getTableProto()
 
46
    {
 
47
      return table_proto;
 
48
    }
 
49
 
 
50
    bool isTablesPrimed()
 
51
    {
 
52
      return is_tables_primed;
 
53
    }
 
54
 
 
55
    const std::string &getTableName()
 
56
    {
 
57
      return table_name;
 
58
    }
 
59
 
 
60
    void pushType(drizzled::message::Table::Field::FieldType type, const std::string collation);
 
61
 
 
62
    void fill();
 
63
 
 
64
  public:
 
65
    Generator(drizzled::Field **arg);
 
66
    bool populate();
 
67
 
 
68
  };
 
69
 
 
70
  Generator *generator(drizzled::Field **arg)
 
71
  {
 
72
    return new Generator(arg);
 
73
  }
 
74
};
 
75
 
 
76
#endif /* PLUGIN_SHOW_DICTIONARY_SHOW_COLUMNS_H */