~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: lbieber
  • Date: 2010-10-01 12:16:18 UTC
  • mfrom: (1802.1.1 fix-bug-651256)
  • Revision ID: lbieber@orisndriz08-20101001121618-uqcboygpjwbiglem
Merge Vijay - fix bug 651256 - Remove --help-extended

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
 
20
 
20
21
#ifndef DRIZZLED_SESSION_H
21
22
#define DRIZZLED_SESSION_H
22
23
 
23
 
#include "drizzled/cursor.h"
24
 
#include "drizzled/diagnostics_area.h"
25
 
#include "drizzled/file_exchange.h"
26
 
#include "drizzled/identifier.h"
27
 
#include "drizzled/internal_error_handler.h"
28
 
#include "drizzled/my_hash.h"
29
 
#include "drizzled/named_savepoint.h"
30
 
#include "drizzled/open_tables_state.h"
 
24
/* Classes in mysql */
 
25
 
31
26
#include "drizzled/plugin.h"
32
 
#include "drizzled/plugin/authorization.h"
33
 
#include "drizzled/pthread_globals.h"
 
27
#include <drizzled/sql_locale.h>
 
28
#include "drizzled/resource_context.h"
 
29
#include <drizzled/cursor.h>
 
30
#include <drizzled/current_session.h>
 
31
#include <drizzled/sql_error.h>
 
32
#include <drizzled/file_exchange.h>
 
33
#include <drizzled/select_result_interceptor.h>
 
34
#include <drizzled/statistics_variables.h>
 
35
#include <drizzled/xid.h>
34
36
#include "drizzled/query_id.h"
35
 
#include "drizzled/resource_context.h"
36
 
#include "drizzled/select_result_interceptor.h"
37
 
#include "drizzled/sql_error.h"
38
 
#include "drizzled/sql_locale.h"
39
 
#include "drizzled/statistics_variables.h"
 
37
#include "drizzled/named_savepoint.h"
40
38
#include "drizzled/transaction_context.h"
41
39
#include "drizzled/util/storable.h"
42
 
#include "drizzled/xid.h"
43
40
 
 
41
#include "drizzled/my_hash.h"
44
42
 
45
43
#include <netdb.h>
46
 
#include <sys/time.h>
47
 
#include <sys/resource.h>
48
 
 
49
 
#include <algorithm>
50
 
#include <bitset>
51
44
#include <map>
52
45
#include <string>
53
 
 
54
 
#include "drizzled/catalog/instance.h"
55
 
#include "drizzled/catalog/local.h"
56
 
 
57
 
#include <drizzled/session/property_map.h>
58
 
#include <drizzled/session/state.h>
59
 
#include <drizzled/session/table_messages.h>
60
 
#include <drizzled/session/transactions.h>
61
 
#include <drizzled/system_variables.h>
62
 
#include <drizzled/copy_info.h>
63
 
#include <drizzled/system_variables.h>
64
 
#include <drizzled/ha_data.h>
65
 
 
66
 
#include <boost/thread/thread.hpp>
 
46
#include <bitset>
 
47
#include <deque>
 
48
 
 
49
#include "drizzled/internal/getrusage.h"
 
50
 
 
51
#include <drizzled/security_context.h>
 
52
#include <drizzled/open_tables_state.h>
 
53
 
 
54
#include <drizzled/internal_error_handler.h>
 
55
#include <drizzled/diagnostics_area.h>
 
56
 
 
57
#include <drizzled/plugin/authorization.h>
 
58
 
 
59
#include <boost/unordered_map.hpp>
67
60
#include <boost/thread/mutex.hpp>
68
 
#include <boost/thread/shared_mutex.hpp>
69
61
#include <boost/thread/condition_variable.hpp>
70
 
#include <boost/make_shared.hpp>
71
 
 
72
 
#include <drizzled/lex_column.h>
73
 
#include "drizzled/sql_lex.h"
74
 
 
75
 
#include "drizzled/visibility.h"
76
62
 
77
63
#define MIN_HANDSHAKE_SIZE      6
78
64
 
92
78
class Statement;
93
79
class Resultset;
94
80
}
95
 
 
96
 
namespace internal { struct st_my_thread_var; }
97
 
 
98
 
namespace table { class Placeholder; }
 
81
namespace internal
 
82
{
 
83
struct st_my_thread_var;
 
84
}
99
85
 
100
86
class Lex_input_stream;
101
87
class user_var_entry;
112
98
#define TC_HEURISTIC_RECOVER_ROLLBACK 2
113
99
extern uint32_t tc_heuristic_recover;
114
100
 
 
101
/**
 
102
  @brief
 
103
  Local storage for proto that are tmp table. This should be enlarged
 
104
  to hande the entire table-share for a local table. Once Hash is done,
 
105
  we should consider exchanging the map for it.
 
106
*/
 
107
typedef std::map <std::string, message::Table> ProtoCache;
 
108
 
 
109
/**
 
110
  The COPY_INFO structure is used by INSERT/REPLACE code.
 
111
  The schema of the row counting by the INSERT/INSERT ... ON DUPLICATE KEY
 
112
  UPDATE code:
 
113
    If a row is inserted then the copied variable is incremented.
 
114
    If a row is updated by the INSERT ... ON DUPLICATE KEY UPDATE and the
 
115
      new data differs from the old one then the copied and the updated
 
116
      variables are incremented.
 
117
    The touched variable is incremented if a row was touched by the update part
 
118
      of the INSERT ... ON DUPLICATE KEY UPDATE no matter whether the row
 
119
      was actually changed or not.
 
120
*/
 
121
struct CopyInfo 
 
122
{
 
123
  ha_rows records; /**< Number of processed records */
 
124
  ha_rows deleted; /**< Number of deleted records */
 
125
  ha_rows updated; /**< Number of updated records */
 
126
  ha_rows copied;  /**< Number of copied records */
 
127
  ha_rows error_count;
 
128
  ha_rows touched; /* Number of touched records */
 
129
  enum enum_duplicates handle_duplicates;
 
130
  int escape_char, last_errno;
 
131
  bool ignore;
 
132
  /* for INSERT ... UPDATE */
 
133
  List<Item> *update_fields;
 
134
  List<Item> *update_values;
 
135
  /* for VIEW ... WITH CHECK OPTION */
 
136
 
 
137
  CopyInfo() :
 
138
    records(0),
 
139
    deleted(0),
 
140
    updated(0),
 
141
    copied(0),
 
142
    error_count(0),
 
143
    touched(0),
 
144
    escape_char(0),
 
145
    last_errno(0),
 
146
    ignore(0),
 
147
    update_fields(0),
 
148
    update_values(0)
 
149
  { }
 
150
 
 
151
};
 
152
 
 
153
struct DrizzleLock
 
154
{
 
155
  Table **table;
 
156
  uint32_t table_count;
 
157
  uint32_t lock_count;
 
158
  THR_LOCK_DATA **locks;
 
159
 
 
160
  DrizzleLock() :
 
161
    table(0),
 
162
    table_count(0),
 
163
    lock_count(0),
 
164
    locks(0)
 
165
  { }
 
166
 
 
167
};
 
