handler.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:47k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Handler-calling-functions */
  14. #ifdef USE_PRAGMA_IMPLEMENTATION
  15. #pragma implementation // gcc: Class implementation
  16. #endif
  17. #include "mysql_priv.h"
  18. #include "ha_heap.h"
  19. #include "ha_myisam.h"
  20. #include "ha_myisammrg.h"
  21. #ifdef HAVE_ISAM
  22. #include "ha_isam.h"
  23. #include "ha_isammrg.h"
  24. #endif
  25. #ifdef HAVE_BERKELEY_DB
  26. #include "ha_berkeley.h"
  27. #endif
  28. #ifdef HAVE_BLACKHOLE_DB
  29. #include "ha_blackhole.h"
  30. #endif
  31. #ifdef HAVE_EXAMPLE_DB
  32. #include "examples/ha_example.h"
  33. #endif
  34. #ifdef HAVE_ARCHIVE_DB
  35. #include "examples/ha_archive.h"
  36. #endif
  37. #ifdef HAVE_CSV_DB
  38. #include "examples/ha_tina.h"
  39. #endif
  40. #ifdef HAVE_INNOBASE_DB
  41. #include "ha_innodb.h"
  42. #endif
  43. #ifdef HAVE_NDBCLUSTER_DB
  44. #include "ha_ndbcluster.h"
  45. #endif
  46. #include <myisampack.h>
  47. #include <errno.h>
  48. /* static functions defined in this file */
  49. static int NEAR_F delete_file(const char *name,const char *ext,int extflag);
  50. ulong ha_read_count, ha_write_count, ha_delete_count, ha_update_count,
  51.       ha_read_key_count, ha_read_next_count, ha_read_prev_count,
  52.       ha_read_first_count, ha_read_last_count,
  53.       ha_commit_count, ha_rollback_count,
  54.       ha_read_rnd_count, ha_read_rnd_next_count, ha_discover_count;
  55. static SHOW_COMP_OPTION have_yes= SHOW_OPTION_YES;
  56. struct show_table_type_st sys_table_types[]=
  57. {
  58.   {"MyISAM", &have_yes,
  59.    "Default engine as of MySQL 3.23 with great performance", DB_TYPE_MYISAM},
  60.   {"HEAP", &have_yes,
  61.    "Alias for MEMORY", DB_TYPE_HEAP},
  62.   {"MEMORY", &have_yes,
  63.    "Hash based, stored in memory, useful for temporary tables", DB_TYPE_HEAP},
  64.   {"MERGE", &have_yes,
  65.    "Collection of identical MyISAM tables", DB_TYPE_MRG_MYISAM},
  66.   {"MRG_MYISAM",&have_yes,
  67.    "Alias for MERGE", DB_TYPE_MRG_MYISAM},
  68.   {"ISAM", &have_isam,
  69.    "Obsolete storage engine, now replaced by MyISAM", DB_TYPE_ISAM},
  70.   {"MRG_ISAM",  &have_isam,
  71.    "Obsolete storage engine, now replaced by MERGE", DB_TYPE_MRG_ISAM},
  72.   {"InnoDB", &have_innodb,
  73.    "Supports transactions, row-level locking, and foreign keys", DB_TYPE_INNODB},
  74.   {"INNOBASE", &have_innodb,
  75.    "Alias for INNODB", DB_TYPE_INNODB},
  76.   {"BDB", &have_berkeley_db,
  77.    "Supports transactions and page-level locking", DB_TYPE_BERKELEY_DB},
  78.   {"BERKELEYDB",&have_berkeley_db,
  79.    "Alias for BDB", DB_TYPE_BERKELEY_DB},
  80.   {"NDBCLUSTER", &have_ndbcluster,
  81.    "Clustered, fault-tolerant, memory-based tables", DB_TYPE_NDBCLUSTER},
  82.   {"NDB", &have_ndbcluster,
  83.    "Alias for NDBCLUSTER", DB_TYPE_NDBCLUSTER},
  84.   {"EXAMPLE",&have_example_db,
  85.    "Example storage engine", DB_TYPE_EXAMPLE_DB},
  86.   {"ARCHIVE",&have_archive_db,
  87.    "Archive storage engine", DB_TYPE_ARCHIVE_DB},
  88.   {"CSV",&have_csv_db,
  89.    "CSV storage engine", DB_TYPE_CSV_DB},
  90.   {"BLACKHOLE",&have_blackhole_db,
  91.    "Storage engine designed to act as null storage", DB_TYPE_BLACKHOLE_DB},
  92.   {NullS, NULL, NullS, DB_TYPE_UNKNOWN}
  93. };
  94. const char *ha_row_type[] = {
  95.   "", "FIXED", "DYNAMIC", "COMPRESSED","?","?","?"
  96. };
  97. const char *tx_isolation_names[] =
  98. { "READ-UNCOMMITTED", "READ-COMMITTED", "REPEATABLE-READ", "SERIALIZABLE",
  99.   NullS};
  100. TYPELIB tx_isolation_typelib= {array_elements(tx_isolation_names)-1,"",
  101.        tx_isolation_names, NULL};
  102. static TYPELIB known_extensions= {0,"known_exts", NULL, NULL};
  103. uint known_extensions_id= 0;
  104. enum db_type ha_resolve_by_name(const char *name, uint namelen)
  105. {
  106.   THD *thd=current_thd;
  107.   if (thd && !my_strcasecmp(&my_charset_latin1, name, "DEFAULT")) {
  108.     return (enum db_type) thd->variables.table_type;
  109.   }
  110.   
  111.   show_table_type_st *types;
  112.   for (types= sys_table_types; types->type; types++)
  113.   {
  114.     if (!my_strcasecmp(&my_charset_latin1, name, types->type))
  115.       return (enum db_type) types->db_type;
  116.   }
  117.   return DB_TYPE_UNKNOWN;
  118. }
  119. const char *ha_get_storage_engine(enum db_type db_type)
  120. {
  121.   show_table_type_st *types;
  122.   for (types= sys_table_types; types->type; types++)
  123.   {
  124.     if (db_type == types->db_type)
  125.       return types->type;
  126.   }
  127.   
  128.   return "none";
  129. }
  130. my_bool ha_storage_engine_is_enabled(enum db_type database_type)
  131. {
  132.   show_table_type_st *types;
  133.   for (types= sys_table_types; types->type; types++)
  134.   {
  135.     if ((database_type == types->db_type) &&
  136. (*types->value == SHOW_OPTION_YES))
  137.       return TRUE;
  138.   }
  139.   return FALSE;
  140. }
  141. /* Use other database handler if databasehandler is not incompiled */
  142. enum db_type ha_checktype(enum db_type database_type)
  143. {
  144.   if (ha_storage_engine_is_enabled(database_type))
  145.     return database_type;
  146.   switch (database_type) {
  147. #ifndef NO_HASH
  148.   case DB_TYPE_HASH:
  149.     return (database_type);
  150. #endif
  151.   case DB_TYPE_MRG_ISAM:
  152.     return (DB_TYPE_MRG_MYISAM);
  153.   default:
  154.     break;
  155.   }
  156.   
  157.   return 
  158.     DB_TYPE_UNKNOWN != (enum db_type) current_thd->variables.table_type ?
  159.     (enum db_type) current_thd->variables.table_type :
  160.     DB_TYPE_UNKNOWN != (enum db_type) global_system_variables.table_type ?
  161.     (enum db_type) global_system_variables.table_type :
  162.     DB_TYPE_MYISAM;
  163. } /* ha_checktype */
  164. handler *get_new_handler(TABLE *table, enum db_type db_type)
  165. {
  166.   switch (db_type) {
  167. #ifndef NO_HASH
  168.   case DB_TYPE_HASH:
  169.     return new ha_hash(table);
  170. #endif
  171. #ifdef HAVE_ISAM
  172.   case DB_TYPE_MRG_ISAM:
  173.     return new ha_isammrg(table);
  174.   case DB_TYPE_ISAM:
  175.     return new ha_isam(table);
  176. #else
  177.   case DB_TYPE_MRG_ISAM:
  178.     return new ha_myisammrg(table);
  179. #endif
  180. #ifdef HAVE_BERKELEY_DB
  181.   case DB_TYPE_BERKELEY_DB:
  182.     return new ha_berkeley(table);
  183. #endif
  184. #ifdef HAVE_INNOBASE_DB
  185.   case DB_TYPE_INNODB:
  186.     return new ha_innobase(table);
  187. #endif
  188. #ifdef HAVE_EXAMPLE_DB
  189.   case DB_TYPE_EXAMPLE_DB:
  190.     return new ha_example(table);
  191. #endif
  192. #ifdef HAVE_ARCHIVE_DB
  193.   case DB_TYPE_ARCHIVE_DB:
  194.     return new ha_archive(table);
  195. #endif
  196. #ifdef HAVE_BLACKHOLE_DB
  197.   case DB_TYPE_BLACKHOLE_DB:
  198.     return new ha_blackhole(table);
  199. #endif
  200. #ifdef HAVE_CSV_DB
  201.   case DB_TYPE_CSV_DB:
  202.     return new ha_tina(table);
  203. #endif
  204. #ifdef HAVE_NDBCLUSTER_DB
  205.   case DB_TYPE_NDBCLUSTER:
  206.     return new ha_ndbcluster(table);
  207. #endif
  208.   case DB_TYPE_HEAP:
  209.     return new ha_heap(table);
  210.   default: // should never happen
  211.   {
  212.     enum db_type def=(enum db_type) current_thd->variables.table_type;
  213.     /* Try first with 'default table type' */
  214.     if (db_type != def)
  215.       return get_new_handler(table, def);
  216.   }
  217.   /* Fall back to MyISAM */
  218.   case DB_TYPE_MYISAM:
  219.     return new ha_myisam(table);
  220.   case DB_TYPE_MRG_MYISAM:
  221.     return new ha_myisammrg(table);
  222.   }
  223. }
  224. bool ha_caching_allowed(THD* thd, char* table_key,
  225.                         uint key_length, uint8 cache_type)
  226. {
  227. #ifdef HAVE_INNOBASE_DB
  228.   if (cache_type == HA_CACHE_TBL_ASKTRANSACT)
  229.     return innobase_query_caching_of_table_permitted(thd, table_key, key_length);
  230. #endif
  231.   return 1;
  232. }
  233. int ha_init()
  234. {
  235.   int error= 0;
  236. #ifdef HAVE_BERKELEY_DB
  237.   if (have_berkeley_db == SHOW_OPTION_YES)
  238.   {
  239.     if (berkeley_init())
  240.     {
  241.       have_berkeley_db= SHOW_OPTION_DISABLED; // If we couldn't use handler
  242.       error= 1;
  243.     }
  244.     else
  245.       opt_using_transactions=1;
  246.   }
  247. #endif
  248. #ifdef HAVE_INNOBASE_DB
  249.   if (have_innodb == SHOW_OPTION_YES)
  250.   {
  251.     if (innobase_init())
  252.     {
  253.       have_innodb= SHOW_OPTION_DISABLED; // If we couldn't use handler
  254.       error= 1;
  255.     }
  256.     else
  257.       opt_using_transactions=1;
  258.   }
  259. #endif
  260. #ifdef HAVE_NDBCLUSTER_DB
  261.   if (have_ndbcluster == SHOW_OPTION_YES)
  262.   {
  263.     if (ndbcluster_init())
  264.     {
  265.       have_ndbcluster= SHOW_OPTION_DISABLED;
  266.       error= 1;
  267.     }
  268.     else
  269.       opt_using_transactions=1;
  270.   }
  271. #endif
  272. #ifdef HAVE_ARCHIVE_DB
  273.   if (have_archive_db == SHOW_OPTION_YES)
  274.   {
  275.     if (archive_db_init())
  276.     {
  277.       have_archive_db= SHOW_OPTION_DISABLED;
  278.       error= 1;
  279.     }
  280.   }
  281. #endif
  282.   return error;
  283. }
  284. /* close, flush or restart databases */
  285. /* Ignore this for other databases than ours */
  286. int ha_panic(enum ha_panic_function flag)
  287. {
  288.   int error=0;
  289. #ifndef NO_HASH
  290.   error|=h_panic(flag); /* fix hash */
  291. #endif
  292. #ifdef HAVE_ISAM
  293.   error|=mrg_panic(flag);
  294.   error|=nisam_panic(flag);
  295. #endif
  296.   error|=heap_panic(flag);
  297.   error|=mi_panic(flag);
  298.   error|=myrg_panic(flag);
  299. #ifdef HAVE_BERKELEY_DB
  300.   if (have_berkeley_db == SHOW_OPTION_YES)
  301.     error|=berkeley_end();
  302. #endif
  303. #ifdef HAVE_INNOBASE_DB
  304.   if (have_innodb == SHOW_OPTION_YES)
  305.     error|=innobase_end();
  306. #endif
  307. #ifdef HAVE_NDBCLUSTER_DB
  308.   if (have_ndbcluster == SHOW_OPTION_YES)
  309.     error|=ndbcluster_end();
  310. #endif
  311. #ifdef HAVE_ARCHIVE_DB
  312.   if (have_archive_db == SHOW_OPTION_YES)
  313.     error|= archive_db_end();
  314. #endif
  315.   return error;
  316. } /* ha_panic */
  317. void ha_drop_database(char* path)
  318. {
  319. #ifdef HAVE_INNOBASE_DB
  320.   if (have_innodb == SHOW_OPTION_YES)
  321.     innobase_drop_database(path);
  322. #endif
  323. #ifdef HAVE_NDBCLUSTER_DB
  324.   if (have_ndbcluster == SHOW_OPTION_YES)
  325.     ndbcluster_drop_database(path);
  326. #endif
  327. }
  328. void ha_close_connection(THD* thd)
  329. {
  330. #ifdef HAVE_INNOBASE_DB
  331.   if (have_innodb == SHOW_OPTION_YES)
  332.     innobase_close_connection(thd);
  333. #endif
  334. #ifdef HAVE_NDBCLUSTER_DB
  335.   if (have_ndbcluster == SHOW_OPTION_YES)
  336.     ndbcluster_close_connection(thd);
  337. #endif
  338. }
  339. /*
  340.   This is used to commit or rollback a single statement depending on the value
  341.   of error. Note that if the autocommit is on, then the following call inside
  342.   InnoDB will commit or rollback the whole transaction (= the statement). The
  343.   autocommit mechanism built into InnoDB is based on counting locks, but if
  344.   the user has used LOCK TABLES then that mechanism does not know to do the
  345.   commit.
  346. */
  347. int ha_autocommit_or_rollback(THD *thd, int error)
  348. {
  349.   DBUG_ENTER("ha_autocommit_or_rollback");
  350. #ifdef USING_TRANSACTIONS
  351.   if (opt_using_transactions)
  352.   {
  353.     if (!error)
  354.     {
  355.       if (ha_commit_stmt(thd))
  356. error=1;
  357.     }
  358.     else
  359.       (void) ha_rollback_stmt(thd);
  360.     thd->variables.tx_isolation=thd->session_tx_isolation;
  361.   }
  362. #endif
  363.   DBUG_RETURN(error);
  364. }
  365. /*
  366.   This function is called when MySQL writes the log segment of a
  367.   transaction to the binlog. It is called when the LOCK_log mutex is
  368.   reserved. Here we communicate to transactional table handlers what
  369.   binlog position corresponds to the current transaction. The handler
  370.   can store it and in recovery print to the user, so that the user
  371.   knows from what position in the binlog to start possible
  372.   roll-forward, for example, if the crashed server was a slave in
  373.   replication. This function also calls the commit of the table
  374.   handler, because the order of transactions in the log of the table
  375.   handler must be the same as in the binlog.
  376.   NOTE that to eliminate the bottleneck of the group commit, we do not
  377.   flush the handler log files here, but only later in a call of
  378.   ha_commit_complete().
  379.   arguments:
  380.   thd:           the thread handle of the current connection
  381.   log_file_name: latest binlog file name
  382.   end_offset:  the offset in the binlog file up to which we wrote
  383.   return value:  0 if success, 1 if error
  384. */
  385. int ha_report_binlog_offset_and_commit(THD *thd,
  386.        char *log_file_name,
  387.        my_off_t end_offset)
  388. {
  389.   int  error= 0;
  390. #ifdef HAVE_INNOBASE_DB
  391.   THD_TRANS *trans;
  392.   trans = &thd->transaction.all;
  393.   if (trans->innodb_active_trans)
  394.   {
  395.     /*
  396.       If we updated some InnoDB tables (innodb_active_trans is true), the
  397.       binlog coords will be reported into InnoDB during the InnoDB commit
  398.       (innobase_report_binlog_offset_and_commit). But if we updated only
  399.       non-InnoDB tables, we need an explicit call to report it.
  400.     */
  401.     if ((error=innobase_report_binlog_offset_and_commit(thd,
  402.                                                         trans->innobase_tid,
  403.                                                         log_file_name,
  404.                                                         end_offset)))
  405.     {
  406.       my_error(ER_ERROR_DURING_COMMIT, MYF(0), error);
  407.       error=1;
  408.     }
  409.   }
  410.   else if (opt_innodb_safe_binlog) // Don't report if not useful
  411.     innobase_store_binlog_offset_and_flush_log(log_file_name, end_offset);
  412. #endif
  413.   return error;
  414. }
  415. /*
  416.   Flushes the handler log files (if my.cnf settings do not free us from it)
  417.   after we have called ha_report_binlog_offset_and_commit(). To eliminate
  418.   the bottleneck from the group commit, this should be called when
  419.   LOCK_log has been released in log.cc.
  420.   arguments:
  421.   thd:           the thread handle of the current connection
  422.   return value:  always 0
  423. */
  424. int ha_commit_complete(THD *thd)
  425. {
  426. #ifdef HAVE_INNOBASE_DB
  427.   THD_TRANS *trans;
  428.   trans = &thd->transaction.all;
  429.   if (trans->innobase_tid)
  430.   {
  431.     innobase_commit_complete(trans->innobase_tid);
  432.     trans->innodb_active_trans=0;
  433.   }
  434. #endif
  435.   return 0;
  436. }
  437. /*
  438.   This function should be called when MySQL sends rows of a SELECT result set
  439.   or the EOF mark to the client. It releases a possible adaptive hash index
  440.   S-latch held by thd in InnoDB and also releases a possible InnoDB query
  441.   FIFO ticket to enter InnoDB. To save CPU time, InnoDB allows a thd to
  442.   keep them over several calls of the InnoDB handler interface when a join
  443.   is executed. But when we let the control to pass to the client they have
  444.   to be released because if the application program uses mysql_use_result(),
  445.   it may deadlock on the S-latch if the application on another connection
  446.   performs another SQL query. In MySQL-4.1 this is even more important because
  447.   there a connection can have several SELECT queries open at the same time.
  448.   arguments:
  449.   thd:           the thread handle of the current connection
  450.   return value:  always 0
  451. */
  452. int ha_release_temporary_latches(THD *thd)
  453. {
  454. #ifdef HAVE_INNOBASE_DB
  455.   THD_TRANS *trans;
  456.   trans = &thd->transaction.all;
  457.   if (trans->innobase_tid)
  458.     innobase_release_temporary_latches(trans->innobase_tid);
  459. #endif
  460.   return 0;
  461. }
  462. int ha_commit_trans(THD *thd, THD_TRANS* trans)
  463. {
  464.   int error=0;
  465.   DBUG_ENTER("ha_commit_trans");
  466. #ifdef USING_TRANSACTIONS
  467.   if (opt_using_transactions)
  468.   {
  469.     bool transaction_commited= 0;
  470.     bool operation_done= 0, need_start_waiters= 0;
  471.     /* If transaction has done some updates to tables */
  472.     if (trans == &thd->transaction.all && mysql_bin_log.is_open() &&
  473.         my_b_tell(&thd->transaction.trans_log))
  474.     {
  475.       if ((error= wait_if_global_read_lock(thd, 0, 0)))
  476.       {
  477.         /*
  478.           Note that ROLLBACK [TO SAVEPOINT] does not have this test; it's
  479.           because ROLLBACK never updates data, so needn't wait on the lock.
  480.         */
  481.         my_error(ER_ERROR_DURING_COMMIT, MYF(0), error);
  482.         error= 1;
  483.       }
  484.       else
  485.         need_start_waiters= 1;
  486.       if (mysql_bin_log.is_open())
  487.       {
  488.         mysql_bin_log.write(thd, &thd->transaction.trans_log, 1);
  489.         statistic_increment(binlog_cache_use, &LOCK_status);
  490.         if (thd->transaction.trans_log.disk_writes != 0)
  491.         {
  492.           /* 
  493.             We have to do this after addition of trans_log to main binlog since
  494.             this operation can cause flushing of end of trans_log to disk. 
  495.           */
  496.           statistic_increment(binlog_cache_disk_use, &LOCK_status);
  497.           thd->transaction.trans_log.disk_writes= 0;
  498.         }
  499.         reinit_io_cache(&thd->transaction.trans_log,
  500.                         WRITE_CACHE, (my_off_t) 0, 0, 1);
  501.         thd->transaction.trans_log.end_of_file= max_binlog_cache_size;
  502.       }
  503.     }
  504. #ifdef HAVE_NDBCLUSTER_DB
  505.     if (trans->ndb_tid)
  506.     {
  507.       if ((error=ndbcluster_commit(thd,trans->ndb_tid)))
  508.       {
  509. if (error == -1)
  510.   my_error(ER_ERROR_DURING_COMMIT, MYF(0));
  511.         error=1;
  512.       }
  513.       if (trans == &thd->transaction.all)
  514.         operation_done= transaction_commited= 1;
  515.       trans->ndb_tid=0;
  516.     }
  517. #endif
  518. #ifdef HAVE_BERKELEY_DB
  519.     if (trans->bdb_tid)
  520.     {
  521.       if ((error=berkeley_commit(thd,trans->bdb_tid)))
  522.       {
  523. my_error(ER_ERROR_DURING_COMMIT, MYF(0), error);
  524. error=1;
  525.       }
  526.       else
  527. if (!(thd->options & OPTION_BEGIN))
  528.   transaction_commited= 1; 
  529.       trans->bdb_tid=0;
  530.     }
  531. #endif
  532. #ifdef HAVE_INNOBASE_DB
  533.     if (trans->innobase_tid)
  534.     {
  535.       if ((error=innobase_commit(thd,trans->innobase_tid)))
  536.       {
  537. my_error(ER_ERROR_DURING_COMMIT, MYF(0), error);
  538. error=1;
  539.       }
  540.       trans->innodb_active_trans=0;
  541.       if (trans == &thd->transaction.all)
  542. operation_done= transaction_commited= 1;
  543.     }
  544. #endif
  545. #ifdef HAVE_QUERY_CACHE
  546.     if (transaction_commited && thd->transaction.changed_tables)
  547.       query_cache.invalidate(thd->transaction.changed_tables);
  548. #endif /*HAVE_QUERY_CACHE*/
  549.     if (error && trans == &thd->transaction.all && mysql_bin_log.is_open())
  550.       sql_print_error("Got error during commit;  Binlog is not up to date!");
  551.     thd->variables.tx_isolation=thd->session_tx_isolation;
  552.     if (operation_done)
  553.     {
  554.       statistic_increment(ha_commit_count,&LOCK_status);
  555.       thd->transaction.cleanup();
  556.     }
  557.     if (need_start_waiters)
  558.       start_waiting_global_read_lock(thd);
  559.   }
  560. #endif // using transactions
  561.   DBUG_RETURN(error);
  562. }
  563. int ha_rollback_trans(THD *thd, THD_TRANS *trans)
  564. {
  565.   int error=0;
  566.   DBUG_ENTER("ha_rollback_trans");
  567. #ifdef USING_TRANSACTIONS
  568.   if (opt_using_transactions)
  569.   {
  570.     bool operation_done=0;
  571.     /*
  572.       As rollback can be 30 times slower than insert in InnoDB, and user may
  573.       not know there's rollback (if it's because of a dupl row), better warn.
  574.     */
  575.     const char *save_proc_info= thd->proc_info;
  576.     thd->proc_info= "Rolling back";
  577. #ifdef HAVE_NDBCLUSTER_DB
  578.     if (trans->ndb_tid)
  579.     {
  580.       if ((error=ndbcluster_rollback(thd, trans->ndb_tid)))
  581.       {
  582. if (error == -1)
  583.   my_error(ER_ERROR_DURING_ROLLBACK, MYF(0));
  584.         error=1;
  585.       }
  586.       trans->ndb_tid = 0;
  587.       operation_done=1;
  588.     }
  589. #endif
  590. #ifdef HAVE_BERKELEY_DB
  591.     if (trans->bdb_tid)
  592.     {
  593.       if ((error=berkeley_rollback(thd, trans->bdb_tid)))
  594.       {
  595. my_error(ER_ERROR_DURING_ROLLBACK, MYF(0), error);
  596. error=1;
  597.       }
  598.       trans->bdb_tid=0;
  599.       operation_done=1;
  600.     }
  601. #endif
  602. #ifdef HAVE_INNOBASE_DB
  603.     if (trans->innobase_tid)
  604.     {
  605.       if ((error=innobase_rollback(thd, trans->innobase_tid)))
  606.       {
  607. my_error(ER_ERROR_DURING_ROLLBACK, MYF(0), error);
  608. error=1;
  609.       }
  610.       trans->innodb_active_trans=0;
  611.       operation_done=1;
  612.     }
  613. #endif
  614.     if ((trans == &thd->transaction.all) && mysql_bin_log.is_open())
  615.     {
  616.       /* 
  617.          Update the binary log with a BEGIN/ROLLBACK block if we have
  618.          cached some queries and we updated some non-transactional
  619.          table. Such cases should be rare (updating a
  620.          non-transactional table inside a transaction...).  Count disk
  621.          writes to trans_log in any case.
  622.       */
  623.       if (my_b_tell(&thd->transaction.trans_log))
  624.       {
  625.         if (unlikely(thd->options & OPTION_STATUS_NO_TRANS_UPDATE))
  626.           mysql_bin_log.write(thd, &thd->transaction.trans_log, 0);
  627.         statistic_increment(binlog_cache_use, &LOCK_status);
  628.         if (thd->transaction.trans_log.disk_writes != 0)
  629.         {
  630.           /* 
  631.             We have to do this after addition of trans_log to main binlog since
  632.             this operation can cause flushing of end of trans_log to disk. 
  633.           */
  634.           statistic_increment(binlog_cache_disk_use, &LOCK_status);
  635.           thd->transaction.trans_log.disk_writes= 0;
  636.         }
  637.       }
  638.       /* Flushed or not, empty the binlog cache */
  639.       reinit_io_cache(&thd->transaction.trans_log,
  640.                       WRITE_CACHE, (my_off_t) 0, 0, 1);
  641.       thd->transaction.trans_log.end_of_file= max_binlog_cache_size;
  642.       if (operation_done)
  643.         thd->transaction.cleanup();
  644.     }
  645.     thd->variables.tx_isolation=thd->session_tx_isolation;
  646.     if (operation_done)
  647.       statistic_increment(ha_rollback_count,&LOCK_status);
  648.     thd->proc_info= save_proc_info;
  649.   }
  650. #endif /* USING_TRANSACTIONS */
  651.   DBUG_RETURN(error);
  652. }
  653. /*
  654.   Rolls the current transaction back to a savepoint.
  655.   Return value: 0 if success, 1 if there was not a savepoint of the given
  656.   name.
  657.   NOTE: how do we handle this (unlikely but legal) case:
  658.   [transaction] + [update to non-trans table] + [rollback to savepoint] ?
  659.   The problem occurs when a savepoint is before the update to the
  660.   non-transactional table. Then when there's a rollback to the savepoint, if we
  661.   simply truncate the binlog cache, we lose the part of the binlog cache where
  662.   the update is. If we want to not lose it, we need to write the SAVEPOINT
  663.   command and the ROLLBACK TO SAVEPOINT command to the binlog cache. The latter
  664.   is easy: it's just write at the end of the binlog cache, but the former
  665.   should be *inserted* to the place where the user called SAVEPOINT. The
  666.   solution is that when the user calls SAVEPOINT, we write it to the binlog
  667.   cache (so no need to later insert it). As transactions are never intermixed
  668.   in the binary log (i.e. they are serialized), we won't have conflicts with
  669.   savepoint names when using mysqlbinlog or in the slave SQL thread.
  670.   Then when ROLLBACK TO SAVEPOINT is called, if we updated some
  671.   non-transactional table, we don't truncate the binlog cache but instead write
  672.   ROLLBACK TO SAVEPOINT to it; otherwise we truncate the binlog cache (which
  673.   will chop the SAVEPOINT command from the binlog cache, which is good as in
  674.   that case there is no need to have it in the binlog).
  675. */
  676. int ha_rollback_to_savepoint(THD *thd, char *savepoint_name)
  677. {
  678.   my_off_t binlog_cache_pos=0;
  679.   bool operation_done=0;
  680.   int error=0;
  681.   DBUG_ENTER("ha_rollback_to_savepoint");
  682. #ifdef USING_TRANSACTIONS
  683.   if (opt_using_transactions)
  684.   {
  685. #ifdef HAVE_INNOBASE_DB
  686.     /*
  687.     Retrieve the trans_log binlog cache position corresponding to the
  688.     savepoint, and if the rollback is successful inside InnoDB reset the write
  689.     position in the binlog cache to what it was at the savepoint.
  690.     */
  691.     if ((error=innobase_rollback_to_savepoint(thd, savepoint_name,
  692.   &binlog_cache_pos)))
  693.     {
  694.       my_error(ER_ERROR_DURING_ROLLBACK, MYF(0), error);
  695.       error=1;
  696.     }
  697.     else if (mysql_bin_log.is_open())
  698.     {
  699.       /* 
  700.          Write ROLLBACK TO SAVEPOINT to the binlog cache if we have updated some
  701.          non-transactional table. Otherwise, truncate the binlog cache starting
  702.          from the SAVEPOINT command.
  703.       */
  704.       if (unlikely((thd->options & OPTION_STATUS_NO_TRANS_UPDATE) &&
  705.                    my_b_tell(&thd->transaction.trans_log)))
  706.       {
  707.         Query_log_event qinfo(thd, thd->query, thd->query_length, TRUE, FALSE);
  708.         if (mysql_bin_log.write(&qinfo))
  709.           error= 1;
  710.       }
  711.       else
  712.         reinit_io_cache(&thd->transaction.trans_log, WRITE_CACHE,
  713.                         binlog_cache_pos, 0, 0);
  714.     }
  715.     operation_done=1;
  716. #endif
  717.     if (operation_done)
  718.       statistic_increment(ha_rollback_count,&LOCK_status);
  719.   }
  720. #endif /* USING_TRANSACTIONS */
  721.   DBUG_RETURN(error);
  722. }
  723. /*
  724. Sets a transaction savepoint.
  725. Return value: always 0, that is, succeeds always
  726. */
  727. int ha_savepoint(THD *thd, char *savepoint_name)
  728. {
  729.   int error=0;
  730.   DBUG_ENTER("ha_savepoint");
  731. #ifdef USING_TRANSACTIONS
  732.   if (opt_using_transactions)
  733.   {
  734.     /* Write it to the binary log (see comments of ha_rollback_to_savepoint) */
  735.     if (mysql_bin_log.is_open())
  736.     {
  737. #ifdef HAVE_INNOBASE_DB
  738.       innobase_savepoint(thd,savepoint_name,
  739.                          my_b_tell(&thd->transaction.trans_log));
  740. #endif
  741.       Query_log_event qinfo(thd, thd->query, thd->query_length, TRUE, FALSE);
  742.       if (mysql_bin_log.write(&qinfo))
  743. error= 1;
  744.     }
  745. #ifdef HAVE_INNOBASE_DB
  746.     else
  747.       innobase_savepoint(thd,savepoint_name,0);
  748. #endif
  749.   }
  750. #endif /* USING_TRANSACTIONS */
  751.   DBUG_RETURN(error);
  752. }
  753. int ha_start_consistent_snapshot(THD *thd)
  754. {
  755. #ifdef HAVE_INNOBASE_DB
  756.   if ((have_innodb == SHOW_OPTION_YES) &&
  757.       !innobase_start_trx_and_assign_read_view(thd))
  758.     return 0;
  759. #endif
  760.   /*
  761.     Same idea as when one wants to CREATE TABLE in one engine which does not
  762.     exist:
  763.   */
  764.   push_warning(thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_UNKNOWN_ERROR,
  765.                "This MySQL server does not support any "
  766.                "consistent-read capable storage engine");
  767.   return 0;
  768. }
  769. bool ha_flush_logs()
  770. {
  771.   bool result=0;
  772. #ifdef HAVE_BERKELEY_DB
  773.   if ((have_berkeley_db == SHOW_OPTION_YES) &&
  774.       berkeley_flush_logs())
  775.     result=1;
  776. #endif
  777. #ifdef HAVE_INNOBASE_DB
  778.   if ((have_innodb == SHOW_OPTION_YES) &&
  779.       innobase_flush_logs())
  780.     result=1;
  781. #endif
  782.   return result;
  783. }
  784. /*
  785.   This should return ENOENT if the file doesn't exists.
  786.   The .frm file will be deleted only if we return 0 or ENOENT
  787. */
  788. int ha_delete_table(enum db_type table_type, const char *path)
  789. {
  790.   char tmp_path[FN_REFLEN];
  791.   handler *file=get_new_handler((TABLE*) 0, table_type);
  792.   if (!file)
  793.     return ENOENT;
  794.   if (lower_case_table_names == 2 && !(file->table_flags() & HA_FILE_BASED))
  795.   {
  796.     /* Ensure that table handler get path in lower case */
  797.     strmov(tmp_path, path);
  798.     my_casedn_str(files_charset_info, tmp_path);
  799.     path= tmp_path;
  800.   }
  801.   int error=file->delete_table(path);
  802.   delete file;
  803.   return error;
  804. }
  805. void ha_store_ptr(byte *buff, uint pack_length, my_off_t pos)
  806. {
  807.   switch (pack_length) {
  808. #if SIZEOF_OFF_T > 4
  809.   case 8: mi_int8store(buff,pos); break;
  810.   case 7: mi_int7store(buff,pos); break;
  811.   case 6: mi_int6store(buff,pos); break;
  812.   case 5: mi_int5store(buff,pos); break;
  813. #endif
  814.   case 4: mi_int4store(buff,pos); break;
  815.   case 3: mi_int3store(buff,pos); break;
  816.   case 2: mi_int2store(buff,(uint) pos); break;
  817.   case 1: buff[0]= (uchar) pos; break;
  818.   }
  819.   return;
  820. }
  821. my_off_t ha_get_ptr(byte *ptr, uint pack_length)
  822. {
  823.   my_off_t pos;
  824.   switch (pack_length) {
  825. #if SIZEOF_OFF_T > 4
  826.   case 8:
  827.     pos= (my_off_t) mi_uint8korr(ptr);
  828.     break;
  829.   case 7:
  830.     pos= (my_off_t) mi_uint7korr(ptr);
  831.     break;
  832.   case 6:
  833.     pos= (my_off_t) mi_uint6korr(ptr);
  834.     break;
  835.   case 5:
  836.     pos= (my_off_t) mi_uint5korr(ptr);
  837.     break;
  838. #endif
  839.   case 4:
  840.     pos= (my_off_t) mi_uint4korr(ptr);
  841.     break;
  842.   case 3:
  843.     pos= (my_off_t) mi_uint3korr(ptr);
  844.     break;
  845.   case 2:
  846.     pos= (my_off_t) mi_uint2korr(ptr);
  847.     break;
  848.   case 1:
  849.     pos= (my_off_t) mi_uint2korr(ptr);
  850.     break;
  851.   default:
  852.     pos=0; // Impossible
  853.     break;
  854.   }
  855.  return pos;
  856. }
  857. /****************************************************************************
  858. ** General handler functions
  859. ****************************************************************************/
  860. /* Open database-handler. Try O_RDONLY if can't open as O_RDWR */
  861. /* Don't wait for locks if not HA_OPEN_WAIT_IF_LOCKED is set */
  862. int handler::ha_open(const char *name, int mode, int test_if_locked)
  863. {
  864.   int error;
  865.   DBUG_ENTER("handler::ha_open");
  866.   DBUG_PRINT("enter",("name: %s  db_type: %d  db_stat: %d  mode: %d  lock_test: %d",
  867.       name, table->db_type, table->db_stat, mode,
  868.       test_if_locked));
  869.   if ((error=open(name,mode,test_if_locked)))
  870.   {
  871.     if ((error == EACCES || error == EROFS) && mode == O_RDWR &&
  872. (table->db_stat & HA_TRY_READ_ONLY))
  873.     {
  874.       table->db_stat|=HA_READ_ONLY;
  875.       error=open(name,O_RDONLY,test_if_locked);
  876.     }
  877.   }
  878.   if (error)
  879.   {
  880.     my_errno=error; /* Safeguard */
  881.     DBUG_PRINT("error",("error: %d  errno: %d",error,errno));
  882.   }
  883.   else
  884.   {
  885.     if (table->db_options_in_use & HA_OPTION_READ_ONLY_DATA)
  886.       table->db_stat|=HA_READ_ONLY;
  887.     (void) extra(HA_EXTRA_NO_READCHECK); // Not needed in SQL
  888.     if (!alloc_root_inited(&table->mem_root)) // If temporary table
  889.       ref=(byte*) sql_alloc(ALIGN_SIZE(ref_length)*2);
  890.     else
  891.       ref=(byte*) alloc_root(&table->mem_root, ALIGN_SIZE(ref_length)*2);
  892.     if (!ref)
  893.     {
  894.       close();
  895.       error=HA_ERR_OUT_OF_MEM;
  896.     }
  897.     else
  898.       dupp_ref=ref+ALIGN_SIZE(ref_length);
  899.   }
  900.   DBUG_RETURN(error);
  901. }
  902. /*
  903.   Read first row (only) from a table
  904.   This is never called for InnoDB or BDB tables, as these table types
  905.   has the HA_NOT_EXACT_COUNT set.
  906. */
  907. int handler::read_first_row(byte * buf, uint primary_key)
  908. {
  909.   register int error;
  910.   DBUG_ENTER("handler::read_first_row");
  911.   statistic_increment(ha_read_first_count,&LOCK_status);
  912.   /*
  913.     If there is very few deleted rows in the table, find the first row by
  914.     scanning the table.
  915.     TODO remove the test for HA_READ_ORDER
  916.   */
  917.   if (deleted < 10 || primary_key >= MAX_KEY ||
  918.       !(index_flags(primary_key, 0, 0) & HA_READ_ORDER))
  919.   {
  920.     (void) ha_rnd_init(1);
  921.     while ((error= rnd_next(buf)) == HA_ERR_RECORD_DELETED) ;
  922.     (void) ha_rnd_end();
  923.   }
  924.   else
  925.   {
  926.     /* Find the first row through the primary key */
  927.     (void) ha_index_init(primary_key);
  928.     error=index_first(buf);
  929.     (void) ha_index_end();
  930.   }
  931.   DBUG_RETURN(error);
  932. }
  933. /*
  934.   Updates field with field_type NEXT_NUMBER according to following:
  935.   if field = 0 change field to the next free key in database.
  936. */
  937. void handler::update_auto_increment()
  938. {
  939.   longlong nr;
  940.   THD *thd;
  941.   DBUG_ENTER("handler::update_auto_increment");
  942.   if (table->next_number_field->val_int() != 0 ||
  943.       table->auto_increment_field_not_null &&
  944.       current_thd->variables.sql_mode & MODE_NO_AUTO_VALUE_ON_ZERO)
  945.   {
  946.     table->auto_increment_field_not_null= FALSE;
  947.     auto_increment_column_changed=0;
  948.     DBUG_VOID_RETURN;
  949.   }
  950.   table->auto_increment_field_not_null= FALSE;
  951.   thd=current_thd;
  952.   if ((nr=thd->next_insert_id))
  953.     thd->next_insert_id=0; // Clear after use
  954.   else
  955.     nr=get_auto_increment();
  956.   if (!table->next_number_field->store(nr))
  957.     thd->insert_id((ulonglong) nr);
  958.   else
  959.     thd->insert_id(table->next_number_field->val_int());
  960.   auto_increment_column_changed=1;
  961.   DBUG_VOID_RETURN;
  962. }
  963. longlong handler::get_auto_increment()
  964. {
  965.   longlong nr;
  966.   int error;
  967.   (void) extra(HA_EXTRA_KEYREAD);
  968.   index_init(table->next_number_index);
  969.   if (!table->next_number_key_offset)
  970.   { // Autoincrement at key-start
  971.     error=index_last(table->record[1]);
  972.   }
  973.   else
  974.   {
  975.     byte key[MAX_KEY_LENGTH];
  976.     key_copy(key,table,table->next_number_index,
  977.              table->next_number_key_offset);
  978.     error=index_read(table->record[1], key, table->next_number_key_offset,
  979.                      HA_READ_PREFIX_LAST);
  980.   }
  981.   if (error)
  982.     nr=1;
  983.   else
  984.     nr=(longlong) table->next_number_field->
  985.       val_int_offset(table->rec_buff_length)+1;
  986.   index_end();
  987.   (void) extra(HA_EXTRA_NO_KEYREAD);
  988.   return nr;
  989. }
  990. /* Print error that we got from handler function */
  991. void handler::print_error(int error, myf errflag)
  992. {
  993.   DBUG_ENTER("handler::print_error");
  994.   DBUG_PRINT("enter",("error: %d",error));
  995.   int textno=ER_GET_ERRNO;
  996.   switch (error) {
  997.   case EACCES:
  998.     textno=ER_OPEN_AS_READONLY;
  999.     break;
  1000.   case EAGAIN:
  1001.     textno=ER_FILE_USED;
  1002.     break;
  1003.   case ENOENT:
  1004.     textno=ER_FILE_NOT_FOUND;
  1005.     break;
  1006.   case HA_ERR_KEY_NOT_FOUND:
  1007.   case HA_ERR_NO_ACTIVE_RECORD:
  1008.   case HA_ERR_END_OF_FILE:
  1009.     textno=ER_KEY_NOT_FOUND;
  1010.     break;
  1011.   case HA_ERR_WRONG_MRG_TABLE_DEF:
  1012.     textno=ER_WRONG_MRG_TABLE;
  1013.     break;
  1014.   case HA_ERR_FOUND_DUPP_KEY:
  1015.   {
  1016.     uint key_nr=get_dup_key(error);
  1017.     if ((int) key_nr >= 0)
  1018.     {
  1019.       /* Write the dupplicated key in the error message */
  1020.       char key[MAX_KEY_LENGTH];
  1021.       String str(key,sizeof(key),system_charset_info);
  1022.       key_unpack(&str,table,(uint) key_nr);
  1023.       uint max_length=MYSQL_ERRMSG_SIZE-(uint) strlen(ER(ER_DUP_ENTRY));
  1024.       if (str.length() >= max_length)
  1025.       {
  1026. str.length(max_length-4);
  1027. str.append("...");
  1028.       }
  1029.       my_error(ER_DUP_ENTRY,MYF(0),str.c_ptr(),key_nr+1);
  1030.       DBUG_VOID_RETURN;
  1031.     }
  1032.     textno=ER_DUP_KEY;
  1033.     break;
  1034.   }
  1035.   case HA_ERR_NULL_IN_SPATIAL:
  1036.     textno= ER_UNKNOWN_ERROR;
  1037.     DBUG_VOID_RETURN;
  1038.   case HA_ERR_FOUND_DUPP_UNIQUE:
  1039.     textno=ER_DUP_UNIQUE;
  1040.     break;
  1041.   case HA_ERR_RECORD_CHANGED:
  1042.     textno=ER_CHECKREAD;
  1043.     break;
  1044.   case HA_ERR_CRASHED:
  1045.     textno=ER_NOT_KEYFILE;
  1046.     break;
  1047.   case HA_ERR_CRASHED_ON_USAGE:
  1048.     textno=ER_CRASHED_ON_USAGE;
  1049.     break;
  1050.   case HA_ERR_CRASHED_ON_REPAIR:
  1051.     textno=ER_CRASHED_ON_REPAIR;
  1052.     break;
  1053.   case HA_ERR_OUT_OF_MEM:
  1054.     my_error(ER_OUT_OF_RESOURCES,errflag);
  1055.     DBUG_VOID_RETURN;
  1056.   case HA_ERR_WRONG_COMMAND:
  1057.     textno=ER_ILLEGAL_HA;
  1058.     break;
  1059.   case HA_ERR_OLD_FILE:
  1060.     textno=ER_OLD_KEYFILE;
  1061.     break;
  1062.   case HA_ERR_UNSUPPORTED:
  1063.     textno=ER_UNSUPPORTED_EXTENSION;
  1064.     break;
  1065.   case HA_ERR_RECORD_FILE_FULL:
  1066.     textno=ER_RECORD_FILE_FULL;
  1067.     break;
  1068.   case HA_ERR_LOCK_WAIT_TIMEOUT:
  1069.     textno=ER_LOCK_WAIT_TIMEOUT;
  1070.     break;
  1071.   case HA_ERR_LOCK_TABLE_FULL:
  1072.     textno=ER_LOCK_TABLE_FULL;
  1073.     break;
  1074.   case HA_ERR_LOCK_DEADLOCK:
  1075.     textno=ER_LOCK_DEADLOCK;
  1076.     break;
  1077.   case HA_ERR_READ_ONLY_TRANSACTION:
  1078.     textno=ER_READ_ONLY_TRANSACTION;
  1079.     break;
  1080.   case HA_ERR_CANNOT_ADD_FOREIGN:
  1081.     textno=ER_CANNOT_ADD_FOREIGN;
  1082.     break;
  1083.   case HA_ERR_ROW_IS_REFERENCED:
  1084.     textno=ER_ROW_IS_REFERENCED;
  1085.     break;
  1086.   case HA_ERR_NO_REFERENCED_ROW:
  1087.     textno=ER_NO_REFERENCED_ROW;
  1088.     break;
  1089.   case HA_ERR_NO_SUCH_TABLE:
  1090.   {
  1091.     /*
  1092.       We have to use path to find database name instead of using
  1093.       table->table_cache_key because if the table didn't exist, then
  1094.       table_cache_key was not set up
  1095.     */
  1096.     char *db;
  1097.     char buff[FN_REFLEN];
  1098.     uint length=dirname_part(buff,table->path);
  1099.     buff[length-1]=0;
  1100.     db=buff+dirname_length(buff);
  1101.     my_error(ER_NO_SUCH_TABLE,MYF(0),db,table->table_name);
  1102.     break;
  1103.   }
  1104.   default:
  1105.     {
  1106.       /* The error was "unknown" to this function.
  1107.  Ask handler if it has got a message for this error */
  1108.       bool temporary= FALSE;
  1109.       String str;
  1110.       temporary= get_error_message(error, &str);
  1111.       if (!str.is_empty())
  1112.       {
  1113. const char* engine= table_type();
  1114. if (temporary)
  1115.   my_error(ER_GET_TEMPORARY_ERRMSG,MYF(0),error,str.ptr(),engine);
  1116. else
  1117.   my_error(ER_GET_ERRMSG,MYF(0),error,str.ptr(),engine);
  1118.       }
  1119.       else       
  1120. my_error(ER_GET_ERRNO,errflag,error);
  1121.       DBUG_VOID_RETURN;
  1122.     }
  1123.   }
  1124.   my_error(textno,errflag,table->table_name,error);
  1125.   DBUG_VOID_RETURN;
  1126. }
  1127. /* 
  1128.    Return an error message specific to this handler
  1129.    
  1130.    SYNOPSIS
  1131.    error        error code previously returned by handler
  1132.    buf          Pointer to String where to add error message
  1133.    
  1134.    Returns true if this is a temporary error
  1135.  */
  1136. bool handler::get_error_message(int error, String* buf)
  1137. {
  1138.   return FALSE;
  1139. }
  1140. /* Return key if error because of duplicated keys */
  1141. uint handler::get_dup_key(int error)
  1142. {
  1143.   DBUG_ENTER("handler::get_dup_key");
  1144.   table->file->errkey  = (uint) -1;
  1145.   if (error == HA_ERR_FOUND_DUPP_KEY || error == HA_ERR_FOUND_DUPP_UNIQUE ||
  1146.       error == HA_ERR_NULL_IN_SPATIAL)
  1147.     info(HA_STATUS_ERRKEY | HA_STATUS_NO_LOCK);
  1148.   DBUG_RETURN(table->file->errkey);
  1149. }
  1150. int handler::delete_table(const char *name)
  1151. {
  1152.   int error=0;
  1153.   for (const char **ext=bas_ext(); *ext ; ext++)
  1154.   {
  1155.     if (delete_file(name,*ext,2))
  1156.     {
  1157.       if ((error=errno) != ENOENT)
  1158. break;
  1159.     }
  1160.   }
  1161.   return error;
  1162. }
  1163. int handler::rename_table(const char * from, const char * to)
  1164. {
  1165.   int error= 0;
  1166.   for (const char **ext= bas_ext(); *ext ; ext++)
  1167.   {
  1168.     if (rename_file_ext(from, to, *ext))
  1169.     {
  1170.       if ((error=my_errno) != ENOENT)
  1171. break;
  1172.       error= 0;
  1173.     }
  1174.   }
  1175.   return error;
  1176. }
  1177. /*
  1178.   Tell the handler to turn on or off transaction in the handler
  1179. */
  1180. int ha_enable_transaction(THD *thd, bool on)
  1181. {
  1182.   int error=0;
  1183.   DBUG_ENTER("ha_enable_transaction");
  1184.   thd->transaction.on= on;
  1185.   DBUG_RETURN(error);
  1186. }
  1187. int handler::index_next_same(byte *buf, const byte *key, uint keylen)
  1188. {
  1189.   int error;
  1190.   if (!(error=index_next(buf)))
  1191.   {
  1192.     if (key_cmp_if_same(table, key, active_index, keylen))
  1193.     {
  1194.       table->status=STATUS_NOT_FOUND;
  1195.       error=HA_ERR_END_OF_FILE;
  1196.     }
  1197.   }
  1198.   return error;
  1199. }
  1200. /****************************************************************************
  1201. ** Some general functions that isn't in the handler class
  1202. ****************************************************************************/
  1203. /*
  1204.   Initiates table-file and calls apropriate database-creator
  1205.   Returns 1 if something got wrong
  1206. */
  1207. int ha_create_table(const char *name, HA_CREATE_INFO *create_info,
  1208.     bool update_create_info)
  1209. {
  1210.   int error;
  1211.   TABLE table;
  1212.   char name_buff[FN_REFLEN];
  1213.   DBUG_ENTER("ha_create_table");
  1214.   if (openfrm(name,"",0,(uint) READ_ALL, 0, &table))
  1215.     DBUG_RETURN(1);
  1216.   if (update_create_info)
  1217.   {
  1218.     update_create_info_from_table(create_info, &table);
  1219.   }
  1220.   if (lower_case_table_names == 2 &&
  1221.       !(table.file->table_flags() & HA_FILE_BASED))
  1222.   {
  1223.     /* Ensure that handler gets name in lower case */
  1224.     strmov(name_buff, name);
  1225.     my_casedn_str(files_charset_info, name_buff);
  1226.     name= name_buff;
  1227.   }
  1228.   error=table.file->create(name,&table,create_info);
  1229.   VOID(closefrm(&table));
  1230.   if (error)
  1231.     my_error(ER_CANT_CREATE_TABLE,MYF(ME_BELL+ME_WAITTANG),name,error);
  1232.   DBUG_RETURN(error != 0);
  1233. }
  1234. /*
  1235.   Try to discover table from engine and
  1236.   if found, write the frm file to disk.
  1237.   RETURN VALUES:
  1238.   -1 : Table did not exists
  1239.    0 : Table created ok
  1240.    > 0 : Error, table existed but could not be created
  1241. */
  1242. int ha_create_table_from_engine(THD* thd,
  1243. const char *db,
  1244. const char *name)
  1245. {
  1246.   int error;
  1247.   const void *frmblob;
  1248.   uint frmlen;
  1249.   char path[FN_REFLEN];
  1250.   HA_CREATE_INFO create_info;
  1251.   TABLE table;
  1252.   DBUG_ENTER("ha_create_table_from_engine");
  1253.   DBUG_PRINT("enter", ("name '%s'.'%s'", db, name));
  1254.   bzero((char*) &create_info,sizeof(create_info));
  1255.   if ((error= ha_discover(thd, db, name, &frmblob, &frmlen)))
  1256.   {
  1257.     /* Table could not be discovered and thus not created */
  1258.     DBUG_RETURN(error);
  1259.   }
  1260.   /*
  1261.     Table exists in handler and could be discovered
  1262.     frmblob and frmlen are set, write the frm to disk
  1263.   */
  1264.   (void)strxnmov(path,FN_REFLEN,mysql_data_home,"/",db,"/",name,NullS);
  1265.   // Save the frm file
  1266.   error= writefrm(path, frmblob, frmlen);
  1267.   my_free((char*) frmblob, MYF(0));
  1268.   if (error)
  1269.     DBUG_RETURN(2);
  1270.   if (openfrm(path,"",0,(uint) READ_ALL, 0, &table))
  1271.     DBUG_RETURN(3);
  1272.   update_create_info_from_table(&create_info, &table);
  1273.   create_info.table_options|= HA_OPTION_CREATE_FROM_ENGINE;
  1274.   if (lower_case_table_names == 2 &&
  1275.       !(table.file->table_flags() & HA_FILE_BASED))
  1276.   {
  1277.     /* Ensure that handler gets name in lower case */
  1278.     my_casedn_str(files_charset_info, path);
  1279.   }
  1280.   error=table.file->create(path,&table,&create_info);
  1281.   VOID(closefrm(&table));
  1282.   DBUG_RETURN(error != 0);
  1283. }
  1284. static int NEAR_F delete_file(const char *name,const char *ext,int extflag)
  1285. {
  1286.   char buff[FN_REFLEN];
  1287.   VOID(fn_format(buff,name,"",ext,extflag | 4));
  1288.   return(my_delete_with_symlink(buff,MYF(MY_WME)));
  1289. }
  1290. void st_ha_check_opt::init()
  1291. {
  1292.   flags= sql_flags= 0;
  1293.   sort_buffer_size = current_thd->variables.myisam_sort_buff_size;
  1294. }
  1295. /*****************************************************************************
  1296.   Key cache handling.
  1297.   This code is only relevant for ISAM/MyISAM tables
  1298.   key_cache->cache may be 0 only in the case where a key cache is not
  1299.   initialized or when we where not able to init the key cache in a previous
  1300.   call to ha_init_key_cache() (probably out of memory)
  1301. *****************************************************************************/
  1302. /* Init a key cache if it has not been initied before */
  1303. int ha_init_key_cache(const char *name, KEY_CACHE *key_cache)
  1304. {
  1305.   DBUG_ENTER("ha_init_key_cache");
  1306.   if (!key_cache->key_cache_inited)
  1307.   {
  1308.     pthread_mutex_lock(&LOCK_global_system_variables);
  1309.     long tmp_buff_size= (long) key_cache->param_buff_size;
  1310.     long tmp_block_size= (long) key_cache->param_block_size;
  1311.     uint division_limit= key_cache->param_division_limit;
  1312.     uint age_threshold=  key_cache->param_age_threshold;
  1313.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1314.     DBUG_RETURN(!init_key_cache(key_cache,
  1315. tmp_block_size,
  1316. tmp_buff_size,
  1317. division_limit, age_threshold));
  1318.   }
  1319.   DBUG_RETURN(0);
  1320. }
  1321. /* Resize key cache */
  1322. int ha_resize_key_cache(KEY_CACHE *key_cache)
  1323. {
  1324.   DBUG_ENTER("ha_resize_key_cache");
  1325.   if (key_cache->key_cache_inited)
  1326.   {
  1327.     pthread_mutex_lock(&LOCK_global_system_variables);
  1328.     long tmp_buff_size= (long) key_cache->param_buff_size;
  1329.     long tmp_block_size= (long) key_cache->param_block_size;
  1330.     uint division_limit= key_cache->param_division_limit;
  1331.     uint age_threshold=  key_cache->param_age_threshold;
  1332.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1333.     DBUG_RETURN(!resize_key_cache(key_cache, tmp_block_size,
  1334.   tmp_buff_size,
  1335.   division_limit, age_threshold));
  1336.   }
  1337.   DBUG_RETURN(0);
  1338. }
  1339. /* Change parameters for key cache (like size) */
  1340. int ha_change_key_cache_param(KEY_CACHE *key_cache)
  1341. {
  1342.   if (key_cache->key_cache_inited)
  1343.   {
  1344.     pthread_mutex_lock(&LOCK_global_system_variables);
  1345.     uint division_limit= key_cache->param_division_limit;
  1346.     uint age_threshold=  key_cache->param_age_threshold;
  1347.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1348.     change_key_cache_param(key_cache, division_limit, age_threshold);
  1349.   }
  1350.   return 0;
  1351. }
  1352. /* Free memory allocated by a key cache */
  1353. int ha_end_key_cache(KEY_CACHE *key_cache)
  1354. {
  1355.   end_key_cache(key_cache, 1); // Can never fail
  1356.   return 0;
  1357. }
  1358. /* Move all tables from one key cache to another one */
  1359. int ha_change_key_cache(KEY_CACHE *old_key_cache,
  1360. KEY_CACHE *new_key_cache)
  1361. {
  1362.   mi_change_key_cache(old_key_cache, new_key_cache);
  1363.   return 0;
  1364. }
  1365. /*
  1366.   Try to discover one table from handler(s)
  1367.   RETURN
  1368.    -1  : Table did not exists
  1369.     0  : OK. In this case *frmblob and *frmlen are set
  1370.     >0 : error.  frmblob and frmlen may not be set
  1371. */
  1372. int ha_discover(THD *thd, const char *db, const char *name,
  1373. const void **frmblob, uint *frmlen)
  1374. {
  1375.   int error= -1; // Table does not exist in any handler
  1376.   DBUG_ENTER("ha_discover");
  1377.   DBUG_PRINT("enter", ("db: %s, name: %s", db, name));
  1378.   if (is_prefix(name,tmp_file_prefix)) /* skip temporary tables */
  1379.     DBUG_RETURN(error);
  1380. #ifdef HAVE_NDBCLUSTER_DB
  1381.   if (have_ndbcluster == SHOW_OPTION_YES)
  1382.     error= ndbcluster_discover(thd, db, name, frmblob, frmlen);
  1383. #endif
  1384.   if (!error)
  1385.     statistic_increment(ha_discover_count,&LOCK_status);
  1386.   DBUG_RETURN(error);
  1387. }
  1388. /*
  1389.   Call this function in order to give the handler the possiblity 
  1390.   to ask engine if there are any new tables that should be written to disk 
  1391.   or any dropped tables that need to be removed from disk
  1392. */
  1393. int
  1394. ha_find_files(THD *thd,const char *db,const char *path,
  1395.       const char *wild, bool dir, List<char> *files)
  1396. {
  1397.   int error= 0;
  1398.   DBUG_ENTER("ha_find_files");
  1399.   DBUG_PRINT("enter", ("db: %s, path: %s, wild: %s, dir: %d", 
  1400.        db, path, wild, dir));
  1401. #ifdef HAVE_NDBCLUSTER_DB
  1402.   if (have_ndbcluster == SHOW_OPTION_YES)
  1403.     error= ndbcluster_find_files(thd, db, path, wild, dir, files);
  1404. #endif
  1405.   DBUG_RETURN(error);
  1406. }
  1407. /*
  1408.   Ask handler if the table exists in engine
  1409.   RETURN
  1410.     0                   Table does not exist
  1411.     1                   Table exists
  1412.     #                   Error code
  1413.  */
  1414. int ha_table_exists_in_engine(THD* thd, const char* db, const char* name)
  1415. {
  1416.   int error= 0;
  1417.   DBUG_ENTER("ha_table_exists_in_engine");
  1418.   DBUG_PRINT("enter", ("db: %s, name: %s", db, name));
  1419. #ifdef HAVE_NDBCLUSTER_DB
  1420.   if (have_ndbcluster == SHOW_OPTION_YES)
  1421.     error= ndbcluster_table_exists_in_engine(thd, db, name);
  1422. #endif
  1423.   DBUG_PRINT("exit", ("error: %d", error));
  1424.   DBUG_RETURN(error);
  1425. }
  1426. /*
  1427.   Read first row between two ranges.
  1428.   Store ranges for future calls to read_range_next
  1429.   SYNOPSIS
  1430.     read_range_first()
  1431.     start_key Start key. Is 0 if no min range
  1432.     end_key End key.  Is 0 if no max range
  1433.     eq_range_arg Set to 1 if start_key == end_key
  1434.     sorted Set to 1 if result should be sorted per key
  1435.   NOTES
  1436.     Record is read into table->record[0]
  1437.   RETURN
  1438.     0 Found row
  1439.     HA_ERR_END_OF_FILE No rows in range
  1440.     # Error code
  1441. */
  1442. int handler::read_range_first(const key_range *start_key,
  1443.       const key_range *end_key,
  1444.       bool eq_range_arg, bool sorted)
  1445. {
  1446.   int result;
  1447.   DBUG_ENTER("handler::read_range_first");
  1448.   eq_range= eq_range_arg;
  1449.   end_range= 0;
  1450.   if (end_key)
  1451.   {
  1452.     end_range= &save_end_range;
  1453.     save_end_range= *end_key;
  1454.     key_compare_result_on_equal= ((end_key->flag == HA_READ_BEFORE_KEY) ? 1 :
  1455.   (end_key->flag == HA_READ_AFTER_KEY) ? -1 : 0);
  1456.   }
  1457.   range_key_part= table->key_info[active_index].key_part;
  1458.   if (!start_key) // Read first record
  1459.     result= index_first(table->record[0]);
  1460.   else
  1461.     result= index_read(table->record[0],
  1462.        start_key->key,
  1463.        start_key->length,
  1464.        start_key->flag);
  1465.   if (result)
  1466.     DBUG_RETURN((result == HA_ERR_KEY_NOT_FOUND) 
  1467. ? HA_ERR_END_OF_FILE
  1468. : result);
  1469.   DBUG_RETURN (compare_key(end_range) <= 0 ? 0 : HA_ERR_END_OF_FILE);
  1470. }
  1471. /*
  1472.   Read next row between two ranges.
  1473.   SYNOPSIS
  1474.     read_range_next()
  1475.   NOTES
  1476.     Record is read into table->record[0]
  1477.   RETURN
  1478.     0 Found row
  1479.     HA_ERR_END_OF_FILE No rows in range
  1480.     # Error code
  1481. */
  1482. int handler::read_range_next()
  1483. {
  1484.   int result;
  1485.   DBUG_ENTER("handler::read_range_next");
  1486.   if (eq_range)
  1487.   {
  1488.     /* We trust that index_next_same always gives a row in range */
  1489.     DBUG_RETURN(index_next_same(table->record[0],
  1490.                                 end_range->key,
  1491.                                 end_range->length));
  1492.   }
  1493.   result= index_next(table->record[0]);
  1494.   if (result)
  1495.     DBUG_RETURN(result);
  1496.   DBUG_RETURN(compare_key(end_range) <= 0 ? 0 : HA_ERR_END_OF_FILE);
  1497. }
  1498. /*
  1499.   Compare if found key (in row) is over max-value
  1500.   SYNOPSIS
  1501.     compare_key
  1502.     range range to compare to row. May be 0 for no range
  1503.  
  1504.   NOTES
  1505.     See key.cc::key_cmp() for details
  1506.   RETURN
  1507.     The return value is SIGN(key_in_row - range_key):
  1508.     0 Key is equal to range or 'range' == 0 (no range)
  1509.    -1 Key is less than range
  1510.     1 Key is larger than range
  1511. */
  1512. int handler::compare_key(key_range *range)
  1513. {
  1514.   int cmp;
  1515.   if (!range)
  1516.     return 0; // No max range
  1517.   cmp= key_cmp(range_key_part, range->key, range->length);
  1518.   if (!cmp)
  1519.     cmp= key_compare_result_on_equal;
  1520.   return cmp;
  1521. }
  1522. int handler::index_read_idx(byte * buf, uint index, const byte * key,
  1523.      uint key_len, enum ha_rkey_function find_flag)
  1524. {
  1525.   int error= ha_index_init(index);
  1526.   if (!error)
  1527.     error= index_read(buf, key, key_len, find_flag);
  1528.   if (!error)
  1529.     error= ha_index_end();
  1530.   return error;
  1531. }
  1532. /*
  1533.   Returns a list of all known extensions.
  1534.   SYNOPSIS
  1535.     ha_known_exts()
  1536.  
  1537.   NOTES
  1538.     No mutexes, worst case race is a minor surplus memory allocation
  1539.     We have to recreate the extension map if mysqld is restarted (for example
  1540.     within libmysqld)
  1541.   RETURN VALUE
  1542.     pointer pointer to TYPELIB structure
  1543. */
  1544. TYPELIB *ha_known_exts(void)
  1545. {
  1546.   if (!known_extensions.type_names || mysys_usage_id != known_extensions_id)
  1547.   {
  1548.     show_table_type_st *types;
  1549.     List<char> found_exts;
  1550.     List_iterator_fast<char> it(found_exts);
  1551.     const char **ext, *old_ext;
  1552.     known_extensions_id= mysys_usage_id;
  1553.     found_exts.push_back((char*) ".db");
  1554.     for (types= sys_table_types; types->type; types++)
  1555.     {      
  1556.       if (*types->value == SHOW_OPTION_YES)
  1557.       {
  1558. handler *file= get_new_handler(0,(enum db_type) types->db_type);
  1559. for (ext= file->bas_ext(); *ext; ext++)
  1560. {
  1561.   while ((old_ext= it++))
  1562.           {
  1563.     if (!strcmp(old_ext, *ext))
  1564.       break;
  1565.           }
  1566.   if (!old_ext)
  1567.     found_exts.push_back((char *) *ext);
  1568.   it.rewind();
  1569. }
  1570. delete file;
  1571.       }
  1572.     }
  1573.     ext= (const char **) my_once_alloc(sizeof(char *)*
  1574.                                        (found_exts.elements+1),
  1575.                                        MYF(MY_WME | MY_FAE));
  1576.     
  1577.     DBUG_ASSERT(ext);
  1578.     known_extensions.count= found_exts.elements;
  1579.     known_extensions.type_names= ext;
  1580.     while ((old_ext= it++))
  1581.       *ext++= old_ext;
  1582.     *ext= 0;
  1583.   }
  1584.   return &known_extensions;
  1585. }