handler.h 35.2 KB
Newer Older
1
/* Copyright (C) 2000,2004 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
2

unknown's avatar
unknown committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
7

unknown's avatar
unknown committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
12

unknown's avatar
unknown committed
13 14 15 16 17 18 19
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


/* Definitions for parameters to do with handler-routines */

20
#ifdef USE_PRAGMA_INTERFACE
unknown's avatar
unknown committed
21 22 23
#pragma interface			/* gcc class implementation */
#endif

unknown's avatar
unknown committed
24
#include <ft_global.h>
unknown's avatar
unknown committed
25
#include <keycache.h>
unknown's avatar
unknown committed
26

unknown's avatar
unknown committed
27 28 29 30
#ifndef NO_HASH
#define NO_HASH				/* Not yet implemented */
#endif

unknown's avatar
unknown committed
31 32
#if defined(HAVE_BERKELEY_DB) || defined(HAVE_INNOBASE_DB) || \
    defined(HAVE_NDBCLUSTER_DB)
33 34 35
#define USING_TRANSACTIONS
#endif

unknown's avatar
unknown committed
36 37
// the following is for checking tables

38 39 40 41 42 43
#define HA_ADMIN_ALREADY_DONE	  1
#define HA_ADMIN_OK               0
#define HA_ADMIN_NOT_IMPLEMENTED -1
#define HA_ADMIN_FAILED		 -2
#define HA_ADMIN_CORRUPT         -3
#define HA_ADMIN_INTERNAL_ERROR  -4
unknown's avatar
unknown committed
44
#define HA_ADMIN_INVALID         -5
unknown's avatar
unknown committed
45
#define HA_ADMIN_REJECT          -6
46
#define HA_ADMIN_TRY_ALTER       -7
47
#define HA_ADMIN_WRONG_CHECKSUM  -8
unknown's avatar
unknown committed
48
#define HA_ADMIN_NOT_BASE_TABLE  -9
unknown's avatar
unknown committed
49 50 51
#define HA_ADMIN_NEEDS_UPGRADE  -10
#define HA_ADMIN_NEEDS_ALTER    -11
#define HA_ADMIN_NEEDS_CHECK    -12
unknown's avatar
unknown committed
52

unknown's avatar
unknown committed
53
/* Bits in table_flags() to show what database can do */
54 55 56 57 58 59

/*
  Can switch index during the scan with ::rnd_same() - not used yet.
  see mi_rsame/heap_rsame/myrg_rsame
*/
#define HA_READ_RND_SAME       (1 << 0)
unknown's avatar
unknown committed
60 61
#define HA_TABLE_SCAN_ON_INDEX (1 << 2) /* No separate data/index file */
#define HA_REC_NOT_IN_SEQ      (1 << 3) /* ha_info don't return recnumber;
unknown's avatar
unknown committed
62
                                           It returns a position to ha_r_rnd */
unknown's avatar
unknown committed
63
#define HA_CAN_GEOMETRY        (1 << 4)
64 65 66 67 68 69
/*
  Reading keys in random order is as fast as reading keys in sort order
  (Used in records.cc to decide if we should use a record cache and by
  filesort to decide if we should sort key + data or key + pointer-to-row
*/
#define HA_FAST_KEY_READ       (1 << 5)
unknown's avatar
unknown committed
70 71
#define HA_NULL_IN_KEY         (1 << 7) /* One can have keys with NULL */
#define HA_DUPP_POS            (1 << 8) /* ha_position() gives dup row */
unknown's avatar
unknown committed
72
#define HA_NO_BLOBS            (1 << 9) /* Doesn't support blobs */
unknown's avatar
unknown committed
73 74 75
#define HA_CAN_INDEX_BLOBS     (1 << 10)
#define HA_AUTO_PART_KEY       (1 << 11) /* auto-increment in multi-part key */
#define HA_REQUIRE_PRIMARY_KEY (1 << 12) /* .. and can't create a hidden one */
unknown's avatar
unknown committed
76
#define HA_NOT_EXACT_COUNT     (1 << 13)
77 78 79 80 81
/*
  INSERT_DELAYED only works with handlers that uses MySQL internal table
  level locks
*/
#define HA_CAN_INSERT_DELAYED  (1 << 14)
unknown's avatar
unknown committed
82 83 84 85 86 87 88
#define HA_PRIMARY_KEY_IN_READ_INDEX (1 << 15)
#define HA_NOT_DELETE_WITH_CACHE (1 << 18)
#define HA_NO_PREFIX_CHAR_KEYS (1 << 20)
#define HA_CAN_FULLTEXT        (1 << 21)
#define HA_CAN_SQL_HANDLER     (1 << 22)
#define HA_NO_AUTO_INCREMENT   (1 << 23)
#define HA_HAS_CHECKSUM        (1 << 24)
unknown's avatar
unknown committed
89
/* Table data are stored in separate files (for lower_case_table_names) */
unknown's avatar
unknown committed
90
#define HA_FILE_BASED	       (1 << 26)
91
#define HA_NO_VARCHAR	       (1 << 27)
unknown's avatar
unknown committed
92
#define HA_CAN_BIT_FIELD       (1 << 28) /* supports bit fields */
unknown's avatar
unknown committed
93
#define HA_NEED_READ_RANGE_BUFFER (1 << 29) /* for read_multi_range */
94
#define HA_ANY_INDEX_MAY_BE_UNIQUE (1 << 30)
unknown's avatar
unknown committed
95

96

unknown's avatar
unknown committed
97
/* bits in index_flags(index_number) for what you can do with index */
unknown's avatar
unknown committed
98 99 100 101
#define HA_READ_NEXT            1       /* TODO really use this flag */
#define HA_READ_PREV            2       /* supports ::index_prev */
#define HA_READ_ORDER           4       /* index_next/prev follow sort order */
#define HA_READ_RANGE           8       /* can find all records in a range */
unknown's avatar
unknown committed
102
#define HA_ONLY_WHOLE_INDEX	16	/* Can't use part key searches */
unknown's avatar
unknown committed
103
#define HA_KEYREAD_ONLY         64	/* Support HA_EXTRA_KEYREAD */
104

105 106 107 108
/*
  Index scan will not return records in rowid order. Not guaranteed to be
  set for unordered (e.g. HASH) indexes.
*/
unknown's avatar
foo1  
unknown committed
109
#define HA_KEY_SCAN_NOT_ROR     128
110 111


112 113 114 115 116 117
/* operations for disable/enable indexes */
#define HA_KEY_SWITCH_NONUNIQ      0
#define HA_KEY_SWITCH_ALL          1
#define HA_KEY_SWITCH_NONUNIQ_SAVE 2
#define HA_KEY_SWITCH_ALL_SAVE     3