168
 
 
169
} /* namespace drizzled */
 
170
 
 
171
/** @TODO why is this in the middle of the file */
 
172
#include <drizzled/lex_column.h>
 
173
 
 
174
namespace drizzled
 
175
{
 
176
 
115
177
class select_result;
116
178
class Time_zone;
117
179
 
118
180
#define Session_SENTRY_MAGIC 0xfeedd1ff
119
181
#define Session_SENTRY_GONE  0xdeadbeef
120
182
 
121
 
extern DRIZZLED_API struct drizzle_system_variables global_system_variables;
 
183
struct system_variables
 
184
{
 
185
  system_variables() {};
 
186
  /*
 
187
    How dynamically allocated system variables are handled:
 
188
 
 
189
    The global_system_variables and max_system_variables are "authoritative"
 
190
    They both should have the same 'version' and 'size'.
 
191
    When attempting to access a dynamic variable, if the session version
 
192
    is out of date, then the session version is updated and realloced if
 
193
    neccessary and bytes copied from global to make up for missing data.
 
194
  */
 
195
  ulong dynamic_variables_version;
 
196
  char * dynamic_variables_ptr;
 
197
  uint32_t dynamic_variables_head;  /* largest valid variable offset */
 
198
  uint32_t dynamic_variables_size;  /* how many bytes are in use */
 
199
 
 
200
  uint64_t myisam_max_extra_sort_file_size;
 
201
  uint64_t max_heap_table_size;
 
202
  uint64_t tmp_table_size;
 
203
  ha_rows select_limit;
 
204
  ha_rows max_join_size;
 
205
  uint64_t auto_increment_increment;
 
206
  uint64_t auto_increment_offset;
 
207
  uint64_t bulk_insert_buff_size;
 
208
  uint64_t join_buff_size;
 
209
  uint32_t max_allowed_packet;
 
210
  uint64_t max_error_count;
 
211
  uint64_t max_length_for_sort_data;
 
212
  size_t max_sort_length;
 
213
  uint64_t min_examined_row_limit;
 
214
  bool optimizer_prune_level;
 
215
  bool log_warnings;
 
216
 
 
217
  uint32_t optimizer_search_depth;
 
218
  uint32_t div_precincrement;
 
219
  uint64_t preload_buff_size;
 
220
  uint32_t read_buff_size;
 
221
  uint32_t read_rnd_buff_size;
 
222
  size_t sortbuff_size;
 
223
  uint32_t thread_handling;
 
224
  uint32_t tx_isolation;
 
225
  uint32_t completion_type;
 
226
  /* Determines which non-standard SQL behaviour should be enabled */
 
227
  uint32_t sql_mode;
 
228
  uint64_t max_seeks_for_key;
 
229
  size_t range_alloc_block_size;
 
230
  uint32_t query_alloc_block_size;
 
231
  uint32_t query_prealloc_size;
 
232
  uint64_t group_concat_max_len;
 
233
  uint64_t pseudo_thread_id;
 
234
 
 
235
  plugin::StorageEngine *storage_engine;
 
236
 
 
237
  /* Only charset part of these variables is sensible */
 
238
  const CHARSET_INFO  *character_set_filesystem;
 
239
 
 
240
  /* Both charset and collation parts of these variables are important */
 
241
  const CHARSET_INFO    *collation_server;
 
242
 
 
243
  inline const CHARSET_INFO  *getCollation(void) 
 
244
  {
 
245
    return collation_server;
 
246
  }
 
247
 
 
248
  /* Locale Support */
 
249
  MY_LOCALE *lc_time_names;
 
250
 
 
251
  Time_zone *time_zone;
 
252
};
 
253
 
 
254
extern struct system_variables global_system_variables;
 
255
 
 
256
} /* namespace drizzled */
 
257
 
 
258
#include "drizzled/sql_lex.h"
 
259
 
 
260
namespace drizzled
 
