28
#include <drizzled/error.h>
28
#include <drizzled/message/schema.pb.h>
29
#include "drizzled/error.h"
29
30
#include <drizzled/gettext.h>
30
31
#include <drizzled/my_hash.h>
31
#include <drizzled/internal/m_string.h>
32
#include "drizzled/internal/m_string.h"
32
33
#include <drizzled/session.h>
33
#include <drizzled/schema.h>
34
#include <drizzled/db.h>
34
35
#include <drizzled/sql_base.h>
35
36
#include <drizzled/lock.h>
36
37
#include <drizzled/errmsg_print.h>
37
38
#include <drizzled/transaction_services.h>
38
39
#include <drizzled/message/schema.pb.h>
39
#include <drizzled/sql_table.h>
40
#include <drizzled/plugin/storage_engine.h>
41
#include <drizzled/plugin/authorization.h>
42
#include <drizzled/global_charset_info.h>
43
#include <drizzled/pthread_globals.h>
44
#include <drizzled/charset.h>
45
#include <drizzled/internal/my_sys.h>
40
#include "drizzled/sql_table.h"
41
#include "drizzled/plugin/storage_engine.h"
42
#include "drizzled/plugin/authorization.h"
43
#include "drizzled/global_charset_info.h"
44
#include "drizzled/pthread_globals.h"
45
#include "drizzled/charset.h"
47
47
#include <boost/thread/mutex.hpp>
49
#include "drizzled/internal/my_sys.h"
49
51
#define MAX_DROP_TABLE_Q_LEN 1024
51
53
using namespace std;
59
static void change_db_impl(Session &session);
60
static void change_db_impl(Session &session, identifier::Schema &schema_identifier);
58
static void change_db_impl(Session *session);
59
static void change_db_impl(Session *session, SchemaIdentifier &schema_identifier);
83
bool create(Session &session, const message::Schema &schema_message, const bool is_if_not_exists)
82
bool create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists)
85
84
TransactionServices &transaction_services= TransactionServices::singleton();
97
96
has the global read lock and refuses the operation with
98
97
ER_CANT_UPDATE_WITH_READLOCK if applicable.
100
if (session.wait_if_global_read_lock(false, true))
99
if (session->wait_if_global_read_lock(false, true))
108
107
// @todo push this lock down into the engine
110
boost::mutex::scoped_lock scopedLock(session.catalog().schemaLock());
109
boost::mutex::scoped_lock scopedLock(session->catalog().schemaLock());
112
111
// Check to see if it exists already.
113
identifier::Schema schema_identifier(schema_message.name());
112
SchemaIdentifier schema_identifier(schema_message.name());
114
113
if (plugin::StorageEngine::doesSchemaExist(schema_identifier))
116
115
if (not is_if_not_exists)
123
push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
122
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
124
123
ER_DB_CREATE_EXISTS, ER(ER_DB_CREATE_EXISTS),
125
124
schema_message.name().c_str());
129
128
else if (not plugin::StorageEngine::createSchema(schema_message)) // Try to create it
146
145
/* db-name is already validated when we come here */
148
bool alter(Session &session,
149
const message::Schema &schema_message,
150
const message::Schema &original_schema)
147
bool alter_db(Session *session, const message::Schema &schema_message)
152
149
TransactionServices &transaction_services= TransactionServices::singleton();
163
160
has the global read lock and refuses the operation with
164
161
ER_CANT_UPDATE_WITH_READLOCK if applicable.
166
if ((session.wait_if_global_read_lock(false, true)))
163
if ((session->wait_if_global_read_lock(false, true)))
171
boost::mutex::scoped_lock scopedLock(session.catalog().schemaLock());
168
boost::mutex::scoped_lock scopedLock(session->catalog().schemaLock());
173
identifier::Schema schema_idenifier(schema_message.name());
170
SchemaIdentifier schema_idenifier(schema_message.name());
174
171
if (not plugin::StorageEngine::doesSchemaExist(schema_idenifier))
176
173
my_error(ER_SCHEMA_DOES_NOT_EXIST, schema_idenifier);
185
transaction_services.alterSchema(session, original_schema, schema_message);
182
transaction_services.rawStatement(session, *session->getQueryString());
190
187
my_error(ER_ALTER_SCHEMA, schema_idenifier);
193
session.startWaitingGlobalReadLock();
190
session->startWaitingGlobalReadLock();
229
226
has the global read lock and refuses the operation with
230
227
ER_CANT_UPDATE_WITH_READLOCK if applicable.
232
if (session.wait_if_global_read_lock(false, true))
229
if (session->wait_if_global_read_lock(false, true))
239
boost::mutex::scoped_lock scopedLock(session.catalog().schemaLock());
240
message::schema::shared_ptr message= plugin::StorageEngine::getSchemaDefinition(schema_identifier);
236
boost::mutex::scoped_lock scopedLock(session->catalog().schemaLock());
242
238
/* See if the schema exists */
239
if (not plugin::StorageEngine::doesSchemaExist(schema_identifier))
242
schema_identifier.getSQLPath(path);
248
schema_identifier.getSQLPath(path);
250
push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
246
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
251
247
ER_DB_DROP_EXISTS, ER(ER_DB_DROP_EXISTS),
271
267
SELECT DATABASE() in the future). For this we free() session->db and set
274
if (not error and schema_identifier.compare(*session.schema()))
270
if (not error and schema_identifier.compare(*session->schema()))
275
271
change_db_impl(session);
277
session.startWaitingGlobalReadLock();
273
session->startWaitingGlobalReadLock();
341
337
@retval true Error
344
bool change(Session &session, identifier::Schema &schema_identifier)
340
bool change_db(Session *session, SchemaIdentifier &schema_identifier)
347
if (not plugin::Authorization::isAuthorized(*session.user(), schema_identifier))
343
if (not plugin::Authorization::isAuthorized(session->user(), schema_identifier))
349
345
/* Error message is set in isAuthorized */
353
if (not check(session, schema_identifier))
349
if (not check_db_name(session, schema_identifier))
352
schema_identifier.getSQLPath(path);
355
353
my_error(ER_WRONG_DB_NAME, schema_identifier);
382
380
@param new_db_charset Character set of the new database.
385
static void change_db_impl(Session &session, identifier::Schema &schema_identifier)
383
static void change_db_impl(Session *session, SchemaIdentifier &schema_identifier)
387
385
/* 1. Change current database in Session. */
405
403
the previous database name, we should do it explicitly.
408
session.set_db(schema_identifier.getSchemaName());
412
static void change_db_impl(Session &session)
414
session.set_db(string());
418
Check if database name is valid
422
org_name Name of database and length
429
bool check(Session &session, identifier::Schema &schema_identifier)
431
if (not plugin::Authorization::isAuthorized(*session.user(), schema_identifier))
436
return schema_identifier.isValid();
439
} /* namespace schema */
406
session->set_db(schema_identifier.getSchemaName());
410
static void change_db_impl(Session *session)
412
session->set_db(string());
441
415
} /* namespace drizzled */