17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include <drizzled/session.h>
24
#include <drizzled/global_charset_info.h>
25
#include <drizzled/charset.h>
26
#include <drizzled/transaction_services.h>
28
#include <drizzled/plugin/storage_engine.h>
29
#include <drizzled/plugin/authorization.h>
22
#include "drizzled/session.h"
24
#include "drizzled/global_charset_info.h"
25
#include "drizzled/charset.h"
26
#include "drizzled/transaction_services.h"
28
#include "drizzled/plugin/storage_engine.h"
29
#include "drizzled/plugin/authorization.h"
58
58
std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
59
59
AddSchemaNames(schemas));
61
plugin::Authorization::pruneSchemaNames(*session.user(), schemas);
61
plugin::Authorization::pruneSchemaNames(session.user(), schemas);
64
64
class StorageEngineGetSchemaDefinition: public std::unary_function<StorageEngine *, bool>
77
77
result_type operator() (argument_type engine)
79
schema_proto= engine->doGetSchemaDefinition(identifier);
79
return engine->doGetSchemaDefinition(identifier, schema_proto);
85
84
Return value is "if parsed"
87
message::schema::shared_ptr StorageEngine::getSchemaDefinition(const drizzled::identifier::Table &identifier)
86
bool StorageEngine::getSchemaDefinition(const drizzled::identifier::Table &identifier, message::schema::shared_ptr &proto)
89
return StorageEngine::getSchemaDefinition(identifier);
88
return StorageEngine::getSchemaDefinition(identifier, proto);
92
message::schema::shared_ptr StorageEngine::getSchemaDefinition(const identifier::Schema &identifier)
91
bool StorageEngine::getSchemaDefinition(const identifier::Schema &identifier, message::schema::shared_ptr &proto)
94
message::schema::shared_ptr proto;
96
93
EngineVector::iterator iter=
97
94
std::find_if(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
98
95
StorageEngineGetSchemaDefinition(identifier, proto));
100
97
if (iter != StorageEngine::getSchemaEngines().end())
105
return message::schema::shared_ptr();
108
105
bool StorageEngine::doesSchemaExist(const identifier::Schema &identifier)
110
107
message::schema::shared_ptr proto;
112
return StorageEngine::getSchemaDefinition(identifier);
109
return StorageEngine::getSchemaDefinition(identifier, proto);
116
113
const CHARSET_INFO *StorageEngine::getSchemaCollation(const identifier::Schema &identifier)
118
115
message::schema::shared_ptr schmema_proto;
120
schmema_proto= StorageEngine::getSchemaDefinition(identifier);
122
if (schmema_proto && schmema_proto->has_collation())
118
found= StorageEngine::getSchemaDefinition(identifier, schmema_proto);
120
if (found && schmema_proto->has_collation())
124
122
const std::string buffer= schmema_proto->collation();
125
123
const CHARSET_INFO* cs= get_charset_by_name(buffer.c_str());
129
127
std::string path;
130
128
identifier.getSQLPath(path);
132
errmsg_printf(error::ERROR,
130
errmsg_printf(ERRMSG_LVL_ERROR,
133
131
_("Error while loading database options: '%s':"), path.c_str());
134
errmsg_printf(error::ERROR, ER(ER_UNKNOWN_COLLATION), buffer.c_str());
132
errmsg_printf(ERRMSG_LVL_ERROR, ER(ER_UNKNOWN_COLLATION), buffer.c_str());
136
134
return default_charset_info;
230
228
boost::mutex::scoped_lock scopedLock(table::Cache::singleton().mutex());
232
message::table::shared_ptr message= StorageEngine::getTableMessage(session, *it, false);
235
my_error(ER_TABLE_DROP, *it);
239
229
table::Cache::singleton().removeTable(&session, *it,
240
230
RTFC_WAIT_OTHER_THREAD_FLAG |
241
231
RTFC_CHECK_KILLED_FLAG);
244
234
my_error(ER_TABLE_DROP, *it);
247
transaction_services.dropTable(session, *it, *message, true);
237
transaction_services.dropTable(session, *it, true);
254
bool StorageEngine::dropSchema(Session::reference session,
255
identifier::Schema::const_reference identifier,
256
message::schema::const_reference schema_message)
244
bool StorageEngine::dropSchema(Session::reference session, identifier::Schema::const_reference identifier)
258
246
uint64_t deleted= 0;
259
247
bool error= false;
260
248
identifier::Table::vector dropped_tables;
249
message::Schema schema_proto;
306
295
/* We've already verified that the schema does exist, so safe to log it */
307
296
TransactionServices &transaction_services= TransactionServices::singleton();
308
transaction_services.dropSchema(session, identifier, schema_message);
297
transaction_services.dropSchema(session, identifier);