~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/show_columns.cc

  • Committer: Brian Aker
  • Date: 2010-03-02 01:04:20 UTC
  • mto: (1309.2.12 build)
  • mto: This revision was merged to the branch mainline in revision 1317.
  • Revision ID: brian@gaz-20100302010420-4in192er50qlv1bv
New version of show columns code.

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
#include "config.h"
 
22
#include "plugin/schema_dictionary/dictionary.h"
 
23
#include "drizzled/table_identifier.h"
 
24
 
 
25
 
 
26
using namespace std;
 
27
using namespace drizzled;
 
28
 
 
29
static const string VARCHAR("VARCHAR");
 
30
static const string DOUBLE("DOUBLE");
 
31
static const string BLOB("BLOB");
 
32
static const string ENUM("ENUM");
 
33
static const string INTEGER("INTEGER");
 
34
static const string BIGINT("BIGINT");
 
35
static const string DECIMAL("DECIMAL");
 
36
static const string DATE("DATE");
 
37
static const string TIMESTAMP("TIMESTAMP");
 
38
static const string DATETIME("DATETIME");
 
39
 
 
40
ShowColumns::ShowColumns() :
 
41
  plugin::TableFunction("DATA_DICTIONARY", "SHOW_COLUMNS")
 
42
{
 
43
  add_field("Field");
 
44
  add_field("Type");
 
45
  add_field("Null", plugin::TableFunction::BOOLEAN);
 
46
  add_field("Default");
 
47
  add_field("Default_is_NULL", plugin::TableFunction::BOOLEAN);
 
48
  add_field("On_Update");
 
49
}
 
50
 
 
51
ShowColumns::Generator::Generator(Field **arg) :
 
52
  plugin::TableFunction::Generator(arg),
 
53
  is_tables_primed(false),
 
54
  is_columns_primed(false),
 
55
  column_iterator(0)
 
56
{
 
57
  Session *session= current_session;
 
58
  statement::Select *select= static_cast<statement::Select *>(session->lex->statement);
 
59
 
 
60
  table_name.append(select->getShowTable().c_str());
 
61
  TableIdentifier identifier(select->getShowSchema().c_str(), select->getShowTable().c_str());
 
62
 
 
63
  is_tables_primed= plugin::StorageEngine::getTableDefinition(*session,
 
64
                                                              identifier,
 
65
                                                              &table_proto);
 
66
}
 
67
 
 
68
bool ShowColumns::Generator::nextColumnCore()
 
69
{
 
70
  if (is_columns_primed)
 
71
  {
 
72
    column_iterator++;
 
73
  }
 
74
  else
 
75
  {
 
76
    if (not isTablesPrimed())
 
77
      return false;
 
78
 
 
79
    column_iterator= 0;
 
80
    is_columns_primed= true;
 
81
  }
 
82
 
 
83
  if (column_iterator >= getTableProto().field_size())
 
84
    return false;
 
85
 
 
86
  column= getTableProto().field(column_iterator);
 
87
 
 
88
  return true;
 
89
}
 
90
 
 
91
 
 
92
bool ShowColumns::Generator::nextColumn()
 
93
{
 
94
  while (not nextColumnCore())
 
95
  {
 
96
    return false;
 
97
  }
 
98
 
 
99
  return true;
 
100
}
 
101
 
 
102
bool ShowColumns::Generator::populate()
 
103
{
 
104
 
 
105
  if (not nextColumn())
 
106
    return false;
 
107
 
 
108
  fill();
 
109
 
 
110
  return true;
 
111
}
 
112
 
 
113
void ShowColumns::Generator::pushType(message::Table::Field::FieldType type)
 
114
{
 
115
  switch (type)
 
116
  {
 
117
  default:
 
118
  case message::Table::Field::VARCHAR:
 
119
    push(VARCHAR);
 
120
    break;
 
121
  case message::Table::Field::DOUBLE:
 
122
    push(DOUBLE);
 
123
    break;
 
124
  case message::Table::Field::BLOB:
 
125
    push(BLOB);
 
126
    break;
 
127
  case message::Table::Field::ENUM:
 
128
    push(ENUM);
 
129
    break;
 
130
  case message::Table::Field::INTEGER:
 
131
    push(INTEGER);
 
132
    break;
 
133
  case message::Table::Field::BIGINT:
 
134
    push(BIGINT);
 
135
    break;
 
136
  case message::Table::Field::DECIMAL:
 
137
    push(DECIMAL);
 
138
    break;
 
139
  case message::Table::Field::DATE:
 
140
    push(DATE);
 
141
    break;
 
142
  case message::Table::Field::TIMESTAMP:
 
143
    push(TIMESTAMP);
 
144
    break;
 
145
  case message::Table::Field::DATETIME:
 
146
    push(DATETIME);
 
147
    break;
 
148
  }
 
149
}
 
150
 
 
151
 
 
152
void ShowColumns::Generator::fill()
 
153
{
 
154
  /* Field */
 
155
  push(column.name());
 
156
 
 
157
  /* Type */
 
158
  pushType(column.type());
 
159
 
 
160
  /* Null */
 
161
  push(column.constraints().is_nullable());
 
162
 
 
163
  /* Default */
 
164
  push(column.options().default_value());
 
165
 
 
166
  /* Default_is_NULL */
 
167
  push(column.options().default_null());
 
168
 
 
169
  /* On_Update */
 
170
  push(column.options().update_value());
 
171
}