unknown's avatar
unknown committed
118 119
/*
  Note: the following includes binlog and closing 0.
120 121 122
  so: innodb + bdb + ndb + binlog + myisam + myisammrg + archive +
      example + csv + heap + blackhole + federated + 0
  (yes, the sum is deliberately inaccurate)
unknown's avatar
unknown committed
123
*/
124
#define MAX_HA 14
125

126
/*
127 128 129 130
  Bits in index_ddl_flags(KEY *wanted_index)
  for what ddl you can do with index
  If none is set, the wanted type of index is not supported
  by the handler at all. See WorkLog 1563.
131 132 133 134 135
*/
#define HA_DDL_SUPPORT   1 /* Supported by handler */
#define HA_DDL_WITH_LOCK 2 /* Can create/drop with locked table */
#define HA_DDL_ONLINE    4 /* Can create/drop without lock */

unknown's avatar
unknown committed
136 137 138 139
/*
  Parameters for open() (in register form->filestat)
  HA_GET_INFO does an implicit HA_ABORT_IF_LOCKED
*/
unknown's avatar
unknown committed
140 141 142 143 144 145

#define HA_OPEN_KEYFILE		1
#define HA_OPEN_RNDFILE		2
#define HA_GET_INDEX		4
#define HA_GET_INFO		8	/* do a ha_info() after open */
#define HA_READ_ONLY		16	/* File opened as readonly */
unknown's avatar
unknown committed
146 147
/* Try readonly if can't open with read and write */
#define HA_TRY_READ_ONLY	32
unknown's avatar
unknown committed
148 149 150 151 152
#define HA_WAIT_IF_LOCKED	64	/* Wait if locked on open */
#define HA_ABORT_IF_LOCKED	128	/* skip if locked on open.*/
#define HA_BLOCK_LOCK		256	/* unlock when reading some records */
#define HA_OPEN_TEMPORARY	512

unknown's avatar
unknown committed
153
	/* Errors on write which is recoverable  (Key exist) */
unknown's avatar
unknown committed
154
#define HA_WRITE_SKIP 121		/* Duplicate key on write */
unknown's avatar
unknown committed
155 156 157 158 159 160 161 162 163 164 165 166 167
#define HA_READ_CHECK 123		/* Update with is recoverable */
#define HA_CANT_DO_THAT 131		/* Databasehandler can't do it */

	/* Some key definitions */
#define HA_KEY_NULL_LENGTH	1
#define HA_KEY_BLOB_LENGTH	2

#define HA_LEX_CREATE_TMP_TABLE	1
#define HA_LEX_CREATE_IF_NOT_EXISTS 2
#define HA_OPTION_NO_CHECKSUM	(1L << 17)
#define HA_OPTION_NO_DELAY_KEY_WRITE (1L << 18)
#define HA_MAX_REC_LENGTH	65535

168 169
/* Table caching type */
#define HA_CACHE_TBL_NONTRANSACT 0
170 171 172 173
#define HA_CACHE_TBL_NOCACHE     1
#define HA_CACHE_TBL_ASKTRANSACT 2
#define HA_CACHE_TBL_TRANSACT    4

174 175
/* Options of START TRANSACTION statement (and later of SET TRANSACTION stmt) */
#define MYSQL_START_TRANS_OPT_WITH_CONS_SNAPSHOT 1
176

177 178
enum db_type
{
unknown's avatar
unknown committed
179 180 181 182
  DB_TYPE_UNKNOWN=0,DB_TYPE_DIAB_ISAM=1,
  DB_TYPE_HASH,DB_TYPE_MISAM,DB_TYPE_PISAM,
  DB_TYPE_RMS_ISAM, DB_TYPE_HEAP, DB_TYPE_ISAM,
  DB_TYPE_MRG_ISAM, DB_TYPE_MYISAM, DB_TYPE_MRG_MYISAM,
183
  DB_TYPE_BERKELEY_DB, DB_TYPE_INNODB,
unknown's avatar
unknown committed
184
  DB_TYPE_GEMINI, DB_TYPE_NDBCLUSTER,
185
  DB_TYPE_EXAMPLE_DB, DB_TYPE_ARCHIVE_DB, DB_TYPE_CSV_DB,
186
  DB_TYPE_FEDERATED_DB,
187
  DB_TYPE_BLACKHOLE_DB,
unknown's avatar
unknown committed
188 189
  DB_TYPE_DEFAULT // Must be last
};
unknown's avatar
unknown committed
190

191
enum row_type { ROW_TYPE_NOT_USED=-1, ROW_TYPE_DEFAULT, ROW_TYPE_FIXED,
192 193
		ROW_TYPE_DYNAMIC, ROW_TYPE_COMPRESSED,
		ROW_TYPE_REDUNDANT, ROW_TYPE_COMPACT };
unknown's avatar
unknown committed
194 195 196 197

/* struct to hold information about the table that should be created */

/* Bits in used_fields */
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
#define HA_CREATE_USED_AUTO             (1L << 0)
#define HA_CREATE_USED_RAID             (1L << 1)
#define HA_CREATE_USED_UNION            (1L << 2)
#define HA_CREATE_USED_INSERT_METHOD    (1L << 3)
#define HA_CREATE_USED_MIN_ROWS         (1L << 4)
#define HA_CREATE_USED_MAX_ROWS         (1L << 5)
#define HA_CREATE_USED_AVG_ROW_LENGTH   (1L << 6)
#define HA_CREATE_USED_PACK_KEYS        (1L << 7)
#define HA_CREATE_USED_CHARSET          (1L << 8)
#define HA_CREATE_USED_DEFAULT_CHARSET  (1L << 9)
#define HA_CREATE_USED_DATADIR          (1L << 10)
#define HA_CREATE_USED_INDEXDIR         (1L << 11)
#define HA_CREATE_USED_ENGINE           (1L << 12)
#define HA_CREATE_USED_CHECKSUM         (1L << 13)
#define HA_CREATE_USED_DELAY_KEY_WRITE  (1L << 14)
#define HA_CREATE_USED_ROW_FORMAT       (1L << 15)
#define HA_CREATE_USED_COMMENT          (1L << 16)
#define HA_CREATE_USED_PASSWORD         (1L << 17)
216
#define HA_CREATE_USED_CONNECTION       (1L << 18)
unknown's avatar
unknown committed
217

unknown's avatar
unknown committed
218
typedef ulonglong my_xid; // this line is the same as in log_event.h
unknown's avatar
unknown committed
219 220 221 222
#define MYSQL_XID_PREFIX "MySQLXid"
#define MYSQL_XID_PREFIX_LEN 8 // must be a multiple of 8
#define MYSQL_XID_OFFSET (MYSQL_XID_PREFIX_LEN+sizeof(server_id))
#define MYSQL_XID_GTRID_LEN (MYSQL_XID_OFFSET+sizeof(my_xid))
223 224 225 226 227 228 229 230 231

