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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000,2004 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. #ifdef USE_PRAGMA_IMPLEMENTATION
  14. #pragma implementation // gcc: Class implementation
  15. #endif
  16. #include "mysql_priv.h"
  17. #include <m_ctype.h>
  18. #include <myisampack.h>
  19. #include "ha_myisam.h"
  20. #include <stdarg.h>
  21. #ifndef MASTER
  22. #include "../srclib/myisam/myisamdef.h"
  23. #else
  24. #include "../myisam/myisamdef.h"
  25. #include "../myisam/rt_index.h"
  26. #endif
  27. ulong myisam_recover_options= HA_RECOVER_NONE;
  28. /* bits in myisam_recover_options */
  29. const char *myisam_recover_names[] =
  30. { "DEFAULT", "BACKUP", "FORCE", "QUICK", NullS};
  31. TYPELIB myisam_recover_typelib= {array_elements(myisam_recover_names)-1,"",
  32.  myisam_recover_names, NULL};
  33. const char *myisam_stats_method_names[] = {"nulls_unequal", "nulls_equal",
  34.                                            "nulls_ignored", NullS};
  35. TYPELIB myisam_stats_method_typelib= {
  36.   array_elements(myisam_stats_method_names) - 1, "",
  37.   myisam_stats_method_names, NULL};
  38. /*****************************************************************************
  39. ** MyISAM tables
  40. *****************************************************************************/
  41. // collect errors printed by mi_check routines
  42. static void mi_check_print_msg(MI_CHECK *param, const char* msg_type,
  43.        const char *fmt, va_list args)
  44. {
  45.   THD* thd = (THD*)param->thd;
  46.   Protocol *protocol= thd->protocol;
  47.   uint length, msg_length;
  48.   char msgbuf[MI_MAX_MSG_BUF];
  49.   char name[NAME_LEN*2+2];
  50.   msg_length= my_vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
  51.   msgbuf[sizeof(msgbuf) - 1] = 0; // healthy paranoia
  52.   DBUG_PRINT(msg_type,("message: %s",msgbuf));
  53.   if (!thd->vio_ok())
  54.   {
  55.     sql_print_error(msgbuf);
  56.     return;
  57.   }
  58.   if (param->testflag & (T_CREATE_MISSING_KEYS | T_SAFE_REPAIR |
  59.  T_AUTO_REPAIR))
  60.   {
  61.     my_message(ER_NOT_KEYFILE,msgbuf,MYF(MY_WME));
  62.     return;
  63.   }
  64.   length=(uint) (strxmov(name, param->db_name,".",param->table_name,NullS) -
  65.  name);
  66.   protocol->prepare_for_resend();
  67.   protocol->store(name, length, system_charset_info);
  68.   protocol->store(param->op_name, system_charset_info);
  69.   protocol->store(msg_type, system_charset_info);
  70.   protocol->store(msgbuf, msg_length, system_charset_info);
  71.   if (protocol->write())
  72.     sql_print_error("Failed on my_net_write, writing to stderr instead: %sn",
  73.     msgbuf);
  74.   return;
  75. }
  76. extern "C" {
  77. volatile my_bool *killed_ptr(MI_CHECK *param)
  78. {
  79.   return &(((THD *)(param->thd))->killed);
  80. }
  81. void mi_check_print_error(MI_CHECK *param, const char *fmt,...)
  82. {
  83.   param->error_printed|=1;
  84.   param->out_flag|= O_DATA_LOST;
  85.   va_list args;
  86.   va_start(args, fmt);
  87.   mi_check_print_msg(param, "error", fmt, args);
  88.   va_end(args);
  89. }
  90. void mi_check_print_info(MI_CHECK *param, const char *fmt,...)
  91. {
  92.   va_list args;
  93.   va_start(args, fmt);
  94.   mi_check_print_msg(param, "info", fmt, args);
  95.   va_end(args);
  96. }
  97. void mi_check_print_warning(MI_CHECK *param, const char *fmt,...)
  98. {
  99.   param->warning_printed=1;
  100.   param->out_flag|= O_DATA_LOST;
  101.   va_list args;
  102.   va_start(args, fmt);
  103.   mi_check_print_msg(param, "warning", fmt, args);
  104.   va_end(args);
  105. }
  106. }
  107. const char **ha_myisam::bas_ext() const
  108. { static const char *ext[]= { ".MYI",".MYD", NullS }; return ext; }
  109. const char *ha_myisam::index_type(uint key_number)
  110. {
  111.   return ((table->key_info[key_number].flags & HA_FULLTEXT) ? 
  112.   "FULLTEXT" :
  113.   (table->key_info[key_number].flags & HA_SPATIAL) ?
  114.   "SPATIAL" :
  115.   (table->key_info[key_number].algorithm == HA_KEY_ALG_RTREE) ?
  116.   "RTREE" :
  117.   "BTREE");
  118. }
  119. #ifdef HAVE_REPLICATION
  120. int ha_myisam::net_read_dump(NET* net)
  121. {
  122.   int data_fd = file->dfile;
  123.   int error = 0;
  124.   my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
  125.   for (;;)
  126.   {
  127.     ulong packet_len = my_net_read(net);
  128.     if (!packet_len)
  129.       break ; // end of file
  130.     if (packet_len == packet_error)
  131.     {
  132.       sql_print_error("ha_myisam::net_read_dump - read error ");
  133.       error= -1;
  134.       goto err;
  135.     }
  136.     if (my_write(data_fd, (byte*)net->read_pos, (uint) packet_len,
  137.  MYF(MY_WME|MY_FNABP)))
  138.     {
  139.       error = errno;
  140.       goto err;
  141.     }
  142.   }
  143. err:
  144.   return error;
  145. }
  146. int ha_myisam::dump(THD* thd, int fd)
  147. {
  148.   MYISAM_SHARE* share = file->s;
  149.   NET* net = &thd->net;
  150.   uint blocksize = share->blocksize;
  151.   my_off_t bytes_to_read = share->state.state.data_file_length;
  152.   int data_fd = file->dfile;
  153.   byte * buf = (byte*) my_malloc(blocksize, MYF(MY_WME));
  154.   if (!buf)
  155.     return ENOMEM;
  156.   int error = 0;
  157.   my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
  158.   for (; bytes_to_read > 0;)
  159.   {
  160.     uint bytes = my_read(data_fd, buf, blocksize, MYF(MY_WME));
  161.     if (bytes == MY_FILE_ERROR)
  162.     {
  163.       error = errno;
  164.       goto err;
  165.     }
  166.     if (fd >= 0)
  167.     {
  168.       if (my_write(fd, buf, bytes, MYF(MY_WME | MY_FNABP)))
  169.       {
  170. error = errno ? errno : EPIPE;
  171. goto err;
  172.       }
  173.     }
  174.     else
  175.     {
  176.       if (my_net_write(net, (char*) buf, bytes))
  177.       {
  178. error = errno ? errno : EPIPE;
  179. goto err;
  180.       }
  181.     }
  182.     bytes_to_read -= bytes;
  183.   }
  184.   if (fd < 0)
  185.   {
  186.     my_net_write(net, "", 0);
  187.     net_flush(net);
  188.   }
  189. err:
  190.   my_free((gptr) buf, MYF(0));
  191.   return error;
  192. }
  193. #endif /* HAVE_REPLICATION */
  194. /* Name is here without an extension */
  195. int ha_myisam::open(const char *name, int mode, uint test_if_locked)
  196. {
  197.   if (!(file=mi_open(name, mode, test_if_locked)))
  198.     return (my_errno ? my_errno : -1);
  199.   
  200.   if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE))
  201.     VOID(mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0));
  202.   info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  203.   if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
  204.     VOID(mi_extra(file, HA_EXTRA_WAIT_LOCK, 0));
  205.   if (!table->db_record_offset)
  206.     int_table_flags|=HA_REC_NOT_IN_SEQ;
  207.   if (file->s->options & (HA_OPTION_CHECKSUM | HA_OPTION_COMPRESS_RECORD))
  208.     int_table_flags|=HA_HAS_CHECKSUM;
  209.   return (0);
  210. }
  211. int ha_myisam::close(void)
  212. {
  213.   MI_INFO *tmp=file;
  214.   file=0;
  215.   return mi_close(tmp);
  216. }
  217. int ha_myisam::write_row(byte * buf)
  218. {
  219.   statistic_increment(ha_write_count,&LOCK_status);
  220.   /* If we have a timestamp column, update it to the current time */
  221.   if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_INSERT)
  222.     table->timestamp_field->set_time();
  223.   /*
  224.     If we have an auto_increment column and we are writing a changed row
  225.     or a new row, then update the auto_increment value in the record.
  226.   */
  227.   if (table->next_number_field && buf == table->record[0])
  228.     update_auto_increment();
  229.   return mi_write(file,buf);
  230. }
  231. int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt)
  232. {
  233.   if (!file) return HA_ADMIN_INTERNAL_ERROR;
  234.   int error;
  235.   MI_CHECK param;
  236.   MYISAM_SHARE* share = file->s;
  237.   const char *old_proc_info=thd->proc_info;
  238.   thd->proc_info="Checking table";
  239.   myisamchk_init(&param);
  240.   param.thd = thd;
  241.   param.op_name = (char*)"check";
  242.   param.db_name    = table->table_cache_key;
  243.   param.table_name = table->table_name;
  244.   param.testflag = check_opt->flags | T_CHECK | T_SILENT;
  245.   param.stats_method= (enum_mi_stats_method)thd->variables.myisam_stats_method;
  246.   if (!(table->db_stat & HA_READ_ONLY))
  247.     param.testflag|= T_STATISTICS;
  248.   param.using_global_keycache = 1;
  249.   if (!mi_is_crashed(file) &&
  250.       (((param.testflag & T_CHECK_ONLY_CHANGED) &&
  251. !(share->state.changed & (STATE_CHANGED | STATE_CRASHED |
  252.   STATE_CRASHED_ON_REPAIR)) &&
  253. share->state.open_count == 0) ||
  254.        ((param.testflag & T_FAST) && (share->state.open_count ==
  255.       (uint) (share->global_changed ? 1 : 0)))))
  256.     return HA_ADMIN_ALREADY_DONE;
  257.   error = chk_status(&param, file); // Not fatal
  258.   error = chk_size(&param, file);
  259.   if (!error)
  260.     error |= chk_del(&param, file, param.testflag);
  261.   if (!error)
  262.     error = chk_key(&param, file);
  263.   if (!error)
  264.   {
  265.     if ((!(param.testflag & T_QUICK) &&
  266.  ((share->options &
  267.    (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)) ||
  268.   (param.testflag & (T_EXTEND | T_MEDIUM)))) ||
  269. mi_is_crashed(file))
  270.     {
  271.       uint old_testflag=param.testflag;
  272.       param.testflag|=T_MEDIUM;
  273.       init_io_cache(&param.read_cache, file->dfile,
  274.     my_default_record_cache_size, READ_CACHE,
  275.     share->pack.header_length, 1, MYF(MY_WME));
  276.       error |= chk_data_link(&param, file, param.testflag & T_EXTEND);
  277.       end_io_cache(&(param.read_cache));
  278.       param.testflag=old_testflag;
  279.     }
  280.   }
  281.   if (!error)
  282.   {
  283.     if ((share->state.changed & (STATE_CHANGED |
  284.  STATE_CRASHED_ON_REPAIR |
  285.  STATE_CRASHED | STATE_NOT_ANALYZED)) ||
  286. (param.testflag & T_STATISTICS) ||
  287. mi_is_crashed(file))
  288.     {
  289.       file->update|=HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  290.       pthread_mutex_lock(&share->intern_lock);
  291.       share->state.changed&= ~(STATE_CHANGED | STATE_CRASHED |
  292.        STATE_CRASHED_ON_REPAIR);
  293.       if (!(table->db_stat & HA_READ_ONLY))
  294. error=update_state_info(&param,file,UPDATE_TIME | UPDATE_OPEN_COUNT |
  295. UPDATE_STAT);
  296.       pthread_mutex_unlock(&share->intern_lock);
  297.       info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE |
  298.    HA_STATUS_CONST);
  299.     }
  300.   }
  301.   else if (!mi_is_crashed(file) && !thd->killed)
  302.   {
  303.     mi_mark_crashed(file);
  304.     file->update |= HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  305.   }
  306.   thd->proc_info=old_proc_info;
  307.   return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
  308. }
  309. /*
  310.   analyze the key distribution in the table
  311.   As the table may be only locked for read, we have to take into account that
  312.   two threads may do an analyze at the same time!
  313. */
  314. int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt)
  315. {
  316.   int error=0;
  317.   MI_CHECK param;
  318.   MYISAM_SHARE* share = file->s;
  319.   myisamchk_init(&param);
  320.   param.thd = thd;
  321.   param.op_name = (char*) "analyze";
  322.   param.db_name    = table->table_cache_key;
  323.   param.table_name = table->table_name;
  324.   param.testflag=(T_FAST | T_CHECK | T_SILENT | T_STATISTICS |
  325.   T_DONT_CHECK_CHECKSUM);
  326.   param.using_global_keycache = 1;
  327.   param.stats_method= (enum_mi_stats_method)thd->variables.myisam_stats_method;
  328.   if (!(share->state.changed & STATE_NOT_ANALYZED))
  329.     return HA_ADMIN_ALREADY_DONE;
  330.   error = chk_key(&param, file);
  331.   if (!error)
  332.   {
  333.     pthread_mutex_lock(&share->intern_lock);
  334.     error=update_state_info(&param,file,UPDATE_STAT);
  335.     pthread_mutex_unlock(&share->intern_lock);
  336.   }
  337.   else if (!mi_is_crashed(file) && !thd->killed)
  338.     mi_mark_crashed(file);
  339.   return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
  340. }
  341. int ha_myisam::restore(THD* thd, HA_CHECK_OPT *check_opt)
  342. {
  343.   HA_CHECK_OPT tmp_check_opt;
  344.   char* backup_dir= thd->lex->backup_dir;
  345.   char src_path[FN_REFLEN], dst_path[FN_REFLEN];
  346.   char* table_name = table->real_name;
  347.   int error;
  348.   const char* errmsg;
  349.   DBUG_ENTER("restore");
  350.   if (fn_format_relative_to_data_home(src_path, table_name, backup_dir,
  351.       MI_NAME_DEXT))
  352.     DBUG_RETURN(HA_ADMIN_INVALID);
  353.   if (my_copy(src_path, fn_format(dst_path, table->path, "",
  354.   MI_NAME_DEXT, 4), MYF(MY_WME)))
  355.   {
  356.     error = HA_ADMIN_FAILED;
  357.     errmsg = "Failed in my_copy (Error %d)";
  358.     goto err;
  359.   }
  360.   tmp_check_opt.init();
  361.   tmp_check_opt.flags |= T_VERY_SILENT | T_CALC_CHECKSUM | T_QUICK;
  362.   DBUG_RETURN(repair(thd, &tmp_check_opt));
  363.  err:
  364.   {
  365.     MI_CHECK param;
  366.     myisamchk_init(&param);
  367.     param.thd = thd;
  368.     param.op_name = (char*)"restore";
  369.     param.db_name    = table->table_cache_key;
  370.     param.table_name = table->table_name;
  371.     param.testflag = 0;
  372.     mi_check_print_error(&param, errmsg, my_errno);
  373.     DBUG_RETURN(error);
  374.   }
  375. }
  376. int ha_myisam::backup(THD* thd, HA_CHECK_OPT *check_opt)
  377. {
  378.   char* backup_dir= thd->lex->backup_dir;
  379.   char src_path[FN_REFLEN], dst_path[FN_REFLEN];
  380.   char* table_name = table->real_name;
  381.   int error;
  382.   const char *errmsg;
  383.   DBUG_ENTER("ha_myisam::backup");
  384.   if (fn_format_relative_to_data_home(dst_path, table_name, backup_dir,
  385.       reg_ext))
  386.   {
  387.     errmsg = "Failed in fn_format() for .frm file (errno: %d)";
  388.     error = HA_ADMIN_INVALID;
  389.     goto err;
  390.   }
  391.   if (my_copy(fn_format(src_path, table->path,"", reg_ext, MY_UNPACK_FILENAME),
  392.       dst_path,
  393.       MYF(MY_WME | MY_HOLD_ORIGINAL_MODES | MY_DONT_OVERWRITE_FILE)))
  394.   {
  395.     error = HA_ADMIN_FAILED;
  396.     errmsg = "Failed copying .frm file (errno: %d)";
  397.     goto err;
  398.   }
  399.   /* Change extension */
  400.   if (!fn_format(dst_path, dst_path, "", MI_NAME_DEXT,
  401.  MY_REPLACE_EXT | MY_UNPACK_FILENAME | MY_SAFE_PATH))
  402.   {
  403.     errmsg = "Failed in fn_format() for .MYD file (errno: %d)";
  404.     error = HA_ADMIN_INVALID;
  405.     goto err;
  406.   }
  407.   if (my_copy(fn_format(src_path, table->path,"", MI_NAME_DEXT,
  408. MY_UNPACK_FILENAME),
  409.       dst_path,
  410.       MYF(MY_WME | MY_HOLD_ORIGINAL_MODES | MY_DONT_OVERWRITE_FILE)))
  411.   {
  412.     errmsg = "Failed copying .MYD file (errno: %d)";
  413.     error= HA_ADMIN_FAILED;
  414.     goto err;
  415.   }
  416.   DBUG_RETURN(HA_ADMIN_OK);
  417.  err:
  418.   {
  419.     MI_CHECK param;
  420.     myisamchk_init(&param);
  421.     param.thd = thd;
  422.     param.op_name = (char*)"backup";
  423.     param.db_name    = table->table_cache_key;
  424.     param.table_name = table->table_name;
  425.     param.testflag = 0;
  426.     mi_check_print_error(&param,errmsg, my_errno);
  427.     DBUG_RETURN(error);
  428.   }
  429. }
  430. int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt)
  431. {
  432.   int error;
  433.   MI_CHECK param;
  434.   ha_rows start_records;
  435.   if (!file) return HA_ADMIN_INTERNAL_ERROR;
  436.   myisamchk_init(&param);
  437.   param.thd = thd;
  438.   param.op_name = (char*) "repair";
  439.   param.testflag = ((check_opt->flags & ~(T_EXTEND)) |
  440.     T_SILENT | T_FORCE_CREATE | T_CALC_CHECKSUM |
  441.     (check_opt->flags & T_EXTEND ? T_REP : T_REP_BY_SORT));
  442.   param.sort_buffer_length=  check_opt->sort_buffer_size;
  443.   start_records=file->state->records;
  444.   while ((error=repair(thd,param,0)) && param.retry_repair)
  445.   {
  446.     param.retry_repair=0;
  447.     if (test_all_bits(param.testflag,
  448.       (uint) (T_RETRY_WITHOUT_QUICK | T_QUICK)))
  449.     {
  450.       param.testflag&= ~T_RETRY_WITHOUT_QUICK;
  451.       sql_print_information("Retrying repair of: '%s' without quick",
  452.                             table->path);
  453.       continue;
  454.     }
  455.     param.testflag&= ~T_QUICK;
  456.     if ((param.testflag & T_REP_BY_SORT))
  457.     {
  458.       param.testflag= (param.testflag & ~T_REP_BY_SORT) | T_REP;
  459.       sql_print_information("Retrying repair of: '%s' with keycache",
  460.                             table->path);
  461.       continue;
  462.     }
  463.     break;
  464.   }
  465.   if (!error && start_records != file->state->records &&
  466.       !(check_opt->flags & T_VERY_SILENT))
  467.   {
  468.     char llbuff[22],llbuff2[22];
  469.     sql_print_information("Found %s of %s rows when repairing '%s'",
  470.                           llstr(file->state->records, llbuff),
  471.                           llstr(start_records, llbuff2),
  472.                           table->path);
  473.   }
  474.   return error;
  475. }
  476. int ha_myisam::optimize(THD* thd, HA_CHECK_OPT *check_opt)
  477. {
  478.   int error;
  479.   if (!file) return HA_ADMIN_INTERNAL_ERROR;
  480.   MI_CHECK param;
  481.   myisamchk_init(&param);
  482.   param.thd = thd;
  483.   param.op_name = (char*) "optimize";
  484.   param.testflag = (check_opt->flags | T_SILENT | T_FORCE_CREATE |
  485.     T_REP_BY_SORT | T_STATISTICS | T_SORT_INDEX);
  486.   param.sort_buffer_length=  check_opt->sort_buffer_size;
  487.   if ((error= repair(thd,param,1)) && param.retry_repair)
  488.   {
  489.     sql_print_warning("Warning: Optimize table got errno %d, retrying",
  490.                       my_errno);
  491.     param.testflag&= ~T_REP_BY_SORT;
  492.     error= repair(thd,param,1);
  493.   }
  494.   return error;
  495. }
  496. int ha_myisam::repair(THD *thd, MI_CHECK &param, bool optimize)
  497. {
  498.   int error=0;
  499.   uint local_testflag=param.testflag;
  500.   bool optimize_done= !optimize, statistics_done=0;
  501.   const char *old_proc_info=thd->proc_info;
  502.   char fixed_name[FN_REFLEN];
  503.   MYISAM_SHARE* share = file->s;
  504.   ha_rows rows= file->state->records;
  505.   DBUG_ENTER("ha_myisam::repair");
  506.   param.db_name    = table->table_cache_key;
  507.   param.table_name = table->table_name;
  508.   param.tmpfile_createflag = O_RDWR | O_TRUNC;
  509.   param.using_global_keycache = 1;
  510.   param.thd=thd;
  511.   param.tmpdir=&mysql_tmpdir_list;
  512.   param.out_flag=0;
  513.   strmov(fixed_name,file->filename);
  514.   // Don't lock tables if we have used LOCK TABLE
  515.   if (!thd->locked_tables && 
  516.       mi_lock_database(file, table->tmp_table ? F_EXTRA_LCK : F_WRLCK))
  517.   {
  518.     mi_check_print_error(&param,ER(ER_CANT_LOCK),my_errno);
  519.     DBUG_RETURN(HA_ADMIN_FAILED);
  520.   }
  521.   if (!optimize ||
  522.       ((file->state->del || share->state.split != file->state->records) &&
  523.        (!(param.testflag & T_QUICK) ||
  524. !(share->state.changed & STATE_NOT_OPTIMIZED_KEYS))))
  525.   {
  526.     ulonglong key_map= ((local_testflag & T_CREATE_MISSING_KEYS) ?
  527. ((ulonglong) 1L << share->base.keys)-1 :
  528. share->state.key_map);
  529.     uint testflag=param.testflag;
  530.     if (mi_test_if_sort_rep(file,file->state->records,key_map,0) &&
  531. (local_testflag & T_REP_BY_SORT))
  532.     {
  533.       local_testflag|= T_STATISTICS;
  534.       param.testflag|= T_STATISTICS; // We get this for free
  535.       statistics_done=1;
  536.       if (current_thd->variables.myisam_repair_threads>1)
  537.       {
  538.         char buf[40];
  539.         /* TODO: respect myisam_repair_threads variable */
  540.         my_snprintf(buf, 40, "Repair with %d threads", my_count_bits(key_map));
  541.         thd->proc_info=buf;
  542.         error = mi_repair_parallel(&param, file, fixed_name,
  543.             param.testflag & T_QUICK);
  544.         thd->proc_info="Repair done"; // to reset proc_info, as
  545.                                       // it was pointing to local buffer
  546.       }
  547.       else
  548.       {
  549.         thd->proc_info="Repair by sorting";
  550.         error = mi_repair_by_sort(&param, file, fixed_name,
  551.             param.testflag & T_QUICK);
  552.       }
  553.     }
  554.     else
  555.     {
  556.       thd->proc_info="Repair with keycache";
  557.       param.testflag &= ~T_REP_BY_SORT;
  558.       error=  mi_repair(&param, file, fixed_name,
  559. param.testflag & T_QUICK);
  560.     }
  561.     param.testflag=testflag;
  562.     optimize_done=1;
  563.   }
  564.   if (!error)
  565.   {
  566.     if ((local_testflag & T_SORT_INDEX) &&
  567. (share->state.changed & STATE_NOT_SORTED_PAGES))
  568.     {
  569.       optimize_done=1;
  570.       thd->proc_info="Sorting index";
  571.       error=mi_sort_index(&param,file,fixed_name);
  572.     }
  573.     if (!statistics_done && (local_testflag & T_STATISTICS))
  574.     {
  575.       if (share->state.changed & STATE_NOT_ANALYZED)
  576.       {
  577. optimize_done=1;
  578. thd->proc_info="Analyzing";
  579. error = chk_key(&param, file);
  580.       }
  581.       else
  582. local_testflag&= ~T_STATISTICS; // Don't update statistics
  583.     }
  584.   }
  585.   thd->proc_info="Saving state";
  586.   if (!error)
  587.   {
  588.     if ((share->state.changed & STATE_CHANGED) || mi_is_crashed(file))
  589.     {
  590.       share->state.changed&= ~(STATE_CHANGED | STATE_CRASHED |
  591.        STATE_CRASHED_ON_REPAIR);
  592.       file->update|=HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  593.     }
  594.     /*
  595.       the following 'if', thought conceptually wrong,
  596.       is a useful optimization nevertheless.
  597.     */
  598.     if (file->state != &file->s->state.state)
  599.       file->s->state.state = *file->state;
  600.     if (file->s->base.auto_key)
  601.       update_auto_increment_key(&param, file, 1);
  602.     if (optimize_done)
  603.       error = update_state_info(&param, file,
  604. UPDATE_TIME | UPDATE_OPEN_COUNT |
  605. (local_testflag &
  606.  T_STATISTICS ? UPDATE_STAT : 0));
  607.     info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE |
  608.  HA_STATUS_CONST);
  609.     if (rows != file->state->records && ! (param.testflag & T_VERY_SILENT))
  610.     {
  611.       char llbuff[22],llbuff2[22];
  612.       mi_check_print_warning(&param,"Number of rows changed from %s to %s",
  613.      llstr(rows,llbuff),
  614.      llstr(file->state->records,llbuff2));
  615.     }
  616.   }
  617.   else
  618.   {
  619.     mi_mark_crashed_on_repair(file);
  620.     file->update |= HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  621.     update_state_info(&param, file, 0);
  622.   }
  623.   thd->proc_info=old_proc_info;
  624.   if (!thd->locked_tables)
  625.     mi_lock_database(file,F_UNLCK);
  626.   DBUG_RETURN(error ? HA_ADMIN_FAILED :
  627.       !optimize_done ? HA_ADMIN_ALREADY_DONE : HA_ADMIN_OK);
  628. }
  629. /*
  630.   Assign table indexes to a specific key cache.
  631. */
  632. int ha_myisam::assign_to_keycache(THD* thd, HA_CHECK_OPT *check_opt)
  633. {
  634.   KEY_CACHE *new_key_cache= check_opt->key_cache;
  635.   const char *errmsg= 0;
  636.   int error= HA_ADMIN_OK;
  637.   ulonglong map= ~(ulonglong) 0;
  638.   TABLE_LIST *table_list= table->pos_in_table_list;
  639.   DBUG_ENTER("ha_myisam::assign_to_keycache");
  640.   /* Check validity of the index references */
  641.   if (table_list->use_index)
  642.   {
  643.     /* We only come here when the user did specify an index map */
  644.     key_map kmap;
  645.     if (get_key_map_from_key_list(&kmap, table, table_list->use_index))
  646.     {
  647.       errmsg= thd->net.last_error;
  648.       error= HA_ADMIN_FAILED;
  649.       goto err;
  650.     }
  651.     map= kmap.to_ulonglong();
  652.   }
  653.   if ((error= mi_assign_to_key_cache(file, map, new_key_cache)))
  654.   { 
  655.     char buf[80];
  656.     my_snprintf(buf, sizeof(buf),
  657. "Failed to flush to index file (errno: %d)", error);
  658.     errmsg= buf;
  659.     error= HA_ADMIN_CORRUPT;
  660.   }
  661.  err:
  662.   if (error != HA_ADMIN_OK)
  663.   {
  664.     /* Send error to user */
  665.     MI_CHECK param;
  666.     myisamchk_init(&param);
  667.     param.thd= thd;
  668.     param.op_name= (char*)"assign_to_keycache";
  669.     param.db_name= table->table_cache_key;
  670.     param.table_name= table->table_name;
  671.     param.testflag= 0;
  672.     mi_check_print_error(&param, errmsg);
  673.   }
  674.   DBUG_RETURN(error);
  675. }
  676. /*
  677.   Preload pages of the index file for a table into the key cache.
  678. */
  679. int ha_myisam::preload_keys(THD* thd, HA_CHECK_OPT *check_opt)
  680. {
  681.   int error;
  682.   const char *errmsg;
  683.   ulonglong map= ~(ulonglong) 0;
  684.   TABLE_LIST *table_list= table->pos_in_table_list;
  685.   my_bool ignore_leaves= table_list->ignore_leaves;
  686.   DBUG_ENTER("ha_myisam::preload_keys");
  687.   /* Check validity of the index references */
  688.   if (table_list->use_index)
  689.   {
  690.     key_map kmap;
  691.     get_key_map_from_key_list(&kmap, table, table_list->use_index);
  692.     if (kmap.is_set_all())
  693.     {
  694.       errmsg= thd->net.last_error;
  695.       error= HA_ADMIN_FAILED;
  696.       goto err;
  697.     }
  698.     if (!kmap.is_clear_all())
  699.       map= kmap.to_ulonglong();
  700.   }
  701.   mi_extra(file, HA_EXTRA_PRELOAD_BUFFER_SIZE,
  702.            (void *) &thd->variables.preload_buff_size);
  703.   if ((error= mi_preload(file, map, ignore_leaves)))
  704.   {
  705.     switch (error) {
  706.     case HA_ERR_NON_UNIQUE_BLOCK_SIZE:
  707.       errmsg= "Indexes use different block sizes";
  708.       break;
  709.     case HA_ERR_OUT_OF_MEM:
  710.       errmsg= "Failed to allocate buffer";
  711.       break;
  712.     default:
  713.       char buf[ERRMSGSIZE+20];
  714.       my_snprintf(buf, ERRMSGSIZE,
  715.                   "Failed to read from index file (errno: %d)", my_errno);
  716.       errmsg= buf;
  717.     }
  718.     error= HA_ADMIN_FAILED;
  719.     goto err;
  720.   }
  721.   DBUG_RETURN(HA_ADMIN_OK);
  722.  err:
  723.   {
  724.     MI_CHECK param;
  725.     myisamchk_init(&param);
  726.     param.thd= thd;
  727.     param.op_name= (char*)"preload_keys";
  728.     param.db_name= table->table_cache_key;
  729.     param.table_name= table->table_name;
  730.     param.testflag= 0;
  731.     mi_check_print_error(&param, errmsg);
  732.     DBUG_RETURN(error);
  733.   }
  734. }
  735. /*
  736.   Disable indexes, making it persistent if requested.
  737.   SYNOPSIS
  738.     disable_indexes()
  739.     mode        mode of operation:
  740.                 HA_KEY_SWITCH_NONUNIQ      disable all non-unique keys
  741.                 HA_KEY_SWITCH_ALL          disable all keys
  742.                 HA_KEY_SWITCH_NONUNIQ_SAVE dis. non-uni. and make persistent
  743.                 HA_KEY_SWITCH_ALL_SAVE     dis. all keys and make persistent
  744.   IMPLEMENTATION
  745.     HA_KEY_SWITCH_NONUNIQ       is not implemented.
  746.     HA_KEY_SWITCH_ALL_SAVE      is not implemented.
  747.   RETURN
  748.     0  ok
  749.     HA_ERR_WRONG_COMMAND  mode not implemented.
  750. */
  751. int ha_myisam::disable_indexes(uint mode)
  752. {
  753.   int error;
  754.   if (mode == HA_KEY_SWITCH_ALL)
  755.   {
  756.     /* call a storage engine function to switch the key map */
  757.     error= mi_disable_indexes(file);
  758.   }
  759.   else if (mode == HA_KEY_SWITCH_NONUNIQ_SAVE)
  760.   {
  761.     mi_extra(file, HA_EXTRA_NO_KEYS, 0);
  762.     info(HA_STATUS_CONST);                        // Read new key info
  763.     error= 0;
  764.   }
  765.   else
  766.   {
  767.     /* mode not implemented */
  768.     error= HA_ERR_WRONG_COMMAND;
  769.   }
  770.   return error;
  771. }
  772. /*
  773.   Enable indexes, making it persistent if requested.
  774.   SYNOPSIS
  775.     enable_indexes()
  776.     mode        mode of operation:
  777.                 HA_KEY_SWITCH_NONUNIQ      enable all non-unique keys
  778.                 HA_KEY_SWITCH_ALL          enable all keys
  779.                 HA_KEY_SWITCH_NONUNIQ_SAVE en. non-uni. and make persistent
  780.                 HA_KEY_SWITCH_ALL_SAVE     en. all keys and make persistent
  781.   DESCRIPTION
  782.     Enable indexes, which might have been disabled by disable_index() before.
  783.     The modes without _SAVE work only if both data and indexes are empty,
  784.     since the MyISAM repair would enable them persistently.
  785.     To be sure in these cases, call handler::delete_all_rows() before.
  786.   IMPLEMENTATION
  787.     HA_KEY_SWITCH_NONUNIQ       is not implemented.
  788.     HA_KEY_SWITCH_ALL_SAVE      is not implemented.
  789.   RETURN
  790.     0  ok
  791.     !=0  Error, among others:
  792.     HA_ERR_CRASHED  data or index is non-empty. Delete all rows and retry.
  793.     HA_ERR_WRONG_COMMAND  mode not implemented.
  794. */
  795. int ha_myisam::enable_indexes(uint mode)
  796. {
  797.   int error;
  798.   if (file->s->state.key_map == set_bits(ulonglong, file->s->base.keys))
  799.   {
  800.     /* All indexes are enabled already. */
  801.     return 0;
  802.   }
  803.   if (mode == HA_KEY_SWITCH_ALL)
  804.   {
  805.     error= mi_enable_indexes(file);
  806.     /*
  807.        Do not try to repair on error,
  808.        as this could make the enabled state persistent,
  809.        but mode==HA_KEY_SWITCH_ALL forbids it.
  810.     */
  811.   }
  812.   else if (mode == HA_KEY_SWITCH_NONUNIQ_SAVE)
  813.   {
  814.     THD *thd=current_thd;
  815.     MI_CHECK param;
  816.     const char *save_proc_info=thd->proc_info;
  817.     thd->proc_info="Creating index";
  818.     myisamchk_init(&param);
  819.     param.op_name = (char*) "recreating_index";
  820.     param.testflag = (T_SILENT | T_REP_BY_SORT | T_QUICK |
  821.                       T_CREATE_MISSING_KEYS);
  822.     param.myf_rw&= ~MY_WAIT_IF_FULL;
  823.     param.sort_buffer_length=  thd->variables.myisam_sort_buff_size;
  824.     param.stats_method= (enum_mi_stats_method)thd->variables.myisam_stats_method;
  825.     param.tmpdir=&mysql_tmpdir_list;
  826.     if ((error= (repair(thd,param,0) != HA_ADMIN_OK)) && param.retry_repair)
  827.     {
  828.       sql_print_warning("Warning: Enabling keys got errno %d, retrying",
  829.                         my_errno);
  830.       param.testflag&= ~(T_REP_BY_SORT | T_QUICK);
  831.       error= (repair(thd,param,0) != HA_ADMIN_OK);
  832.     }
  833.     info(HA_STATUS_CONST);
  834.     thd->proc_info=save_proc_info;
  835.   }
  836.   else
  837.   {
  838.     /* mode not implemented */
  839.     error= HA_ERR_WRONG_COMMAND;
  840.   }
  841.   return error;
  842. }
  843. /*
  844.   Test if indexes are disabled.
  845.   SYNOPSIS
  846.     indexes_are_disabled()
  847.       no parameters
  848.   RETURN
  849.     0  indexes are not disabled
  850.     1  all indexes are disabled
  851.    [2  non-unique indexes are disabled - NOT YET IMPLEMENTED]
  852. */
  853. int ha_myisam::indexes_are_disabled(void)
  854. {
  855.   
  856.   return mi_indexes_are_disabled(file);
  857. }
  858. /*
  859.   prepare for a many-rows insert operation
  860.   e.g. - disable indexes (if they can be recreated fast) or
  861.   activate special bulk-insert optimizations
  862.   SYNOPSIS
  863.     start_bulk_insert(rows)
  864.     rows        Rows to be inserted
  865.                 0 if we don't know
  866.   NOTICE
  867.     Do not forget to call end_bulk_insert() later!
  868. */
  869. void ha_myisam::start_bulk_insert(ha_rows rows)
  870. {
  871.   DBUG_ENTER("ha_myisam::start_bulk_insert");
  872.   THD *thd=current_thd;
  873.   ulong size= min(thd->variables.read_buff_size, table->avg_row_length*rows);
  874.   DBUG_PRINT("info",("start_bulk_insert: rows %lu size %lu",
  875.                      (ulong) rows, size));
  876.   /* don't enable row cache if too few rows */
  877.   if (! rows || (rows > MI_MIN_ROWS_TO_USE_WRITE_CACHE))
  878.     mi_extra(file, HA_EXTRA_WRITE_CACHE, (void*) &size);
  879.   can_enable_indexes= (file->s->state.key_map ==
  880.                        set_bits(ulonglong, file->s->base.keys));
  881.   if (!(specialflag & SPECIAL_SAFE_MODE))
  882.   {
  883.     /*
  884.       Only disable old index if the table was empty and we are inserting
  885.       a lot of rows.
  886.       We should not do this for only a few rows as this is slower and
  887.       we don't want to update the key statistics based of only a few rows.
  888.     */
  889.     if (file->state->records == 0 && can_enable_indexes &&
  890.         (!rows || rows >= MI_MIN_ROWS_TO_DISABLE_INDEXES))
  891.       mi_disable_non_unique_index(file,rows);
  892.     else
  893.     if (!file->bulk_insert &&
  894.         (!rows || rows >= MI_MIN_ROWS_TO_USE_BULK_INSERT))
  895.     {
  896.       mi_init_bulk_insert(file, thd->variables.bulk_insert_buff_size, rows);
  897.     }
  898.   }
  899.   DBUG_VOID_RETURN;
  900. }
  901. /*
  902.   end special bulk-insert optimizations,
  903.   which have been activated by start_bulk_insert().
  904.   SYNOPSIS
  905.     end_bulk_insert()
  906.     no arguments
  907.   RETURN
  908.     0     OK
  909.     != 0  Error
  910. */
  911. int ha_myisam::end_bulk_insert()
  912. {
  913.   mi_end_bulk_insert(file);
  914.   int err=mi_extra(file, HA_EXTRA_NO_CACHE, 0);
  915.   return err ? err : can_enable_indexes ?
  916.                      enable_indexes(HA_KEY_SWITCH_NONUNIQ_SAVE) : 0;
  917. }
  918. bool ha_myisam::check_and_repair(THD *thd)
  919. {
  920.   int error=0;
  921.   int marked_crashed;
  922.   char *old_query;
  923.   uint old_query_length;
  924.   HA_CHECK_OPT check_opt;
  925.   DBUG_ENTER("ha_myisam::check_and_repair");
  926.   check_opt.init();
  927.   check_opt.flags= T_MEDIUM | T_AUTO_REPAIR;
  928.   // Don't use quick if deleted rows
  929.   if (!file->state->del && (myisam_recover_options & HA_RECOVER_QUICK))
  930.     check_opt.flags|=T_QUICK;
  931.   sql_print_warning("Checking table:   '%s'",table->path);
  932.   old_query= thd->query;
  933.   old_query_length= thd->query_length;
  934.   pthread_mutex_lock(&LOCK_thread_count);
  935.   thd->query= table->real_name;
  936.   thd->query_length= strlen(table->real_name);
  937.   pthread_mutex_unlock(&LOCK_thread_count);
  938.   if ((marked_crashed= mi_is_crashed(file)) || check(thd, &check_opt))
  939.   {
  940.     sql_print_warning("Recovering table: '%s'",table->path);
  941.     check_opt.flags=
  942.       ((myisam_recover_options & HA_RECOVER_BACKUP ? T_BACKUP_DATA : 0) |
  943.        (marked_crashed                             ? 0 : T_QUICK) |
  944.        (myisam_recover_options & HA_RECOVER_FORCE  ? 0 : T_SAFE_REPAIR) |
  945.        T_AUTO_REPAIR);
  946.     if (repair(thd, &check_opt))
  947.       error=1;
  948.   }
  949.   pthread_mutex_lock(&LOCK_thread_count);
  950.   thd->query= old_query;
  951.   thd->query_length= old_query_length;
  952.   pthread_mutex_unlock(&LOCK_thread_count);
  953.   DBUG_RETURN(error);
  954. }
  955. bool ha_myisam::is_crashed() const
  956. {
  957.   return (file->s->state.changed & STATE_CRASHED ||
  958.   (my_disable_locking && file->s->state.open_count));
  959. }
  960. int ha_myisam::update_row(const byte * old_data, byte * new_data)
  961. {
  962.   statistic_increment(ha_update_count,&LOCK_status);
  963.   if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_UPDATE)
  964.     table->timestamp_field->set_time();
  965.   return mi_update(file,old_data,new_data);
  966. }
  967. int ha_myisam::delete_row(const byte * buf)
  968. {
  969.   statistic_increment(ha_delete_count,&LOCK_status);
  970.   return mi_delete(file,buf);
  971. }
  972. int ha_myisam::index_read(byte * buf, const byte * key,
  973.   uint key_len, enum ha_rkey_function find_flag)
  974. {
  975.   DBUG_ASSERT(inited==INDEX);
  976.   statistic_increment(ha_read_key_count,&LOCK_status);
  977.   int error=mi_rkey(file,buf,active_index, key, key_len, find_flag);
  978.   table->status=error ? STATUS_NOT_FOUND: 0;
  979.   return error;
  980. }
  981. int ha_myisam::index_read_idx(byte * buf, uint index, const byte * key,
  982.       uint key_len, enum ha_rkey_function find_flag)
  983. {
  984.   statistic_increment(ha_read_key_count,&LOCK_status);
  985.   int error=mi_rkey(file,buf,index, key, key_len, find_flag);
  986.   table->status=error ? STATUS_NOT_FOUND: 0;
  987.   return error;
  988. }
  989. int ha_myisam::index_read_last(byte * buf, const byte * key, uint key_len)
  990. {
  991.   DBUG_ASSERT(inited==INDEX);
  992.   statistic_increment(ha_read_key_count,&LOCK_status);
  993.   int error=mi_rkey(file,buf,active_index, key, key_len, HA_READ_PREFIX_LAST);
  994.   table->status=error ? STATUS_NOT_FOUND: 0;
  995.   return error;
  996. }
  997. int ha_myisam::index_next(byte * buf)
  998. {
  999.   DBUG_ASSERT(inited==INDEX);
  1000.   statistic_increment(ha_read_next_count,&LOCK_status);
  1001.   int error=mi_rnext(file,buf,active_index);
  1002.   table->status=error ? STATUS_NOT_FOUND: 0;
  1003.   return error;
  1004. }
  1005. int ha_myisam::index_prev(byte * buf)
  1006. {
  1007.   DBUG_ASSERT(inited==INDEX);
  1008.   statistic_increment(ha_read_prev_count,&LOCK_status);
  1009.   int error=mi_rprev(file,buf, active_index);
  1010.   table->status=error ? STATUS_NOT_FOUND: 0;
  1011.   return error;
  1012. }
  1013. int ha_myisam::index_first(byte * buf)
  1014. {
  1015.   DBUG_ASSERT(inited==INDEX);
  1016.   statistic_increment(ha_read_first_count,&LOCK_status);
  1017.   int error=mi_rfirst(file, buf, active_index);
  1018.   table->status=error ? STATUS_NOT_FOUND: 0;
  1019.   return error;
  1020. }
  1021. int ha_myisam::index_last(byte * buf)
  1022. {
  1023.   DBUG_ASSERT(inited==INDEX);
  1024.   statistic_increment(ha_read_last_count,&LOCK_status);
  1025.   int error=mi_rlast(file, buf, active_index);
  1026.   table->status=error ? STATUS_NOT_FOUND: 0;
  1027.   return error;
  1028. }
  1029. int ha_myisam::index_next_same(byte * buf,
  1030.        const byte *key __attribute__((unused)),
  1031.        uint length __attribute__((unused)))
  1032. {
  1033.   DBUG_ASSERT(inited==INDEX);
  1034.   statistic_increment(ha_read_next_count,&LOCK_status);
  1035.   int error=mi_rnext_same(file,buf);
  1036.   table->status=error ? STATUS_NOT_FOUND: 0;
  1037.   return error;
  1038. }
  1039. int ha_myisam::rnd_init(bool scan)
  1040. {
  1041.   if (scan)
  1042.     return mi_scan_init(file);
  1043.   return mi_extra(file, HA_EXTRA_RESET, 0);
  1044. }
  1045. int ha_myisam::rnd_next(byte *buf)
  1046. {
  1047.   statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  1048.   int error=mi_scan(file, buf);
  1049.   table->status=error ? STATUS_NOT_FOUND: 0;
  1050.   return error;
  1051. }
  1052. int ha_myisam::restart_rnd_next(byte *buf, byte *pos)
  1053. {
  1054.   return rnd_pos(buf,pos);
  1055. }
  1056. int ha_myisam::rnd_pos(byte * buf, byte *pos)
  1057. {
  1058.   statistic_increment(ha_read_rnd_count,&LOCK_status);
  1059.   int error=mi_rrnd(file, buf, ha_get_ptr(pos,ref_length));
  1060.   table->status=error ? STATUS_NOT_FOUND: 0;
  1061.   return error;
  1062. }
  1063. void ha_myisam::position(const byte* record)
  1064. {
  1065.   my_off_t position=mi_position(file);
  1066.   ha_store_ptr(ref, ref_length, position);
  1067. }
  1068. void ha_myisam::info(uint flag)
  1069. {
  1070.   MI_ISAMINFO info;
  1071.   char name_buff[FN_REFLEN];
  1072.   (void) mi_status(file,&info,flag);
  1073.   if (flag & HA_STATUS_VARIABLE)
  1074.   {
  1075.     records = info.records;
  1076.     deleted = info.deleted;
  1077.     data_file_length=info.data_file_length;
  1078.     index_file_length=info.index_file_length;
  1079.     delete_length = info.delete_length;
  1080.     check_time  = info.check_time;
  1081.     mean_rec_length=info.mean_reclength;
  1082.   }
  1083.   if (flag & HA_STATUS_CONST)
  1084.   {
  1085.     max_data_file_length=info.max_data_file_length;
  1086.     max_index_file_length=info.max_index_file_length;
  1087.     create_time = info.create_time;
  1088.     sortkey = info.sortkey;
  1089.     ref_length=info.reflength;
  1090.     table->db_options_in_use    = info.options;
  1091.     block_size=myisam_block_size;
  1092.     table->keys_in_use.set_prefix(table->keys);
  1093.     table->keys_in_use.intersect(info.key_map);
  1094.     table->keys_for_keyread= table->keys_in_use;
  1095.     table->keys_for_keyread.subtract(table->read_only_keys);
  1096.     table->db_record_offset=info.record_offset;
  1097.     if (table->key_parts)
  1098.       memcpy((char*) table->key_info[0].rec_per_key,
  1099.      (char*) info.rec_per_key,
  1100.      sizeof(table->key_info[0].rec_per_key)*table->key_parts);
  1101.     raid_type=info.raid_type;
  1102.     raid_chunks=info.raid_chunks;
  1103.     raid_chunksize=info.raid_chunksize;
  1104.    /*
  1105.      Set data_file_name and index_file_name to point at the symlink value
  1106.      if table is symlinked (Ie;  Real name is not same as generated name)
  1107.    */
  1108.     data_file_name=index_file_name=0;
  1109.     fn_format(name_buff, file->filename, "", MI_NAME_DEXT, 2);
  1110.     if (strcmp(name_buff, info.data_file_name))
  1111.       data_file_name=info.data_file_name;
  1112.     strmov(fn_ext(name_buff),MI_NAME_IEXT);
  1113.     if (strcmp(name_buff, info.index_file_name))
  1114.       index_file_name=info.index_file_name;
  1115.   }
  1116.   if (flag & HA_STATUS_ERRKEY)
  1117.   {
  1118.     errkey  = info.errkey;
  1119.     ha_store_ptr(dupp_ref, ref_length, info.dupp_key_pos);
  1120.   }
  1121.   if (flag & HA_STATUS_TIME)
  1122.     update_time = info.update_time;
  1123.   if (flag & HA_STATUS_AUTO)
  1124.     auto_increment_value= info.auto_increment;
  1125. }
  1126. int ha_myisam::extra(enum ha_extra_function operation)
  1127. {
  1128.   if ((specialflag & SPECIAL_SAFE_MODE) && operation == HA_EXTRA_KEYREAD)
  1129.     return 0;
  1130.   return mi_extra(file, operation, 0);
  1131. }
  1132. /* To be used with WRITE_CACHE and EXTRA_CACHE */
  1133. int ha_myisam::extra_opt(enum ha_extra_function operation, ulong cache_size)
  1134. {
  1135.   if ((specialflag & SPECIAL_SAFE_MODE) && operation == HA_EXTRA_WRITE_CACHE)
  1136.     return 0;
  1137.   return mi_extra(file, operation, (void*) &cache_size);
  1138. }
  1139. int ha_myisam::delete_all_rows()
  1140. {
  1141.   return mi_delete_all_rows(file);
  1142. }
  1143. int ha_myisam::delete_table(const char *name)
  1144. {
  1145.   return mi_delete_table(name);
  1146. }
  1147. int ha_myisam::external_lock(THD *thd, int lock_type)
  1148. {
  1149.   return mi_lock_database(file, !table->tmp_table ?
  1150.   lock_type : ((lock_type == F_UNLCK) ?
  1151.        F_UNLCK : F_EXTRA_LCK));
  1152. }
  1153. THR_LOCK_DATA **ha_myisam::store_lock(THD *thd,
  1154.       THR_LOCK_DATA **to,
  1155.       enum thr_lock_type lock_type)
  1156. {
  1157.   if (lock_type != TL_IGNORE && file->lock.type == TL_UNLOCK)
  1158.     file->lock.type=lock_type;
  1159.   *to++= &file->lock;
  1160.   return to;
  1161. }
  1162. void ha_myisam::update_create_info(HA_CREATE_INFO *create_info)
  1163. {
  1164.   ha_myisam::info(HA_STATUS_AUTO | HA_STATUS_CONST);
  1165.   if (!(create_info->used_fields & HA_CREATE_USED_AUTO))
  1166.   {
  1167.     create_info->auto_increment_value=auto_increment_value;
  1168.   }
  1169.   if (!(create_info->used_fields & HA_CREATE_USED_RAID))
  1170.   {
  1171.     create_info->raid_type= raid_type;
  1172.     create_info->raid_chunks= raid_chunks;
  1173.     create_info->raid_chunksize= raid_chunksize;
  1174.   }
  1175.   create_info->data_file_name=data_file_name;
  1176.   create_info->index_file_name=index_file_name;
  1177. }
  1178. int ha_myisam::create(const char *name, register TABLE *table_arg,
  1179.       HA_CREATE_INFO *info)
  1180. {
  1181.   int error;
  1182.   uint i,j,recpos,minpos,fieldpos,temp_length,length, create_flags= 0;
  1183.   bool found_real_auto_increment=0;
  1184.   enum ha_base_keytype type;
  1185.   char buff[FN_REFLEN];
  1186.   KEY *pos;
  1187.   MI_KEYDEF *keydef;
  1188.   MI_COLUMNDEF *recinfo,*recinfo_pos;
  1189.   HA_KEYSEG *keyseg;
  1190.   uint options=table_arg->db_options_in_use;
  1191.   DBUG_ENTER("ha_myisam::create");
  1192.   type=HA_KEYTYPE_BINARY; // Keep compiler happy
  1193.   if (!(my_multi_malloc(MYF(MY_WME),
  1194. &recinfo,(table_arg->fields*2+2)*sizeof(MI_COLUMNDEF),
  1195. &keydef, table_arg->keys*sizeof(MI_KEYDEF),
  1196. &keyseg,
  1197. ((table_arg->key_parts + table_arg->keys) *
  1198.  sizeof(HA_KEYSEG)),
  1199. NullS)))
  1200.     DBUG_RETURN(HA_ERR_OUT_OF_MEM);
  1201.   pos=table_arg->key_info;
  1202.   for (i=0; i < table_arg->keys ; i++, pos++)
  1203.   {
  1204.     keydef[i].flag= (pos->flags & (HA_NOSAME | HA_FULLTEXT | HA_SPATIAL));
  1205.     keydef[i].key_alg= pos->algorithm == HA_KEY_ALG_UNDEF ? 
  1206.       (pos->flags & HA_SPATIAL ? HA_KEY_ALG_RTREE : HA_KEY_ALG_BTREE) :
  1207.       pos->algorithm;
  1208.     keydef[i].seg=keyseg;
  1209.     keydef[i].keysegs=pos->key_parts;
  1210.     for (j=0 ; j < pos->key_parts ; j++)
  1211.     {
  1212.       keydef[i].seg[j].flag=pos->key_part[j].key_part_flag;
  1213.       Field *field=pos->key_part[j].field;
  1214.       type=field->key_type();
  1215.       if (options & HA_OPTION_PACK_KEYS ||
  1216.   (pos->flags & (HA_PACK_KEY | HA_BINARY_PACK_KEY |
  1217.  HA_SPACE_PACK_USED)))
  1218.       {
  1219. if (pos->key_part[j].length > 8 &&
  1220.     (type == HA_KEYTYPE_TEXT ||
  1221.      type == HA_KEYTYPE_NUM ||
  1222.      (type == HA_KEYTYPE_BINARY && !field->zero_pack())))
  1223. {
  1224.   /* No blobs here */
  1225.   if (j == 0)
  1226.     keydef[i].flag|=HA_PACK_KEY;
  1227.   if (!(field->flags & ZEROFILL_FLAG) &&
  1228.       (field->type() == FIELD_TYPE_STRING ||
  1229.        field->type() == FIELD_TYPE_VAR_STRING ||
  1230.        ((int) (pos->key_part[j].length - field->decimals()))
  1231.        >= 4))
  1232.     keydef[i].seg[j].flag|=HA_SPACE_PACK;
  1233. }
  1234. else if (j == 0 && (!(pos->flags & HA_NOSAME) || pos->key_length > 16))
  1235.   keydef[i].flag|= HA_BINARY_PACK_KEY;
  1236.       }
  1237.       keydef[i].seg[j].type=   (int) type;
  1238.       keydef[i].seg[j].start=  pos->key_part[j].offset;
  1239.       keydef[i].seg[j].length= pos->key_part[j].length;
  1240.       keydef[i].seg[j].bit_start=keydef[i].seg[j].bit_end=0;
  1241.       keydef[i].seg[j].language = field->charset()->number;
  1242.       if (field->null_ptr)
  1243.       {
  1244. keydef[i].seg[j].null_bit=field->null_bit;
  1245. keydef[i].seg[j].null_pos= (uint) (field->null_ptr-
  1246.    (uchar*) table_arg->record[0]);
  1247.       }
  1248.       else
  1249.       {
  1250. keydef[i].seg[j].null_bit=0;
  1251. keydef[i].seg[j].null_pos=0;
  1252.       }
  1253.       if (field->type() == FIELD_TYPE_BLOB ||
  1254.   field->type() == FIELD_TYPE_GEOMETRY)
  1255.       {
  1256. keydef[i].seg[j].flag|=HA_BLOB_PART;
  1257. /* save number of bytes used to pack length */
  1258. keydef[i].seg[j].bit_start= (uint) (field->pack_length() -
  1259.     table_arg->blob_ptr_size);
  1260.       }
  1261.     }
  1262.     keyseg+=pos->key_parts;
  1263.   }
  1264.   if (table_arg->found_next_number_field)
  1265.   {
  1266.     keydef[table_arg->next_number_index].flag|= HA_AUTO_KEY;
  1267.     found_real_auto_increment= table_arg->next_number_key_offset == 0;
  1268.   }
  1269.   recpos=0; recinfo_pos=recinfo;
  1270.   while (recpos < (uint) table_arg->reclength)
  1271.   {
  1272.     Field **field,*found=0;
  1273.     minpos=table_arg->reclength; length=0;
  1274.     for (field=table_arg->field ; *field ; field++)
  1275.     {
  1276.       if ((fieldpos=(*field)->offset()) >= recpos &&
  1277.   fieldpos <= minpos)
  1278.       {
  1279. /* skip null fields */
  1280. if (!(temp_length= (*field)->pack_length()))
  1281.   continue; /* Skip null-fields */
  1282. if (! found || fieldpos < minpos ||
  1283.     (fieldpos == minpos && temp_length < length))
  1284. {
  1285.   minpos=fieldpos; found= *field; length=temp_length;
  1286. }
  1287.       }
  1288.     }
  1289.     DBUG_PRINT("loop",("found: %lx  recpos: %d  minpos: %d  length: %d",
  1290.        found,recpos,minpos,length));
  1291.     if (recpos != minpos)
  1292.     { // Reserved space (Null bits?)
  1293.       bzero((char*) recinfo_pos,sizeof(*recinfo_pos));
  1294.       recinfo_pos->type=(int) FIELD_NORMAL;
  1295.       recinfo_pos++->length= (uint16) (minpos-recpos);
  1296.     }
  1297.     if (! found)
  1298.       break;
  1299.     if (found->flags & BLOB_FLAG)
  1300.     {
  1301.       recinfo_pos->type= (int) FIELD_BLOB;
  1302.     }
  1303.     else if (!(options & HA_OPTION_PACK_RECORD))
  1304.       recinfo_pos->type= (int) FIELD_NORMAL;
  1305.     else if (found->zero_pack())
  1306.       recinfo_pos->type= (int) FIELD_SKIP_ZERO;
  1307.     else
  1308.       recinfo_pos->type= (int) ((length <= 3 ||
  1309.       (found->flags & ZEROFILL_FLAG)) ?
  1310.      FIELD_NORMAL :
  1311.      found->type() == FIELD_TYPE_STRING ||
  1312.      found->type() == FIELD_TYPE_VAR_STRING ?
  1313.      FIELD_SKIP_ENDSPACE :
  1314.      FIELD_SKIP_PRESPACE);
  1315.     if (found->null_ptr)
  1316.     {
  1317.       recinfo_pos->null_bit=found->null_bit;
  1318.       recinfo_pos->null_pos= (uint) (found->null_ptr-
  1319.   (uchar*) table_arg->record[0]);
  1320.     }
  1321.     else
  1322.     {
  1323.       recinfo_pos->null_bit=0;
  1324.       recinfo_pos->null_pos=0;
  1325.     }
  1326.     (recinfo_pos++) ->length=(uint16) length;
  1327.     recpos=minpos+length;
  1328.     DBUG_PRINT("loop",("length: %d  type: %d",
  1329.        recinfo_pos[-1].length,recinfo_pos[-1].type));
  1330.   }
  1331.   MI_CREATE_INFO create_info;
  1332.   bzero((char*) &create_info,sizeof(create_info));
  1333.   create_info.max_rows=table_arg->max_rows;
  1334.   create_info.reloc_rows=table_arg->min_rows;
  1335.   create_info.with_auto_increment=found_real_auto_increment;
  1336.   create_info.auto_increment=(info->auto_increment_value ?
  1337.       info->auto_increment_value -1 :
  1338.       (ulonglong) 0);
  1339.   create_info.data_file_length= ((ulonglong) table_arg->max_rows *
  1340.  table_arg->avg_row_length);
  1341.   create_info.raid_type=info->raid_type;
  1342.   create_info.raid_chunks= (info->raid_chunks ? info->raid_chunks :
  1343.     RAID_DEFAULT_CHUNKS);
  1344.   create_info.raid_chunksize=(info->raid_chunksize ? info->raid_chunksize :
  1345.       RAID_DEFAULT_CHUNKSIZE);
  1346.   create_info.data_file_name= info->data_file_name;
  1347.   create_info.index_file_name=info->index_file_name;
  1348.   if (info->options & HA_LEX_CREATE_TMP_TABLE)
  1349.     create_flags|= HA_CREATE_TMP_TABLE;
  1350.   if (options & HA_OPTION_PACK_RECORD)
  1351.     create_flags|= HA_PACK_RECORD;
  1352.   if (options & HA_OPTION_CHECKSUM)
  1353.     create_flags|= HA_CREATE_CHECKSUM;
  1354.   if (options & HA_OPTION_DELAY_KEY_WRITE)
  1355.     create_flags|= HA_CREATE_DELAY_KEY_WRITE;
  1356.   /* TODO: Check that the following fn_format is really needed */
  1357.   error=mi_create(fn_format(buff,name,"","",2+4),
  1358.   table_arg->keys,keydef,
  1359.   (uint) (recinfo_pos-recinfo), recinfo,
  1360.   0, (MI_UNIQUEDEF*) 0,
  1361.   &create_info, create_flags);
  1362.   my_free((gptr) recinfo,MYF(0));
  1363.   DBUG_RETURN(error);
  1364. }
  1365. int ha_myisam::rename_table(const char * from, const char * to)
  1366. {
  1367.   return mi_rename(from,to);
  1368. }
  1369. longlong ha_myisam::get_auto_increment()
  1370. {
  1371.   if (!table->next_number_key_offset)
  1372.   { // Autoincrement at key-start
  1373.     ha_myisam::info(HA_STATUS_AUTO);
  1374.     return auto_increment_value;
  1375.   }
  1376.   /* it's safe to call the following if bulk_insert isn't on */
  1377.   mi_flush_bulk_insert(file, table->next_number_index);
  1378.   longlong nr;
  1379.   int error;
  1380.   byte key[MI_MAX_KEY_LENGTH];
  1381.   (void) extra(HA_EXTRA_KEYREAD);
  1382.   key_copy(key,table,table->next_number_index,
  1383.    table->next_number_key_offset);
  1384.   error=mi_rkey(file,table->record[1],(int) table->next_number_index,
  1385. key,table->next_number_key_offset,HA_READ_PREFIX_LAST);
  1386.   if (error)
  1387.     nr=1;
  1388.   else
  1389.     nr=(longlong)
  1390.       table->next_number_field->val_int_offset(table->rec_buff_length)+1;
  1391.   extra(HA_EXTRA_NO_KEYREAD);
  1392.   return nr;
  1393. }
  1394. /*
  1395.   Find out how many rows there is in the given range
  1396.   SYNOPSIS
  1397.     records_in_range()
  1398.     inx Index to use
  1399.     min_key Start of range.  Null pointer if from first key
  1400.     max_key End of range. Null pointer if to last key
  1401.   NOTES
  1402.     min_key.flag can have one of the following values:
  1403.       HA_READ_KEY_EXACT Include the key in the range
  1404.       HA_READ_AFTER_KEY Don't include key in range
  1405.     max_key.flag can have one of the following values:  
  1406.       HA_READ_BEFORE_KEY Don't include key in range
  1407.       HA_READ_AFTER_KEY Include all 'end_key' values in the range
  1408.   RETURN
  1409.    HA_POS_ERROR Something is wrong with the index tree.
  1410.    0 There is no matching keys in the given range
  1411.    number > 0 There is approximately 'number' matching rows in
  1412. the range.
  1413. */
  1414. ha_rows ha_myisam::records_in_range(uint inx, key_range *min_key,
  1415.                                     key_range *max_key)
  1416. {
  1417.   return (ha_rows) mi_records_in_range(file, (int) inx, min_key, max_key);
  1418. }
  1419. int ha_myisam::ft_read(byte * buf)
  1420. {
  1421.   int error;
  1422.   if (!ft_handler)
  1423.     return -1;
  1424.   thread_safe_increment(ha_read_next_count,&LOCK_status); // why ?
  1425.   error=ft_handler->please->read_next(ft_handler,(char*) buf);
  1426.   table->status=error ? STATUS_NOT_FOUND: 0;
  1427.   return error;
  1428. }
  1429. uint ha_myisam::checksum() const
  1430. {
  1431.   return (uint)file->s->state.checksum;
  1432. }