1273.13.5
by Brian Aker
Additional definitions. |
1 |
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2010 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 |
||
1273.13.50
by Brian Aker
Additional plugins. |
21 |
#ifndef PLUGIN_SCHEMA_DICTIONARY_INDEXES_H
|
22 |
#define PLUGIN_SCHEMA_DICTIONARY_INDEXES_H
|
|
1273.13.17
by Brian Aker
Pass through rewrite. |
23 |
|
1273.13.18
by Brian Aker
Update code, first pass through cleaner method for recursing through |
24 |
class IndexesTool : public TablesTool |
1273.13.17
by Brian Aker
Pass through rewrite. |
25 |
{
|
26 |
public: |
|
27 |
IndexesTool(); |
|
28 |
||
1273.13.25
by Brian Aker
Updates for table functions to insert tables into additional schemas; |
29 |
IndexesTool(const char *schema_arg, const char *table_arg) : |
30 |
TablesTool(schema_arg, table_arg) |
|
31 |
{ } |
|
32 |
||
33 |
IndexesTool(const char *table_arg) : |
|
34 |
TablesTool(table_arg) |
|
1273.13.18
by Brian Aker
Update code, first pass through cleaner method for recursing through |
35 |
{ } |
36 |
||
37 |
class Generator : public TablesTool::Generator |
|
38 |
{
|
|
39 |
int32_t index_iterator; |
|
40 |
bool is_index_primed; |
|
41 |
drizzled::message::Table::Index index; |
|
42 |
||
43 |
bool nextIndexCore(); |
|
44 |
virtual void fill(); |
|
45 |
||
46 |
public: |
|
1273.14.5
by Monty Taylor
Merged trunk. |
47 |
Generator(drizzled::Field **arg); |
1273.13.18
by Brian Aker
Update code, first pass through cleaner method for recursing through |
48 |
|
49 |
const drizzled::message::Table::Index& getIndex() |
|
50 |
{
|
|
51 |
return index; |
|
52 |
}
|
|
53 |
||
54 |
bool isIndexesPrimed() |
|
55 |
{
|
|
56 |
return is_index_primed; |
|
57 |
}
|
|
58 |
||
59 |
bool nextIndex(); |
|
60 |
||
1273.13.21
by Brian Aker
Fix interface (we no longer need Fields passed around). |
61 |
bool populate(); |
1273.13.18
by Brian Aker
Update code, first pass through cleaner method for recursing through |
62 |
};
|
63 |
||
1273.14.5
by Monty Taylor
Merged trunk. |
64 |
Generator *generator(drizzled::Field **arg) |
1273.13.18
by Brian Aker
Update code, first pass through cleaner method for recursing through |
65 |
{
|
66 |
return new Generator(arg); |
|
1273.13.17
by Brian Aker
Pass through rewrite. |
67 |
}
|
68 |
};
|
|
69 |
||
1273.13.65
by Brian Aker
Lint fixes. |
70 |
#endif /* PLUGIN_SCHEMA_DICTIONARY_INDEXES_H */ |