1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Definitions required for TableFunction plugin
6
* Copyright (C) 2010 Sun Microsystems
7
* Copyright (C) 2010 Monty Taylor
9
* This program is free software; you can redistribute it and/or modify
10
* it under the terms of the GNU General Public License as published by
11
* the Free Software Foundation; version 2 of the License.
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU General Public License for more details.
18
* You should have received a copy of the GNU General Public License
19
* along with this program; if not, write to the Free Software
20
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
#ifndef DRIZZLED_PLUGIN_TABLE_FUNCTION_H
24
#define DRIZZLED_PLUGIN_TABLE_FUNCTION_H
26
#include <drizzled/definitions.h>
27
#include "drizzled/plugin.h"
28
#include "drizzled/plugin/plugin.h"
29
#include "drizzled/identifier.h"
30
#include "drizzled/message/table.pb.h"
31
#include "drizzled/charset.h"
32
#include "drizzled/field.h"
41
extern int wild_case_compare(const CHARSET_INFO * const cs,
42
const char *str,const char *wildstr);
47
// Not thread safe, but plugins are just loaded in a single thread right
49
static const char *local_string_append(const char *arg1, const char *arg2)
51
static char buffer[1024];
52
char *buffer_ptr= buffer;
53
strcpy(buffer_ptr, arg1);
54
buffer_ptr+= strlen(arg1);
57
strcpy(buffer_ptr, arg2);
62
class TableFunction : public Plugin
65
TableFunction(const TableFunction &);
66
TableFunction& operator=(const TableFunction &);
69
TableIdentifier identifier;
70
std::string local_path;
71
std::string original_table_label;
73
void setName(); // init name
78
TableFunction(const char *schema_arg, const char *table_arg) :
79
Plugin(local_string_append(schema_arg, table_arg) , "TableFunction"),
80
identifier(schema_arg, table_arg),
81
original_table_label(table_arg)
86
virtual ~TableFunction() {}
88
static bool addPlugin(TableFunction *function);
89
static void removePlugin(TableFunction *)
91
static TableFunction *getFunction(const std::string &arg);
92
static void getNames(const std::string &arg,
93
std::set<std::string> &set_of_names);
105
Field **columns_iterator;
110
drizzled::Session &getSession()
116
const CHARSET_INFO *scs;
118
Generator(Field **arg);
123
Return type is bool meaning "are there more rows".
125
bool sub_populate(uint32_t field_size);
127
virtual bool populate()
132
void push(uint64_t arg);
133
void push(int64_t arg);
134
void push(const char *arg, uint32_t length= 0);
135
void push(const std::string& arg);
139
bool isWild(const std::string &predicate);
142
void define(message::Table &arg)
147
const std::string &getTableLabel()
149
return original_table_label;
152
const std::string &getIdentifierTableName()
154
return identifier.getTableName();
157
const std::string &getSchemaHome()
159
return identifier.getSchemaName();
162
const std::string &getPath()
164
return identifier.getPath();
167
virtual Generator *generator(Field **arg);
169
void add_field(const char *label,
170
message::Table::Field::FieldType type,
173
void add_field(const char *label,
174
uint32_t field_length= MAXIMUM_IDENTIFIER_LENGTH);
176
void add_field(const char *label,
177
TableFunction::ColumnType type,
178
bool is_default_null= true);
180
void add_field(const char *label,
181
TableFunction::ColumnType type,
182
uint32_t field_length,
183
bool is_default_null= false);
186
} /* namespace plugin */
187
} /* namespace drizzled */
189
#endif /* DRIZZLED_PLUGIN_TABLE_FUNCTION_H */