~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.cc

  • Committer: Brian Aker
  • Date: 2009-07-16 22:37:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1100.
  • Revision ID: brian@gaz-20090716223701-vbbbo8dmgd2ljqqo
Refactor TableShare has to be behind class.

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 Monty Taylor
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; version 2 of the License.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 */
19
 
 
20
 
#include "config.h"
21
 
 
22
 
#include <drizzled/plugin/table_function.h>
23
 
#include <drizzled/table_function_container.h>
24
 
#include <drizzled/gettext.h>
25
 
#include "drizzled/plugin/registry.h"
26
 
#include "drizzled/global_charset_info.h"
27
 
#include "drizzled/session.h"
28
 
#include "drizzled/current_session.h"
29
 
 
30
 
#include <vector>
31
 
 
32
 
using namespace std;
33
 
 
34
 
namespace drizzled
35
 
{
36
 
 
37
 
static TableFunctionContainer table_functions;
38
 
 
39
 
void plugin::TableFunction::init()
40
 
{
41
 
  drizzled::message::Table::StorageEngine *engine;
42
 
  drizzled::message::Table::TableOptions *table_options;
43
 
 
44
 
  proto.set_name(getTableLabel());
45
 
  proto.set_schema(identifier.getSchemaName());
46
 
  proto.set_type(drizzled::message::Table::FUNCTION);
47
 
  proto.set_creation_timestamp(0);
48
 
  proto.set_update_timestamp(0);
49
 
 
50
 
  table_options= proto.mutable_options();
51
 
  table_options->set_collation_id(default_charset_info->number);
52
 
  table_options->set_collation(default_charset_info->name);
53
 
 
54
 
  engine= proto.mutable_engine();
55
 
  engine->set_name("FunctionEngine");
56
 
}
57
 
 
58
 
bool plugin::TableFunction::addPlugin(plugin::TableFunction *tool)
59
 
{
60
 
  assert(tool != NULL);
61
 
  table_functions.addFunction(tool); 
62
 
  return false;
63
 
}
64
 
 
65
 
plugin::TableFunction *plugin::TableFunction::getFunction(const string &arg)
66
 
{
67
 
  return table_functions.getFunction(arg);
68
 
}
69
 
 
70
 
void plugin::TableFunction::getNames(const string &arg,
71
 
                                     set<std::string> &set_of_names)
72
 
{
73
 
  table_functions.getNames(arg, set_of_names);
74
 
}
75
 
 
76
 
plugin::TableFunction::Generator *plugin::TableFunction::generator(Field **arg)
77
 
{
78
 
  return new Generator(arg);
79
 
}
80
 
 
81
 
void plugin::TableFunction::add_field(const char *label,
82
 
                                      uint32_t field_length)
83
 
{
84
 
  add_field(label, TableFunction::STRING, field_length);
85
 
}
86
 
 
87
 
void plugin::TableFunction::add_field(const char *label,
88
 
                              TableFunction::ColumnType type,
89
 
                              bool is_default_null)
90
 
{
91
 
  add_field(label, type, 5, is_default_null);
92
 
}
93
 
 
94
 
void plugin::TableFunction::add_field(const char *label,
95
 
                              TableFunction::ColumnType type,
96
 
                              uint32_t field_length,
97
 
                              bool is_default_null)
98
 
{
99
 
  drizzled::message::Table::Field *field;
100
 
  drizzled::message::Table::Field::FieldOptions *field_options;
101
 
  drizzled::message::Table::Field::FieldConstraints *field_constraints;
102
 
 
103
 
  field= proto.add_field();
104
 
  field->set_name(label);
105
 
 
106
 
  field_options= field->mutable_options();
107
 
  field_constraints= field->mutable_constraints();
108
 
  field_options->set_default_null(is_default_null);
109
 
  field_constraints->set_is_nullable(is_default_null);
110
 
 
111
 
  switch (type) 
112
 
  {
113
 
  default:
114
 
  case TableFunction::BOOLEAN: // Currently BOOLEAN always has a value
115
 
    field_length= 5;
116
 
    field_options->set_default_null(false);
117
 
    field_constraints->set_is_nullable(false);
118
 
  case TableFunction::STRING:
119
 
  {
120
 
    drizzled::message::Table::Field::StringFieldOptions *string_field_options;
121
 
    field->set_type(drizzled::message::Table::Field::VARCHAR);
122
 
 
123
 
    string_field_options= field->mutable_string_options();
124
 
    string_field_options->set_length(field_length);
125
 
  }
126
 
    break;
127
 
  case TableFunction::VARBINARY:
128
 
  {
129
 
    drizzled::message::Table::Field::StringFieldOptions *string_field_options;
130
 
    field->set_type(drizzled::message::Table::Field::VARCHAR);
131
 
 
132
 
    string_field_options= field->mutable_string_options();
133
 
    string_field_options->set_length(field_length);
134
 
    string_field_options->set_collation(my_charset_bin.csname);
135
 
    string_field_options->set_collation_id(my_charset_bin.number);
136
 
  }
137
 
    break;
138
 
  case TableFunction::NUMBER: // Currently NUMBER always has a value
139
 
    field->set_type(drizzled::message::Table::Field::BIGINT);
140
 
    field_options->set_default_null(false);
141
 
    field_constraints->set_is_nullable(false);
142
 
    break;
143
 
  }
144
 
}
145
 
 
146
 
plugin::TableFunction::Generator::Generator(Field **arg) :
147
 
  columns(arg),
148
 
  session(current_session)
149
 
{
150
 
  scs= system_charset_info;
151
 
}
152
 
 
153
 
bool plugin::TableFunction::Generator::sub_populate(uint32_t field_size)
154
 
{
155
 
  bool ret;
156
 
  uint64_t difference;
157
 
 
158
 
  columns_iterator= columns;
159
 
  ret= populate();
160
 
  difference= columns_iterator - columns;
161
 
 
162
 
  if (ret == true)
163
 
  {
164
 
    assert(difference == field_size);
165
 
  }
166
 
 
167
 
  return ret;
168
 
}
169
 
 
170
 
void plugin::TableFunction::Generator::push(uint64_t arg)
171
 
{
172
 
  (*columns_iterator)->store(static_cast<int64_t>(arg), true);
173
 
  (*columns_iterator)->set_notnull();
174
 
  columns_iterator++;
175
 
}
176
 
 
177
 
void plugin::TableFunction::Generator::push(int64_t arg)
178
 
{
179
 
  (*columns_iterator)->store(arg, false);
180
 
  (*columns_iterator)->set_notnull();
181
 
  columns_iterator++;
182
 
}
183
 
 
184
 
void plugin::TableFunction::Generator::push(const char *arg, uint32_t length)
185
 
{
186
 
  assert(columns_iterator);
187
 
  assert(*columns_iterator);
188
 
  assert(arg);
189
 
  length= length ? length : strlen(arg);
190
 
 
191
 
  (*columns_iterator)->store(arg, length, scs);
192
 
  (*columns_iterator)->set_notnull();
193
 
  columns_iterator++;
194
 
}
195
 
 
196
 
void plugin::TableFunction::Generator::push()
197
 
{
198
 
  assert((*columns_iterator)->type()  == DRIZZLE_TYPE_VARCHAR);
199
 
  (*columns_iterator)->set_null();
200
 
  columns_iterator++;
201
 
}
202
 
 
203
 
void plugin::TableFunction::Generator::push(const std::string& arg)
204
 
{
205
 
  push(arg.c_str(), arg.length());
206
 
}
207
 
 
208
 
void plugin::TableFunction::Generator::push(bool arg)
209
 
{
210
 
  if (arg)
211
 
  {
212
 
    (*columns_iterator)->store("TRUE", 4, scs);
213
 
  }
214
 
  else
215
 
  {
216
 
    (*columns_iterator)->store("FALSE", 5, scs);
217
 
  }
218
 
 
219
 
  columns_iterator++;
220
 
}
221
 
 
222
 
bool plugin::TableFunction::Generator::isWild(const std::string &predicate)
223
 
{
224
 
  if (not getSession().lex->wild)
225
 
    return false;
226
 
 
227
 
  bool match= wild_case_compare(system_charset_info,
228
 
                                predicate.c_str(),
229
 
                                getSession().lex->wild->ptr());
230
 
 
231
 
  return match;
232
 
}
233
 
 
234
 
} /* namespace drizzled */