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"
55
void StorageEngine::getIdentifiers(Session &session, identifier::Schema::vector &schemas)
55
void StorageEngine::getIdentifiers(Session &session, SchemaIdentifier::vector &schemas)
57
57
// Add hook here for engines to register schema.
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>
66
const identifier::Schema &identifier;
66
const SchemaIdentifier &identifier;
67
67
message::schema::shared_ptr &schema_proto;
70
StorageEngineGetSchemaDefinition(const identifier::Schema &identifier_arg,
70
StorageEngineGetSchemaDefinition(const SchemaIdentifier &identifier_arg,
71
71
message::schema::shared_ptr &schema_proto_arg) :
72
72
identifier(identifier_arg),
73
73
schema_proto(schema_proto_arg)
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::TableIdentifier &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 SchemaIdentifier &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
bool StorageEngine::doesSchemaExist(const identifier::Schema &identifier)
105
bool StorageEngine::doesSchemaExist(const SchemaIdentifier &identifier)
110
107
message::schema::shared_ptr proto;
112
return StorageEngine::getSchemaDefinition(identifier);
109
return StorageEngine::getSchemaDefinition(identifier, proto);
116
const CHARSET_INFO *StorageEngine::getSchemaCollation(const identifier::Schema &identifier)
113
const CHARSET_INFO *StorageEngine::getSchemaCollation(const SchemaIdentifier &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;
173
168
bool StorageEngine::createSchema(const drizzled::message::Schema &schema_message)
175
170
// Add hook here for engines to register schema.
176
uint64_t success_count= 0;
177
171
std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
178
CreateSchema(schema_message, success_count));
182
TransactionServices &transaction_services= TransactionServices::singleton();
183
transaction_services.allocateNewTransactionId();
186
return (bool)success_count;
172
CreateSchema(schema_message));
189
177
class DropSchema :
190
178
public std::unary_function<StorageEngine *, void>
192
180
uint64_t &success_count;
193
const identifier::Schema &identifier;
181
const SchemaIdentifier &identifier;
197
DropSchema(const identifier::Schema &arg, uint64_t &count_arg) :
185
DropSchema(const SchemaIdentifier &arg, uint64_t &count_arg) :
198
186
success_count(count_arg),
217
static bool drop_all_tables_in_schema(Session& session,
218
identifier::Schema::const_reference identifier,
219
identifier::Table::vector &dropped_tables,
222
TransactionServices &transaction_services= TransactionServices::singleton();
224
plugin::StorageEngine::getIdentifiers(session, identifier, dropped_tables);
226
for (identifier::Table::vector::iterator it= dropped_tables.begin();
227
it != dropped_tables.end();
230
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
table::Cache::singleton().removeTable(&session, *it,
240
RTFC_WAIT_OTHER_THREAD_FLAG |
241
RTFC_CHECK_KILLED_FLAG);
242
if (not plugin::StorageEngine::dropTable(session, *it))
244
my_error(ER_TABLE_DROP, *it);
247
transaction_services.dropTable(session, *it, *message, true);
254
bool StorageEngine::dropSchema(Session::reference session,
255
identifier::Schema::const_reference identifier,
256
message::schema::const_reference schema_message)
260
identifier::Table::vector dropped_tables;
264
// Remove all temp tables first, this prevents loss of table from
265
// shadowing (ie temp over standard table)
267
// Lets delete the temporary tables first outside of locks.
268
identifier::Table::vector set_of_identifiers;
269
session.doGetTableIdentifiers(identifier, set_of_identifiers);
271
for (identifier::Table::vector::iterator iter= set_of_identifiers.begin(); iter != set_of_identifiers.end(); iter++)
273
if (session.drop_temporary_table(*iter))
275
my_error(ER_TABLE_DROP, *iter);
282
/* After deleting database, remove all cache entries related to schema */
283
table::Cache::singleton().removeSchema(identifier);
285
if (not drop_all_tables_in_schema(session, identifier, dropped_tables, deleted))
288
my_error(ER_DROP_SCHEMA, identifier);
293
// Add hook here for engines to register schema.
294
std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
295
DropSchema(identifier, counter));
299
my_error(ER_DROP_SCHEMA, identifier);
306
/* We've already verified that the schema does exist, so safe to log it */
307
TransactionServices &transaction_services= TransactionServices::singleton();
308
transaction_services.dropSchema(session, identifier, schema_message);
314
session.clear_error();
315
session.server_status|= SERVER_STATUS_DB_DROPPED;
316
session.my_ok((uint32_t) deleted);
317
session.server_status&= ~SERVER_STATUS_DB_DROPPED;
205
bool StorageEngine::dropSchema(const SchemaIdentifier &identifier)
208
// Add hook here for engines to register schema.
209
std::for_each(StorageEngine::getSchemaEngines().begin(), StorageEngine::getSchemaEngines().end(),
210
DropSchema(identifier, counter));
212
return counter ? true : false;
324
215
class AlterSchema :