261
{
 
262
 
 
263
void mark_transaction_to_rollback(Session *session, bool all);
 
264
 
 
265
/**
 
266
  Storage engine specific thread local data.
 
267
*/
 
268
struct Ha_data
 
269
{
 
270
  /**
 
271
    Storage engine specific thread local data.
 
272
    Lifetime: one user connection.
 
273
  */
 
274
  void *ha_ptr;
 
275
  /**
 
276
   * Resource contexts for both the "statement" and "normal"
 
277
   * transactions.
 
278
   *
 
279
   * Resource context at index 0:
 
280
   *
 
281
   * Life time: one statement within a transaction. If @@autocommit is
 
282
   * on, also represents the entire transaction.
 
283
   *
 
284
   * Resource context at index 1:
 
285
   *
 
286
   * Life time: one transaction within a connection. 
 
287
   *
 
288
   * @note
 
289
   *
 
290
   * If the storage engine does not participate in a transaction, 
 
291
   * there will not be a resource context.
 
292
   */
 
293
  drizzled::ResourceContext resource_context[2];
 
294
 
 
295
  Ha_data() :ha_ptr(NULL) {}
 
296
};
122
297
 
123
298
/**
124
299
 * Represents a client connection to the database server.
139
314
 * all member variables that are not critical to non-internal operations of the
140
315
 * session object.
141
316
 */
142
 
 
143
 
class DRIZZLED_API Session : public Open_tables_state
 
317
class Session : public Open_tables_state
144
318
{
145
319
public:
146
320
  // Plugin storage in Session.
147
 
  typedef boost::shared_ptr<Session> shared_ptr;
148
 
  typedef Session& reference;
149
 
  typedef const Session& const_reference;
150
 
  typedef const Session* const_pointer;
151
 
  typedef Session* pointer;
152
 
 
153
 
  static shared_ptr make_shared(plugin::Client *client, catalog::Instance::shared_ptr instance_arg)
154
 
  {
155
 
    assert(instance_arg);
156
 
    return boost::make_shared<Session>(client, instance_arg);
157
 
  }
 
321
  typedef boost::unordered_map<std::string, util::Storable *, util::insensitive_hash, util::insensitive_equal_to> PropertyMap;
158
322
 
159
323
  /*
160
324
    MARK_COLUMNS_NONE:  Means mark_used_colums is not set and no indicator to
168
332
                        and update_row.
169
333
  */
170
334
  enum enum_mark_columns mark_used_columns;
 
335
  inline void* alloc(size_t size)
 
336
  {
 
337
    return mem_root->alloc_root(size);
 
338
  }
171
339
  inline void* calloc(size_t size)
172
340
  {
173
341
    void *ptr;
175
343
      memset(ptr, 0, size);
176
344
    return ptr;
177
345
  }
 
346
  inline char *strdup(const char *str)
 
347
  {
 
348
    return mem_root->strdup_root(str);
 
349
  }
178
350
  inline char *strmake(const char *str, size_t size)
179
351
  {
180
352
    return mem_root->strmake_root(str,size);
181
353
  }
182
 
 
 
354
  inline void *memdup(const void *str, size_t size)
 
355
  {
 
356
    return mem_root->memdup_root(str, size);
 
357
  }
183
358
  inline void *memdup_w_gap(const void *str, size_t size, uint32_t gap)
184
359
  {
185
360
    void *ptr;
189
364
  }
190
365
  /** Frees all items attached to this Statement */
191
366
  void free_items();
192
 
 
193
367
  /**
194
368
   * List of items created in the parser for this query. Every item puts
195
369
   * itself to the list on creation (see Item::Item() for details))
202
376
  {
203
377
    return mem_root;
204
378
  }
205
 
 
206
 
  uint64_t xa_id;
207
 
 
208
 
  uint64_t getXaId()
209
 
  {
210
 
    return xa_id;
211
 
  }
212
 
 
213
 
  void setXaId(uint64_t in_xa_id)
214
 
  {
215
 
    xa_id= in_xa_id; 
216
 
  }
217
 
 
218
379
  /**
219
380
   * Uniquely identifies each statement object in thread scope; change during
220
381
   * statement lifetime.
228
389
  {
229
390
    return lex;
230
391
  }
231
 
 
232
 
  enum_sql_command getSqlCommand() const
233
 
  {
234
 
    return lex->sql_command;
235
 
  }
236
 
 
237
392
  /** query associated with this statement */
238
 
  typedef boost::shared_ptr<const std::string> QueryString;
239
 
 
240
 
private:
241
 
  boost::shared_ptr<std::string> query;
242
 
 
243
 
  // Never allow for a modification of this outside of the class. c_str()
244
 
  // requires under some setup non const, you must copy the QueryString in
245
 
  // order to use it.
246
 
public:
247
 
  QueryString getQueryString() const
248
 
  {
249
 
    return query;
250
 
  }
251
 
 
252
 
  void resetQueryString()
253
 
  {
254
 
    query.reset();
255
 
    _state.reset();
256
 
  }
257
 
 
258
 
  /*
259
 
    We need to copy the lock on the string in order to make sure we have a stable string.
260
 
    Once this is done we can use it to build a const char* which can be handed off for
261
 
    a method to use (Innodb is currently the only engine using this).
262
 
  */
263
 
  const char *getQueryStringCopy(size_t &length)
264
 
  {
265
 
    QueryString tmp_string(getQueryString());
266
 
 
267
 
    if (not tmp_string)
268
 
    {
269
 
      length= 0;
270
 
      return NULL;
271
 
    }
272
 
 
273
 
    length= tmp_string->length();
274
 
    char *to_return= strmake(tmp_string->c_str(), tmp_string->length());
275
 
    return to_return;
276
 
  }
277
 
 
278
 
private:
279
 
  session::State::shared_ptr  _state; 
280
 
 
281
 
public:
282
 
 
283
 
  session::State::const_shared_ptr state()
284
 
  {
285
 
    return _state;
286
 
  }
 
393
  std::string query;
287
394
 
288
395
  /**
289
396
    Name of the current (default) database.
297
404
    the Session of that thread); that thread is (and must remain, for now) the
298
405
    only responsible for freeing this member.
299
406
  */
300
 
private:
301
 
  util::string::shared_ptr _schema;
302
 
 
303
 
public:
304
 
 
305
 
  util::string::const_shared_ptr schema() const
306
 
  {
307
 
    if (_schema)
308
 
      return _schema;
309
 
 
310
 
    return util::string::const_shared_ptr(new std::string(""));
311
 
  }
312
 
 
 
407
  std::string db;
313
408
  /* current cache key */
314
409
  std::string query_cache_key;
315
410
  /**
321
416
  static const char * const DEFAULT_WHERE;
322
417
 
323
418
  memory::Root warn_root; /**< Allocation area for warnings and errors */
324
 
private:
325
419
  plugin::Client *client; /**< Pointer to client object */
326
 
 
327
 
public:
328
 
 
329
 
  void setClient(plugin::Client *client_arg);
330
 
 
331
 
  plugin::Client *getClient()
332
 
  {
333
 
    return client;
334
 
  }
335
 
 
336
 
  plugin::Client *getClient() const
337
 
  {
338
 
    return client;
339
 
  }
340
 
 
341
420
  plugin::Scheduler *scheduler; /**< Pointer to scheduler object */
342
421
  void *scheduler_arg; /**< Pointer to the optional scheduler argument */
343
 
 
 
422
private:
344
423
  typedef boost::unordered_map< std::string, user_var_entry *, util::insensitive_hash, util::insensitive_equal_to> UserVars;
345
 
 
346
 
private:
347
424
  typedef std::pair< UserVars::iterator, UserVars::iterator > UserVarsRange;
348
425
  UserVars user_vars; /**< Hash of user variables defined during the session's lifetime */
349
426
 
350
427
public:
351
 
  const UserVars &getUserVariables() const
352
 
  {
353
 
    return user_vars;
354
 
  }
355
 
 
356
 
  drizzle_system_variables variables; /**< Mutable local variables local to the session */
357
 
 
358
 
  enum_tx_isolation getTxIsolation()
359
 
  {
360
 
    return (enum_tx_isolation)variables.tx_isolation;
361
 
  }
362
 
 
 
428
  struct system_variables variables; /**< Mutable local variables local to the session */
363
429
  struct system_status_var status_var; /**< Session-local status counters */
364
430
  THR_LOCK_INFO lock_info; /**< Locking information for this session */
365
431
  THR_LOCK_OWNER main_lock_id; /**< To use for conventional queries */
366
432
  THR_LOCK_OWNER *lock_id; /**< If not main_lock_id, points to the lock_id of a cursor. */
 
433
private:
 
434
  boost::mutex LOCK_delete; /**< Locked before session is deleted */
 
435
public:
 
436
 
 
437
  void lockForDelete()
 
438
  {
 
439
    LOCK_delete.lock();
 
440
  }
 
441
 
 
442
  void unlockForDelete()
 
443
  {
 
444
    LOCK_delete.unlock();
 
445
  }
 
446
 
 
447
  /**
 
448
   * A peek into the query string for the session. This is a best effort
 
449
   * delivery, there is no guarantee whether the content is meaningful.
 
450
   */
 
451
  char process_list_info[PROCESS_LIST_WIDTH+1];
367
452
 
368
453
  /**
369
454
   * A pointer to the stack frame of the scheduler thread
372
457
  char *thread_stack;
373
458
 
374
459
private:
375
 
  identifier::User::shared_ptr security_ctx;
 
460
  SecurityContext security_ctx;
376
461
 
377
462
  int32_t scoreboard_index;
378
463
 
380
465
  {
381
466
    assert(this->dbug_sentry == Session_SENTRY_MAGIC);
382
467
  }
383
 
 
384
468
public:
385
 
  identifier::User::const_shared_ptr user() const
 
469
  const SecurityContext& getSecurityContext() const
386
470
  {
387
 
    if (security_ctx)
388
 
      return security_ctx;
389
 
 
390
 
    return identifier::User::const_shared_ptr();
 
471
    return security_ctx;
391
472
  }
392
473
 
393
 
  void setUser(identifier::User::shared_ptr arg)
 
474
  SecurityContext& getSecurityContext()
394
475
  {
395
 
    security_ctx= arg;
 
476
    return security_ctx;
396
477
  }
397
478
 
398
479
  int32_t getScoreboardIndex()
408
489
  /**
409
490
   * Is this session viewable by the current user?
410
491
   */
411
 
  bool isViewable(identifier::User::const_reference) const;
 
492
  bool isViewable() const
 
493
  {
 
494
    return plugin::Authorization::isAuthorized(current_session->getSecurityContext(),
 
495
                                               this,
 
496
                                               false);
 
497
  }
412
498
 
413
 
private:
414
499
  /**
415
500
    Used in error messages to tell user in what part of MySQL we found an
416
501
    error. E. g. when where= "having clause", if fix_fields() fails, user
417
502
    will know that the error was in having clause.
418
503
  */
419
 
  const char *_where;
420
 
 
421
 
public:
422
 
  const char *where()
423
 
  {
424
 
    return _where;
425
 
  }
426
 
 
427
 
  void setWhere(const char *arg)
428
 
  {
429
 
    _where= arg;
430
 
  }
 
504
  const char *where;
431
505
 
432
506
  /*
433
507
    One thread can hold up to one named user-level lock. This variable
435
509
    chapter 'Miscellaneous functions', for functions GET_LOCK, RELEASE_LOCK.
436
510
  */
437
511
  uint32_t dbug_sentry; /**< watch for memory corruption */
438
 
 
439
512
private:
440
 
  boost::thread::id boost_thread_id;
441
 
  boost_thread_shared_ptr _thread;
442
 
  boost::this_thread::disable_interruption *interrupt;
443
 
 
444
513
  internal::st_my_thread_var *mysys_var;
445
 
 
446
514
public:
447
 
  boost_thread_shared_ptr &getThread()
448
 
  {
449
 
    return _thread;
450
 
  }
451
 
 
452
 
  void pushInterrupt(boost::this_thread::disable_interruption *interrupt_arg)
453
 
  {
454
 
    interrupt= interrupt_arg;
455
 
  }
456
 
 
457
 
  boost::this_thread::disable_interruption &getThreadInterupt()
458
 
  {
459
 
    assert(interrupt);
460
 
    return *interrupt;
461
 
  }
462
515
 
463
516
  internal::st_my_thread_var *getThreadVar()
464
517
  {
465
518
    return mysys_var;
466
519
  }
467
520
 
 
521
  void resetThreadVar()
 
522
  {
 
523
    mysys_var= NULL;
 
524
  }
468
525
  /**
469
526
   * Type of current query: COM_STMT_PREPARE, COM_QUERY, etc. Set from
470
527
   * first byte of the packet in executeStatement()
473
530
  uint32_t file_id;     /**< File ID for LOAD DATA INFILE */
474
531
  /* @note the following three members should likely move to Client */
475
532
  uint32_t max_client_packet_length; /**< Maximum number of bytes a client can send in a single packet */
476
 
 
477
 
private:
478
 
  boost::posix_time::ptime _epoch;
479
 
  boost::posix_time::ptime _connect_time;
480
 
  boost::posix_time::ptime _start_timer;
481
 
  boost::posix_time::ptime _end_timer;
482
 
 
483
 
  boost::posix_time::ptime _user_time;
484
 
public:
485
 
  uint64_t utime_after_lock; // This used by Innodb.
486
 
 
487
 
  void resetUserTime()
488
 
  {
489
 
    _user_time= boost::posix_time::not_a_date_time;
490
 
  }
491
 
 
492
 
  const boost::posix_time::ptime &start_timer() const
493
 
  {
494
 
    return _start_timer;
495
 
  }
496
 
 
497
 
  void getTimeDifference(boost::posix_time::time_duration &result_arg, const boost::posix_time::ptime &arg) const
498
 
  {
499
 
    result_arg=  arg - _start_timer;
500
 
  }
 
533
  time_t start_time;
 
534
  time_t user_time;
 
535
  uint64_t thr_create_utime; /**< track down slow pthread_create */
 
536
  uint64_t start_utime;
 
537
  uint64_t utime_after_lock;
501
538
 
502
539
  thr_lock_type update_lock_default;
503
540
 
518
555
  */
519
556
  query_id_t query_id;
520
557
  query_id_t warn_query_id;
521
 
 
522
558
public:
523
559
  void **getEngineData(const plugin::MonitoredInTransaction *monitored);
524
560
  ResourceContext *getResourceContext(const plugin::MonitoredInTransaction *monitored,
525
561
                                      size_t index= 0);
526
562
 
527
 
  session::Transactions transaction;
 
563
  struct st_transactions {
 
564
    std::deque<NamedSavepoint> savepoints;
 
565
    TransactionContext all; ///< Trans since BEGIN WORK
 
566
    TransactionContext stmt; ///< Trans for current statement
 
567
    XID_STATE xid_state;
 
568
 
 
569
    void cleanup()
 
570
    {
 
571
      savepoints.clear();
 
572
    }
 
573
    st_transactions() :
 
574
      savepoints(),
 
575
      all(),
 
576
      stmt(),
 
577
      xid_state()
 
578
    { }
 
579
  } transaction;
528
580
 
529
581
  Field *dup_field;
530
582
  sigset_t signals;
531
583
 
532
 
  // As of right now we do not allow a concurrent execute to launch itself
533
 
private:
534
 
  bool concurrent_execute_allowed;
535
 
 
536
 
public:
537
 
 
538
 
  void setConcurrentExecute(bool arg)
539
 
  {
540
 
    concurrent_execute_allowed= arg;
541
 
  }
542
 
 
543
 
  bool isConcurrentExecuteAllowed() const
544
 
  {
545
 
    return concurrent_execute_allowed;
546
 
  }
547
 
 
548
584
  /* Tells if LAST_INSERT_ID(#) was called for the current statement */
549
585
  bool arg_of_last_insert_id_function;
550
 
 
551
586
  /*
552
587
    ALL OVER THIS FILE, "insert_id" means "*automatically generated* value for
553
588
    insertion into an auto_increment column".
601
636
  uint64_t limit_found_rows;
602
637
  uint64_t options; /**< Bitmap of options */
603
638
  int64_t row_count_func; /**< For the ROW_COUNT() function */
604
 
 
605
 
  int64_t rowCount() const
606
 
  {
607
 
    return row_count_func;
608
 
  }
609
 
 
610
639
  ha_rows cuted_fields; /**< Count of "cut" or truncated fields. @todo Kill this friggin thing. */
611
640
 
612
641
  /** 
655
684
    create_sort_index(); may differ from examined_row_count.
656
685
  */
657
686
  uint32_t row_count;
658
 
 
659
 
  uint32_t getRowCount() const
660
 
  {
661
 
    return row_count;
662
 
  }
663
 
 
664
 
  session_id_t thread_id;
 
687
  uint64_t thread_id;
665
688
  uint32_t tmp_table;
666
 
  enum global_read_lock_t
667
 
  {
668
 
    NONE= 0,
669
 
    GOT_GLOBAL_READ_LOCK= 1,
670
 
    MADE_GLOBAL_READ_LOCK_BLOCK_COMMIT= 2
671
 
  };
672
 
private:
673
 
  global_read_lock_t _global_read_lock;
674
 
 
675
 
public:
676
 
 
677
 
  global_read_lock_t isGlobalReadLock() const
678
 
  {
679
 
    return _global_read_lock;
680
 
  }
681
 
 
682
 
  void setGlobalReadLock(global_read_lock_t arg)
683
 
  {
684
 
    _global_read_lock= arg;
685
 
  }
686
 
 
687
 
  DrizzleLock *lockTables(Table **tables, uint32_t count, uint32_t flags);
688
 
  bool lockGlobalReadLock();
689
 
  bool lock_table_names(TableList *table_list);
690
 
  bool lock_table_names_exclusively(TableList *table_list);
691
 
  bool makeGlobalReadLockBlockCommit();
692
 
  bool abortLockForThread(Table *table);
693
 
  bool wait_if_global_read_lock(bool abort_on_refresh, bool is_not_commit);
694
 
  int lock_table_name(TableList *table_list);
695
 
  void abortLock(Table *table);
696
 
  void removeLock(Table *table);
697
 
  void unlockReadTables(DrizzleLock *sql_lock);
698
 
  void unlockSomeTables(Table **table, uint32_t count);
699
 
  void unlockTables(DrizzleLock *sql_lock);
700
 
  void startWaitingGlobalReadLock();
701
 
  void unlockGlobalReadLock();
702
 
 
703
 
private:
704
 
  int unlock_external(Table **table, uint32_t count);
705
 
  int lock_external(Table **tables, uint32_t count);
706
 
  bool wait_for_locked_table_names(TableList *table_list);
707
 
  DrizzleLock *get_lock_data(Table **table_ptr, uint32_t count,
708
 
                             bool should_lock, Table **write_lock_used);
709
 
public:
710
 
 
 
689
  uint32_t global_read_lock;
711
690
  uint32_t server_status;
712
691
  uint32_t open_options;
713
692
  uint32_t select_number; /**< number of select (used for EXPLAIN) */
715
694
  enum_tx_isolation session_tx_isolation;
716
695
  enum_check_fields count_cuted_fields;
717
696
 
718
 
  enum killed_state_t
 
697
  enum killed_state
719
698
  {
720
699
    NOT_KILLED,
721
700
    KILL_BAD_DATA,
723
702
    KILL_QUERY,
724
703
    KILLED_NO_VALUE /* means none of the above states apply */
725
704
  };
726
 
private:
727
 
  killed_state_t volatile _killed;
728
 
 
729
 
public:
730
 
 
731
 
  void setKilled(killed_state_t arg)
732
 
  {
733
 
    _killed= arg;
734
 
  }
735
 
 
736
 
  killed_state_t getKilled()
737
 
  {
738
 
    return _killed;
739
 
  }
740
 
 
741
 
  volatile killed_state_t *getKilledPtr() // Do not use this method, it is here for historical convience.
742
 
  {
743
 
    return &_killed;
744
 
  }
745
 
 
746
 
  bool is_admin_connection;
 
705
  killed_state volatile killed;
 
706
 
747
707
  bool some_tables_deleted;
748
708
  bool no_errors;
749
709
  bool password;
752
712
    can not continue. In particular, disables activation of
753
713
    CONTINUE or EXIT handlers of stored routines.
754
714
    Reset in the end of processing of the current user request, in
755
 
    @see reset_session_for_next_command().
 
715
    @see mysql_reset_session_for_next_command().
756
716
  */
757
717
  bool is_fatal_error;
758
718
  /**
777
737
  bool substitute_null_with_insert_id;
778
738
  bool cleanup_done;
779
739
 
780
 
private:
781
740
  bool abort_on_warning;
782
 
  bool tablespace_op; /**< This is true in DISCARD/IMPORT TABLESPACE */
783
 
 
784
 
public:
785
741
  bool got_warning; /**< Set on call to push_warning() */
786
742
  bool no_warnings_for_error; /**< no warnings on call to my_error() */
787
743
  /** set during loop of derived table processing */
788
744
  bool derived_tables_processing;
789
 
 
790
 
  bool doing_tablespace_operation(void)
791
 
  {
792
 
    return tablespace_op;
793
 
  }
794
 
 
795
 
  void setDoingTablespaceOperation(bool doing)
796
 
  {
797
 
    tablespace_op= doing;
798
 
  }
799
 
 
 
745
  bool tablespace_op; /**< This is true in DISCARD/IMPORT TABLESPACE */
800
746
 
801
747
  /** Used by the sys_var class to store temporary values */
802
748
  union
846
792
  }
847
793
 
848
794
  /** Returns the current query ID */
849
 
  query_id_t getQueryId()  const
 
795
  inline query_id_t getQueryId()  const
850
796
  {
851
797
    return query_id;
852
798
  }
864
810
    return warn_query_id;
865
811
  }
