~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/slot/info_schema.cc

Merged in plugin-slot-reorg patches.

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) 2008 Sun Microsystems
 
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 "drizzled/server_includes.h"
 
22
#include "drizzled/slot/info_schema.h"
 
23
#include "drizzled/plugin/info_schema.h"
 
24
#include "drizzled/gettext.h"
 
25
#include "drizzled/session.h"
 
26
#include "drizzled/lex_string.h"
 
27
 
 
28
#include <vector>
 
29
 
 
30
using namespace drizzled;
 
31
using namespace std;
 
32
 
 
33
 
 
34
void slot::InfoSchema::add(plugin::InfoSchema *schema_table)
 
35
{
 
36
  if (schema_table->getFirstColumnIndex() == 0)
 
37
    schema_table->setFirstColumnIndex(-1);
 
38
  if (schema_table->getSecondColumnIndex() == 0)
 
39
   schema_table->setSecondColumnIndex(-1);
 
40
 
 
41
  all_schema_tables.push_back(schema_table);
 
42
}
 
43
 
 
44
void slot::InfoSchema::remove(plugin::InfoSchema *table)
 
45
{
 
46
  all_schema_tables.erase(remove_if(all_schema_tables.begin(),
 
47
                                    all_schema_tables.end(),
 
48
                                    bind2nd(equal_to<plugin::InfoSchema *>(),
 
49
                                            table)),
 
50
                          all_schema_tables.end());
 
51
}
 
52
 
 
53
 
 
54
namespace drizzled
 
55
{
 
56
namespace slot
 
57
{
 
58
namespace i_s_priv
 
59
{
 
60
 
 
61
class AddSchemaTable : public unary_function<plugin::InfoSchema *, bool>
 
62
{
 
63
  Session *session;
 
64
  const char *wild;
 
65
  vector<LEX_STRING*> &files;
 
66
 
 
67
public:
 
68
  AddSchemaTable(Session *session_arg, vector<LEX_STRING*> &files_arg, const char *wild_arg)
 
69
    : session(session_arg), wild(wild_arg), files(files_arg)
 
70
  {}
 
71
 
 
72
  result_type operator() (argument_type schema_table)
 
73
  {
 
74
    if (schema_table->isHidden())
 
75
    {
 
76
      return false;
 
77
    }
 
78
 
 
79
    const string &schema_table_name= schema_table->getTableName();
 
80
 
 
81
    if (wild && wild_case_compare(files_charset_info, schema_table_name.c_str(), wild))
 
82
    {
 
83
      return false;
 
84
    }
 
85
 
 
86
    LEX_STRING *file_name= 0;
 
87
    file_name= session->make_lex_string(file_name, schema_table_name.c_str(),
 
88
                                        schema_table_name.length(), true);
 
89
    if (file_name == NULL)
 
90
    {
 
91
      return true;
 
92
    }
 
93
 
 
94
    files.push_back(file_name);
 
95
    return false;
 
96
  }
 
97
};
 
98
 
 
99
class FindSchemaTableByName : public unary_function<plugin::InfoSchema *, bool>
 
100
{
 
101
  const char *table_name;
 
102
public:
 
103
  FindSchemaTableByName(const char *table_name_arg)
 
104
    : table_name(table_name_arg) {}
 
105
  result_type operator() (argument_type schema_table)
 
106
  {
 
107
    return ! my_strcasecmp(system_charset_info,
 
108
                           schema_table->getTableName().c_str(),
 
109
                           table_name);
 
110
  }
 
111
};
 
112
 
 
113
}
 
114
}
 
115
}
 
116
 
 
117
plugin::InfoSchema * slot::InfoSchema::getTable(const char *table_name)
 
118
{
 
119
  vector<plugin::InfoSchema *>::iterator iter=
 
120
    find_if(all_schema_tables.begin(),
 
121
            all_schema_tables.end(),
 
122
            slot::i_s_priv::FindSchemaTableByName(table_name));
 
123
 
 
124
  if (iter != all_schema_tables.end())
 
125
  {
 
126
    return *iter;
 
127
  }
 
128
 
 
129
  return NULL;
 
130
 
 
131
}
 
132
 
 
133
 
 
134
int slot::InfoSchema::addTableToList(Session *session,
 
135
                                     vector<LEX_STRING*> &files,
 
136
                                     const char *wild)
 
137
{
 
138
 
 
139
  vector<plugin::InfoSchema *>::iterator iter=
 
140
    find_if(all_schema_tables.begin(),
 
141
            all_schema_tables.end(),
 
142
            slot::i_s_priv::AddSchemaTable(session, files, wild));
 
143
 
 
144
  if (iter != all_schema_tables.end())
 
145
  {
 
146
    return 1;
 
147
  }
 
148
 
 
149
  return 0;
 
150
}