#define XIDDATASIZE 128
#define MAXGTRIDSIZE 64
#define MAXBQUALSIZE 64

struct xid_t {
  long formatID;
  long gtrid_length;
  long bqual_length;
unknown's avatar
unknown committed
232
  char data[XIDDATASIZE];  // not \0-terminated !
233

unknown's avatar
foo1  
unknown committed
234
  xid_t() {}                                /* Remove gcc warning */
unknown's avatar
unknown committed
235
  bool eq(struct xid_t *xid)
236
  { return eq(xid->gtrid_length, xid->bqual_length, xid->data); }
unknown's avatar
unknown committed
237 238
  bool eq(long g, long b, const char *d)
  { return g == gtrid_length && b == bqual_length && !memcmp(d, data, g+b); }
unknown's avatar
unknown committed
239
  void set(struct xid_t *xid)
240
  { memcpy(this, xid, xid->length()); }
unknown's avatar
unknown committed
241 242 243 244 245 246
  void set(long f, const char *g, long gl, const char *b, long bl)
  {
    formatID= f;
    memcpy(data, g, gtrid_length= gl);
    memcpy(data+gl, b, bqual_length= bl);
  }
247
  void set(ulonglong xid)
unknown's avatar
unknown committed
248
  {
249
    my_xid tmp;
unknown's avatar
unknown committed
250
    formatID= 1;
unknown's avatar
unknown committed
251
    set(MYSQL_XID_PREFIX_LEN, 0, MYSQL_XID_PREFIX);
252 253 254
    memcpy(data+MYSQL_XID_PREFIX_LEN, &server_id, sizeof(server_id));
    tmp= xid;
    memcpy(data+MYSQL_XID_OFFSET, &tmp, sizeof(tmp));
unknown's avatar
unknown committed
255 256 257 258
    gtrid_length=MYSQL_XID_GTRID_LEN;
  }
  void set(long g, long b, const char *d)
  {
unknown's avatar
unknown committed
259
    formatID= 1;
unknown's avatar
unknown committed
260 261 262 263 264 265 266 267
    gtrid_length= g;
    bqual_length= b;
    memcpy(data, d, g+b);
  }
  bool is_null() { return formatID == -1; }
  void null() { formatID= -1; }
  my_xid quick_get_my_xid()
  {
268 269 270
    my_xid tmp;
    memcpy(&tmp, data+MYSQL_XID_OFFSET, sizeof(tmp));
    return tmp;
unknown's avatar
unknown committed
271 272 273 274
  }
  my_xid get_my_xid()
  {
    return gtrid_length == MYSQL_XID_GTRID_LEN && bqual_length == 0 &&
unknown's avatar
unknown committed
275
           !memcmp(data+MYSQL_XID_PREFIX_LEN, &server_id, sizeof(server_id)) &&
unknown's avatar
unknown committed
276 277 278
           !memcmp(data, MYSQL_XID_PREFIX, MYSQL_XID_PREFIX_LEN) ?
           quick_get_my_xid() : 0;
  }
279 280 281 282 283
  uint length()
  {
    return sizeof(formatID)+sizeof(gtrid_length)+sizeof(bqual_length)+
           gtrid_length+bqual_length;
  }
284 285 286 287 288 289 290 291
  byte *key()
  {
    return (byte *)&gtrid_length;
  }
  uint key_length()
  {
    return sizeof(gtrid_length)+sizeof(bqual_length)+gtrid_length+bqual_length;
  }
unknown's avatar
unknown committed
292
};
293 294
typedef struct xid_t XID;

unknown's avatar
unknown committed
295 296
/* for recover() handlerton call */
#define MIN_XID_LIST_SIZE  128
unknown's avatar
unknown committed
297 298 299
#ifdef SAFEMALLOC
#define MAX_XID_LIST_SIZE  256
#else
unknown's avatar
unknown committed
300
#define MAX_XID_LIST_SIZE  (1024*128)
unknown's avatar
unknown committed
301
#endif
302

unknown's avatar
unknown committed
303 304
/*
  handlerton is a singleton structure - one instance per storage engine -
unknown's avatar
unknown committed
305 306
  to provide access to storage engine functionality that works on the
  "global" level (unlike handler class that works on a per-table basis)
unknown's avatar
unknown committed
307 308

  usually handlerton instance is defined statically in ha_xxx.cc as
309

unknown's avatar
unknown committed
310 311 312 313
  static handlerton { ... } xxx_hton;

  savepoint_*, prepare, recover, and *_by_xid pointers can be 0.
*/
314 315
typedef struct
{
unknown's avatar
unknown committed
316 317 318 319
  /*
    storage engine name as it should be printed to a user
  */
  const char *name;
320 321

  /*
unknown's avatar
foo1  
unknown committed
322
    Historical marker for if the engine is available of not
323 324 325 326 327 328 329 330 331 332 333 334 335
  */
  SHOW_COMP_OPTION state;

  /*
    A comment used by SHOW to describe an engine.
  */
  const char *comment;

  /*
    Historical number used for frm file to determine the correct storage engine.
    This is going away and new engines will just use "name" for this.
  */
  enum db_type db_type;
unknown's avatar
foo1  
unknown committed
336
  /*
337 338 339 340
    Method that initizlizes a storage engine
  */
  bool (*init)();

unknown's avatar
unknown committed
341 342 343 344 345 346 347 348 349
  /*
    each storage engine has it's own memory area (actually a pointer)
    in the thd, for storing per-connection information.
    It is accessed as

      thd->ha_data[xxx_hton.slot]

   slot number is initialized by MySQL after xxx_init() is called.
   */
unknown's avatar
unknown committed
350
   uint slot;
unknown's avatar
unknown committed
351 352 353 354 355 356 357 358 359
   /*
     to store per-savepoint data storage engine is provided with an area
     of a requested size (0 is ok here).
     savepoint_offset must be initialized statically to the size of
     the needed memory to store per-savepoint information.
     After xxx_init it is changed to be an offset to savepoint storage
     area and need not be used by storage engine.
     see binlog_hton and binlog_savepoint_set/rollback for an example.
   */
360
   uint savepoint_offset;
unknown's avatar
unknown committed
361 362 363 364 365 366 367 368
   /*
     handlerton methods:

     close_connection is only called if
     thd->ha_data[xxx_hton.slot] is non-zero, so even if you don't need
     this storage area - set it to something, so that MySQL would know
     this storage engine was accessed in this connection
   */
369
   int  (*close_connection)(THD *thd);
unknown's avatar
unknown committed
370 371 372 373
   /*
     sv points to an uninitialized storage area of requested size
     (see savepoint_offset description)
   */
374
   int  (*savepoint_set)(THD *thd, void *sv);
unknown's avatar
unknown committed
375 376 377 378
   /*
     sv points to a storage area, that was earlier passed
     to the savepoint_set call
   */
379 380
   int  (*savepoint_rollback)(THD *thd, void *sv);
   int  (*savepoint_release)(THD *thd, void *sv);
unknown's avatar
unknown committed
381 382 383 384 385 386 387
   /*
     'all' is true if it's a real commit, that makes persistent changes
     'all' is false if it's not in fact a commit but an end of the
     statement that is part of the transaction.
     NOTE 'all' is also false in auto-commit mode where 'end of statement'
     and 'real commit' mean the same event.
   */
388 389 390 391 392 393
   int  (*commit)(THD *thd, bool all);
   int  (*rollback)(THD *thd, bool all);
   int  (*prepare)(THD *thd, bool all);
   int  (*recover)(XID *xid_list, uint len);
   int  (*commit_by_xid)(XID *xid);
   int  (*rollback_by_xid)(XID *xid);
394 395 396
   void *(*create_cursor_read_view)();
   void (*set_cursor_read_view)(void *);
   void (*close_cursor_read_view)(void *);
397
   uint32 flags;                                /* global handler flags */
398 399
} handlerton;