866
812
 
 
813
  /** Returns the current query text */
 
814
  inline const std::string &getQueryString()  const
 
815
  {
 
816
    return query;
 
817
  }
 
818
 
 
819
  /** Returns the length of the current query text */
 
820
  inline size_t getQueryLength() const
 
821
  {
 
822
    if (! query.empty())
 
823
      return query.length();
 
824
    else
 
825
      return 0;
 
826
  }
 
827
 
867
828
  /** Accessor method returning the session's ID. */
868
 
  inline session_id_t getSessionId()  const
 
829
  inline uint64_t getSessionId()  const
869
830
  {
870
831
    return thread_id;
871
832
  }
938
899
    auto_inc_intervals_forced.append(next_id, UINT64_MAX, 0);
939
900
  }
940
901
 
941
 
  Session(plugin::Client *client_arg, catalog::Instance::shared_ptr catalog);
 
902
  Session(plugin::Client *client_arg);
942
903
  virtual ~Session();
943
904
 
944
905
  void cleanup(void);
956
917
   */
957
918
  void cleanup_after_query();
958
919
  bool storeGlobals();
959
 
  void awake(Session::killed_state_t state_to_set);
 
920
  void awake(Session::killed_state state_to_set);
960
921
  /**
961
922
   * Pulls thread-specific variables into Session state.
962
923
   *
1021
982
  bool endTransaction(enum enum_mysql_completiontype completion);
1022
983
  bool endActiveTransaction();
1023
984
  bool startTransaction(start_transaction_option_t opt= START_TRANS_NO_OPTIONS);
1024
 
  void markTransactionForRollback(bool all);
1025
985
 
1026
986
  /**
1027
987
   * Authenticates users, with error reporting.
1040
1000
  /**
1041
1001
   * Schedule a session to be run on the default scheduler.
1042
1002
   */
