~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/schema_engine.cc

  • Committer: lbieber
  • Date: 2010-10-06 16:34:16 UTC
  • mfrom: (1816.1.3 build)
  • Revision ID: lbieber@orisndriz08-20101006163416-ea0sl59qgpglk21y
Merge Monty - Change the requirement from either libinnodb to libhaildb. Also, tied it to version 2.2
Merge Andrew - fix bug 650935: remove --compress from all clients
Merge Andrew - fix bug 653471: Add -A to drizzle client
Merge Travis - 621861 = To change C structs to C++ classes in Drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include "drizzled/global_charset_info.h"
25
25
#include "drizzled/charset.h"
26
 
#include "drizzled/transaction_services.h"
27
26
 
28
27
#include "drizzled/plugin/storage_engine.h"
29
28
#include "drizzled/plugin/authorization.h"
30
29
 
 
30
using namespace std;
 
31
 
31
32
namespace drizzled
32
33
{
33
34
 
35
36
{
36
37
 
37
38
class AddSchemaNames : 
38
 
  public std::unary_function<StorageEngine *, void>
 
39
  public unary_function<StorageEngine *, void>
39
40
{
40
 
  identifier::Schema::vector &schemas;
 
41
  SchemaIdentifiers &schemas;
41
42
 
42
43
public:
43
44
 
44
 
  AddSchemaNames(identifier::Schema::vector &of_names) :
 
45
  AddSchemaNames(SchemaIdentifiers &of_names) :
45
46
    schemas(of_names)
46
47
  {
47
48
  }
52
53
  }
53
54
};
54
55
 
55
 
void StorageEngine::getIdentifiers(Session &session, identifier::Schema::vector &schemas)
 
56
void StorageEngine::getIdentifiers(Session &session, SchemaIdentifiers &schemas)
56
57
{
57
58
  // Add hook here for engines to register schema.
58
 
  std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
 
59
  for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
59
60
           AddSchemaNames(schemas));
60
61
 
61
 
  plugin::Authorization::pruneSchemaNames(session.user(), schemas);
 
62
  plugin::Authorization::pruneSchemaNames(session.getSecurityContext(), schemas);
62
63
}
63
64
 
64
 
class StorageEngineGetSchemaDefinition: public std::unary_function<StorageEngine *, bool>
 