400 401 402 403 404
struct show_table_alias_st {
  const char *alias;
  const char *type;
};

405
/* Possible flags of a handlerton */
406 407
#define HTON_NO_FLAGS                 0
#define HTON_CLOSE_CURSORS_AT_COMMIT (1 << 0)
408 409 410
#define HTON_ALTER_NOT_SUPPORTED     (1 << 1) //Engine does not support alter
#define HTON_CAN_RECREATE            (1 << 2) //Delete all is used fro truncate
#define HTON_HIDDEN                  (1 << 3) //Engine does not appear in lists
411

unknown's avatar
unknown committed
412 413
typedef struct st_thd_trans
{
unknown's avatar
unknown committed
414
  /* number of entries in the ht[] */
unknown's avatar
unknown committed
415
  uint        nht;
unknown's avatar
unknown committed
416
  /* true is not all entries in the ht[] support 2pc */
unknown's avatar
unknown committed
417
  bool        no_2pc;
unknown's avatar
unknown committed
418
  /* storage engines that registered themselves for this transaction */
unknown's avatar
unknown committed
419 420 421
  handlerton *ht[MAX_HA];
} THD_TRANS;

unknown's avatar
unknown committed
422 423 424
enum enum_tx_isolation { ISO_READ_UNCOMMITTED, ISO_READ_COMMITTED,
			 ISO_REPEATABLE_READ, ISO_SERIALIZABLE};

unknown's avatar
unknown committed
425 426
typedef struct st_ha_create_information
{
427
  CHARSET_INFO *table_charset, *default_table_charset;
428
  LEX_STRING connect_string;
unknown's avatar
unknown committed
429 430 431
  const char *comment,*password;
  const char *data_file_name, *index_file_name;
  const char *alias;
432 433 434 435
  ulonglong max_rows,min_rows;
  ulonglong auto_increment_value;
  ulong table_options;
  ulong avg_row_length;
unknown's avatar
unknown committed
436 437
  ulong raid_chunksize;
  ulong used_fields;
438
  SQL_LIST merge_list;
439 440
  enum db_type db_type;
  enum row_type row_type;
441
  uint null_bits;                       /* NULL bits at start of record */
442
  uint options;				/* OR of HA_CREATE_ options */
443
  uint raid_type,raid_chunks;
444
  uint merge_insert_method;
445
  uint extra_size;                      /* length of extra data segment */
446
  bool table_existed;			/* 1 in create if table existed */
447
  bool frm_only;                        /* 1 if no ha_create_table() */
448
  bool varchar;                         /* 1 if table has a VARCHAR */
unknown's avatar
unknown committed
449 450 451 452 453 454 455
} HA_CREATE_INFO;


/* The handler for a table type.  Will be included in the TABLE structure */

struct st_table;
typedef struct st_table TABLE;
456 457
struct st_foreign_key_info;
typedef struct st_foreign_key_info FOREIGN_KEY_INFO;
unknown's avatar
unknown committed
458

unknown's avatar
unknown committed
459 460 461
typedef struct st_savepoint SAVEPOINT;
extern ulong savepoint_alloc_size;

462
/* Forward declaration for condition pushdown to storage engine */
463
typedef class Item COND;
unknown's avatar
Merge  
unknown committed
464

unknown's avatar
unknown committed
465 466
typedef struct st_ha_check_opt
{
467
  st_ha_check_opt() {}                        /* Remove gcc warning */
unknown's avatar
unknown committed
468
  ulong sort_buffer_size;
unknown's avatar
unknown committed
469 470
  uint flags;       /* isam layer flags (e.g. for myisamchk) */
  uint sql_flags;   /* sql layer flags - for something myisamchk cannot do */
unknown's avatar
unknown committed
471
  KEY_CACHE *key_cache;	/* new key cache when changing key cache */
unknown's avatar
unknown committed
472
  void init();
unknown's avatar
unknown committed
473 474
} HA_CHECK_OPT;

475

unknown's avatar
unknown committed
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
/*
  This is a buffer area that the handler can use to store rows.
  'end_of_used_area' should be kept updated after calls to
  read-functions so that other parts of the code can use the
  remaining area (until next read calls is issued).
*/

typedef struct st_handler_buffer
{
  const byte *buffer;         /* Buffer one can start using */
  const byte *buffer_end;     /* End of buffer */
  byte *end_of_used_area;     /* End of area that was used by handler */
} HANDLER_BUFFER;


