~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/schema_engine.cc

fixed build warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
  std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
59
59
           AddSchemaNames(schemas));
60
60
 
61
 
  plugin::Authorization::pruneSchemaNames(session.getSecurityContext(), schemas);
 
61
  plugin::Authorization::pruneSchemaNames(session.user(), schemas);
62
62
}
63
63
 
64
64
class StorageEngineGetSchemaDefinition: public std::unary_function<StorageEngine *, bool>
202
202
  }
203
203
};
204
204
 
205
 
bool StorageEngine::dropSchema(const SchemaIdentifier &identifier)
206
 
{
207
 
  uint64_t counter= 0;
208
 
  // Add hook here for engines to register schema.
209
 
  std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
210
 
                DropSchema(identifier, counter));
211
 
 
212
 
  return counter ? true : false;
 
205
static bool drop_all_tables_in_schema(Session& session,
 
206
                                      SchemaIdentifier::const_reference identifier,
 
207
                                      TableIdentifier::vector &dropped_tables,
 
208
                                      uint64_t &deleted)
 
209
{
 
210
  TransactionServices &transaction_services= TransactionServices::singleton();
 
211
 
 
212
  plugin::StorageEngine::getIdentifiers(session, identifier, dropped_tables);
 
213
 
 
214
  for (TableIdentifier::vector::iterator it= dropped_tables.begin();
 
215
       it != dropped_tables.end();
 
216
       it++)
 
217
  {
 
218
    boost::mutex::scoped_lock scopedLock(table::Cache::singleton().mutex());
 
219
    table::Cache::singleton().removeTable(&session, *it,
 
220
                                          RTFC_WAIT_OTHER_THREAD_FLAG |
 
221
                                          RTFC_CHECK_KILLED_FLAG);
 
222
    if (plugin::StorageEngine::dropTable(session, *it))
 
223
    {
 
224
      my_error(ER_TABLE_DROP, *it);
 
225
      return false;
 
226
    }
 
227
    transaction_services.dropTable(&session, *it, true);
 
228
    deleted++;
 
229
  }
 
230
 
 
231
  return true;
 
232
}
 
233
 
 
234
bool StorageEngine::dropSchema(Session::reference session, SchemaIdentifier::const_reference identifier)
 
235
{
 
236
  uint64_t deleted= 0;
 
237
  bool error= false;
 
238
  TableIdentifier::vector dropped_tables;
 
239
  message::Schema schema_proto;
 
240
 
 
241
  do
 
242
  {
 
243
    // Remove all temp tables first, this prevents loss of table from
 
244
    // shadowing (ie temp over standard table)
 
245
    {
 
246
      // Lets delete the temporary tables first outside of locks.  
 
247
      TableIdentifier::vector set_of_identifiers;
 
248
      session.doGetTableIdentifiers(identifier, set_of_identifiers);
 
249
 
 
250
      for (TableIdentifier::vector::iterator iter= set_of_identifiers.begin(); iter != set_of_identifiers.end(); iter++)
 
251
      {
 
252
        if (session.drop_temporary_table(*iter))
 
253
        {
 
254
          my_error(ER_TABLE_DROP, *iter);
 
255
          error= true;
 
256
          break;
 
257
        }
 
258
      }
 
259
    }
 
260
 
 
261
    /* After deleting database, remove all cache entries related to schema */
 
262
    table::Cache::singleton().removeSchema(identifier);
 
263
 
 
264
    if (not drop_all_tables_in_schema(session, identifier, dropped_tables, deleted))
 
265
    {
 
266
      error= true;
 
267
      my_error(ER_DROP_SCHEMA, identifier);
 
268
      break;
 
269
    }
 
270
 
 
271
    uint64_t counter= 0;
 
272
    // Add hook here for engines to register schema.
 
273
    std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
 
274
                  DropSchema(identifier, counter));
 
275
 
 
276
    if (not counter)
 
277
    {
 
278
      my_error(ER_DROP_SCHEMA, identifier);
 
279
      error= true;
 
280
 
 
281
      break;
 
282
    }
 
283
    else
 
284
    {
 
285
      /* We've already verified that the schema does exist, so safe to log it */
 
286
      TransactionServices &transaction_services= TransactionServices::singleton();
 
287
      transaction_services.dropSchema(&session, identifier);
 
288
    }
 
289
  } while (0);
 
290
 
 
291
  if (deleted > 0)
 
292
  {
 
293
    session.clear_error();
 
294
    session.server_status|= SERVER_STATUS_DB_DROPPED;
 
295
    session.my_ok((uint32_t) deleted);
 
296
    session.server_status&= ~SERVER_STATUS_DB_DROPPED;
 
297
  }
 
298
 
 
299
 
 
300
  return error;
213
301
}
214
302
 
215
303
class AlterSchema :