1043
 
  static bool schedule(Session::shared_ptr&);
1044
 
 
1045
 
  static void unlink(session_id_t &session_id);
1046
 
  static void unlink(Session::shared_ptr&);
 
1003
  bool schedule();
1047
1004
 
1048
1005
  /*
1049
1006
    For enter_cond() / exit_cond() to work the mutex must be got before
1050
1007
    enter_cond(); this mutex is then released by exit_cond().
1051
1008
    Usage must be: lock mutex; enter_cond(); your code; exit_cond().
1052
1009
  */
1053
 
  const char* enter_cond(boost::condition_variable_any &cond, boost::mutex &mutex, const char* msg);
 
1010
  const char* enter_cond(boost::condition_variable &cond, boost::mutex &mutex, const char* msg);
1054
1011
  void exit_cond(const char* old_msg);
1055
1012
 
1056
 
  type::Time::epoch_t query_start()
1057
 
  {
1058
 
    return getCurrentTimestampEpoch();
1059
 
  }
1060
 
 
1061
 
  void set_time()
1062
 
  {
1063
 
    _end_timer= _start_timer= boost::posix_time::microsec_clock::universal_time();
1064
 
    utime_after_lock= (_start_timer - _epoch).total_microseconds();
1065
 
  }
1066
 
 
1067
 
  void set_time(time_t t) // This is done by a sys_var, as long as user_time is set, we will use that for all references to time
