~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2003 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
1802.10.2 by Monty Taylor
Update all of the copyright headers to include the correct address.
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
1 by brian
clean slate
15
16
17
/* create and drop of databases */
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
18
#include <config.h>
1259.3.7 by Monty Taylor
Fixed OSX build error.
19
20
#include <fcntl.h>
21
#include <sys/stat.h>
22
#include <sys/types.h>
23
24
#include <set>
318 by Brian Aker
Modified sql_db to now use Google Proto buffers instead of MySQL type.
25
#include <string>
26
#include <fstream>
1259.3.7 by Monty Taylor
Fixed OSX build error.
27
2159.2.5 by Brian Aker
Merge in move of schema.
28
#include <drizzled/error.h>
538 by Monty Taylor
Moved gettext.h into drizzled in anticipation of the new client lib.
29
#include <drizzled/gettext.h>
1241.9.57 by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined.
30
#include <drizzled/my_hash.h>
2159.2.5 by Brian Aker
Merge in move of schema.
31
#include <drizzled/internal/m_string.h>
584.1.15 by Monty Taylor
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes.
32
#include <drizzled/session.h>
2159.2.5 by Brian Aker
Merge in move of schema.
33
#include <drizzled/schema.h>
584.1.15 by Monty Taylor
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes.
34
#include <drizzled/sql_base.h>
670.2.4 by Monty Taylor
Removed more stuff from the headers.
35
#include <drizzled/lock.h>
722.4.1 by Mark Atwood
integrate errmsg plugin into sql_print_* functions
36
#include <drizzled/errmsg_print.h>
1336.2.2 by Jay Pipes
NO CODE CHANGES - Simply moves pieces of ReplicationServices to TransactionServices. Preparation for making the ReplicationServices component only responsible for communication between replicators, appliers, publishers, and subscribers.
37
#include <drizzled/transaction_services.h>
1089.10.1 by Stewart Smith
fix SHOW CREATE DATABASE for default collation. Move database metadata reading code around to be a bit more sane.
38
#include <drizzled/message/schema.pb.h>
2159.2.5 by Brian Aker
Merge in move of schema.
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>
1241.9.28 by Monty Taylor
Removed global_charset_info.h from server_includes.h
46
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
47
#include <boost/thread/mutex.hpp>
48
1 by brian
clean slate
49
#define MAX_DROP_TABLE_Q_LEN      1024
50
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
51
using namespace std;
52
53
namespace drizzled
54
{
55
2159.2.5 by Brian Aker
Merge in move of schema.
56
namespace schema
57
{
58
2159.2.6 by Brian Aker
Finalize interface for schema.
59
static void change_db_impl(Session &session);
60
static void change_db_impl(Session &session, identifier::Schema &schema_identifier);
820.1.11 by Stewart Smith
re-introduce db.opt, but with parsing it from disk instead of in process cache with mutex.
61
1 by brian
clean slate
62
/*
63
  Create a database
64
65
  SYNOPSIS
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
66
  create_db()
520.1.22 by Brian Aker
Second pass of thd cleanup
67
  session		Thread handler
1 by brian
clean slate
68
  db		Name of database to create
69
		Function assumes that this is already validated.
70
  create_info	Database create options (like character set)
71
72
  SIDE-EFFECTS
73
   1. Report back to client that command succeeded (my_ok)
74
   2. Report errors to client
75
   3. Log event to binary log
76
77
  RETURN VALUES
51.1.51 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
78
  false ok
79
  true  Error
1 by brian
clean slate
80
81
*/
82
2159.2.6 by Brian Aker
Finalize interface for schema.
83
bool create(Session &session, const message::Schema &schema_message, const bool is_if_not_exists)
1 by brian
clean slate
84
{
1336.2.2 by Jay Pipes
NO CODE CHANGES - Simply moves pieces of ReplicationServices to TransactionServices. Preparation for making the ReplicationServices component only responsible for communication between replicators, appliers, publishers, and subscribers.
85
  TransactionServices &transaction_services= TransactionServices::singleton();
1039.1.3 by Brian Aker
Remove dead bits from db create/rm
86
  bool error= false;
1235.4.14 by Stewart Smith
use message::Schema in mysql_create_db instead of HA_CREATE_INFO
87
1 by brian
clean slate
88
  /*
89
    Do not create database if another thread is holding read lock.
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
90
    Wait for global read lock before acquiring session->catalog()->schemaLock().
1 by brian
clean slate
91
    After wait_if_global_read_lock() we have protection against another
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
92
    global read lock. If we would acquire session->catalog()->schemaLock() first,
1 by brian
clean slate
93
    another thread could step in and get the global read lock before we
94
    reach wait_if_global_read_lock(). If this thread tries the same as we
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
95
    (admin a db), it would then go and wait on session->catalog()->schemaLock()...
1 by brian
clean slate
96
    Furthermore wait_if_global_read_lock() checks if the current thread
97
    has the global read lock and refuses the operation with
98
    ER_CANT_UPDATE_WITH_READLOCK if applicable.
99
  */
2159.2.6 by Brian Aker
Finalize interface for schema.
100
  if (session.wait_if_global_read_lock(false, true))
1 by brian
clean slate
101
  {
1273.19.25 by Brian Aker
createSchema() now works via SE interface.
102
    return false;
1 by brian
clean slate
103
  }
104
1273.19.28 by Brian Aker
More cleanup on ALTER SCHEMA. Hey! MySQL never had errors on half of it...
105
  assert(schema_message.has_name());
106
  assert(schema_message.has_collation());
107
1273.19.25 by Brian Aker
createSchema() now works via SE interface.
108
  // @todo push this lock down into the engine
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
109
  {
2159.2.6 by Brian Aker
Finalize interface for schema.
110
    boost::mutex::scoped_lock scopedLock(session.catalog().schemaLock());
1 by brian
clean slate
111
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
112
    // Check to see if it exists already.  
2087.4.1 by Brian Aker
Merge in schema identifier.
113
    identifier::Schema schema_identifier(schema_message.name());
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
114
    if (plugin::StorageEngine::doesSchemaExist(schema_identifier))
115
    {
116
      if (not is_if_not_exists)
117
      {
2041.3.15 by Brian Aker
Cleanup error usage around identifier usage.
118
        my_error(ER_DB_CREATE_EXISTS, schema_identifier);
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
119
        error= true;
120
      }
121
      else
122
      {
2159.2.6 by Brian Aker
Finalize interface for schema.
123
        push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
124
                            ER_DB_CREATE_EXISTS, ER(ER_DB_CREATE_EXISTS),
125
                            schema_message.name().c_str());
2159.2.6 by Brian Aker
Finalize interface for schema.
126
        session.my_ok();
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
127
      }
128
    }
1856.2.8 by Joseph Daly
working alter, drop, create schema
129
    else if (not plugin::StorageEngine::createSchema(schema_message)) // Try to create it 
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
130
    {
131
      my_error(ER_CANT_CREATE_DB, MYF(0), schema_message.name().c_str(), errno);
1273.19.25 by Brian Aker
createSchema() now works via SE interface.
132
      error= true;
133
    }
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
134
    else // Created !
1273.19.25 by Brian Aker
createSchema() now works via SE interface.
135
    {
2159.2.6 by Brian Aker
Finalize interface for schema.
136
      transaction_services.createSchema(session, schema_message);
137
      session.my_ok(1);
1273.19.25 by Brian Aker
createSchema() now works via SE interface.
138
    }
139
  }
2159.2.6 by Brian Aker
Finalize interface for schema.
140
  session.startWaitingGlobalReadLock();
1273.19.25 by Brian Aker
createSchema() now works via SE interface.
141
1039.1.3 by Brian Aker
Remove dead bits from db create/rm
142
  return error;
1 by brian
clean slate
143
}
144
145
146
/* db-name is already validated when we come here */
147
2159.2.6 by Brian Aker
Finalize interface for schema.
148
bool alter(Session &session,
2159.2.5 by Brian Aker
Merge in move of schema.
149
           const message::Schema &schema_message,
2159.2.6 by Brian Aker
Finalize interface for schema.
150
           const message::Schema &original_schema)
1 by brian
clean slate
151
{
1336.2.2 by Jay Pipes
NO CODE CHANGES - Simply moves pieces of ReplicationServices to TransactionServices. Preparation for making the ReplicationServices component only responsible for communication between replicators, appliers, publishers, and subscribers.
152
  TransactionServices &transaction_services= TransactionServices::singleton();
1 by brian
clean slate
153
154
  /*
155
    Do not alter database if another thread is holding read lock.
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
156
    Wait for global read lock before acquiring session->catalog()->schemaLock().
1 by brian
clean slate
157
    After wait_if_global_read_lock() we have protection against another
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
158
    global read lock. If we would acquire session->catalog()->schemaLock() first,
1 by brian
clean slate
159
    another thread could step in and get the global read lock before we
160
    reach wait_if_global_read_lock(). If this thread tries the same as we
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
161
    (admin a db), it would then go and wait on session->catalog()->schemaLock()...
1 by brian
clean slate
162
    Furthermore wait_if_global_read_lock() checks if the current thread
163
    has the global read lock and refuses the operation with
164
    ER_CANT_UPDATE_WITH_READLOCK if applicable.
165
  */
2159.2.6 by Brian Aker
Finalize interface for schema.
166
  if ((session.wait_if_global_read_lock(false, true)))
1273.19.26 by Brian Aker
Move Alter schema to SE interface.
167
    return false;
1235.4.16 by Stewart Smith
use Schema proto for ALTER DATABASE/SCHEMA as well. Fix 'ALTER DATABASE COLLATE = foo'. Remove now obsolete fill_schema_message. HA_CREATE_INFO is no longer used in CREATE or ALTER SCHEMA.
168
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
169
  bool success;
170
  {
2159.2.6 by Brian Aker
Finalize interface for schema.
171
    boost::mutex::scoped_lock scopedLock(session.catalog().schemaLock());
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
172
2087.4.1 by Brian Aker
Merge in schema identifier.
173
    identifier::Schema schema_idenifier(schema_message.name());
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
174
    if (not plugin::StorageEngine::doesSchemaExist(schema_idenifier))
175
    {
2041.3.15 by Brian Aker
Cleanup error usage around identifier usage.
176
      my_error(ER_SCHEMA_DOES_NOT_EXIST, schema_idenifier);
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
177
      return false;
178
    }
179
180
    /* Change options if current database is being altered. */
181
    success= plugin::StorageEngine::alterSchema(schema_message);
182
183
    if (success)
184
    {
2159.2.6 by Brian Aker
Finalize interface for schema.
185
      transaction_services.alterSchema(session, original_schema, schema_message);
186
      session.my_ok(1);
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
187
    }
188
    else
189
    {
2041.3.15 by Brian Aker
Cleanup error usage around identifier usage.
190
      my_error(ER_ALTER_SCHEMA, schema_idenifier);
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
191
    }
192
  }
2159.2.6 by Brian Aker
Finalize interface for schema.
193
  session.startWaitingGlobalReadLock();
1273.19.26 by Brian Aker
Move Alter schema to SE interface.
194
195
  return success;
1 by brian
clean slate
196
}
197
198
199
/*
200
  Drop all tables in a database and the database itself
201
202
  SYNOPSIS
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
203
    rm_db()
520.1.22 by Brian Aker
Second pass of thd cleanup
204
    session			Thread handle
1 by brian
clean slate
205
    db			Database name in the case given by user
206
		        It's already validated and set to lower case
207
                        (if needed) when we come here
208
    if_exists		Don't give error if database doesn't exists
209
    silent		Don't generate errors
210
211
  RETURN
51.1.51 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
212
    false ok (Database dropped)
1 by brian
clean slate
213
    ERROR Error
214
*/
215
2159.2.6 by Brian Aker
Finalize interface for schema.
216
bool drop(Session &session, identifier::Schema &schema_identifier, const bool if_exists)
1 by brian
clean slate
217
{
2041.3.6 by Brian Aker
Cleanup of drop table.
218
  bool error= false;
1 by brian
clean slate
219
220
  /*
221
    Do not drop database if another thread is holding read lock.
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
222
    Wait for global read lock before acquiring session->catalog()->schemaLock().
1 by brian
clean slate
223
    After wait_if_global_read_lock() we have protection against another
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
224
    global read lock. If we would acquire session->catalog()->schemaLock() first,
1 by brian
clean slate
225
    another thread could step in and get the global read lock before we
226
    reach wait_if_global_read_lock(). If this thread tries the same as we
2060.4.2 by Brian Aker
A few small fixes, plus move the schema lock to the actual catalog.
227
    (admin a db), it would then go and wait on session->catalog()->schemaLock()...
1 by brian
clean slate
228
    Furthermore wait_if_global_read_lock() checks if the current thread
229
    has the global read lock and refuses the operation with
230
    ER_CANT_UPDATE_WITH_READLOCK if applicable.
231
  */
2159.2.6 by Brian Aker
Finalize interface for schema.
232
  if (session.wait_if_global_read_lock(false, true))
1 by brian
clean slate
233
  {
2041.3.4 by Brian Aker
remove goto
234
    return true;
1 by brian
clean slate
235
  }
236
2041.3.4 by Brian Aker
remove goto
237
  do
1 by brian
clean slate
238
  {
2159.2.6 by Brian Aker
Finalize interface for schema.
239
    boost::mutex::scoped_lock scopedLock(session.catalog().schemaLock());
2172.3.1 by Brian Aker
Merge in my patch for having some schema/table not replicated.
240
    message::schema::shared_ptr message= plugin::StorageEngine::getSchemaDefinition(schema_identifier);
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
241
242
    /* See if the schema exists */
2172.3.1 by Brian Aker
Merge in my patch for having some schema/table not replicated.
243
    if (not message)
1309.1.8 by Brian Aker
Modest update to drop schema.
244
    {
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
245
      if (if_exists)
246
      {
2096.1.6 by Brian Aker
Merge in fixes for error messages.
247
        std::string path;
248
        schema_identifier.getSQLPath(path);
249
2159.2.6 by Brian Aker
Finalize interface for schema.
250
        push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
251
                            ER_DB_DROP_EXISTS, ER(ER_DB_DROP_EXISTS),
1954.2.1 by Brian Aker
getSQLPath() modified to take a string so that we can const the table
252
                            path.c_str());
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
253
      }
254
      else
255
      {
2041.3.6 by Brian Aker
Cleanup of drop table.
256
        error= true;
2041.3.15 by Brian Aker
Cleanup error usage around identifier usage.
257
        my_error(ER_DB_DROP_EXISTS, schema_identifier);
2041.3.4 by Brian Aker
remove goto
258
        break;
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
259
      }
1309.1.8 by Brian Aker
Modest update to drop schema.
260
    }
261
    else
1 by brian
clean slate
262
    {
2172.3.1 by Brian Aker
Merge in my patch for having some schema/table not replicated.
263
      error= plugin::StorageEngine::dropSchema(session, schema_identifier, *message);
1 by brian
clean slate
264
    }
265
2041.3.4 by Brian Aker
remove goto
266
  } while (0);
1685.2.14 by Brian Aker
Use boost for the main lock we use in schema creation/alteration.
267
2041.3.11 by Brian Aker
Only change schemas if we DROP the schema.
268
  /*
269
    If this database was the client's selected database, we silently
270
    change the client's selected database to nothing (to have an empty
271
    SELECT DATABASE() in the future). For this we free() session->db and set
272
    it to 0.
273
  */
2159.2.6 by Brian Aker
Finalize interface for schema.
274
  if (not error and schema_identifier.compare(*session.schema()))
2041.3.11 by Brian Aker
Only change schemas if we DROP the schema.
275
    change_db_impl(session);
276
2159.2.6 by Brian Aker
Finalize interface for schema.
277
  session.startWaitingGlobalReadLock();
1309.1.8 by Brian Aker
Modest update to drop schema.
278
1259.3.3 by Monty Taylor
Removed last use of my_dir.
279
  return error;
1 by brian
clean slate
280
}
281
282
/**
283
  @brief Change the current database and its attributes unconditionally.
284
520.1.22 by Brian Aker
Second pass of thd cleanup
285
  @param session          thread handle
1 by brian
clean slate
286
  @param new_db_name  database name
51.1.51 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
287
  @param force_switch if force_switch is false, then the operation will fail if
1 by brian
clean slate
288
289
                        - new_db_name is NULL or empty;
290
291
                        - OR new database name is invalid
292
                          (check_db_name() failed);
293
294
                        - OR user has no privilege on the new database;
295
296
                        - OR new database does not exist;
297
51.1.51 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
298
                      if force_switch is true, then
1 by brian
clean slate
299
300
                        - if new_db_name is NULL or empty, the current
301
                          database will be NULL, @@collation_database will
302
                          be set to @@collation_server, the operation will
303
                          succeed.
304
305
                        - if new database name is invalid
306
                          (check_db_name() failed), the current database
307
                          will be NULL, @@collation_database will be set to
308
                          @@collation_server, but the operation will fail;
309
310
                        - user privileges will not be checked
520.1.21 by Brian Aker
THD -> Session rename
311
                          (Session::db_access however is updated);
1 by brian
clean slate
312
313
                          TODO: is this really the intention?
314
                                (see sp-security.test).
315
316
                        - if new database does not exist,the current database
317
                          will be NULL, @@collation_database will be set to
318
                          @@collation_server, a warning will be thrown, the
319
                          operation will succeed.
320
321
  @details The function checks that the database name corresponds to a
322
  valid and existent database, checks access rights and changes the current
323
  database with database attributes (@@collation_database session variable,
520.1.21 by Brian Aker
THD -> Session rename
324
  Session::db_access).
1 by brian
clean slate
325
326
  This function is not the only way to switch the database that is
327
  currently employed. When the replication slave thread switches the
520.1.22 by Brian Aker
Second pass of thd cleanup
328
  database before executing a query, it calls session->set_db directly.
1 by brian
clean slate
329
  However, if the query, in turn, uses a stored routine, the stored routine
330
  will use this function, even if it's run on the slave.
331
332
  This function allocates the name of the database on the system heap: this
333
  is necessary to be able to uniformly change the database from any module
334
  of the server. Up to 5.0 different modules were using different memory to
335
  store the name of the database, and this led to memory corruption:
336
  a stack pointer set by Stored Procedures was used by replication after
337
  the stack address was long gone.
338
339
  @return Operation status
51.1.51 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
340
    @retval false Success
341
    @retval true  Error
1 by brian
clean slate
342
*/
343
2159.2.6 by Brian Aker
Finalize interface for schema.
344
bool change(Session &session, identifier::Schema &schema_identifier)
1 by brian
clean slate
345
{
346
2159.2.7 by Brian Aker
Merge in shared ptr modification for auth (namely we don't take the hit for
347
  if (not plugin::Authorization::isAuthorized(*session.user(), schema_identifier))
1317.2.2 by Monty Taylor
Prevent unauthorized users from changing schema.
348
  {
349
    /* Error message is set in isAuthorized */
350
    return true;
351
  }
352
2159.2.6 by Brian Aker
Finalize interface for schema.
353
  if (not check(session, schema_identifier))
1 by brian
clean slate
354
  {
2041.3.15 by Brian Aker
Cleanup error usage around identifier usage.
355
    my_error(ER_WRONG_DB_NAME, schema_identifier);
1 by brian
clean slate
356
1014.3.3 by Brian Aker
Formating fix.
357
    return true;
1 by brian
clean slate
358
  }
359
1415 by Brian Aker
Mass overhaul to use schema_identifier.
360
  if (not plugin::StorageEngine::doesSchemaExist(schema_identifier))
1 by brian
clean slate
361
  {
2041.3.15 by Brian Aker
Cleanup error usage around identifier usage.
362
    my_error(ER_BAD_DB_ERROR, schema_identifier);
1309.1.9 by Brian Aker
Baby steps.
363
364
    /* The operation failed. */
365
366
    return true;
1 by brian
clean slate
367
  }
368
2026.2.1 by Monty Taylor
Renamed things prefixed mysql_ or mysqld_
369
  change_db_impl(session, schema_identifier);
1 by brian
clean slate
370
1014.3.3 by Brian Aker
Formating fix.
371
  return false;
1 by brian
clean slate
372
}
373
1273 by Brian Aker
Revert db patch.
374
/**
375
  @brief Internal implementation: switch current database to a valid one.
376
377
  @param session            Thread context.
378
  @param new_db_name    Name of the database to switch to. The function will
379
                        take ownership of the name (the caller must not free
380
                        the allocated memory). If the name is NULL, we're
381
                        going to switch to NULL db.
382
  @param new_db_charset Character set of the new database.
383
*/
384
2159.2.6 by Brian Aker
Finalize interface for schema.
385
static void change_db_impl(Session &session, identifier::Schema &schema_identifier)
1235.4.18 by Stewart Smith
replace check_db_dir_existence() with class DatabasePathName and a ::exists() method.
386
{
1273 by Brian Aker
Revert db patch.
387
  /* 1. Change current database in Session. */
388
1415 by Brian Aker
Mass overhaul to use schema_identifier.
389
#if 0
1273 by Brian Aker
Revert db patch.
390
  if (new_db_name == NULL)
391
  {
392
    /*
393
      Session::set_db() does all the job -- it frees previous database name and
394
      sets the new one.
395
    */
396
397
    session->set_db(NULL, 0);
398
  }
399
  else
1415 by Brian Aker
Mass overhaul to use schema_identifier.
400
#endif
1273 by Brian Aker
Revert db patch.
401
  {
402
    /*
403
      Here we already have a copy of database name to be used in Session. So,
404
      we just call Session::reset_db(). Since Session::reset_db() does not releases
405
      the previous database name, we should do it explicitly.
406
    */
407
2159.2.6 by Brian Aker
Finalize interface for schema.
408
    session.set_db(schema_identifier.getSchemaName());
409
  }
410
}
411
412
static void change_db_impl(Session &session)
413
{
414
  session.set_db(string());
415
}
416
417
/*
418
  Check if database name is valid
419
420
  SYNPOSIS
421
    check()
422
    org_name		Name of database and length
423
424
  RETURN
425
    false error
426
    true ok
427
*/
428
429
bool check(Session &session, identifier::Schema &schema_identifier)
430
{
2159.2.7 by Brian Aker
Merge in shared ptr modification for auth (namely we don't take the hit for
431
  if (not plugin::Authorization::isAuthorized(*session.user(), schema_identifier))
2159.2.6 by Brian Aker
Finalize interface for schema.
432
  {
433
    return false;
434
  }
435
436
  return schema_identifier.isValid();
1415 by Brian Aker
Mass overhaul to use schema_identifier.
437
}
438
2159.2.5 by Brian Aker
Merge in move of schema.
439
} /* namespace schema */
440
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
441
} /* namespace drizzled */