unknown's avatar
unknown committed
491 492 493 494 495
class handler :public Sql_alloc
{
 protected:
  struct st_table *table;		/* The table definition */

unknown's avatar
unknown committed
496 497 498 499 500 501 502 503 504 505 506 507
  virtual int index_init(uint idx) { active_index=idx; return 0; }
  virtual int index_end() { active_index=MAX_KEY; return 0; }
  /*
    rnd_init() can be called two times without rnd_end() in between
    (it only makes sense if scan=1).
    then the second call should prepare for the new table scan (e.g
    if rnd_init allocates the cursor, second call should position it
    to the start of the table, no need to deallocate and allocate it again
  */
  virtual int rnd_init(bool scan) =0;
  virtual int rnd_end() { return 0; }

unknown's avatar
unknown committed
508
public:
509
  const handlerton *ht;                 /* storage engine of this handler */
unknown's avatar
unknown committed
510 511 512 513 514 515 516 517
  byte *ref;				/* Pointer to current row */
  byte *dupp_ref;			/* Pointer to dupp row */
  ulonglong data_file_length;		/* Length off data file */
  ulonglong max_data_file_length;	/* Length off data file */
  ulonglong index_file_length;
  ulonglong max_index_file_length;
  ulonglong delete_length;		/* Free bytes */
  ulonglong auto_increment_value;
518 519
  ha_rows records;			/* Records in table */
  ha_rows deleted;			/* Deleted records */
unknown's avatar
unknown committed
520
  ulong raid_chunksize;
521
  ulong mean_rec_length;		/* physical reclength */
unknown's avatar
unknown committed
522 523 524
  time_t create_time;			/* When table was created */
  time_t check_time;
  time_t update_time;
525

unknown's avatar
unknown committed
526 527 528 529 530 531
  /* The following are for read_multi_range */
  bool multi_range_sorted;
  KEY_MULTI_RANGE *multi_range_curr;
  KEY_MULTI_RANGE *multi_range_end;
  HANDLER_BUFFER *multi_range_buffer;

532 533 534 535
  /* The following are for read_range() */
  key_range save_end_range, *end_range;
  KEY_PART_INFO *range_key_part;
  int key_compare_result_on_equal;
unknown's avatar
unknown committed
536
  bool eq_range;
537

538 539 540 541 542 543 544
  uint errkey;				/* Last dup key */
  uint sortkey, key_used_on_scan;
  uint active_index;
  /* Length of ref (1-8 or the clustered key length) */
  uint ref_length;
  uint block_size;			/* index block size */
  uint raid_type,raid_chunks;
unknown's avatar
unknown committed
545
  FT_INFO *ft_handler;
546
  enum {NONE=0, INDEX, RND} inited;
547
  bool  auto_increment_column_changed;
548
  bool implicit_emptied;                /* Can be !=0 only if HEAP */
549
  const COND *pushed_cond;
550

551 552
  handler(const handlerton *ht_arg, TABLE *table_arg) :table(table_arg),
    ht(ht_arg),
553 554 555 556
    ref(0), data_file_length(0), max_data_file_length(0), index_file_length(0),
    delete_length(0), auto_increment_value(0),
    records(0), deleted(0), mean_rec_length(0),
    create_time(0), check_time(0), update_time(0),
unknown's avatar
unknown committed
557
    key_used_on_scan(MAX_KEY), active_index(MAX_KEY),
558
    ref_length(sizeof(my_off_t)), block_size(0),
559 560
    raid_type(0), ft_handler(0), inited(NONE), implicit_emptied(0),
    pushed_cond(NULL)
unknown's avatar
unknown committed
561
    {}
unknown's avatar
unknown committed
562
  virtual ~handler(void) { /* TODO: DBUG_ASSERT(inited == NONE); */ }
unknown's avatar
unknown committed
563
  int ha_open(const char *name, int mode, int test_if_locked);
564
  bool update_auto_increment();
unknown's avatar
unknown committed
565
  virtual void print_error(int error, myf errflag);
566
  virtual bool get_error_message(int error, String *buf);
unknown's avatar
unknown committed
567 568 569
  uint get_dup_key(int error);
  void change_table_ptr(TABLE *table_arg) { table=table_arg; }
  virtual double scan_time()
570
    { return ulonglong2double(data_file_length) / IO_SIZE + 2; }
unknown's avatar
unknown committed
571 572
  virtual double read_time(uint index, uint ranges, ha_rows rows)
 { return rows2double(ranges+rows); }
unknown's avatar
unknown committed
573
  virtual const key_map *keys_to_use_for_scanning() { return &key_map_empty; }
unknown's avatar
unknown committed
574
  virtual bool has_transactions(){ return 0;}
unknown's avatar
unknown committed
575
  virtual uint extra_rec_buf_length() { return 0; }
unknown's avatar
foo1  
unknown committed
576

unknown's avatar
unknown committed
577 578 579 580 581 582 583 584
  /*
    Return upper bound of current number of records in the table
    (max. of how many records one will retrieve when doing a full table scan)
    If upper bound is not known, HA_POS_ERROR should be returned as a max
    possible upper bound.
  */
  virtual ha_rows estimate_rows_upper_bound()
  { return records+EXTRA_RECORDS; }
unknown's avatar
unknown committed
585

586 587 588 589 590 591
  /*
    Get the row type from the storage engine.  If this method returns
    ROW_TYPE_NOT_USED, the information in HA_CREATE_INFO should be used.
  */
  virtual enum row_type get_row_type() const { return ROW_TYPE_NOT_USED; }

unknown's avatar
unknown committed
592 593 594 595
  virtual const char *index_type(uint key_number) { DBUG_ASSERT(0); return "";}