1068
 
  {
1069
 
    _user_time= boost::posix_time::from_time_t(t);
1070
 
  }
1071
 
 
1072
 
  void set_time_after_lock()
1073
 
  { 
1074
 
    boost::posix_time::ptime mytime(boost::posix_time::microsec_clock::universal_time());
1075
 
    utime_after_lock= (mytime - _epoch).total_microseconds();
1076
 
  }
1077
 
 
1078
 
  void set_end_timer()
1079
 
  {
1080
 
    _end_timer= boost::posix_time::microsec_clock::universal_time();
1081
 
    status_var.execution_time_nsec+=(_end_timer - _start_timer).total_microseconds();
1082
 
  }
1083
 
 
1084
 
  uint64_t getElapsedTime() const
1085
 
  {
1086
 
    return (_end_timer - _start_timer).total_microseconds();
1087
 
  }
1088
 
 
 
1013
  inline time_t query_start() { return start_time; }
 
1014
  inline void set_time()
 
1015
  {
 
1016
    if (user_time)
 
1017
    {
 
1018
      start_time= user_time;
 
1019
      connect_microseconds= start_utime= utime_after_lock= my_micro_time();
 
1020
    }
 
1021
    else
 
1022
      start_utime= utime_after_lock= my_micro_time_and_time(&start_time);
 
1023
  }
 
1024
  inline void   set_current_time()    { start_time= time(NULL); }
 
1025
  inline void   set_time(time_t t)
 
1026
  {
 
1027
    start_time= user_time= t;
 
1028
    start_utime= utime_after_lock= my_micro_time();
 
1029
  }
 
1030
  void set_time_after_lock()  { utime_after_lock= my_micro_time(); }
1089
1031
  /**
1090
1032
   * Returns the current micro-timestamp
1091
1033
   */
1092
 
  type::Time::epoch_t getCurrentTimestamp(bool actual= true) const
1093
 
  { 
1094
 
    type::Time::epoch_t t_mark;
1095
 
 
1096
 
    if (actual)
1097
 
    {
1098
 
      boost::posix_time::ptime mytime(boost::posix_time::microsec_clock::universal_time());
1099
 
      t_mark= (mytime - _epoch).total_microseconds();
1100
 
    }
1101
 
    else
1102
 
    {
1103
 
      t_mark= (_end_timer - _epoch).total_microseconds();
1104
 
    }
1105
 
 
1106
 
    return t_mark; 
1107
 
  }
1108
 
 
1109
 
  // We may need to set user on this
1110
 
  type::Time::epoch_t getCurrentTimestampEpoch() const
1111
 
  { 
1112
 
    if (not _user_time.is_not_a_date_time())
1113
 
      return (_user_time - _epoch).total_seconds();
1114
 
 
1115
 
    return (_start_timer - _epoch).total_seconds();
1116
 
  }
1117
 
 
1118
 
  type::Time::epoch_t getCurrentTimestampEpoch(type::Time::usec_t &fraction_arg) const
1119
 
  { 
1120
 
    if (not _user_time.is_not_a_date_time())
1121
 
    {
1122
 
      fraction_arg= 0;
1123
 
      return (_user_time - _epoch).total_seconds();
1124
 
    }
1125
 
 
1126
 
    fraction_arg= _start_timer.time_of_day().fractional_seconds() % 1000000;
1127
 
    return (_start_timer - _epoch).total_seconds();
1128
 
  }
1129
 
 
1130
 
  uint64_t found_rows(void) const
 
1034
  inline uint64_t getCurrentTimestamp()  
 
1035
  { 
 
1036
    return my_micro_time(); 
 
1037
  }
 
1038
  inline uint64_t found_rows(void)
1131
1039
  {
1132
1040
    return limit_found_rows;
1133
1041
  }
1134
 
 
1135
1042
  /** Returns whether the session is currently inside a transaction */
1136
 
  bool inTransaction() const
 
1043
  inline bool inTransaction()
1137
1044
  {
1138
1045
    return server_status & SERVER_STATUS_IN_TRANS;
1139
1046
  }
 
1047
  inline bool fill_derived_tables()
 
1048
  {
 
1049
    return !lex->only_view_structure();
 
1050
  }
1140
1051
 
1141
1052
  LEX_STRING *make_lex_string(LEX_STRING *lex_str,
1142
1053
                              const char* str, uint32_t length,
1143
1054
                              bool allocate_lex_string);
1144
 
 
1145
1055
  LEX_STRING *make_lex_string(LEX_STRING *lex_str,
1146
1056
                              const std::string &str,
1147
1057
                              bool allocate_lex_string);
1148
1058
 
1149
1059
  int send_explain_fields(select_result *result);
1150
 
 
1151
1060
  /**
1152
1061
    Clear the current error, if any.
1153
1062
    We do not clear is_fatal_error or is_fatal_sub_stmt_error since we
1155
1064
    @todo: To silence an error, one should use Internal_error_handler
1156
1065
    mechanism. In future this function will be removed.
1157
1066
  */
1158
 
  inline void clear_error(bool full= false)
 
1067
  inline void clear_error()
1159
1068
  {
1160
1069
    if (main_da.is_error())
1161
1070
      main_da.reset_diagnostics_area();
1162
 
 
1163
 
    if (full)
1164
 
    {
1165
 
      drizzle_reset_errors(this, true);
1166
 
    }
1167
 
  }
1168
 
 
1169
 
  void clearDiagnostics()
1170
 
  {
1171
 
    main_da.reset_diagnostics_area();
 
1071
    return;
1172
1072
  }
1173
1073
 
1174
1074
  /**
1212
1112
  void end_statement();
1213
1113
  inline int killed_errno() const
1214
1114
  {
1215
 
    killed_state_t killed_val; /* to cache the volatile 'killed' */
1216
 
    return (killed_val= _killed) != KILL_BAD_DATA ? killed_val : 0;
 
1115
    killed_state killed_val; /* to cache the volatile 'killed' */
 
1116
    return (killed_val= killed) != KILL_BAD_DATA ? killed_val : 0;
1217
1117
  }
1218
1118
  void send_kill_message() const;
1219
1119
  /* return true if we will abort query if we make a warning now */
1220
 
  inline bool abortOnWarning()
1221
 
  {
1222
 
    return abort_on_warning;
1223
 
  }
1224
 
 
1225
 
  inline void setAbortOnWarning(bool arg)
