1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
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.
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.
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
21
#include "drizzled/server_includes.h"
22
#include "drizzled/plugin/info_schema_table.h"
23
#include "drizzled/gettext.h"
24
#include "drizzled/session.h"
25
#include "drizzled/lex_string.h"
34
vector<plugin::InfoSchemaTable *> all_schema_tables;
37
bool plugin::InfoSchemaTable::addPlugin(plugin::InfoSchemaTable *schema_table)
39
if (schema_table->getFirstColumnIndex() == 0)
40
schema_table->setFirstColumnIndex(-1);
41
if (schema_table->getSecondColumnIndex() == 0)
42
schema_table->setSecondColumnIndex(-1);
44
all_schema_tables.push_back(schema_table);
48
void plugin::InfoSchemaTable::removePlugin(plugin::InfoSchemaTable *table)
50
all_schema_tables.erase(remove_if(all_schema_tables.begin(),
51
all_schema_tables.end(),
52
bind2nd(equal_to<plugin::InfoSchemaTable *>(),
54
all_schema_tables.end());
58
class AddSchemaTable : public unary_function<plugin::InfoSchemaTable *, bool>
62
vector<LEX_STRING*> &files;
65
AddSchemaTable(Session *session_arg, vector<LEX_STRING*> &files_arg, const char *wild_arg)
66
: session(session_arg), wild(wild_arg), files(files_arg)
69
result_type operator() (argument_type schema_table)
71
if (schema_table->isHidden())
76
const string &schema_table_name= schema_table->getTableName();
78
if (wild && wild_case_compare(files_charset_info, schema_table_name.c_str(), wild))
83
LEX_STRING *file_name= 0;
84
file_name= session->make_lex_string(file_name, schema_table_name.c_str(),
85
schema_table_name.length(), true);
86
if (file_name == NULL)
91
files.push_back(file_name);
96
class FindSchemaTableByName : public unary_function<plugin::InfoSchemaTable *, bool>
98
const char *table_name;
100
FindSchemaTableByName(const char *table_name_arg)
101
: table_name(table_name_arg) {}
102
result_type operator() (argument_type schema_table)
104
return ! my_strcasecmp(system_charset_info,
105
schema_table->getTableName().c_str(),
110
plugin::InfoSchemaTable *plugin::InfoSchemaTable::getTable(const char *table_name)
112
vector<plugin::InfoSchemaTable *>::iterator iter=
113
find_if(all_schema_tables.begin(),
114
all_schema_tables.end(),
115
FindSchemaTableByName(table_name));
117
if (iter != all_schema_tables.end())
127
int plugin::InfoSchemaTable::addTableToList(Session *session,
128
vector<LEX_STRING*> &files,
132
vector<plugin::InfoSchemaTable *>::iterator iter=
133
find_if(all_schema_tables.begin(),
134
all_schema_tables.end(),
135
AddSchemaTable(session, files, wild));
137
if (iter != all_schema_tables.end())
145
} /* namespace drizzled */