  int ha_index_init(uint idx)
  {
unknown's avatar
unknown committed
596
    DBUG_ENTER("ha_index_init");
unknown's avatar
unknown committed
597 598
    DBUG_ASSERT(inited==NONE);
    inited=INDEX;
unknown's avatar
unknown committed
599
    DBUG_RETURN(index_init(idx));
unknown's avatar
unknown committed
600 601 602
  }
  int ha_index_end()
  {
unknown's avatar
unknown committed
603
    DBUG_ENTER("ha_index_end");
unknown's avatar
unknown committed
604 605
    DBUG_ASSERT(inited==INDEX);
    inited=NONE;
unknown's avatar
unknown committed
606
    DBUG_RETURN(index_end());
unknown's avatar
unknown committed
607
  }
608
  int ha_rnd_init(bool scan)
unknown's avatar
unknown committed
609
  {
unknown's avatar
unknown committed
610
    DBUG_ENTER("ha_rnd_init");
unknown's avatar
unknown committed
611 612
    DBUG_ASSERT(inited==NONE || (inited==RND && scan));
    inited=RND;
unknown's avatar
unknown committed
613
    DBUG_RETURN(rnd_init(scan));
unknown's avatar
unknown committed
614 615 616
  }
  int ha_rnd_end()
  {
unknown's avatar
unknown committed
617
    DBUG_ENTER("ha_rnd_end");
unknown's avatar
unknown committed
618 619
    DBUG_ASSERT(inited==RND);
    inited=NONE;
unknown's avatar
unknown committed
620
    DBUG_RETURN(rnd_end());
unknown's avatar
unknown committed
621
  }
unknown's avatar
unknown committed
622
  /* this is necessary in many places, e.g. in HANDLER command */
unknown's avatar
unknown committed
623 624 625 626
  int ha_index_or_rnd_end()
  {
    return inited == INDEX ? ha_index_end() : inited == RND ? ha_rnd_end() : 0;
  }
unknown's avatar
unknown committed
627
  uint get_index(void) const { return active_index; }
628
  virtual int open(const char *name, int mode, uint test_if_locked)=0;
unknown's avatar
unknown committed
629
  virtual int close(void)=0;
unknown's avatar
unknown committed
630 631 632 633 634
  virtual int write_row(byte * buf) { return  HA_ERR_WRONG_COMMAND; }
  virtual int update_row(const byte * old_data, byte * new_data)
   { return  HA_ERR_WRONG_COMMAND; }
  virtual int delete_row(const byte * buf)
   { return  HA_ERR_WRONG_COMMAND; }
unknown's avatar
unknown committed
635
  virtual int index_read(byte * buf, const byte * key,
unknown's avatar
unknown committed
636 637
			 uint key_len, enum ha_rkey_function find_flag)
   { return  HA_ERR_WRONG_COMMAND; }
unknown's avatar
unknown committed
638
  virtual int index_read_idx(byte * buf, uint index, const byte * key,
unknown's avatar
unknown committed
639 640 641 642 643 644 645 646 647
			     uint key_len, enum ha_rkey_function find_flag);
  virtual int index_next(byte * buf)
   { return  HA_ERR_WRONG_COMMAND; }
  virtual int index_prev(byte * buf)
   { return  HA_ERR_WRONG_COMMAND; }
  virtual int index_first(byte * buf)
   { return  HA_ERR_WRONG_COMMAND; }
  virtual int index_last(byte * buf)
   { return  HA_ERR_WRONG_COMMAND; }
unknown's avatar
unknown committed
648
  virtual int index_next_same(byte *buf, const byte *key, uint keylen);
649
  virtual int index_read_last(byte * buf, const byte * key, uint key_len)
unknown's avatar
unknown committed
650
   { return (my_errno=HA_ERR_WRONG_COMMAND); }
unknown's avatar
unknown committed
651 652 653 654
  virtual int read_multi_range_first(KEY_MULTI_RANGE **found_range_p,
                                     KEY_MULTI_RANGE *ranges, uint range_count,
                                     bool sorted, HANDLER_BUFFER *buffer);
  virtual int read_multi_range_next(KEY_MULTI_RANGE **found_range_p);
655
  virtual int read_range_first(const key_range *start_key,
unknown's avatar
unknown committed
656 657 658
                               const key_range *end_key,
                               bool eq_range, bool sorted);
  virtual int read_range_next();
659
  int compare_key(key_range *range);
unknown's avatar
unknown committed
660
  virtual int ft_init() { return HA_ERR_WRONG_COMMAND; }
unknown's avatar
unknown committed
661
  void ft_end() { ft_handler=NULL; }
662
  virtual FT_INFO *ft_init_ext(uint flags, uint inx,String *key)
unknown's avatar
unknown committed
663
    { return NULL; }
unknown's avatar
unknown committed
664
  virtual int ft_read(byte *buf) { return HA_ERR_WRONG_COMMAND; }
unknown's avatar
unknown committed
665 666
  virtual int rnd_next(byte *buf)=0;
  virtual int rnd_pos(byte * buf, byte *pos)=0;
667
  virtual int read_first_row(byte *buf, uint primary_key);
unknown's avatar
unknown committed
668 669 670 671 672 673 674 675
  /*
    The following function is only needed for tables that may be temporary
    tables during joins
  */
  virtual int restart_rnd_next(byte *buf, byte *pos)
    { return HA_ERR_WRONG_COMMAND; }
  virtual int rnd_same(byte *buf, uint inx)
    { return HA_ERR_WRONG_COMMAND; }
unknown's avatar
unknown committed
676 677
  virtual ha_rows records_in_range(uint inx, key_range *min_key,
                                   key_range *max_key)
unknown's avatar
unknown committed
678 679
    { return (ha_rows) 10; }
  virtual void position(const byte *record)=0;
unknown's avatar
unknown committed
680
  virtual void info(uint)=0; // see my_base.h for full description
unknown's avatar
unknown committed
681 682
  virtual int extra(enum ha_extra_function operation)
  { return 0; }
unknown's avatar
unknown committed
683
  virtual int extra_opt(enum ha_extra_function operation, ulong cache_size)
unknown's avatar
unknown committed
684
  { return extra(operation); }
685
  virtual int reset() { return extra(HA_EXTRA_RESET); }
686
  virtual int external_lock(THD *thd, int lock_type) { return 0; }
unknown's avatar
unknown committed
687
  virtual void unlock_row() {}
unknown's avatar
unknown committed
688
  virtual int start_stmt(THD *thd, thr_lock_type lock_type) {return 0;}
unknown's avatar
unknown committed
689 690 691 692 693 694 695 696
  /*
    This is called to delete all rows in a table
    If the handler don't support this, then this function will
    return HA_ERR_WRONG_COMMAND and MySQL will delete the rows one
    by one.
  */
  virtual int delete_all_rows()
  { return (my_errno=HA_ERR_WRONG_COMMAND); }
697 698
  virtual ulonglong get_auto_increment();
  virtual void restore_auto_increment();
699

unknown's avatar
unknown committed
700 701 702 703 704 705 706
  /*
    Reset the auto-increment counter to the given value, i.e. the next row
    inserted will get the given value. This is called e.g. after TRUNCATE
    is emulated by doing a 'DELETE FROM t'. HA_ERR_WRONG_COMMAND is
    returned by storage engines that don't support this operation.
  */
  virtual int reset_auto_increment(ulonglong value)
707 708
  { return HA_ERR_WRONG_COMMAND; }

unknown's avatar
unknown committed
709
  virtual void update_create_info(HA_CREATE_INFO *create_info) {}
unknown's avatar
unknown committed
710 711
protected:
  /* to be implemented in handlers */
unknown's avatar
unknown committed
712 713 714 715