1226
 
  {
1227
 
    abort_on_warning= arg;
 
1120
  inline bool really_abort_on_warning()
 
1121
  {
 
1122
    return (abort_on_warning);
1228
1123
  }
1229
1124
 
1230
1125
  void setAbort(bool arg);
1247
1142
    database usually involves other actions, like switching other database
1248
1143
    attributes including security context. In the future, this operation
1249
1144
    will be made private and more convenient interface will be provided.
 
1145
 
 
1146
    @return Operation status
 
1147
      @retval false Success
 
1148
      @retval true  Out-of-memory error
1250
1149
  */
1251
 
  void set_db(const std::string &new_db);
 
1150
  bool set_db(const std::string &new_db);
1252
1151
 
1253
1152
  /*
1254
1153
    Copy the current database to the argument. Use the current arena to
1270
1169
    @param level the error level
1271
1170
    @return true if the error is handled
1272
1171
  */
1273
 
  virtual bool handle_error(drizzled::error_t sql_errno, const char *message,
 
1172
  virtual bool handle_error(uint32_t sql_errno, const char *message,
1274
1173
                            DRIZZLE_ERROR::enum_warning_level level);
1275
1174
 
1276
1175
  /**
1298
1197
   * updates any status variables necessary.
1299
1198
   *
1300
1199
   * @param errcode     Error code to print to console
 
1200
   * @param should_lock 1 if we have have to lock LOCK_thread_count
1301
1201
   *
1302
1202
   * @note  For the connection that is doing shutdown, this is called twice
1303
1203
   */
1304
 
  void disconnect(enum error_t errcode= EE_OK);
 
1204
  void disconnect(uint32_t errcode, bool lock);
1305
1205
 
1306
1206
  /**
1307
1207
   * Check if user exists and the password supplied is correct.
1312
1212
   * Current implementation does not depend on that, but future changes
1313
1213
   * should be done with this in mind; 
1314
1214
   *
1315
 
   * @param passwd Scrambled password received from client
1316
 
   * @param db Database name to connect to, may be NULL
 
1215
   * @param  Scrambled password received from client
 
1216
   * @param  Length of scrambled password
 
1217
   * @param  Database name to connect to, may be NULL
1317
1218
   */
1318
 
  bool checkUser(const std::string &passwd, const std::string &db);
 
1219
  bool checkUser(const char *passwd, uint32_t passwd_len, const char *db);
1319
1220
  
1320
1221
  /**
1321
1222
   * Returns the timestamp (in microseconds) of when the Session 
1322
1223
   * connected to the server.
1323
1224
   */
1324
 
  uint64_t getConnectMicroseconds() const
1325
 
  {
1326
 
    return (_connect_time - _epoch).total_microseconds();
1327
 
  }
1328
 
 
1329
 
  uint64_t getConnectSeconds() const
1330
 
  {
1331
 
    return (_connect_time - _epoch).total_seconds();
 
1225
  inline uint64_t getConnectMicroseconds() const
 
1226
  {
 
1227
    return connect_microseconds;
1332
1228
  }
1333
1229
 
1334
1230
  /**
1449
1345
  
1450
1346
  
1451
1347
 private:
 
1348
 /** Microsecond timestamp of when Session connected */
 
1349
  uint64_t connect_microseconds;
1452
1350
  const char *proc_info;
1453
1351
 
1454
1352
  /** The current internal error handler for this thread, or NULL. */
1489
1387
   * set to query_id of original query.
1490
1388
   */
1491
1389
  void mark_used_tables_as_free_for_reuse(Table *table);
 
1390
  /**
 
1391
    Mark all temporary tables which were used by the current statement or
 
1392
    substatement as free for reuse, but only if the query_id can be cleared.
 
1393
 
 
1394
    @param session thread context
 
1395
 
 
1396
    @remark For temp tables associated with a open SQL HANDLER the query_id
 
1397
            is not reset until the HANDLER is closed.
 
1398
  */
 
1399
  void mark_temp_tables_as_free_for_reuse();
1492
1400
 
1493
1401
public:
1494
1402
 
1530
1438
  }
1531
1439
  void refresh_status();
1532
1440
  user_var_entry *getVariable(LEX_STRING &name, bool create_if_not_exists);
1533
 
  user_var_entry *getVariable(const std::string  &name, bool create_if_not_exists);
1534
 
  void setVariable(const std::string &name, const std::string &value);
1535
1441
  
1536
1442
  /**
1537
1443
   * Closes all tables used by the current substatement, or all tables
1541
1447
  void close_old_data_files(bool morph_locks= false,
1542
1448
                            bool send_refresh= false);
1543
1449
  void close_open_tables();
1544
 
  void close_data_files_and_morph_locks(const identifier::Table &identifier);
 
1450
  void close_data_files_and_morph_locks(TableIdentifier &identifier);
1545
1451
 
1546
1452
private:
1547
 
  bool free_cached_table(boost::mutex::scoped_lock &scopedLock);
1548
 
 
 
1453
  bool free_cached_table();
1549
1454
public:
1550
1455
 
1551
1456
  /**
1573
1478
   */
1574
1479
  bool openTablesLock(TableList *tables);
1575
1480
 
 
1481
  /**
 
1482
   * Open all tables in list and process derived tables
 
1483
   *
 
1484
   * @param Pointer to a list of tables for open
 
1485
   * @param Bitmap of flags to modify how the tables will be open:
 
1486
   *        DRIZZLE_LOCK_IGNORE_FLUSH - open table even if someone has
 
1487
   *        done a flush or namelock on it.
 
1488
   *
 
1489
   * @retval
 
1490
   *  false - ok
 
1491
   * @retval
 
1492
   *  true  - error
 
1493
   *
 
1494
   * @note
 
1495
   *
 
1496
   * This is to be used on prepare stage when you don't read any
 
1497
   * data from the tables.
 
1498
   */
 
1499
  bool openTables(TableList *tables, uint32_t flags= 0);
 
1500
 
1576
1501
  int open_tables_from_list(TableList **start, uint32_t *counter, uint32_t flags= 0);
1577
1502
 
1578
1503
  Table *openTableLock(TableList *table_list, thr_lock_type lock_type);
1579
1504
  Table *openTable(TableList *table_list, bool *refresh, uint32_t flags= 0);
1580
1505
 
1581
1506
  void unlink_open_table(Table *find);
1582
 
  void drop_open_table(Table *table, const identifier::Table &identifier);
 
1507
  void drop_open_table(Table *table, TableIdentifier &identifier);
1583
1508
  void close_cached_table(Table *table);
1584
1509
 
1585
1510
  /* Create a lock in the cache */
1586
 
  table::Placeholder *table_cache_insert_placeholder(const identifier::Table &identifier);
1587
 
  bool lock_table_name_if_not_cached(const identifier::Table &identifier, Table **table);
1588
 
 
 
1511
  Table *table_cache_insert_placeholder(const char *db_name, const char *table_name);
 
1512
  bool lock_table_name_if_not_cached(TableIdentifier &identifier, Table **table);
 
1513
 
 
1514
  typedef boost::unordered_map<std::string, message::Table, util::insensitive_hash, util::insensitive_equal_to> TableMessageCache;
 
1515
  TableMessageCache table_message_cache;
 
1516
 
 
1517
  bool storeTableMessage(const TableIdentifier &identifier, message::Table &table_message);
 
1518
  bool removeTableMessage(const TableIdentifier &identifier);
 
1519
  bool getTableMessage(const TableIdentifier &identifier, message::Table &table_message);
 
1520
  bool doesTableMessageExist(const TableIdentifier &identifier);
 
1521
  bool renameTableMessage(const TableIdentifier &from, const TableIdentifier &to);
 
1522
 
 
1523
  /* Work with temporary tables */
 
1524
  Table *find_temporary_table(TableList *table_list);
 
1525
  Table *find_temporary_table(const char *db, const char *table_name);
 
1526
  Table *find_temporary_table(TableIdentifier &identifier);
 
1527
 
 
1528
  void doGetTableNames(CachedDirectory &directory,
 
1529
                       const SchemaIdentifier &schema_identifier,
 
1530
                       std::set<std::string>& set_of_names);
 
1531
  void doGetTableNames(const SchemaIdentifier &schema_identifier,
 
1532
                       std::set<std::string>& set_of_names);
 
1533
 
 
1534
  void doGetTableIdentifiers(CachedDirectory &directory,
 
1535
                             const SchemaIdentifier &schema_identifier,
 
1536
                             TableIdentifiers &set_of_identifiers);
 
1537
  void doGetTableIdentifiers(const SchemaIdentifier &schema_identifier,
 
1538
                             TableIdentifiers &set_of_identifiers);
 
1539
 
 
1540
  int doGetTableDefinition(const drizzled::TableIdentifier &identifier,
 
1541
                           message::Table &table_proto);
 
1542
  bool doDoesTableExist(const drizzled::TableIdentifier &identifier);
 
1543
 
 
1544
  void close_temporary_tables();
 
1545
  void close_temporary_table(Table *table);
 
1546
  // The method below just handles the de-allocation of the table. In
 
1547
  // a better memory type world, this would not be needed.
1589
1548
private:
1590
 
  session::TableMessages _table_message_cache;
1591
 
 
 
1549
  void nukeTable(Table *table);
1592
1550
public:
1593
 
  session::TableMessages &getMessageCache()
1594
 
  {
1595
 
    return _table_message_cache;
1596
 
  }
 
1551
 
 
1552
  void dumpTemporaryTableNames(const char *id);
 
1553
  int drop_temporary_table(TableList *table_list);
 
1554
  bool rm_temporary_table(plugin::StorageEngine *base, TableIdentifier &identifier);
 
1555
  bool rm_temporary_table(TableIdentifier &identifier, bool best_effort= false);
 
1556
  Table *open_temporary_table(TableIdentifier &identifier,
 
1557
                              bool link_in_list= true);
1597
1558
 
1598
1559
  /* Reopen operations */
1599
 
  bool reopen_tables();
 
1560
  bool reopen_tables(bool get_locks, bool mark_share_as_old);
 
1561
  bool reopen_name_locked_table(TableList* table_list, bool link_in);
1600
1562
  bool close_cached_tables(TableList *tables, bool wait_for_refresh, bool wait_for_placeholders);
1601
1563
 
1602
 
  void wait_for_condition(boost::mutex &mutex, boost::condition_variable_any &cond);
 
1564
  void wait_for_condition(boost::mutex &mutex, boost::condition_variable &cond);
1603
1565
  int setup_conds(TableList *leaves, COND **conds);
1604
1566
  int lock_tables(TableList *tables, uint32_t count, bool *need_reopen);
1605
1567
 
 
1568
  Table *create_virtual_tmp_table(List<CreateField> &field_list);
 
1569
  
1606
1570
  drizzled::util::Storable *getProperty(const std::string &arg)
1607
1571
  {
1608
 
    return life_properties.getProperty(arg);
 
1572
    return life_properties[arg];
1609
1573
  }
1610
1574
 
1611
1575
  template<class T>
1612
1576
  bool setProperty(const std::string &arg, T *value)
1613
1577
  {
1614
 
    life_properties.setProperty(arg, value);
 
1578
    life_properties[arg]= value;
1615
1579
 
1616
1580
    return true;
1617
1581
  }
1629
1593
    if (variables.storage_engine)
1630
1594
      return variables.storage_engine;
1631
1595
    return global_system_variables.storage_engine;
1632
 
  }
 
1596
  };
 