65
class StorageEngineGetSchemaDefinition: public unary_function<StorageEngine *, bool>
65
66
{
66
 
  const identifier::Schema &identifier;
67
 
  message::schema::shared_ptr &schema_proto;
 
67
  const SchemaIdentifier &identifier;
 
68
  message::Schema &schema_proto;
68
69
 
69
70
public:
70
 
  StorageEngineGetSchemaDefinition(const identifier::Schema &identifier_arg,
71
 
                                   message::schema::shared_ptr &schema_proto_arg) :
 
71
  StorageEngineGetSchemaDefinition(const SchemaIdentifier &identifier_arg,
 
72
                                   message::Schema &schema_proto_arg) :
72
73
    identifier(identifier_arg),
73
74
    schema_proto(schema_proto_arg) 
74
75
  {
83
84
/*
84
85
  Return value is "if parsed"
85
86
*/
86
 
bool StorageEngine::getSchemaDefinition(const drizzled::identifier::Table &identifier, message::schema::shared_ptr &proto)
 
87
bool StorageEngine::getSchemaDefinition(const drizzled::TableIdentifier &identifier, message::Schema &proto)
87
88
{
88
89
  return StorageEngine::getSchemaDefinition(identifier, proto);
89
90
}
90
91
 
91
 
bool StorageEngine::getSchemaDefinition(const identifier::Schema &identifier, message::schema::shared_ptr &proto)
 
92
bool StorageEngine::getSchemaDefinition(const SchemaIdentifier &identifier, message::Schema &proto)
92
93
{
 
94
  proto.Clear();
 
95
 
93
96
  EngineVector::iterator iter=
94
 
    std::find_if(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
95
 
                 StorageEngineGetSchemaDefinition(identifier, proto));
 
97
    find_if(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
 
98
            StorageEngineGetSchemaDefinition(identifier, proto));
96
99
 
97
100
  if (iter != StorageEngine::getSchemaEngines().end())
98
101
  {
102
105
  return false;
103
106
}
104
107
 
105
 
bool StorageEngine::doesSchemaExist(const identifier::Schema &identifier)
 
108
bool StorageEngine::doesSchemaExist(const SchemaIdentifier &identifier)
106
109
{
107
 
  message::schema::shared_ptr proto;
 
110
  message::Schema proto;
108
111
 
109
112
  return StorageEngine::getSchemaDefinition(identifier, proto);
110
113
}
111
114
 
112
115
 
113
 
const CHARSET_INFO *StorageEngine::getSchemaCollation(const identifier::Schema &identifier)
 
116
const CHARSET_INFO *StorageEngine::getSchemaCollation(const SchemaIdentifier &identifier)
114
117
{
115
 
  message::schema::shared_ptr schmema_proto;
 
118
  message::Schema schmema_proto;
116
119
  bool found;
117
120
 
118
121
  found= StorageEngine::getSchemaDefinition(identifier, schmema_proto);
119
122
 
120
 
  if (found && schmema_proto->has_collation())
 
123
  if (found && schmema_proto.has_collation())
121
124
  {
122
 
    const std::string buffer= schmema_proto->collation();
 
125
    const string buffer= schmema_proto.collation();
123
126
    const CHARSET_INFO* cs= get_charset_by_name(buffer.c_str());
124
127
 
125
128
    if (not cs)
126
129
    {
127
 
      std::string path;
128
 
      identifier.getSQLPath(path);
129
 
 
130
 
      errmsg_printf(error::ERROR,
131
 
                    _("Error while loading database options: '%s':"), path.c_str());
132
 
      errmsg_printf(error::ERROR, ER(ER_UNKNOWN_COLLATION), buffer.c_str());
 
130
      errmsg_printf(ERRMSG_LVL_ERROR,
 
131
                    _("Error while loading database options: '%s':"), const_cast<SchemaIdentifier &>(identifier).getSQLPath().c_str());
 
132
      errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_UNKNOWN_COLLATION), buffer.c_str());
133
133
 
134
134
      return default_charset_info;
135
135
    }
141
141
}
142
142
 
143
143
class CreateSchema : 
144
 
  public std::unary_function<StorageEngine *, void>
 
144
  public unary_function<StorageEngine *, void>
145
145
{
146
146
  const drizzled::message::Schema &schema_message;
147
 
  uint64_t &success_count;
148
147
 
149
148
public:
150
149
 
151
 
  CreateSchema(const drizzled::message::Schema &arg, uint64_t &success_count_arg) :
152
 
    schema_message(arg),
153
 
    success_count(success_count_arg)
 
150
  CreateSchema(const drizzled::message::Schema &arg) :
 
151
    schema_message(arg)
154
152
  {
155
153
  }
156
154
 
157
155
  result_type operator() (argument_type engine)
158
156
  {
159
157
    // @todo eomeday check that at least one engine said "true"
160
 
    bool success= engine->doCreateSchema(schema_message);
161
 
 
162
 
    if (success) 
163
 
    {
164
 
      success_count++;
165
 
      TransactionServices &transaction_services= TransactionServices::singleton();
166
 
      transaction_services.allocateNewTransactionId();
167
 
    }
 
158
    (void)engine->doCreateSchema(schema_message);
168
159
  }
169
160
};
170
161
 
171
162
bool StorageEngine::createSchema(const drizzled::message::Schema &schema_message)
172
163
{
173
164
  // Add hook here for engines to register schema.
174
 
  uint64_t success_count= 0;
175
 
  std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
176
 
                CreateSchema(schema_message, success_count));
177
 
 
178
 
  if (success_count) 
179
 
  {
180
 
    TransactionServices &transaction_services= TransactionServices::singleton();
181
 
    transaction_services.allocateNewTransactionId();
182
 
  }
183
 
 
184
 
  return (bool)success_count;
 
165
  for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
 
166
           CreateSchema(schema_message));
 
167
 
 
168
  return true;
185
169
}
186
170
 
187
171
class DropSchema : 
188
 
  public std::unary_function<StorageEngine *, void>
 
172
  public unary_function<StorageEngine *, void>
189
173
{
190
174
  uint64_t &success_count;
191
 
  const identifier::Schema &identifier;
 
175
  const SchemaIdentifier &identifier;
192
176
 
193
177
public:
194
178
 
195
 
  DropSchema(const identifier::Schema &arg, uint64_t &count_arg) :
 
179
  DropSchema(const SchemaIdentifier &arg, uint64_t &count_arg) :
196
180
    success_count(count_arg),
197
181
    identifier(arg)
198
182
  {
204
188
    bool success= engine->doDropSchema(identifier);
205
189
 
206
190
    if (success)
207
 
    {
208
191
      success_count++;
209
 
      TransactionServices &transaction_services= TransactionServices::singleton();
210
 
      transaction_services.allocateNewTransactionId();
211
 
    }
212
192
  }
213
193
};
214
194
 
215
 
static bool drop_all_tables_in_schema(Session& session,
216
 
                                      identifier::Schema::const_reference identifier,
217
 
                                      identifier::Table::vector &dropped_tables,
218
 
                                      uint64_t &deleted)
219
 