  /* admin commands - called from mysql_admin_table */
  virtual int check(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
unknown's avatar
unknown committed
716 717 718 719 720 721 722 723 724 725 726 727 728

  /*
     in these two methods check_opt can be modified
     to specify CHECK option to use to call check()
     upon the table
  */
  virtual int check_for_upgrade(HA_CHECK_OPT *check_opt)
  { return 0; }
public:
  int ha_check_for_upgrade(HA_CHECK_OPT *check_opt);
  int check_old_types();
  /* to be actually called to get 'check()' functionality*/
  int ha_check(THD *thd, HA_CHECK_OPT *check_opt);
unknown's avatar
foo1  
unknown committed
729

unknown's avatar
unknown committed
730 731
  virtual int backup(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
unknown's avatar
unknown committed
732 733 734 735
  /*
    restore assumes .frm file must exist, and that generate_table() has been
    called; It will just copy the data file and run repair.
  */
unknown's avatar
unknown committed
736 737
  virtual int restore(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
unknown's avatar
unknown committed
738
protected:
unknown's avatar
unknown committed
739 740
  virtual int repair(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
unknown's avatar
unknown committed
741 742
public:
  int ha_repair(THD* thd, HA_CHECK_OPT* check_opt);
unknown's avatar
unknown committed
743 744 745 746 747 748 749 750 751 752 753 754
  virtual int optimize(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
  virtual int analyze(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
  virtual int assign_to_keycache(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
  virtual int preload_keys(THD* thd, HA_CHECK_OPT* check_opt)
  { return HA_ADMIN_NOT_IMPLEMENTED; }
  /* end of the list of admin commands */

  virtual bool check_and_repair(THD *thd) { return HA_ERR_WRONG_COMMAND; }
  virtual int dump(THD* thd, int fd = -1) { return HA_ERR_WRONG_COMMAND; }
755 756 757
  virtual int disable_indexes(uint mode) { return HA_ERR_WRONG_COMMAND; }
  virtual int enable_indexes(uint mode) { return HA_ERR_WRONG_COMMAND; }
  virtual int indexes_are_disabled(void) {return 0;}
758 759
  virtual void start_bulk_insert(ha_rows rows) {}
  virtual int end_bulk_insert() {return 0; }
unknown's avatar
unknown committed
760 761 762
  virtual int discard_or_import_tablespace(my_bool discard)
  {return HA_ERR_WRONG_COMMAND;}
  virtual int net_read_dump(NET* net) { return HA_ERR_WRONG_COMMAND; }
763 764 765
  virtual char *update_table_comment(const char * comment)
  { return (char*) comment;}
  virtual void append_create_info(String *packet) {}
unknown's avatar
unknown committed
766 767
  virtual char* get_foreign_key_create_info()
  { return(NULL);}  /* gets foreign key create string from InnoDB */
768 769
  /* used in ALTER TABLE; 1 if changing storage engine is allowed */
  virtual bool can_switch_engines() { return 1; }
unknown's avatar
unknown committed
770
  /* used in REPLACE; is > 0 if table is referred by a FOREIGN KEY */
771 772
  virtual int get_foreign_key_list(THD *thd, List<FOREIGN_KEY_INFO> *f_key_list)
  { return 0; }
unknown's avatar
unknown committed
773
  virtual uint referenced_by_foreign_key() { return 0;}
unknown's avatar
unknown committed
774
  virtual void init_table_handle_for_HANDLER()
unknown's avatar
unknown committed
775 776
  { return; }       /* prepare InnoDB for HANDLER */
  virtual void free_foreign_key_create_info(char* str) {}
unknown's avatar
unknown committed
777 778 779
  /* The following can be called without an open handler */
  virtual const char *table_type() const =0;
  virtual const char **bas_ext() const =0;
unknown's avatar
unknown committed
780
  virtual ulong table_flags(void) const =0;
781
  virtual ulong index_flags(uint idx, uint part, bool all_parts) const =0;
782
  virtual ulong index_ddl_flags(KEY *wanted_index) const
unknown's avatar
unknown committed
783
  { return (HA_DDL_SUPPORT); }
784
  virtual int add_index(TABLE *table_arg, KEY *key_info, uint num_of_keys)
unknown's avatar
unknown committed
785
  { return (HA_ERR_WRONG_COMMAND); }
786
  virtual int drop_index(TABLE *table_arg, uint *key_num, uint num_of_keys)
unknown's avatar
unknown committed
787 788 789 790 791 792 793 794 795 796
  { return (HA_ERR_WRONG_COMMAND); }

  uint max_record_length() const
  { return min(HA_MAX_REC_LENGTH, max_supported_record_length()); }
  uint max_keys() const
  { return min(MAX_KEY, max_supported_keys()); }
  uint max_key_parts() const
  { return min(MAX_REF_PARTS, max_supported_key_parts()); }
  uint max_key_length() const
  { return min(MAX_KEY_LENGTH, max_supported_key_length()); }
unknown's avatar
unknown committed
797
  uint max_key_part_length() const
unknown's avatar
unknown committed
798 799 800 801 802 803
  { return min(MAX_KEY_LENGTH, max_supported_key_part_length()); }

  virtual uint max_supported_record_length() const { return HA_MAX_REC_LENGTH; }
  virtual uint max_supported_keys() const { return 0; }
  virtual uint max_supported_key_parts() const { return MAX_REF_PARTS; }
  virtual uint max_supported_key_length() const { return MAX_KEY_LENGTH; }
804
  virtual uint max_supported_key_part_length() const { return 255; }
unknown's avatar
unknown committed
805
  virtual uint min_record_length(uint options) const { return 1; }
unknown's avatar
unknown committed
806

unknown's avatar
unknown committed
807
  virtual bool low_byte_first() const { return 1; }
unknown's avatar
unknown committed
808
  virtual uint checksum() const { return 0; }
809 810
  virtual bool is_crashed() const  { return 0; }
  virtual bool auto_repair() const { return 0; }
unknown's avatar
unknown committed
811

unknown's avatar
unknown committed
812 813 814 815
  /*
    default rename_table() and delete_table() rename/delete files with a
    given name and extensions from bas_ext()
  */
unknown's avatar
unknown committed
816 817
  virtual int rename_table(const char *from, const char *to);
  virtual int delete_table(const char *name);
unknown's avatar
foo1  
unknown committed
818

unknown's avatar
unknown committed
819
  virtual int create(const char *name, TABLE *form, HA_CREATE_INFO *info)=0;
unknown's avatar
unknown committed
820 821

  /* lock_count() can be more than one if the table is a MERGE */
unknown's avatar
unknown committed
822 823 824 825
  virtual uint lock_count(void) const { return 1; }
  virtual THR_LOCK_DATA **store_lock(THD *thd,
				     THR_LOCK_DATA **to,
				     enum thr_lock_type lock_type)=0;
826 827 828

  /* Type of table for caching query */
  virtual uint8 table_cache_type() { return HA_CACHE_TBL_NONTRANSACT; }
unknown's avatar
unknown committed
829 830 831
  /* ask handler about permission to cache table when query is to be cached */
  virtual my_bool register_query_cache_table(THD *thd, char *table_key,
					     uint key_length,
unknown's avatar
foo1  
unknown committed
832
					     qc_engine_callback
unknown's avatar
unknown committed
833 834
					     *engine_callback,
					     ulonglong *engine_data)
unknown's avatar
unknown committed
835 836 837 838
  {
    *engine_callback= 0;
    return 1;
  }
unknown's avatar
unknown committed
839 840 841 842 843 844 845 846 847 848 849
 /*
  RETURN
    true  Primary key (if there is one) is clustered key covering all fields
    false otherwise
 */
 virtual bool primary_key_is_clustered() { return FALSE; }

 virtual int cmp_ref(const byte *ref1, const byte *ref2)
 {
   return memcmp(ref1, ref2, ref_length);
 }
unknown's avatar
foo1  
unknown committed
850

unknown's avatar
Merge  
unknown committed
851 852 853
 /*
   Condition pushdown to storage engines
 */
854

855 856 857 858
 /*
   Push condition down to the table handler.
   SYNOPSIS
     cond_push()
unknown's avatar
foo1  
unknown committed
859
     cond   Condition to be pushed. The condition tree must not be
860 861 862 863 864 865 866 867
     modified by the by the caller.
   RETURN
     The 'remainder' condition that caller must use to filter out records.
     NULL means the handler will not return rows that do not match the
     passed condition.
   NOTES
   The pushed conditions form a stack (from which one can remove the
   last pushed condition using cond_pop).
unknown's avatar
foo1  
unknown committed
868
   The table handler filters out rows using (pushed_cond1 AND pushed_cond2
869 870
   AND ... AND pushed_condN)
   or less restrictive condition, depending on handler's capabilities.
unknown's avatar
foo1  
unknown committed
871

872 873 874
   handler->extra(HA_EXTRA_RESET) call empties the condition stack.
   Calls to rnd_init/rnd_end, index_init/index_end etc do not affect the
   condition stack.
unknown's avatar
foo1  
unknown committed
875
 */
unknown's avatar
Merge  
unknown committed
876
 virtual const COND *cond_push(const COND *cond) { return cond; };
877 878 879 880 881 882
 /*
   Pop the top condition from the condition stack of the handler instance.
   SYNOPSIS
     cond_pop()
     Pops the top if condition stack, if stack is not empty
 */
unknown's avatar
Merge  
unknown committed
883
 virtual void cond_pop() { return; };
unknown's avatar
unknown committed
884 885 886 887
};

	/* Some extern variables used with handlers */

888
extern handlerton *sys_table_types[];
unknown's avatar
unknown committed
889
extern const char *ha_row_type[];
890
extern TYPELIB tx_isolation_typelib;
891
extern TYPELIB myisam_stats_method_typelib;
unknown's avatar
unknown committed
892
extern ulong total_ha, total_ha_2pc;
unknown's avatar
unknown committed
893

894
	/* Wrapper functions */
unknown's avatar
unknown committed
895 896 897 898
#define ha_commit_stmt(thd) (ha_commit_trans((thd), FALSE))
#define ha_rollback_stmt(thd) (ha_rollback_trans((thd), FALSE))
#define ha_commit(thd) (ha_commit_trans((thd), TRUE))
#define ha_rollback(thd) (ha_rollback_trans((thd), TRUE))
899

unknown's avatar
unknown committed
900
/* lookups */
901
enum db_type ha_resolve_by_name(const char *name, uint namelen);
unknown's avatar
unknown committed
902
const char *ha_get_storage_engine(enum db_type db_type);
903
handler *get_new_handler(TABLE *table, MEM_ROOT *alloc, enum db_type db_type);
904 905
enum db_type ha_checktype(THD *thd, enum db_type database_type,
                          bool no_substitute, bool report_error);
906
bool ha_check_storage_engine_flag(enum db_type db_type, uint32 flag);
unknown's avatar
unknown committed
907 908

/* basic stuff */
unknown's avatar
unknown committed
909
int ha_init(void);
unknown's avatar
unknown committed
910
TYPELIB *ha_known_exts(void);
unknown's avatar
unknown committed
911
int ha_panic(enum ha_panic_function flag);
unknown's avatar
unknown committed
912
int ha_update_statistics();
913
void ha_close_connection(THD* thd);
914
my_bool ha_storage_engine_is_enabled(enum db_type database_type);
unknown's avatar
unknown committed
915 916
bool ha_flush_logs(void);
void ha_drop_database(char* path);
unknown's avatar
unknown committed
917 918
int ha_create_table(const char *name, HA_CREATE_INFO *create_info,
		    bool update_create_info);
919 920
int ha_delete_table(THD *thd, enum db_type db_type, const char *path,
                    const char *alias, bool generate_warning);
unknown's avatar
unknown committed
921 922

/* discovery */
923
int ha_create_table_from_engine(THD* thd, const char *db, const char *name);
unknown's avatar
unknown committed
924 925 926 927
int ha_discover(THD* thd, const char* dbname, const char* name,
                const void** frmblob, uint* frmlen);
int ha_find_files(THD *thd,const char *db,const char *path,
                  const char *wild, bool dir,List<char>* files);
unknown's avatar
unknown committed
928
int ha_table_exists_in_engine(THD* thd, const char* db, const char* name);
unknown's avatar
unknown committed
929 930

/* key cache */
unknown's avatar
unknown committed
931 932 933
int ha_init_key_cache(const char *name, KEY_CACHE *key_cache);
int ha_resize_key_cache(KEY_CACHE *key_cache);
int ha_change_key_cache_param(KEY_CACHE *key_cache);
unknown's avatar
unknown committed
934
int ha_change_key_cache(KEY_CACHE *old_key_cache, KEY_CACHE *new_key_cache);
unknown's avatar
unknown committed
935
int ha_end_key_cache(KEY_CACHE *key_cache);
unknown's avatar
unknown committed
936

unknown's avatar
unknown committed
937
/* report to InnoDB that control passes to the client */
938
int ha_release_temporary_latches(THD *thd);
unknown's avatar
unknown committed
939 940 941

/* transactions: interface to handlerton functions */
int ha_start_consistent_snapshot(THD *thd);
unknown's avatar
unknown committed
942
int ha_commit_or_rollback_by_xid(XID *xid, bool commit);
unknown's avatar
unknown committed
943 944 945 946 947 948 949
int ha_commit_one_phase(THD *thd, bool all);
int ha_rollback_trans(THD *thd, bool all);
int ha_prepare(THD *thd);
int ha_recover(HASH *commit_list);

/* transactions: these functions never call handlerton functions directly */
int ha_commit_trans(THD *thd, bool all);
unknown's avatar
unknown committed
950
int ha_autocommit_or_rollback(THD *thd, int error);
951
int ha_enable_transaction(THD *thd, bool on);
unknown's avatar
unknown committed
952 953 954 955 956 957

/* savepoints */
int ha_rollback_to_savepoint(THD *thd, SAVEPOINT *sv);
int ha_savepoint(THD *thd, SAVEPOINT *sv);
int ha_release_savepoint(THD *thd, SAVEPOINT *sv);

unknown's avatar
unknown committed
958 959 960 961 962 963 964 965 966 967 968
/* these are called by storage engines */
void trans_register_ha(THD *thd, bool all, handlerton *ht);

/*
  Storage engine has to assume the transaction will end up with 2pc if
   - there is more than one 2pc-capable storage engine available
   - in the current transaction 2pc was not disabled yet
*/
#define trans_need_2pc(thd, all)                   ((total_ha_2pc > 1) && \
        !((all ? &thd->transaction.all : &thd->transaction.stmt)->no_2pc))

unknown's avatar
unknown committed
969 970 971 972
/* semi-synchronous replication */
int ha_repl_report_sent_binlog(THD *thd, char *log_file_name,
                               my_off_t end_offset);
int ha_repl_report_replication_stop(THD *thd);