1597
 
 
1598
  static void unlink(Session *session);
1633
1599
 
1634
1600
  void get_xid(DRIZZLE_XID *xid); // Innodb only
1635
1601
 
1636
 
  table::Singular *getInstanceTable();
1637
 
  table::Singular *getInstanceTable(List<CreateField> &field_list);
 
1602
  TableShareInstance *getTemporaryShare(TableIdentifier::Type type_arg);
1638
1603
 
1639
1604
private:
1640
1605
  bool resetUsage()
1646
1611
 
1647
1612
    return true;
1648
1613
  }
1649
 
 
1650
1614
public:
1651
1615
 
1652
1616
  void setUsage(bool arg)
1659
1623
    return usage;
1660
1624
  }
1661
1625
 
1662
 
  catalog::Instance::const_reference catalog() const
1663
 
  {
1664
 
    return *(_catalog.get());
1665
 
  }
1666
 
 
1667
 
  catalog::Instance::reference catalog()
1668
 
  {
1669
 
    return *(_catalog.get());
1670
 
  }
1671
 
 
1672
1626
private:
1673
 
  catalog::Instance::shared_ptr _catalog;
1674
 
 
1675
1627
  // This lives throughout the life of Session
1676
1628
  bool use_usage;
1677
 
  session::PropertyMap life_properties;
1678
 
  std::vector<table::Singular *> temporary_shares;
 
1629
  PropertyMap life_properties;
 
1630
  std::vector<TableShareInstance *> temporary_shares;
1679
1631
  struct rusage usage;
1680
1632
};
1681
1633
 
1705
1657
 * A structure used to describe sort information
1706
1658
 * for a field or item used in ORDER BY.
1707
1659
 */
1708
 
class SortField 
 
1660
struct SortField 
1709
1661
{
1710
 
public:
1711
1662
  Field *field; /**< Field to sort */
1712
1663
  Item  *item; /**< Item if not sorting fields */
1713
1664
  size_t length; /**< Length of sort field */
1759
1710
static const std::bitset<CF_BIT_SIZE> CF_SHOW_TABLE_COMMAND(1 << CF_BIT_SHOW_TABLE_COMMAND);
1760
1711
static const std::bitset<CF_BIT_SIZE> CF_WRITE_LOGS_COMMAND(1 << CF_BIT_WRITE_LOGS_COMMAND);
1761
1712
 
1762
 
namespace display  {
1763
 
const std::string &type(drizzled::Session::global_read_lock_t type);
1764
 
size_t max_string_length(drizzled::Session::global_read_lock_t type);
1765
 
 
1766
 
} /* namespace display */
1767
 
 
1768
1713
} /* namespace drizzled */
1769
1714
 
1770
1715
#endif /* DRIZZLED_SESSION_H */