{
220
 
  TransactionServices &transaction_services= TransactionServices::singleton();
221
 
 
222
 
  plugin::StorageEngine::getIdentifiers(session, identifier, dropped_tables);
223
 
 
224
 
  for (identifier::Table::vector::iterator it= dropped_tables.begin();
225
 
       it != dropped_tables.end();
226
 
       it++)
227
 
  {
228
 
    boost::mutex::scoped_lock scopedLock(table::Cache::singleton().mutex());
229
 
    table::Cache::singleton().removeTable(&session, *it,
230
 
                                          RTFC_WAIT_OTHER_THREAD_FLAG |
231
 
                                          RTFC_CHECK_KILLED_FLAG);
232
 
    if (not plugin::StorageEngine::dropTable(session, *it))
233
 
    {
234
 
      my_error(ER_TABLE_DROP, *it);
235
 
      return false;
236
 
    }
237
 
    transaction_services.dropTable(session, *it, true);
238
 
    deleted++;
239
 
  }
240
 
 
241
 
  return true;
242
 
}
243
 
 
244
 
bool StorageEngine::dropSchema(Session::reference session, identifier::Schema::const_reference identifier)
245
 
{
246
 
  uint64_t deleted= 0;
247
 
  bool error= false;
248
 
  identifier::Table::vector dropped_tables;
249
 
  message::Schema schema_proto;
250
 
 
251
 
  do
252
 
  {
253
 
    // Remove all temp tables first, this prevents loss of table from
254
 
    // shadowing (ie temp over standard table)
255
 
    {
256
 
      // Lets delete the temporary tables first outside of locks.  
257
 
      identifier::Table::vector set_of_identifiers;
258
 
      session.doGetTableIdentifiers(identifier, set_of_identifiers);
259
 
 
260
 
      for (identifier::Table::vector::iterator iter= set_of_identifiers.begin(); iter != set_of_identifiers.end(); iter++)
261
 
      {
262
 
        if (session.drop_temporary_table(*iter))
263
 
        {
264
 
          my_error(ER_TABLE_DROP, *iter);
265
 
          error= true;
266
 
          break;
267
 
        }
268
 
      }
269
 
    }
270
 
 
271
 
    /* After deleting database, remove all cache entries related to schema */
272
 
    table::Cache::singleton().removeSchema(identifier);
273
 
 
274
 
    if (not drop_all_tables_in_schema(session, identifier, dropped_tables, deleted))
275
 
    {
276
 
      error= true;
277
 
      my_error(ER_DROP_SCHEMA, identifier);
278
 
      break;
279
 
    }
280
 
 
281
 
    uint64_t counter= 0;
282
 
    // Add hook here for engines to register schema.
283
 
    std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
284
 
                  DropSchema(identifier, counter));
285
 
 
286
 
    if (not counter)
287
 
    {
288
 
      my_error(ER_DROP_SCHEMA, identifier);
289
 
      error= true;
290
 
 
291
 
      break;
292
 
    }
293
 
    else
294
 
    {
295
 
      /* We've already verified that the schema does exist, so safe to log it */
296
 
      TransactionServices &transaction_services= TransactionServices::singleton();
297
 
      transaction_services.dropSchema(session, identifier);
298
 
    }
299
 
  } while (0);
300
 
 
301
 
  if (deleted > 0)
302
 
  {
303
 
    session.clear_error();
304
 
    session.server_status|= SERVER_STATUS_DB_DROPPED;
305
 
    session.my_ok((uint32_t) deleted);
306
 
    session.server_status&= ~SERVER_STATUS_DB_DROPPED;
307
 
  }
308
 
 
309
 
 
310
 
  return error;
 
195
bool StorageEngine::dropSchema(const SchemaIdentifier &identifier)
 
196
{
 
197
  uint64_t counter= 0;
 
198
  // Add hook here for engines to register schema.
 
199
  for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
 
200
           DropSchema(identifier, counter));
 
201
 
 
202
  return counter ? true : false;
311
203
}
312
204
 
313
205
class AlterSchema : 
314
 
  public std::unary_function<StorageEngine *, void>
 
206
  public unary_function<StorageEngine *, void>
315
207
{
316
208
  uint64_t &success_count;
317
209
  const drizzled::message::Schema &schema_message;
331
223
 
332
224
 
333
225
    if (success)
334
 
    {
335
226
      success_count++;
336
 
    }
337
227
  }
338
228
};
339
229
 
341
231
{
342
232
  uint64_t success_count= 0;
343
233
 
344
 
  std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
345
 
                AlterSchema(schema_message, success_count));
346
 
 
347
 
  if (success_count)
348
 
  {
349
 
    TransactionServices &transaction_services= TransactionServices::singleton();
350
 
    transaction_services.allocateNewTransactionId();
351
 
  }
 
234
  for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
 
235
           AlterSchema(schema_message, success_count));
352
236
 
353
237
  return success_count ? true : false;
354
238
}