ha_myisam.cc
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 31k
Category:

MySQL

Development Platform:

Visual C++

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