ha_myisam.cc 28.1 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
2

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

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

bk@work.mysql.com's avatar
bk@work.mysql.com committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


#ifdef __GNUC__
#pragma implementation				// gcc: Class implementation
#endif

#include "mysql_priv.h"
#include <m_ctype.h>
#include <myisampack.h>
#include "ha_myisam.h"
#include <stdarg.h>
#ifndef MASTER
#include "../srclib/myisam/myisamdef.h"
#else
#include "../myisam/myisamdef.h"
#endif

33 34
ulong myisam_sort_buffer_size;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
/*****************************************************************************
** MyISAM tables
*****************************************************************************/

// collect errors printed by mi_check routines
static void mi_check_print_msg(MI_CHECK *param,	const char* msg_type,
			       const char *fmt, va_list args)
{
  THD* thd = (THD*)param->thd;
  String* packet = &thd->packet;
  packet->length(0);
  char msgbuf[MI_MAX_MSG_BUF];
  msgbuf[0] = 0;

  my_vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
  msgbuf[sizeof(msgbuf) - 1] = 0; // healthy paranoia

  if (thd->net.vio == 0)
  {
    sql_print_error(msgbuf);
    return;
  }
57 58 59 60 61 62
  if (param->testflag & (T_CREATE_MISSING_KEYS | T_SAFE_REPAIR |
			 T_AUTO_REPAIR))
  {
    my_message(ER_NOT_KEYFILE,msgbuf,MYF(MY_WME));
    return;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
63 64 65 66 67 68 69 70
  net_store_data(packet, param->table_name);
  net_store_data(packet, param->op_name);
  net_store_data(packet, msg_type);
  net_store_data(packet, msgbuf);
  if (my_net_write(&thd->net, (char*)thd->packet.ptr(), thd->packet.length()))
    fprintf(stderr,
            "Failed on my_net_write, writing to stderr instead: %s\n",
            msgbuf);
71
  return;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}

extern "C" {

void mi_check_print_error(MI_CHECK *param, const char *fmt,...)
{
  param->error_printed|=1;
  va_list args;
  va_start(args, fmt);
  mi_check_print_msg(param, "error", fmt, args);
  va_end(args);
}

void mi_check_print_info(MI_CHECK *param, const char *fmt,...)
{
  va_list args;
  va_start(args, fmt);
  mi_check_print_msg(param, "info", fmt, args);
  va_end(args);
}

void mi_check_print_warning(MI_CHECK *param, const char *fmt,...)
{
  param->warning_printed=1;
  va_list args;
  va_start(args, fmt);
  mi_check_print_msg(param, "warning", fmt, args);
  va_end(args);
}

}

const char **ha_myisam::bas_ext() const
{ static const char *ext[]= { ".MYD",".MYI", NullS }; return ext; }


int ha_myisam::net_read_dump(NET* net)
{
  int data_fd = file->dfile;
  int error = 0;

  my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
  for(;;)
  {
    uint packet_len = my_net_read(net);
    if (!packet_len)
      break ; // end of file
    if (packet_len == packet_error)
    {
      sql_print_error("ha_myisam::net_read_dump - read error ");
      error= -1;
      goto err;
    }
    if (my_write(data_fd, (byte*)net->read_pos, packet_len,
		 MYF(MY_WME|MY_FNABP)))
    {
      error = errno;
      goto err;
    }
  }
132

bk@work.mysql.com's avatar
bk@work.mysql.com committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
err:
  return error;
}


int ha_myisam::dump(THD* thd, int fd)
{
  MYISAM_SHARE* share = file->s;
  NET* net = &thd->net;
  uint blocksize = share->blocksize;
  my_off_t bytes_to_read = share->state.state.data_file_length;
  int data_fd = file->dfile;
  byte * buf = (byte*) my_malloc(blocksize, MYF(MY_WME));
  if(!buf)
    return ENOMEM;

  int error = 0;
  my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
  for(; bytes_to_read > 0;)
  {
    uint bytes = my_read(data_fd, buf, blocksize, MYF(MY_WME));
    if (bytes == MY_FILE_ERROR)
    {
      error = errno;
      goto err;
    }

    if (fd >= 0)
    {
      if (my_write(fd, buf, bytes, MYF(MY_WME | MY_FNABP)))
      {
	error = errno ? errno : EPIPE;
	goto err;
      }
    }
    else
    {
      if (my_net_write(net, (char*) buf, bytes))
      {
	error = errno ? errno : EPIPE;
	goto err;
      }
    }
    bytes_to_read -= bytes;
  }

  if (fd < 0)
  {
    my_net_write(net, "", 0);
    net_flush(net);
  }
184

bk@work.mysql.com's avatar
bk@work.mysql.com committed
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
err:
  my_free((gptr) buf, MYF(0));
  return error;
}

int ha_myisam::open(const char *name, int mode, int test_if_locked)
{
  char name_buff[FN_REFLEN];
  if (!(file=mi_open(fn_format(name_buff,name,"","",2 | 4), mode,
		     test_if_locked)))
    return (my_errno ? my_errno : -1);

  if (!(test_if_locked == HA_OPEN_WAIT_IF_LOCKED ||
	test_if_locked == HA_OPEN_ABORT_IF_LOCKED))
    VOID(mi_extra(file,HA_EXTRA_NO_WAIT_LOCK));
  info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
    VOID(mi_extra(file,HA_EXTRA_WAIT_LOCK));
  if (!table->db_record_offset)
    int_option_flag|=HA_REC_NOT_IN_SEQ;
  return (0);
}

int ha_myisam::close(void)
{
  MI_INFO *tmp=file;
  file=0;
  return mi_close(tmp);
}

int ha_myisam::write_row(byte * buf)
{
  statistic_increment(ha_write_count,&LOCK_status);
  if (table->time_stamp)
    update_timestamp(buf+table->time_stamp-1);
  if (table->next_number_field && buf == table->record[0])
    update_auto_increment();
  return mi_write(file,buf);
}

int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt)
{
227
  if (!file) return HA_ADMIN_INTERNAL_ERROR;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
228 229 230
  int error ;
  MI_CHECK param;
  MYISAM_SHARE* share = file->s;
231

bk@work.mysql.com's avatar
bk@work.mysql.com committed
232 233 234 235
  myisamchk_init(&param);
  param.thd = thd;
  param.op_name = (char*)"check";
  param.table_name = table->table_name;
236
  param.testflag = check_opt->flags | T_CHECK | T_SILENT | T_MEDIUM;
237

bk@work.mysql.com's avatar
bk@work.mysql.com committed
238 239 240 241
  if (!(table->db_stat & HA_READ_ONLY))
    param.testflag|= T_STATISTICS;
  param.using_global_keycache = 1;

242 243
  if (!mi_is_crashed(file) &&
      (((param.testflag & T_CHECK_ONLY_CHANGED) &&
244 245 246
	(share->state.changed & (STATE_CHANGED | STATE_CRASHED |
				 STATE_CRASHED_ON_REPAIR)) &&
	share->state.open_count == 0) ||
247
       ((param.testflag & T_FAST) && share->state.open_count == 0)))
248
    return HA_ADMIN_ALREADY_DONE;
249

bk@work.mysql.com's avatar
bk@work.mysql.com committed
250
  error = chk_size(&param, file);
251 252 253 254 255
  if (!error)
    error |= chk_del(&param, file, param.testflag);
  if (!error)
    error = chk_key(&param, file);
  if (!error)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
256
  {
257 258
    if (!check_opt->quick &&
	(share->options & (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
259
    {
260 261 262 263 264
      init_io_cache(&param.read_cache, file->dfile,
		    my_default_record_cache_size, READ_CACHE,
		    share->pack.header_length, 1, MYF(MY_WME));
      error |= chk_data_link(&param, file, param.testflag & T_EXTEND);
      end_io_cache(&(param.read_cache));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
265 266 267
    }
  }
  if (!error)
268
  {
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
269
    if ((share->state.changed & (STATE_CHANGED |
270 271 272
				 STATE_CRASHED_ON_REPAIR |
				 STATE_CRASHED | STATE_NOT_ANALYZED)) ||
	(param.testflag & T_STATISTICS))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
273 274 275
    {
      file->update|=HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
      pthread_mutex_lock(&share->intern_lock);
276 277
      share->state.changed&= ~(STATE_CHANGED | STATE_CRASHED |
			       STATE_CRASHED_ON_REPAIR);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
278
      if (!(table->db_stat & HA_READ_ONLY))
279 280
	error=update_state_info(&param,file,UPDATE_TIME | UPDATE_OPEN_COUNT |
				UPDATE_STAT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
281
      pthread_mutex_unlock(&share->intern_lock);
282 283
      info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE |
	   HA_STATUS_CONST);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
284 285 286 287 288 289 290
    }
  }
  else if (!mi_is_crashed(file))
  {
    mi_mark_crashed(file);
    file->update |= HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  }
291

292
  return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
293 294 295 296 297 298 299 300 301
}


/*
  analyze the key distribution in the table
  As the table may be only locked for read, we have to take into account that
  two threads may do an analyze at the same time!
*/

302
int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
303
{
304
  int error=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
305 306
  MI_CHECK param;
  MYISAM_SHARE* share = file->s;
307

bk@work.mysql.com's avatar
bk@work.mysql.com committed
308 309 310 311 312 313 314 315
  myisamchk_init(&param);
  param.thd = thd;
  param.op_name = (char*)" analyze";
  param.table_name = table->table_name;
  param.testflag=(T_FAST | T_CHECK | T_SILENT | T_STATISTICS |
		  T_DONT_CHECK_CHECKSUM);
  param.using_global_keycache = 1;

316 317 318 319 320
  if (!(share->state.changed & STATE_NOT_ANALYZED))
    return HA_ADMIN_ALREADY_DONE;

  error = chk_key(&param, file);
  if (!error)
321
  {
322 323 324
    pthread_mutex_lock(&share->intern_lock);
    error=update_state_info(&param,file,UPDATE_STAT);
    pthread_mutex_unlock(&share->intern_lock);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
325
  }
326 327 328
  else if (!mi_is_crashed(file))
    mi_mark_crashed(file);
  return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
329 330
}

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
int ha_myisam::restore(THD* thd, HA_CHECK_OPT *check_opt)
{
  HA_CHECK_OPT tmp_check_opt;
  char* backup_dir = thd->lex.backup_dir;
  char src_path[FN_REFLEN], dst_path[FN_REFLEN];
  int backup_dir_len = strlen(backup_dir);
  char* table_name = table->real_name;
  int table_name_len = strlen(table_name);
  if(backup_dir_len + table_name_len + 4 >= FN_REFLEN)
    return HA_ADMIN_INVALID;
  memcpy(src_path, backup_dir, backup_dir_len);
  char* p = src_path + backup_dir_len;
  *p++ = '/';
  memcpy(p, table_name, table_name_len);
  p += table_name_len;
  *p = 0;
  fn_format(src_path, src_path, "", MI_NAME_DEXT, 4);

  int error = 0;
  char* errmsg = "";
  
  if(my_copy(src_path, fn_format(dst_path, table->path, "",
				 MI_NAME_DEXT, 4), MYF(MY_WME)))
    {
      error = HA_ADMIN_FAILED;
      errmsg = "failed in my_copy( Error %d)";
      goto err;
    }
  
  tmp_check_opt.init();
  tmp_check_opt.quick = 1;
  return repair(thd, &tmp_check_opt);
  
 err:
  {
      MI_CHECK param;
      myisamchk_init(&param);
      param.thd = thd;
      param.op_name = (char*)"restore";
      param.table_name = table->table_name;
      param.testflag = 0;
      mi_check_print_error(&param,errmsg, errno );
      return error; 
  }
}

int ha_myisam::backup(THD* thd, HA_CHECK_OPT *check_opt)
{
  char* backup_dir = thd->lex.backup_dir;
  char src_path[FN_REFLEN], dst_path[FN_REFLEN];
  int backup_dir_len = strlen(backup_dir);
  char* table_name = table->real_name;
  int table_name_len = strlen(table_name);
  if(backup_dir_len + table_name_len + 4 >= FN_REFLEN)
    return HA_ADMIN_INVALID;
  memcpy(dst_path, backup_dir, backup_dir_len);
  char* p = dst_path + backup_dir_len;
  *p++ = '/';
  memcpy(p, table_name, table_name_len);
  p += table_name_len;
  *p = 0;
  if(my_copy(fn_format(src_path, table->path,"", reg_ext, 4),
	     fn_format(dst_path, dst_path, "", reg_ext, 4),
	     MYF(MY_WME | MY_HOLD_ORIGINAL_MODES )))
    {
      return HA_ADMIN_FAILED;
    }

  *p = 0;
  *(fn_ext(src_path)) = 0;
  if(my_copy(fn_format(src_path, src_path,"", MI_NAME_DEXT, 4),
	     fn_format(dst_path, dst_path, "", MI_NAME_DEXT, 4),
	     MYF(MY_WME | MY_HOLD_ORIGINAL_MODES ))  )
    return HA_ADMIN_FAILED;

  return HA_ADMIN_OK;
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
409

410
int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
411
{
412
  if (!file) return HA_ADMIN_INTERNAL_ERROR;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
413
  MI_CHECK param;
414

bk@work.mysql.com's avatar
bk@work.mysql.com committed
415 416 417
  myisamchk_init(&param);
  param.thd = thd;
  param.op_name = (char*) "repair";
418 419
  param.testflag = (check_opt->flags | T_SILENT | T_FORCE_CREATE |
		    T_REP_BY_SORT);
420
  if (check_opt->quick)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
421
    param.opt_rep_quick++;
422
  param.sort_buffer_length=  check_opt->sort_buffer_size;
423 424 425 426 427 428 429 430 431 432 433 434 435
  return repair(thd,param,0);
}

int ha_myisam::optimize(THD* thd, HA_CHECK_OPT *check_opt)
{
  if (!file) return HA_ADMIN_INTERNAL_ERROR;
  MI_CHECK param;

  myisamchk_init(&param);
  param.thd = thd;
  param.op_name = (char*) "optimize";
  param.testflag = (check_opt->flags | T_SILENT | T_FORCE_CREATE |
		    T_REP_BY_SORT | T_STATISTICS | T_SORT_INDEX);
436 437
  if (check_opt->quick)
    param.opt_rep_quick++;
438 439
  param.sort_buffer_length=  check_opt->sort_buffer_size;
  return repair(thd,param,1);
440 441 442
}


443
int ha_myisam::repair(THD *thd, MI_CHECK &param, bool optimize)
444
{
445 446
  int error=0;
  bool optimize_done= !optimize;
447
  char fixed_name[FN_REFLEN];
448
  const char *old_proc_info=thd->proc_info;
449 450 451
  MYISAM_SHARE* share = file->s;

  param.table_name = table->table_name;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
452 453
  param.tmpfile_createflag = O_RDWR | O_TRUNC;
  param.using_global_keycache = 1;
454
  param.thd=thd;
455
  param.tmpdir=mysql_tmpdir;
456
    
bk@work.mysql.com's avatar
bk@work.mysql.com committed
457 458
  VOID(fn_format(fixed_name,file->filename,"",MI_NAME_IEXT,
		     4+ (param.opt_follow_links ? 16 : 0)));
459

460 461 462 463
  if (!optimize || 
      ((file->state->del || share->state.split != file->state->records) &&
       (!param.opt_rep_quick ||
	!(share->state.changed & STATE_NOT_OPTIMIZED_KEYS))))
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
  {
    optimize_done=1;
    if (mi_test_if_sort_rep(file,file->state->records))
    {
      param.testflag|= T_STATISTICS;		// We get this for free
      thd->proc_info="Repairing by sorting";
      error = mi_repair_by_sort(&param, file, fixed_name, param.opt_rep_quick);
    }
    else
    {
      thd->proc_info="Repairing";
      error=  mi_repair(&param, file, fixed_name, param.opt_rep_quick);
    }
  }
  if (!error)
  {
    if ((param.testflag & T_SORT_INDEX) &&
	(share->state.changed & STATE_NOT_SORTED_PAGES))
    {
      optimize_done=1;
      thd->proc_info="Sorting index";
      error=mi_sort_index(&param,file,fixed_name);
    }
    if ((param.testflag & T_STATISTICS) &&
	(share->state.changed & STATE_NOT_ANALYZED))
    {
      optimize_done=1;
      thd->proc_info="Analyzing";
      error = chk_key(&param, file);
    }
  }
  thd->proc_info="saving state";
bk@work.mysql.com's avatar
bk@work.mysql.com committed
496
  if (!error)
497
  {
498
    if (share->state.changed & STATE_CHANGED)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
499
    {
500 501
      share->state.changed&= ~(STATE_CHANGED | STATE_CRASHED |
			       STATE_CRASHED_ON_REPAIR);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
502 503 504 505 506
      file->update|=HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
    }
    file->save_state=file->s->state.state;
    if (file->s->base.auto_key)
      update_auto_increment_key(&param, file, 1);
507 508 509 510
    error = update_state_info(&param, file,
			      UPDATE_TIME |
			      (param.testflag & T_STATISTICS ?
			       UPDATE_STAT : 0));
511 512
    info(HA_STATUS_NO_LOCK | HA_STATUS_TIME | HA_STATUS_VARIABLE |
	 HA_STATUS_CONST);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
513 514 515 516 517 518 519 520 521 522 523 524 525 526
  }
  else if (!mi_is_crashed(file))
  {
    mi_mark_crashed(file);
    file->update |= HA_STATE_CHANGED | HA_STATE_ROW_CHANGED;
  }
  if (!error)
  {
    if (param.out_flag & (O_NEW_DATA | O_NEW_INDEX))
    {
      /*
	We have to close all instances of this file to ensure that we can
	do the rename safely and that all threads are using the new version.
      */
527
      thd->proc_info="renaming file";
bk@work.mysql.com's avatar
bk@work.mysql.com committed
528 529 530 531 532 533 534
      VOID(pthread_mutex_lock(&LOCK_open));
      if (close_cached_table(thd,table))
	error=1;

      if (param.out_flag & O_NEW_DATA)
	error|=change_to_newfile(fixed_name,MI_NAME_DEXT,
				 DATA_TMP_EXT, 0);
535

bk@work.mysql.com's avatar
bk@work.mysql.com committed
536 537 538 539 540 541
      if (param.out_flag & O_NEW_INDEX)
	error|=change_to_newfile(fixed_name,MI_NAME_IEXT,
				 INDEX_TMP_EXT,0);
      VOID(pthread_mutex_unlock(&LOCK_open));
    }
  }
542 543 544
  thd->proc_info=old_proc_info;
  return (error ? HA_ADMIN_FAILED :
          !optimize_done ? HA_ADMIN_ALREADY_DONE : HA_ADMIN_OK);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
545 546 547
}


548 549 550 551 552
/* Deactive all not unique index that can be recreated fast */

void ha_myisam::deactivate_non_unique_index(ha_rows rows)
{
  if (!(specialflag & SPECIAL_SAFE_MODE))
553
    mi_disable_non_unique_index(file,rows);
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
}


bool ha_myisam::activate_all_index(THD *thd)
{
  int error=0;
  MI_CHECK param;
  MYISAM_SHARE* share = file->s;
  DBUG_ENTER("activate_all_index");
  if (share->state.key_map != ((ulonglong) 1L << share->base.keys)-1)
  {
    const char *save_proc_info=thd->proc_info;
    thd->proc_info="creating index";
    myisamchk_init(&param);
    param.op_name = (char*) "recreating_index";
569
    param.testflag = (T_SILENT | T_REP_BY_SORT |
570
		      T_CREATE_MISSING_KEYS | T_TRUST_HEADER);
571 572 573
    param.myf_rw&= ~MY_WAIT_IF_FULL;
    param.sort_buffer_length=  myisam_sort_buffer_size;
    param.opt_rep_quick++;
574 575
    param.tmpdir=mysql_tmpdir;

576
    error=repair(thd,param,0) != HA_ADMIN_OK;
577 578 579 580
    thd->proc_info=save_proc_info;
  }
  DBUG_RETURN(error);
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628

int ha_myisam::update_row(const byte * old_data, byte * new_data)
{
  statistic_increment(ha_update_count,&LOCK_status);
  if (table->time_stamp)
    update_timestamp(new_data+table->time_stamp-1);
  return mi_update(file,old_data,new_data);
}

int ha_myisam::delete_row(const byte * buf)
{
  statistic_increment(ha_delete_count,&LOCK_status);
  return mi_delete(file,buf);
}

int ha_myisam::index_read(byte * buf, const byte * key,
			  uint key_len, enum ha_rkey_function find_flag)
{
  statistic_increment(ha_read_key_count,&LOCK_status);
  int error=mi_rkey(file,buf,active_index, key, key_len, find_flag);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}

int ha_myisam::index_read_idx(byte * buf, uint index, const byte * key,
			      uint key_len, enum ha_rkey_function find_flag)
{
  statistic_increment(ha_read_key_count,&LOCK_status);
  int error=mi_rkey(file,buf,index, key, key_len, find_flag);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}

int ha_myisam::index_next(byte * buf)
{
  statistic_increment(ha_read_next_count,&LOCK_status);
  int error=mi_rnext(file,buf,active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}

int ha_myisam::index_prev(byte * buf)
{
  statistic_increment(ha_read_prev_count,&LOCK_status);
  int error=mi_rprev(file,buf, active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}
629

bk@work.mysql.com's avatar
bk@work.mysql.com committed
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
int ha_myisam::index_first(byte * buf)
{
  statistic_increment(ha_read_first_count,&LOCK_status);
  int error=mi_rfirst(file, buf, active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}

int ha_myisam::index_last(byte * buf)
{
  statistic_increment(ha_read_last_count,&LOCK_status);
  int error=mi_rlast(file, buf, active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}

int ha_myisam::index_next_same(byte * buf,
			       const byte *key __attribute__((unused)),
			       uint length __attribute__((unused)))
{
  statistic_increment(ha_read_next_count,&LOCK_status);
  int error=mi_rnext_same(file,buf);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}


int ha_myisam::rnd_init(bool scan)
{
  if (scan)
    return mi_scan_init(file);
  else
    return mi_extra(file,HA_EXTRA_RESET);
}

int ha_myisam::rnd_next(byte *buf)
{
  statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  int error=mi_scan(file, buf);
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}

int ha_myisam::restart_rnd_next(byte *buf, byte *pos)
{
  return rnd_pos(buf,pos);
}

int ha_myisam::rnd_pos(byte * buf, byte *pos)
{
  statistic_increment(ha_read_rnd_count,&LOCK_status);
  int error=mi_rrnd(file, buf, ha_get_ptr(pos,ref_length));
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}

void ha_myisam::position(const byte* record)
{
  my_off_t position=mi_position(file);
  ha_store_ptr(ref, ref_length, position);
}

void ha_myisam::info(uint flag)
{
  MI_ISAMINFO info;
  (void) mi_status(file,&info,flag);
  if (flag & HA_STATUS_VARIABLE)
  {
    records = info.records;
    deleted = info.deleted;
    data_file_length=info.data_file_length;
    index_file_length=info.index_file_length;
    delete_length = info.delete_length;
    check_time  = info.check_time;
    mean_rec_length=info.mean_reclength;
  }
  if (flag & HA_STATUS_CONST)
  {
    max_data_file_length=info.max_data_file_length;
    max_index_file_length=info.max_index_file_length;
    create_time = info.create_time;
    sortkey = info.sortkey;
    ref_length=info.reflength;
    table->db_options_in_use    = info.options;
    block_size=myisam_block_size;
    table->keys_in_use &= info.key_map;
    table->db_record_offset=info.record_offset;
    if (table->key_parts)
      memcpy((char*) table->key_info[0].rec_per_key,
	     (char*) info.rec_per_key,
	     sizeof(ulong)*table->key_parts);
    raid_type=info.raid_type;
    raid_chunks=info.raid_chunks;
    raid_chunksize=info.raid_chunksize;
  }
  if (flag & HA_STATUS_ERRKEY)
  {
    errkey  = info.errkey;
    ha_store_ptr(dupp_ref, ref_length, info.dupp_key_pos);
  }
  if (flag & HA_STATUS_TIME)
    update_time = info.update_time;
  if (flag & HA_STATUS_AUTO)
    auto_increment_value= info.auto_increment;
}


int ha_myisam::extra(enum ha_extra_function operation)
{
  if (((specialflag & SPECIAL_SAFE_MODE) || (test_flags & TEST_NO_EXTRA)) &&
      (operation == HA_EXTRA_WRITE_CACHE ||
       operation == HA_EXTRA_KEYREAD))
    return 0;
  return mi_extra(file,operation);
}

int ha_myisam::reset(void)
{
  return mi_extra(file,HA_EXTRA_RESET);
}

int ha_myisam::delete_all_rows()
{
  return mi_delete_all_rows(file);
}

int ha_myisam::delete_table(const char *name)
{
  return mi_delete_table(name);
}

int ha_myisam::external_lock(THD *thd, int lock_type)
{
  return mi_lock_database(file,lock_type);
764
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970


THR_LOCK_DATA **ha_myisam::store_lock(THD *thd,
				      THR_LOCK_DATA **to,
				      enum thr_lock_type lock_type)
{
  if (lock_type != TL_IGNORE && file->lock.type == TL_UNLOCK)
    file->lock.type=lock_type;
  *to++= &file->lock;
  return to;
}

void ha_myisam::update_create_info(HA_CREATE_INFO *create_info)
{
  table->file->info(HA_STATUS_AUTO | HA_STATUS_CONST);
  if (!(create_info->used_fields & HA_CREATE_USED_AUTO))
  {
    create_info->auto_increment_value=auto_increment_value;
  }
  if (!(create_info->used_fields & HA_CREATE_USED_RAID))
  {
    create_info->raid_type= raid_type;
    create_info->raid_chunks= raid_chunks;
    create_info->raid_chunksize= raid_chunksize;
  }
}


int ha_myisam::create(const char *name, register TABLE *form,
		      HA_CREATE_INFO *info)
{
  int error;
  uint i,j,recpos,minpos,fieldpos,temp_length,length;
  bool found_auto_increment=0;
  enum ha_base_keytype type;
  char buff[FN_REFLEN];
  KEY *pos;
  MI_KEYDEF *keydef;
  MI_COLUMNDEF *recinfo,*recinfo_pos;
  MI_KEYSEG *keyseg;
  uint options=form->db_options_in_use;
  DBUG_ENTER("ha_myisam::create");

  type=HA_KEYTYPE_BINARY;				// Keep compiler happy
  if (!(my_multi_malloc(MYF(MY_WME),
			&recinfo,(form->fields*2+2)*sizeof(MI_COLUMNDEF),
			&keydef, form->keys*sizeof(MI_KEYDEF),
			&keyseg,
			((form->key_parts + form->keys) * sizeof(MI_KEYSEG)),
			0)))
    DBUG_RETURN(1);

  pos=form->key_info;
  for (i=0; i < form->keys ; i++, pos++)
  {
    keydef[i].flag= (pos->flags & (HA_NOSAME | HA_FULLTEXT));
    keydef[i].seg=keyseg;
    keydef[i].keysegs=pos->key_parts;
    for (j=0 ; j < pos->key_parts ; j++)
    {
      keydef[i].seg[j].flag=pos->key_part[j].key_part_flag;
      Field *field=pos->key_part[j].field;
      type=field->key_type();

      if (options & HA_OPTION_PACK_KEYS ||
	  (pos->flags & (HA_PACK_KEY | HA_BINARY_PACK_KEY |
			 HA_SPACE_PACK_USED)))
      {
	if (pos->key_part[j].length > 8 &&
	    (type == HA_KEYTYPE_TEXT ||
	     type == HA_KEYTYPE_NUM ||
	     (type == HA_KEYTYPE_BINARY && !field->zero_pack())))
	{
	  /* No blobs here */
	  if (j == 0)
	    keydef[i].flag|=HA_PACK_KEY;
	  if (!(field->flags & ZEROFILL_FLAG) &&
	      (field->type() == FIELD_TYPE_STRING ||
	       field->type() == FIELD_TYPE_VAR_STRING ||
	       ((int) (pos->key_part[j].length - field->decimals()))
	       >= 4))
	    keydef[i].seg[j].flag|=HA_SPACE_PACK;
	}
	else if (j == 0 && (!(pos->flags & HA_NOSAME) || pos->key_length > 16))
	  keydef[i].flag|= HA_BINARY_PACK_KEY;
      }
      keydef[i].seg[j].type=   (int) type;
      keydef[i].seg[j].start=  pos->key_part[j].offset;
      keydef[i].seg[j].length= pos->key_part[j].length;
      keydef[i].seg[j].bit_start=keydef[i].seg[j].bit_end=0;
      keydef[i].seg[j].language=MY_CHARSET_CURRENT;

      if (field->null_ptr)
      {
	keydef[i].seg[j].null_bit=field->null_bit;
	keydef[i].seg[j].null_pos= (uint) (field->null_ptr-
					   (uchar*) form->record[0]);
      }
      else
      {
	keydef[i].seg[j].null_bit=0;
	keydef[i].seg[j].null_pos=0;
      }
      if (j == 0 && field->flags & AUTO_INCREMENT_FLAG &&
	  !found_auto_increment)
      {
	keydef[i].flag|=HA_AUTO_KEY;
	found_auto_increment=1;
      }
      if (field->type() == FIELD_TYPE_BLOB)
      {
	keydef[i].seg[j].flag|=HA_BLOB_PART;
	/* save number of bytes used to pack length */
	keydef[i].seg[j].bit_start= (uint) (field->pack_length() -
					    form->blob_ptr_size);
      }
    }
    keyseg+=pos->key_parts;
  }

  recpos=0; recinfo_pos=recinfo;
  while (recpos < (uint) form->reclength)
  {
    Field **field,*found=0;
    minpos=form->reclength; length=0;

    for (field=form->field ; *field ; field++)
    {
      if ((fieldpos=(*field)->offset()) >= recpos &&
	  fieldpos <= minpos)
      {
	/* skip null fields */
	if (!(temp_length= (*field)->pack_length()))
	  continue;				/* Skipp null-fields */
	if (! found || fieldpos < minpos ||
	    (fieldpos == minpos && temp_length < length))
	{
	  minpos=fieldpos; found= *field; length=temp_length;
	}
      }
    }
    DBUG_PRINT("loop",("found: %lx  recpos: %d  minpos: %d  length: %d",
		       found,recpos,minpos,length));
    if (recpos != minpos)
    {						// Reserved space (Null bits?)
      bzero((char*) recinfo_pos,sizeof(*recinfo_pos));
      recinfo_pos->type=(int) FIELD_NORMAL;
      recinfo_pos++->length= (uint16) (minpos-recpos);
    }
    if (! found)
      break;

    if (found->flags & BLOB_FLAG)
    {
      recinfo_pos->type= (int) FIELD_BLOB;
    }
    else if (!(options & HA_OPTION_PACK_RECORD))
      recinfo_pos->type= (int) FIELD_NORMAL;
    else if (found->zero_pack())
      recinfo_pos->type= (int) FIELD_SKIPP_ZERO;
    else
      recinfo_pos->type= (int) ((length <= 3 ||
				      (found->flags & ZEROFILL_FLAG)) ?
				     FIELD_NORMAL :
				     found->type() == FIELD_TYPE_STRING ||
				     found->type() == FIELD_TYPE_VAR_STRING ?
				     FIELD_SKIPP_ENDSPACE :
				     FIELD_SKIPP_PRESPACE);
    if (found->null_ptr)
    {
      recinfo_pos->null_bit=found->null_bit;
      recinfo_pos->null_pos= (uint) (found->null_ptr-
				  (uchar*) form->record[0]);
    }
    else
    {
      recinfo_pos->null_bit=0;
      recinfo_pos->null_pos=0;
    }
    (recinfo_pos++) ->length=(uint16) length;
    recpos=minpos+length;
    DBUG_PRINT("loop",("length: %d  type: %d",
		       recinfo_pos[-1].length,recinfo_pos[-1].type));

  }
  MI_CREATE_INFO create_info;
  bzero((char*) &create_info,sizeof(create_info));
  create_info.max_rows=form->max_rows;
  create_info.reloc_rows=form->min_rows;
  create_info.auto_increment=(info->auto_increment_value ?
			      info->auto_increment_value -1 :
			      (ulonglong) 0);
  create_info.data_file_length=(ulonglong) form->max_rows*form->avg_row_length;
  create_info.raid_type=info->raid_type;
  create_info.raid_chunks=info->raid_chunks ? info->raid_chunks : RAID_DEFAULT_CHUNKS;
  create_info.raid_chunksize=info->raid_chunksize ? info->raid_chunksize : RAID_DEFAULT_CHUNKSIZE;

  error=mi_create(fn_format(buff,name,"","",2+4+16),
		  form->keys,keydef,
		  (uint) (recinfo_pos-recinfo), recinfo,
		  0, (MI_UNIQUEDEF*) 0,
		  &create_info,
		  (((options & HA_OPTION_PACK_RECORD) ? HA_PACK_RECORD : 0) |
		   ((options & HA_OPTION_CHECKSUM) ? HA_CREATE_CHECKSUM : 0) |
		   ((options & HA_OPTION_DELAY_KEY_WRITE) ?
		    HA_CREATE_DELAY_KEY_WRITE : 0)));
971 972


bk@work.mysql.com's avatar
bk@work.mysql.com committed
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
  my_free((gptr) recinfo,MYF(0));
  DBUG_RETURN(error);
}


int ha_myisam::rename_table(const char * from, const char * to)
{
  return mi_rename(from,to);
}


longlong ha_myisam::get_auto_increment()
{
  if (!table->next_number_key_offset)
  {						// Autoincrement at key-start
    ha_myisam::info(HA_STATUS_AUTO);
    return auto_increment_value;
  }

  longlong nr;
  int error;
  byte key[MAX_KEY_LENGTH];
  (void) extra(HA_EXTRA_KEYREAD);
  key_copy(key,table,table->next_number_index,
	   table->next_number_key_offset);
  error=mi_rkey(file,table->record[1],(int) table->next_number_index,
		key,table->next_number_key_offset,HA_READ_PREFIX_LAST);
  if (error)
    nr=1;
  else
    nr=(longlong)
      table->next_number_field->val_int_offset(table->rec_buff_length)+1;
  extra(HA_EXTRA_NO_KEYREAD);
  return nr;
}


ha_rows ha_myisam::records_in_range(int inx,
				    const byte *start_key,uint start_key_len,
				    enum ha_rkey_function start_search_flag,
				    const byte *end_key,uint end_key_len,
				    enum ha_rkey_function end_search_flag)
{
  return (ha_rows) mi_records_in_range(file,
				       inx,
				       start_key,start_key_len,
				       start_search_flag,
				       end_key,end_key_len,
				       end_search_flag);
}

int ha_myisam::ft_init(uint inx, const byte *key, uint keylen, bool presort)
{
  if (ft_handler)
    return -1;

  // Do the search!
  ft_handler=ft_init_search(file,inx,(byte*) key,keylen,presort);

  if (!ft_handler)
    return (my_errno ? my_errno : -1);

  return 0;
}

int ha_myisam::ft_read(byte * buf)
{
  int error;

1042 1043 1044
  if (!ft_handler)
    return -1;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1045 1046
  thread_safe_increment(ha_read_next_count,&LOCK_status); // why ?

1047 1048
  error=ft_read_next((FT_DOCLIST *) ft_handler,(char*) buf);

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1049 1050 1051
  table->status=error ? STATUS_NOT_FOUND: 0;
  return error;
}