home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / ha_myisam.cpp < prev    next >
C/C++ Source or Header  |  2000-11-22  |  31KB  |  1,101 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.  
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.  
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.  
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16.  
  17.  
  18. #ifdef __GNUC__
  19. #pragma implementation                // gcc: Class implementation
  20. #endif
  21.  
  22. #include "mysql_priv.h"
  23. #include <m_ctype.h>
  24. #include <myisampack.h>
  25. #include "ha_myisam.h"
  26. #include <stdarg.h>
  27. #ifndef MASTER
  28. #include "../srclib/myisam/myisamdef.h"
  29. #else
  30. #include "../myisam/myisamdef.h"
  31. #endif
  32.  
  33. ulong myisam_sort_buffer_size;
  34. ulong myisam_recover_options= HA_RECOVER_NONE;
  35.  
  36. /* bits in myisam_recover_options */
  37. const char *myisam_recover_names[] =
  38. { "DEFAULT", "BACKUP", "FORCE", "QUICK"};
  39. TYPELIB myisam_recover_typelib= {array_elements(myisam_recover_names),"",
  40.                  myisam_recover_names};
  41.  
  42.  
  43. /*****************************************************************************
  44. ** MyISAM tables
  45. *****************************************************************************/
  46.  
  47. // collect errors printed by mi_check routines
  48. static void mi_check_print_msg(MI_CHECK *param,    const char* msg_type,
  49.                    const char *fmt, va_list args)
  50. {
  51.   THD* thd = (THD*)param->thd;
  52.   String* packet = &thd->packet;
  53.   packet->length(0);
  54.   char msgbuf[MI_MAX_MSG_BUF];
  55.   msgbuf[0] = 0;
  56.  
  57.   my_vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
  58.   msgbuf[sizeof(msgbuf) - 1] = 0; // healthy paranoia
  59.  
  60.   DBUG_PRINT(msg_type,("message: %s",msgbuf));
  61.  
  62.   if (thd->net.vio == 0)
  63.   {
  64.     sql_print_error(msgbuf);
  65.     return;
  66.   }
  67.   if (param->testflag & (T_CREATE_MISSING_KEYS | T_SAFE_REPAIR |
  68.              T_AUTO_REPAIR))
  69.   {
  70.     my_message(ER_NOT_KEYFILE,msgbuf,MYF(MY_WME));
  71.     return;
  72.   }
  73.   net_store_data(packet, param->table_name);
  74.   net_store_data(packet, param->op_name);
  75.   net_store_data(packet, msg_type);
  76.   net_store_data(packet, msgbuf);
  77.   if (my_net_write(&thd->net, (char*)thd->packet.ptr(), thd->packet.length()))
  78.     fprintf(stderr,
  79.             "Failed on my_net_write, writing to stderr instead: %s\n",
  80.             msgbuf);
  81.   return;
  82. }
  83.  
  84. extern "C" {
  85.  
  86. void mi_check_print_error(MI_CHECK *param, const char *fmt,...)
  87. {
  88.   param->error_printed|=1;
  89.   param->out_flag|= O_DATA_LOST;
  90.   va_list args;
  91.   va_start(args, fmt);
  92.   mi_check_print_msg(param, "error", fmt, args);
  93.   va_end(args);
  94. }
  95.  
  96. void mi_check_print_info(MI_CHECK *param, const char *fmt,...)
  97. {
  98.   va_list args;
  99.   va_start(args, fmt);
  100.   mi_check_print_msg(param, "info", fmt, args);
  101.   va_end(args);
  102. }
  103.  
  104. void mi_check_print_warning(MI_CHECK *param, const char *fmt,...)
  105. {
  106.   param->warning_printed=1;
  107.   param->out_flag|= O_DATA_LOST;
  108.   va_list args;
  109.   va_start(args, fmt);
  110.   mi_check_print_msg(param, "warning", fmt, args);
  111.   va_end(args);
  112. }
  113.  
  114. }
  115.  
  116. const char **ha_myisam::bas_ext() const
  117. { static const char *ext[]= { ".MYD",".MYI", NullS }; return ext; }
  118.  
  119.  
  120. int ha_myisam::net_read_dump(NET* net)
  121. {
  122.   int data_fd = file->dfile;
  123.   int error = 0;
  124.  
  125.   my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
  126.   for(;;)
  127.   {
  128.     uint packet_len = my_net_read(net);
  129.     if (!packet_len)
  130.       break ; // end of file
  131.     if (packet_len == packet_error)
  132.     {
  133.       sql_print_error("ha_myisam::net_read_dump - read error ");
  134.       error= -1;
  135.       goto err;
  136.     }
  137.     if (my_write(data_fd, (byte*)net->read_pos, packet_len,
  138.          MYF(MY_WME|MY_FNABP)))
  139.     {
  140.       error = errno;
  141.       goto err;
  142.     }
  143.   }
  144.  
  145. err:
  146.   return error;
  147. }
  148.  
  149.  
  150. int ha_myisam::dump(THD* thd, int fd)
  151. {
  152.   MYISAM_SHARE* share = file->s;
  153.   NET* net = &thd->net;
  154.   uint blocksize = share->blocksize;
  155.   my_off_t bytes_to_read = share->state.state.data_file_length;
  156.   int data_fd = file->dfile;
  157.   byte * buf = (byte*) my_malloc(blocksize, MYF(MY_WME));
  158.   if (!buf)
  159.     return ENOMEM;
  160.  
  161.   int error = 0;
  162.   my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
  163.   for(; bytes_to_read > 0;)
  164.   {
  165.     uint bytes = my_read(data_fd, buf, blocksize, MYF(MY_WME));
  166.     if (bytes == MY_FILE_ERROR)
  167.     {
  168.       error = errno;
  169.       goto err;
  170.     }
  171.  
  172.     if (fd >= 0)
  173.     {
  174.       if (my_write(fd, buf, bytes, MYF(MY_WME | MY_FNABP)))
  175.       {
  176.     error = errno ? errno : EPIPE;
  177.     goto err;
  178.       }
  179.     }
  180.     else
  181.     {
  182.       if (my_net_write(net, (char*) buf, bytes))
  183.       {
  184.     error = errno ? errno : EPIPE;
  185.     goto err;
  186.       }
  187.     }
  188.     bytes_to_read -= bytes;
  189.   }
  190.  
  191.   if (fd < 0)
  192.   {
  193.     my_net_write(net, "", 0);
  194.     net_flush(net);
  195.   }
  196.  
  197. err:
  198.   my_free((gptr) buf, MYF(0));
  199.   return error;
  200. }
  201.  
  202. int ha_myisam::open(const char *name, int mode, uint test_if_locked)
  203. {
  204.   char name_buff[FN_REFLEN];
  205.   if (!(file=mi_open(fn_format(name_buff,name,"","",2 | 4), mode,
  206.              test_if_locked)))
  207.     return (my_errno ? my_errno : -1);
  208.  
  209.   if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE))
  210.     VOID(mi_extra(file,HA_EXTRA_NO_WAIT_LOCK));
  211.   info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  212.   if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
  213.     VOID(mi_extra(file,HA_EXTRA_WAIT_LOCK));
  214.   if (!table->db_record_offset)
  215.     int_option_flag|=HA_REC_NOT_IN_SEQ;
  216.   return (0);
  217. }
  218.  
  219. int ha_myisam::close(void)
  220. {
  221.   MI_INFO *tmp=file;
  222.   file=0;
  223.   return mi_close(tmp);
  224. }
  225.  
  226. int ha_myisam::write_row(byte * buf)
  227. {
  228.   statistic_increment(ha_write_count,&LOCK_status);
  229.   if (table->time_stamp)
  230.     update_timestamp(buf+table->time_stamp-1);
  231.   if (table->next_number_field && buf == table->record[0])
  232.     update_auto_increment();
  233.   return mi_write(file,buf);
  234. }
  235.  
  236. int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt)
  237. {
  238.   if (!file) return HA_ADMIN_INTERNAL_ERROR;
  239.   int error ;
  240.   MI_CHECK param;
  241.   MYISAM_SHARE* share = file->s;
  242.  
  243.   myisamchk_init(¶m);
  244.   param.thd = thd;
  245.   param.op_name = (char*)"check";
  246.   param.table_name = table->table_name;
  247.   param.testflag = check_opt->flags | T_CHECK | T_SILENT | T_MEDIUM;
  248.  
  249.   if (!(table->db_stat & HA_READ_ONLY))
  250.     param.testflag|= T_STATISTICS;
  251.   param.using_global_keycache = 1;
  252.  
  253.   if (!mi_is_crashed(file) &&
  254.       (((param.testflag & T_CHECK_ONLY_CHANGED) &&
  255.     !(share->state.changed & (STATE_CHANGED | STATE_CRASHED |
  256.                   STATE_CRASHED_ON_REPAIR)) &&
  257.     share->state.open_count == 0) ||
  258.        ((param.testflag & T_FAST) && (share->state.open_count ==
  259.                       (uint) (share->global_changed ? 1 : 0)))))
  260.     return HA_ADMIN_ALREADY_DONE;
  261.  
  262.   error = chk_status(¶m, file);        // Not fatal
  263.   error = chk_size(¶m, file);
  264.   if (!error)
  265.     error |= chk_del(¶m, file, param.testflag);
  266.   if (!error)
  267.     error = chk_key(¶m, file);
  268.   if (!error)
  269.   {
  270.     if ((!check_opt->quick &&
  271.     (share->options &
  272.      (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD))) ||
  273.     mi_is_crashed(file))
  274.     {
  275.       init_io_cache(¶m.read_cache, file->dfile,
  276.             my_default_record_cache_size, READ_CACHE,
  277.             share->pack.header_length, 1, MYF(MY_WME));
  278.       error |= chk_data_link(¶m, file, param.testflag & T_EXTEND);
  279.       end_io_cache(&(param.read_cache));
  280.     }
  281.   }
  282.   if (!error)
  283.   {
  284.     if ((share->state.changed & (STATE_CHANGED |
  285.                  STATE_CRASHED_ON_REPAIR |
  286.                  STATE_CRASHED | STATE_NOT_ANALYZED)) ||
  287.     (param.testflag & T_STATISTICS) ||
  288.     mi_is_crashed(file))
  289.     {
  290.       file->update|=HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  291.       pthread_mutex_lock(&share->intern_lock);
  292.       share->state.changed&= ~(STATE_CHANGED | STATE_CRASHED |
  293.                    STATE_CRASHED_ON_REPAIR);
  294.       if (!(table->db_stat & HA_READ_ONLY))
  295.     error=update_state_info(¶m,file,UPDATE_TIME | UPDATE_OPEN_COUNT |
  296.                 UPDATE_STAT);
  297.       pthread_mutex_unlock(&share->intern_lock);
  298.       info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE |
  299.        HA_STATUS_CONST);
  300.     }
  301.   }
  302.   else if (!mi_is_crashed(file))
  303.   {
  304.     mi_mark_crashed(file);
  305.     file->update |= HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  306.   }
  307.   check_opt->retry_without_quick=param.retry_without_quick;
  308.  
  309.   return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
  310. }
  311.  
  312.  
  313. /*
  314.   analyze the key distribution in the table
  315.   As the table may be only locked for read, we have to take into account that
  316.   two threads may do an analyze at the same time!
  317. */
  318.  
  319. int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt)
  320. {
  321.   int error=0;
  322.   MI_CHECK param;
  323.   MYISAM_SHARE* share = file->s;
  324.  
  325.   myisamchk_init(¶m);
  326.   param.thd = thd;
  327.   param.op_name = (char*) "analyze";
  328.   param.table_name = table->table_name;
  329.   param.testflag=(T_FAST | T_CHECK | T_SILENT | T_STATISTICS |
  330.           T_DONT_CHECK_CHECKSUM);
  331.   param.using_global_keycache = 1;
  332.  
  333.   if (!(share->state.changed & STATE_NOT_ANALYZED))
  334.     return HA_ADMIN_ALREADY_DONE;
  335.  
  336.   error = chk_key(¶m, file);
  337.   if (!error)
  338.   {
  339.     pthread_mutex_lock(&share->intern_lock);
  340.     error=update_state_info(¶m,file,UPDATE_STAT);
  341.     pthread_mutex_unlock(&share->intern_lock);
  342.   }
  343.   else if (!mi_is_crashed(file))
  344.     mi_mark_crashed(file);
  345.   return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
  346. }
  347.  
  348.  
  349. int ha_myisam::restore(THD* thd, HA_CHECK_OPT *check_opt)
  350. {
  351.   HA_CHECK_OPT tmp_check_opt;
  352.   char* backup_dir = thd->lex.backup_dir;
  353.   char src_path[FN_REFLEN], dst_path[FN_REFLEN];
  354.   char* table_name = table->real_name;
  355.   if (!fn_format(src_path, table_name, backup_dir, MI_NAME_DEXT, 4 + 64))
  356.     return HA_ADMIN_INVALID;
  357.  
  358.   int error = 0;
  359.   const char* errmsg = "";
  360.  
  361.   if (my_copy(src_path, fn_format(dst_path, table->path, "",
  362.                   MI_NAME_DEXT, 4), MYF(MY_WME)))
  363.   {
  364.     error = HA_ADMIN_FAILED;
  365.     errmsg = "failed in my_copy( Error %d)";
  366.     goto err;
  367.   }
  368.  
  369.   tmp_check_opt.init();
  370.   tmp_check_opt.quick = 1;
  371.   return repair(thd, &tmp_check_opt);
  372.  
  373.  err:
  374.   {
  375.     MI_CHECK param;
  376.     myisamchk_init(¶m);
  377.     param.thd = thd;
  378.     param.op_name = (char*)"restore";
  379.     param.table_name = table->table_name;
  380.     param.testflag = 0;
  381.     mi_check_print_error(¶m,errmsg, errno );
  382.     return error;
  383.   }
  384. }
  385.  
  386.  
  387. int ha_myisam::backup(THD* thd, HA_CHECK_OPT *check_opt)
  388. {
  389.   char* backup_dir = thd->lex.backup_dir;
  390.   char src_path[FN_REFLEN], dst_path[FN_REFLEN];
  391.   char* table_name = table->real_name;
  392.   if (!fn_format(dst_path, table_name, backup_dir, reg_ext, 4 + 64))
  393.     return HA_ADMIN_INVALID;
  394.   if (my_copy(fn_format(src_path, table->path,"", reg_ext, 4),
  395.          dst_path,
  396.          MYF(MY_WME | MY_HOLD_ORIGINAL_MODES )))
  397.   {
  398.     return HA_ADMIN_FAILED;
  399.   }
  400.  
  401.   if (!fn_format(dst_path, table_name, backup_dir, MI_NAME_DEXT, 4 + 64))
  402.     return HA_ADMIN_INVALID;
  403.  
  404.   if (my_copy(fn_format(src_path, table->path,"", MI_NAME_DEXT, 4),
  405.           dst_path,
  406.           MYF(MY_WME | MY_HOLD_ORIGINAL_MODES ))  )
  407.     return HA_ADMIN_FAILED;
  408.  
  409.   return HA_ADMIN_OK;
  410. }
  411.  
  412.  
  413. int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt)
  414. {
  415.   int error;
  416.   MI_CHECK param;
  417.   ha_rows start_records;
  418.  
  419.   if (!file) return HA_ADMIN_INTERNAL_ERROR;
  420.  
  421.   myisamchk_init(¶m);
  422.   param.thd = thd;
  423.   param.op_name = (char*) "repair";
  424.   param.testflag = ((check_opt->flags | T_SILENT | T_FORCE_CREATE) |
  425.             (check_opt->flags & T_EXTEND ? T_REP : T_REP_BY_SORT));
  426.   if (check_opt->quick)
  427.     param.opt_rep_quick++;
  428.   param.sort_buffer_length=  check_opt->sort_buffer_size;
  429.   start_records=file->state->records;
  430.   while ((error=repair(thd,param,0)) && param.retry_repair)
  431.   {
  432.     param.retry_repair=0;
  433.     if (param.retry_without_quick && param.opt_rep_quick)
  434.     {
  435.       param.opt_rep_quick=0;
  436.       sql_print_error("Warning: Retrying repair of:  '%s' without quick",
  437.               table->path);
  438.       continue;
  439.     }
  440.     param.opt_rep_quick=0;            // Safety
  441.     if ((param.testflag & T_REP_BY_SORT))
  442.     {
  443.       param.testflag= (param.testflag & ~T_REP_BY_SORT) | T_REP;
  444.       sql_print_error("Warning: Retrying repair of:  '%s' with keycache",
  445.               table->path);
  446.       continue;
  447.     }
  448.     break;
  449.   }
  450.   if (!error && start_records != file->state->records)
  451.   {
  452.     char llbuff[22],llbuff2[22];
  453.     sql_print_error("Warning: Found %s of %s rows when repairing '%s'",
  454.             llstr(file->state->records, llbuff),
  455.             llstr(start_records, llbuff2),
  456.             table->path);
  457.   }
  458.   return error;
  459. }
  460.  
  461. int ha_myisam::optimize(THD* thd, HA_CHECK_OPT *check_opt)
  462. {
  463.   if (!file) return HA_ADMIN_INTERNAL_ERROR;
  464.   MI_CHECK param;
  465.  
  466.   myisamchk_init(¶m);
  467.   param.thd = thd;
  468.   param.op_name = (char*) "optimize";
  469.   param.testflag = (check_opt->flags | T_SILENT | T_FORCE_CREATE |
  470.             T_REP_BY_SORT | T_STATISTICS | T_SORT_INDEX);
  471.   if (check_opt->quick)
  472.     param.opt_rep_quick++;
  473.   param.sort_buffer_length=  check_opt->sort_buffer_size;
  474.   return repair(thd,param,1);
  475. }
  476.  
  477.  
  478. int ha_myisam::repair(THD *thd, MI_CHECK ¶m, bool optimize)
  479. {
  480.   int error=0;
  481.   uint extra_testflag=0;
  482.   bool optimize_done= !optimize, statistics_done=0;
  483.   char fixed_name[FN_REFLEN];
  484.   const char *old_proc_info=thd->proc_info;
  485.   MYISAM_SHARE* share = file->s;
  486.   DBUG_ENTER("ha_myisam::repair");
  487.  
  488.   param.table_name = table->table_name;
  489.   param.tmpfile_createflag = O_RDWR | O_TRUNC;
  490.   param.using_global_keycache = 1;
  491.   param.thd=thd;
  492.   param.tmpdir=mysql_tmpdir;
  493.   param.out_flag=0;
  494.   VOID(fn_format(fixed_name,file->filename,"",MI_NAME_IEXT,
  495.              4+ (param.opt_follow_links ? 16 : 0)));
  496.  
  497.   if (mi_lock_database(file,F_WRLCK))
  498.   {
  499.     mi_check_print_error(¶m,ER(ER_CANT_LOCK),my_errno);
  500.     DBUG_RETURN(HA_ADMIN_FAILED);
  501.   }
  502.  
  503.   if (!optimize ||
  504.       ((file->state->del || share->state.split != file->state->records) &&
  505.        (!param.opt_rep_quick ||
  506.     !(share->state.changed & STATE_NOT_OPTIMIZED_KEYS))))
  507.   {
  508.     optimize_done=1;
  509.     if (mi_test_if_sort_rep(file,file->state->records,0) &&
  510.     (param.testflag & T_REP_BY_SORT))
  511.     {
  512.       uint testflag=param.testflag;
  513.       extra_testflag=  T_STATISTICS;
  514.       param.testflag|= T_STATISTICS;        // We get this for free
  515.       thd->proc_info="Repair by sorting";
  516.       statistics_done=1;
  517.       error = mi_repair_by_sort(¶m, file, fixed_name, param.opt_rep_quick);
  518.       param.testflag=testflag;
  519.     }
  520.     else
  521.     {
  522.       thd->proc_info="Repair with keycache";
  523.       param.testflag &= ~T_REP_BY_SORT;
  524.       error=  mi_repair(¶m, file, fixed_name, param.opt_rep_quick);
  525.     }
  526.   }
  527.   if (!error)
  528.   {
  529.     if ((param.testflag & T_SORT_INDEX) &&
  530.     (share->state.changed & STATE_NOT_SORTED_PAGES))
  531.     {
  532.       optimize_done=1;
  533.       thd->proc_info="Sorting index";
  534.       error=mi_sort_index(¶m,file,fixed_name);
  535.     }
  536.     if (!statistics_done && (param.testflag & T_STATISTICS) &&
  537.     (share->state.changed & STATE_NOT_ANALYZED))
  538.     {
  539.       optimize_done=1;
  540.       thd->proc_info="Analyzing";
  541.       error = chk_key(¶m, file);
  542.     }
  543.   }
  544.   thd->proc_info="saving state";
  545.   if (!error)
  546.   {
  547.     if (share->state.changed & STATE_CHANGED)
  548.     {
  549.       share->state.changed&= ~(STATE_CHANGED | STATE_CRASHED |
  550.                    STATE_CRASHED_ON_REPAIR);
  551.       file->update|=HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  552.     }
  553.     file->save_state=file->s->state.state;
  554.     if (file->s->base.auto_key)
  555.       update_auto_increment_key(¶m, file, 1);
  556.     error = update_state_info(¶m, file,
  557.                   UPDATE_TIME | UPDATE_OPEN_COUNT |
  558.                   ((param.testflag | extra_testflag) &
  559.                    T_STATISTICS ? UPDATE_STAT : 0));
  560.     info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE |
  561.      HA_STATUS_CONST);
  562.   }
  563.   else
  564.   {
  565.     mi_mark_crashed_on_repair(file);
  566.     file->update |= HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  567.     update_state_info(¶m, file, 0);
  568.   }
  569.   thd->proc_info=old_proc_info;
  570.   mi_lock_database(file,F_UNLCK);
  571.   DBUG_RETURN(error ? HA_ADMIN_FAILED :
  572.           !optimize_done ? HA_ADMIN_ALREADY_DONE : HA_ADMIN_OK);
  573. }
  574.  
  575.  
  576. /* Deactive all not unique index that can be recreated fast */
  577.  
  578. void ha_myisam::deactivate_non_unique_index(ha_rows rows)
  579. {
  580.   if (!(specialflag & SPECIAL_SAFE_MODE))
  581.     mi_disable_non_unique_index(file,rows);
  582. }
  583.  
  584.  
  585. bool ha_myisam::activate_all_index(THD *thd)
  586. {
  587.   int error=0;
  588.   MI_CHECK param;
  589.   MYISAM_SHARE* share = file->s;
  590.   DBUG_ENTER("activate_all_index");
  591.   if (share->state.key_map != ((ulonglong) 1L << share->base.keys)-1)
  592.   {
  593.     const char *save_proc_info=thd->proc_info;
  594.     thd->proc_info="creating index";
  595.     myisamchk_init(¶m);
  596.     param.op_name = (char*) "recreating_index";
  597.     param.testflag = (T_SILENT | T_REP_BY_SORT |
  598.               T_CREATE_MISSING_KEYS | T_TRUST_HEADER);
  599.     param.myf_rw&= ~MY_WAIT_IF_FULL;
  600.     param.sort_buffer_length=  myisam_sort_buffer_size;
  601.     param.opt_rep_quick++;
  602.     param.tmpdir=mysql_tmpdir;
  603.  
  604.     error=repair(thd,param,0) != HA_ADMIN_OK;
  605.     thd->proc_info=save_proc_info;
  606.   }
  607.   DBUG_RETURN(error);
  608. }
  609.  
  610.  
  611. bool ha_myisam::check_and_repair(THD *thd)
  612. {
  613.   int error=0;
  614.   int marked_crashed;
  615.   HA_CHECK_OPT check_opt;
  616.   DBUG_ENTER("ha_myisam::auto_check_and_repair");
  617.  
  618.   check_opt.init();
  619.   check_opt.flags= T_MEDIUM | T_AUTO_REPAIR;
  620.   // Don't use quick if deleted rows
  621.   if (!file->state->del && (myisam_recover_options & HA_RECOVER_QUICK))
  622.     check_opt.quick=1;
  623.   sql_print_error("Warning: Checking table:   '%s'",table->path);
  624.   if ((marked_crashed=mi_is_crashed(file)) || check(thd, &check_opt))
  625.   {
  626.     sql_print_error("Warning: Recovering table: '%s'",table->path);
  627.     check_opt.quick= !check_opt.retry_without_quick && !marked_crashed;
  628.     check_opt.flags=(((myisam_recover_options & HA_RECOVER_BACKUP) ?
  629.               T_BACKUP_DATA : 0) |
  630.              (!(myisam_recover_options & HA_RECOVER_FORCE) ?
  631.               T_SAFE_REPAIR : 0)) | T_AUTO_REPAIR;
  632.     if (repair(thd, &check_opt))
  633.       error=1;
  634.   }
  635.   DBUG_RETURN(error);
  636. }
  637.  
  638. bool ha_myisam::is_crashed() const
  639. {
  640.   return (file->s->state.changed & STATE_CRASHED ||
  641.       (my_disable_locking && file->s->state.open_count));
  642. }
  643.  
  644. int ha_myisam::update_row(const byte * old_data, byte * new_data)
  645. {
  646.   statistic_increment(ha_update_count,&LOCK_status);
  647.   if (table->time_stamp)
  648.     update_timestamp(new_data+table->time_stamp-1);
  649.   return mi_update(file,old_data,new_data);
  650. }
  651.  
  652. int ha_myisam::delete_row(const byte * buf)
  653. {
  654.   statistic_increment(ha_delete_count,&LOCK_status);
  655.   return mi_delete(file,buf);
  656. }
  657.  
  658. int ha_myisam::index_read(byte * buf, const byte * key,
  659.               uint key_len, enum ha_rkey_function find_flag)
  660. {
  661.   statistic_increment(ha_read_key_count,&LOCK_status);
  662.   int error=mi_rkey(file,buf,active_index, key, key_len, find_flag);
  663.   table->status=error ? STATUS_NOT_FOUND: 0;
  664.   return error;
  665. }
  666.  
  667. int ha_myisam::index_read_idx(byte * buf, uint index, const byte * key,
  668.                   uint key_len, enum ha_rkey_function find_flag)
  669. {
  670.   statistic_increment(ha_read_key_count,&LOCK_status);
  671.   int error=mi_rkey(file,buf,index, key, key_len, find_flag);
  672.   table->status=error ? STATUS_NOT_FOUND: 0;
  673.   return error;
  674. }
  675.  
  676. int ha_myisam::index_next(byte * buf)
  677. {
  678.   statistic_increment(ha_read_next_count,&LOCK_status);
  679.   int error=mi_rnext(file,buf,active_index);
  680.   table->status=error ? STATUS_NOT_FOUND: 0;
  681.   return error;
  682. }
  683.  
  684. int ha_myisam::index_prev(byte * buf)
  685. {
  686.   statistic_increment(ha_read_prev_count,&LOCK_status);
  687.   int error=mi_rprev(file,buf, active_index);
  688.   table->status=error ? STATUS_NOT_FOUND: 0;
  689.   return error;
  690. }
  691.  
  692. int ha_myisam::index_first(byte * buf)
  693. {
  694.   statistic_increment(ha_read_first_count,&LOCK_status);
  695.   int error=mi_rfirst(file, buf, active_index);
  696.   table->status=error ? STATUS_NOT_FOUND: 0;
  697.   return error;
  698. }
  699.  
  700. int ha_myisam::index_last(byte * buf)
  701. {
  702.   statistic_increment(ha_read_last_count,&LOCK_status);
  703.   int error=mi_rlast(file, buf, active_index);
  704.   table->status=error ? STATUS_NOT_FOUND: 0;
  705.   return error;
  706. }
  707.  
  708. int ha_myisam::index_next_same(byte * buf,
  709.                    const byte *key __attribute__((unused)),
  710.                    uint length __attribute__((unused)))
  711. {
  712.   statistic_increment(ha_read_next_count,&LOCK_status);
  713.   int error=mi_rnext_same(file,buf);
  714.   table->status=error ? STATUS_NOT_FOUND: 0;
  715.   return error;
  716. }
  717.  
  718.  
  719. int ha_myisam::rnd_init(bool scan)
  720. {
  721.   if (scan)
  722.     return mi_scan_init(file);
  723.   else
  724.     return mi_extra(file,HA_EXTRA_RESET);
  725. }
  726.  
  727. int ha_myisam::rnd_next(byte *buf)
  728. {
  729.   statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  730.   int error=mi_scan(file, buf);
  731.   table->status=error ? STATUS_NOT_FOUND: 0;
  732.   return error;
  733. }
  734.  
  735. int ha_myisam::restart_rnd_next(byte *buf, byte *pos)
  736. {
  737.   return rnd_pos(buf,pos);
  738. }
  739.  
  740. int ha_myisam::rnd_pos(byte * buf, byte *pos)
  741. {
  742.   statistic_increment(ha_read_rnd_count,&LOCK_status);
  743.   int error=mi_rrnd(file, buf, ha_get_ptr(pos,ref_length));
  744.   table->status=error ? STATUS_NOT_FOUND: 0;
  745.   return error;
  746. }
  747.  
  748. void ha_myisam::position(const byte* record)
  749. {
  750.   my_off_t position=mi_position(file);
  751.   ha_store_ptr(ref, ref_length, position);
  752. }
  753.  
  754. void ha_myisam::info(uint flag)
  755. {
  756.   MI_ISAMINFO info;
  757.   (void) mi_status(file,&info,flag);
  758.   if (flag & HA_STATUS_VARIABLE)
  759.   {
  760.     records = info.records;
  761.     deleted = info.deleted;
  762.     data_file_length=info.data_file_length;
  763.     index_file_length=info.index_file_length;
  764.     delete_length = info.delete_length;
  765.     check_time  = info.check_time;
  766.     mean_rec_length=info.mean_reclength;
  767.   }
  768.   if (flag & HA_STATUS_CONST)
  769.   {
  770.     max_data_file_length=info.max_data_file_length;
  771.     max_index_file_length=info.max_index_file_length;
  772.     create_time = info.create_time;
  773.     sortkey = info.sortkey;
  774.     ref_length=info.reflength;
  775.     table->db_options_in_use    = info.options;
  776.     block_size=myisam_block_size;
  777.     table->keys_in_use &= info.key_map;
  778.     table->db_record_offset=info.record_offset;
  779.     if (table->key_parts)
  780.       memcpy((char*) table->key_info[0].rec_per_key,
  781.          (char*) info.rec_per_key,
  782.          sizeof(ulong)*table->key_parts);
  783.     raid_type=info.raid_type;
  784.     raid_chunks=info.raid_chunks;
  785.     raid_chunksize=info.raid_chunksize;
  786.   }
  787.   if (flag & HA_STATUS_ERRKEY)
  788.   {
  789.     errkey  = info.errkey;
  790.     ha_store_ptr(dupp_ref, ref_length, info.dupp_key_pos);
  791.   }
  792.   if (flag & HA_STATUS_TIME)
  793.     update_time = info.update_time;
  794.   if (flag & HA_STATUS_AUTO)
  795.     auto_increment_value= info.auto_increment;
  796. }
  797.  
  798.  
  799. int ha_myisam::extra(enum ha_extra_function operation)
  800. {
  801.   if (((specialflag & SPECIAL_SAFE_MODE) || (test_flags & TEST_NO_EXTRA)) &&
  802.       (operation == HA_EXTRA_WRITE_CACHE ||
  803.        operation == HA_EXTRA_KEYREAD))
  804.     return 0;
  805.   return mi_extra(file,operation);
  806. }
  807.  
  808. int ha_myisam::reset(void)
  809. {
  810.   return mi_extra(file,HA_EXTRA_RESET);
  811. }
  812.  
  813. int ha_myisam::delete_all_rows()
  814. {
  815.   return mi_delete_all_rows(file);
  816. }
  817.  
  818. int ha_myisam::delete_table(const char *name)
  819. {
  820.   return mi_delete_table(name);
  821. }
  822.  
  823. int ha_myisam::external_lock(THD *thd, int lock_type)
  824. {
  825.   return mi_lock_database(file,lock_type);
  826. }
  827.  
  828.  
  829. THR_LOCK_DATA **ha_myisam::store_lock(THD *thd,
  830.                       THR_LOCK_DATA **to,
  831.                       enum thr_lock_type lock_type)
  832. {
  833.   if (lock_type != TL_IGNORE && file->lock.type == TL_UNLOCK)
  834.     file->lock.type=lock_type;
  835.   *to++= &file->lock;
  836.   return to;
  837. }
  838.  
  839. void ha_myisam::update_create_info(HA_CREATE_INFO *create_info)
  840. {
  841.   table->file->info(HA_STATUS_AUTO | HA_STATUS_CONST);
  842.   if (!(create_info->used_fields & HA_CREATE_USED_AUTO))
  843.   {
  844.     create_info->auto_increment_value=auto_increment_value;
  845.   }
  846.   if (!(create_info->used_fields & HA_CREATE_USED_RAID))
  847.   {
  848.     create_info->raid_type= raid_type;
  849.     create_info->raid_chunks= raid_chunks;
  850.     create_info->raid_chunksize= raid_chunksize;
  851.   }
  852. }
  853.  
  854.  
  855. int ha_myisam::create(const char *name, register TABLE *form,
  856.               HA_CREATE_INFO *info)
  857. {
  858.   int error;
  859.   uint i,j,recpos,minpos,fieldpos,temp_length,length;
  860.   bool found_auto_increment=0;
  861.   enum ha_base_keytype type;
  862.   char buff[FN_REFLEN];
  863.   KEY *pos;
  864.   MI_KEYDEF *keydef;
  865.   MI_COLUMNDEF *recinfo,*recinfo_pos;
  866.   MI_KEYSEG *keyseg;
  867.   uint options=form->db_options_in_use;
  868.   DBUG_ENTER("ha_myisam::create");
  869.  
  870.   type=HA_KEYTYPE_BINARY;                // Keep compiler happy
  871.   if (!(my_multi_malloc(MYF(MY_WME),
  872.             &recinfo,(form->fields*2+2)*sizeof(MI_COLUMNDEF),
  873.             &keydef, form->keys*sizeof(MI_KEYDEF),
  874.             &keyseg,
  875.             ((form->key_parts + form->keys) * sizeof(MI_KEYSEG)),
  876.             0)))
  877.     DBUG_RETURN(1);
  878.  
  879.   pos=form->key_info;
  880.   for (i=0; i < form->keys ; i++, pos++)
  881.   {
  882.     keydef[i].flag= (pos->flags & (HA_NOSAME | HA_FULLTEXT));
  883.     keydef[i].seg=keyseg;
  884.     keydef[i].keysegs=pos->key_parts;
  885.     for (j=0 ; j < pos->key_parts ; j++)
  886.     {
  887.       keydef[i].seg[j].flag=pos->key_part[j].key_part_flag;
  888.       Field *field=pos->key_part[j].field;
  889.       type=field->key_type();
  890.  
  891.       if (options & HA_OPTION_PACK_KEYS ||
  892.       (pos->flags & (HA_PACK_KEY | HA_BINARY_PACK_KEY |
  893.              HA_SPACE_PACK_USED)))
  894.       {
  895.     if (pos->key_part[j].length > 8 &&
  896.         (type == HA_KEYTYPE_TEXT ||
  897.          type == HA_KEYTYPE_NUM ||
  898.          (type == HA_KEYTYPE_BINARY && !field->zero_pack())))
  899.     {
  900.       /* No blobs here */
  901.       if (j == 0)
  902.         keydef[i].flag|=HA_PACK_KEY;
  903.       if (!(field->flags & ZEROFILL_FLAG) &&
  904.           (field->type() == FIELD_TYPE_STRING ||
  905.            field->type() == FIELD_TYPE_VAR_STRING ||
  906.            ((int) (pos->key_part[j].length - field->decimals()))
  907.            >= 4))
  908.         keydef[i].seg[j].flag|=HA_SPACE_PACK;
  909.     }
  910.     else if (j == 0 && (!(pos->flags & HA_NOSAME) || pos->key_length > 16))
  911.       keydef[i].flag|= HA_BINARY_PACK_KEY;
  912.       }
  913.       keydef[i].seg[j].type=   (int) type;
  914.       keydef[i].seg[j].start=  pos->key_part[j].offset;
  915.       keydef[i].seg[j].length= pos->key_part[j].length;
  916.       keydef[i].seg[j].bit_start=keydef[i].seg[j].bit_end=0;
  917.       keydef[i].seg[j].language=MY_CHARSET_CURRENT;
  918.  
  919.       if (field->null_ptr)
  920.       {
  921.     keydef[i].seg[j].null_bit=field->null_bit;
  922.     keydef[i].seg[j].null_pos= (uint) (field->null_ptr-
  923.                        (uchar*) form->record[0]);
  924.       }
  925.       else
  926.       {
  927.     keydef[i].seg[j].null_bit=0;
  928.     keydef[i].seg[j].null_pos=0;
  929.       }
  930.       if (j == 0 && field->flags & AUTO_INCREMENT_FLAG &&
  931.       !found_auto_increment)
  932.       {
  933.     keydef[i].flag|=HA_AUTO_KEY;
  934.     found_auto_increment=1;
  935.       }
  936.       if (field->type() == FIELD_TYPE_BLOB)
  937.       {
  938.     keydef[i].seg[j].flag|=HA_BLOB_PART;
  939.     /* save number of bytes used to pack length */
  940.     keydef[i].seg[j].bit_start= (uint) (field->pack_length() -
  941.                         form->blob_ptr_size);
  942.       }
  943.     }
  944.     keyseg+=pos->key_parts;
  945.   }
  946.  
  947.   recpos=0; recinfo_pos=recinfo;
  948.   while (recpos < (uint) form->reclength)
  949.   {
  950.     Field **field,*found=0;
  951.     minpos=form->reclength; length=0;
  952.  
  953.     for (field=form->field ; *field ; field++)
  954.     {
  955.       if ((fieldpos=(*field)->offset()) >= recpos &&
  956.       fieldpos <= minpos)
  957.       {
  958.     /* skip null fields */
  959.     if (!(temp_length= (*field)->pack_length()))
  960.       continue;                /* Skipp null-fields */
  961.     if (! found || fieldpos < minpos ||
  962.         (fieldpos == minpos && temp_length < length))
  963.     {
  964.       minpos=fieldpos; found= *field; length=temp_length;
  965.     }
  966.       }
  967.     }
  968.     DBUG_PRINT("loop",("found: %lx  recpos: %d  minpos: %d  length: %d",
  969.                found,recpos,minpos,length));
  970.     if (recpos != minpos)
  971.     {                        // Reserved space (Null bits?)
  972.       bzero((char*) recinfo_pos,sizeof(*recinfo_pos));
  973.       recinfo_pos->type=(int) FIELD_NORMAL;
  974.       recinfo_pos++->length= (uint16) (minpos-recpos);
  975.     }
  976.     if (! found)
  977.       break;
  978.  
  979.     if (found->flags & BLOB_FLAG)
  980.     {
  981.       recinfo_pos->type= (int) FIELD_BLOB;
  982.     }
  983.     else if (!(options & HA_OPTION_PACK_RECORD))
  984.       recinfo_pos->type= (int) FIELD_NORMAL;
  985.     else if (found->zero_pack())
  986.       recinfo_pos->type= (int) FIELD_SKIPP_ZERO;
  987.     else
  988.       recinfo_pos->type= (int) ((length <= 3 ||
  989.                       (found->flags & ZEROFILL_FLAG)) ?
  990.                      FIELD_NORMAL :
  991.                      found->type() == FIELD_TYPE_STRING ||
  992.                      found->type() == FIELD_TYPE_VAR_STRING ?
  993.                      FIELD_SKIPP_ENDSPACE :
  994.                      FIELD_SKIPP_PRESPACE);
  995.     if (found->null_ptr)
  996.     {
  997.       recinfo_pos->null_bit=found->null_bit;
  998.       recinfo_pos->null_pos= (uint) (found->null_ptr-
  999.                   (uchar*) form->record[0]);
  1000.     }
  1001.     else
  1002.     {
  1003.       recinfo_pos->null_bit=0;
  1004.       recinfo_pos->null_pos=0;
  1005.     }
  1006.     (recinfo_pos++) ->length=(uint16) length;
  1007.     recpos=minpos+length;
  1008.     DBUG_PRINT("loop",("length: %d  type: %d",
  1009.                recinfo_pos[-1].length,recinfo_pos[-1].type));
  1010.  
  1011.   }
  1012.   MI_CREATE_INFO create_info;
  1013.   bzero((char*) &create_info,sizeof(create_info));
  1014.   create_info.max_rows=form->max_rows;
  1015.   create_info.reloc_rows=form->min_rows;
  1016.   create_info.auto_increment=(info->auto_increment_value ?
  1017.                   info->auto_increment_value -1 :
  1018.                   (ulonglong) 0);
  1019.   create_info.data_file_length=(ulonglong) form->max_rows*form->avg_row_length;
  1020.   create_info.raid_type=info->raid_type;
  1021.   create_info.raid_chunks=info->raid_chunks ? info->raid_chunks : RAID_DEFAULT_CHUNKS;
  1022.   create_info.raid_chunksize=info->raid_chunksize ? info->raid_chunksize : RAID_DEFAULT_CHUNKSIZE;
  1023.  
  1024.   error=mi_create(fn_format(buff,name,"","",2+4+16),
  1025.           form->keys,keydef,
  1026.           (uint) (recinfo_pos-recinfo), recinfo,
  1027.           0, (MI_UNIQUEDEF*) 0,
  1028.           &create_info,
  1029.           (((options & HA_OPTION_PACK_RECORD) ? HA_PACK_RECORD : 0) |
  1030.            ((options & HA_OPTION_CHECKSUM) ? HA_CREATE_CHECKSUM : 0) |
  1031.            ((options & HA_OPTION_DELAY_KEY_WRITE) ?
  1032.             HA_CREATE_DELAY_KEY_WRITE : 0)));
  1033.  
  1034.  
  1035.   my_free((gptr) recinfo,MYF(0));
  1036.   DBUG_RETURN(error);
  1037. }
  1038.  
  1039.  
  1040. int ha_myisam::rename_table(const char * from, const char * to)
  1041. {
  1042.   return mi_rename(from,to);
  1043. }
  1044.  
  1045.  
  1046. longlong ha_myisam::get_auto_increment()
  1047. {
  1048.   if (!table->next_number_key_offset)
  1049.   {                        // Autoincrement at key-start
  1050.     ha_myisam::info(HA_STATUS_AUTO);
  1051.     return auto_increment_value;
  1052.   }
  1053.  
  1054.   longlong nr;
  1055.   int error;
  1056.   byte key[MAX_KEY_LENGTH];
  1057.   (void) extra(HA_EXTRA_KEYREAD);
  1058.   key_copy(key,table,table->next_number_index,
  1059.        table->next_number_key_offset);
  1060.   error=mi_rkey(file,table->record[1],(int) table->next_number_index,
  1061.         key,table->next_number_key_offset,HA_READ_PREFIX_LAST);
  1062.   if (error)
  1063.     nr=1;
  1064.   else
  1065.     nr=(longlong)
  1066.       table->next_number_field->val_int_offset(table->rec_buff_length)+1;
  1067.   extra(HA_EXTRA_NO_KEYREAD);
  1068.   return nr;
  1069. }
  1070.  
  1071.  
  1072. ha_rows ha_myisam::records_in_range(int inx,
  1073.                     const byte *start_key,uint start_key_len,
  1074.                     enum ha_rkey_function start_search_flag,
  1075.                     const byte *end_key,uint end_key_len,
  1076.                     enum ha_rkey_function end_search_flag)
  1077. {
  1078.   return (ha_rows) mi_records_in_range(file,
  1079.                        inx,
  1080.                        start_key,start_key_len,
  1081.                        start_search_flag,
  1082.                        end_key,end_key_len,
  1083.                        end_search_flag);
  1084. }
  1085.  
  1086. int ha_myisam::ft_read(byte * buf)
  1087. {
  1088.   int error;
  1089.  
  1090.   if (!ft_handler)
  1091.     return -1;
  1092.  
  1093.   thread_safe_increment(ha_read_next_count,&LOCK_status); // why ?
  1094.  
  1095.   if (error=ft_read_next((FT_DOCLIST *) ft_handler,(char*) buf))
  1096.     ft_handler=NULL; // Magic here ! See Item_func_match::val()
  1097.  
  1098.   table->status=error ? STATUS_NOT_FOUND: 0;
  1099.   return error;
  1100. }
  1101.