isamlog.c 22.5 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
unknown's avatar
unknown committed
2

unknown's avatar
unknown 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.
unknown's avatar
unknown committed
7

unknown's avatar
unknown 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.
unknown's avatar
unknown committed
12

unknown's avatar
unknown committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
   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 */

/* write whats in isam.log */

#ifndef USE_MY_FUNC
#define USE_MY_FUNC
#endif

#include "isamdef.h"
#include <my_tree.h>
#include <stdarg.h>
#ifdef HAVE_GETRUSAGE
#include <sys/resource.h>
#endif

#define FILENAME(A) (A ? A->show_name : "Unknown")

unknown's avatar
unknown committed
32
struct isamlog_file_info {
unknown's avatar
unknown committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  long process;
  int  filenr,id;
  my_string name,show_name,record;
  N_INFO *isam;
  bool closed,used;
  ulong accessed;
};

struct test_if_open_param {
  my_string name;
  int max_id;
};

struct st_access_param
{
  ulong min_accessed;
unknown's avatar
unknown committed
49
  struct isamlog_file_info *found;
unknown's avatar
unknown committed
50 51 52 53 54 55 56 57 58
};

#define NO_FILEPOS (ulong) ~0L

extern int main(int argc,char * *argv);
static void get_options(int *argc,char ***argv);
static int examine_log(my_string file_name,char **table_names);
static int read_string(IO_CACHE *file,gptr *to,uint length);
static int file_info_compare(void *a,void *b);
unknown's avatar
unknown committed
59
static int test_if_open(struct isamlog_file_info *key,element_count count,
unknown's avatar
unknown committed
60 61 62
			struct test_if_open_param *param);
static void fix_blob_pointers(N_INFO *isam,byte *record);
static uint set_maximum_open_files(uint);
unknown's avatar
unknown committed
63
static int test_when_accessed(struct isamlog_file_info *key,element_count count,
unknown's avatar
unknown committed
64
			      struct st_access_param *access_param);
unknown's avatar
unknown committed
65
static void file_info_free(struct isamlog_file_info *info);
unknown's avatar
unknown committed
66
static int close_some_file(TREE *tree);
unknown's avatar
unknown committed
67 68 69
static int reopen_closed_file(TREE *tree,struct isamlog_file_info *file_info);
static int find_record_with_key(struct isamlog_file_info *file_info,
				byte *record);
unknown's avatar
unknown committed
70
static void printf_log(const char *str,...);
unknown's avatar
unknown committed
71
static bool cmp_filename(struct isamlog_file_info *file_info,my_string name);
unknown's avatar
unknown committed
72 73

static uint verbose=0,update=0,test_info=0,max_files=0,re_open_count=0,
unknown's avatar
unknown committed
74
  recover=0,prefix_remove=0,opt_processes=0;
unknown's avatar
unknown committed
75 76 77 78 79 80 81
static my_string log_filename=0,filepath=0,write_filename=0,record_pos_file=0;
static ulong com_count[10][3],number_of_commands=(ulong) ~0L,start_offset=0,
	     record_pos= NO_FILEPOS,isamlog_filepos,isamlog_process;
static const char *command_name[]=
{"open","write","update","delete","close","extra","lock","re-open",NullS};


unknown's avatar
unknown committed
82
int main(int argc, char **argv)
unknown's avatar
unknown committed
83 84 85 86 87 88 89 90 91 92 93
{
  int error,i,first;
  ulong total_count,total_error,total_recover;
  MY_INIT(argv[0]);

  log_filename=nisam_log_filename;
  get_options(&argc,&argv);
 /* Nr of isam-files */
  max_files=(set_maximum_open_files(min(max_files,8))-6)/2;

  if (update)
unknown's avatar
unknown committed
94
    printf("Trying to %s ISAM files according to log '%s'\n",
unknown's avatar
unknown committed
95 96 97
	   (recover ? "recover" : "update"),log_filename);
  error= examine_log(log_filename,argv);
  if (update && ! error)
unknown's avatar
unknown committed
98
    puts("Tables updated successfully");
unknown's avatar
unknown committed
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
  total_count=total_error=total_recover=0;
  for (i=first=0 ; command_name[i] ; i++)
  {
    if (com_count[i][0])
    {
      if (!first++)
      {
	if (verbose || update)
	  puts("");
	puts("Commands   Used count    Errors   Recover errors");
      }
      printf("%-12s%9ld%10ld%17ld\n",command_name[i],com_count[i][0],
	     com_count[i][1],com_count[i][2]);
      total_count+=com_count[i][0];
      total_error+=com_count[i][1];
      total_recover+=com_count[i][2];
    }
  }
  if (total_count)
    printf("%-12s%9ld%10ld%17ld\n","Total",total_count,total_error,
	   total_recover);
  if (re_open_count)
    printf("Had to do %d re-open because of too few possibly open files\n",
	   re_open_count);
  VOID(nisam_panic(HA_PANIC_CLOSE));
  my_end(test_info ? MY_CHECK_ERROR | MY_GIVE_INFO : MY_CHECK_ERROR);
  exit(error);
  return 0;				/* No compiler warning */
} /* main */


unknown's avatar
unknown committed
130
static void get_options(register int *argc, register char ***argv)
unknown's avatar
unknown committed
131 132
{
  int help,version;
unknown's avatar
unknown committed
133 134
  const char *pos,*usage;
  char option;
unknown's avatar
unknown committed
135 136

  help=0;
unknown's avatar
unknown committed
137 138
  usage="Usage: %s [-?iruvIPV] [-c #] [-f #] [-F filepath/] [-o #] [-R file recordpos] [-w write_file] [log-filename [table ...]] \n";
  pos= "";
unknown's avatar
unknown committed
139 140 141 142 143 144 145 146

  while (--*argc > 0 && *(pos = *(++*argv)) == '-' ) {
    while (*++pos)
    {
      version=0;
      switch((option=*pos)) {
      case '#':
	DBUG_PUSH (++pos);
unknown's avatar
unknown committed
147
	pos=" ";				/* Skipp rest of arg */
unknown's avatar
unknown committed
148 149 150 151 152 153 154 155 156 157
	break;
      case 'c':
	if (! *++pos)
	{
	  if (!--*argc)
	    goto err;
	  else
	    pos= *(++*argv);
	}
	number_of_commands=(ulong) atol(pos);
unknown's avatar
unknown committed
158
	pos=" ";
unknown's avatar
unknown committed
159 160 161 162 163 164 165 166 167 168 169 170 171
	break;
      case 'u':
	update=1;
	break;
      case 'f':
	if (! *++pos)
	{
	  if (!--*argc)
	    goto err;
	  else
	    pos= *(++*argv);
	}
	max_files=(uint) atoi(pos);
unknown's avatar
unknown committed
172
	pos=" ";
unknown's avatar
unknown committed
173 174 175 176 177 178 179 180 181 182 183 184 185
	break;
      case 'i':
	test_info=1;
	break;
      case 'o':
	if (! *++pos)
	{
	  if (!--*argc)
	    goto err;
	  else
	    pos= *(++*argv);
	}
	start_offset=(ulong) atol(pos);
unknown's avatar
unknown committed
186
	pos=" ";
unknown's avatar
unknown committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	break;
      case 'p':
	if (! *++pos)
	{
	  if (!--*argc)
	    goto err;
	  else
	    pos= *(++*argv);
	}
	prefix_remove=atoi(pos);
	break;
      case 'r':
	update=1;
	recover++;
	break;
unknown's avatar
unknown committed
202 203 204
      case 'P':
	opt_processes=1;
	break;
unknown's avatar
unknown committed
205 206 207 208 209 210 211 212
      case 'R':
	if (! *++pos)
	{
	  if (!--*argc)
	    goto err;
	  else
	    pos= *(++*argv);
	}
unknown's avatar
unknown committed
213
	record_pos_file=(char*) pos;
unknown's avatar
unknown committed
214 215 216
	if (!--*argc)
	  goto err;
	record_pos=(ulong) atol(*(++*argv));
unknown's avatar
unknown committed
217
	pos= " ";
unknown's avatar
unknown committed
218 219 220 221 222 223 224 225 226 227 228 229
	break;
      case 'v':
	verbose++;
	break;
      case 'w':
	if (! *++pos)
	{
	  if (!--*argc)
	    goto err;
	  else
	    pos= *(++*argv);
	}
unknown's avatar
unknown committed
230 231
	write_filename=(char*) pos;
	pos=" ";
unknown's avatar
unknown committed
232 233 234 235 236 237 238 239 240
	break;
      case 'F':
	if (! *++pos)
	{
	  if (!--*argc)
	    goto err;
	  else
	    pos= *(++*argv);
	}
unknown's avatar
unknown committed
241 242
	filepath= (char*) pos;
	pos=" ";
unknown's avatar
unknown committed
243 244 245 246 247 248
	break;
      case 'V':
	version=1;
	/* Fall through */
      case 'I':
      case '?':
unknown's avatar
unknown committed
249
	printf("%s  Ver 3.3 for %s at %s\n",my_progname,SYSTEM_TYPE,
unknown's avatar
unknown committed
250
	       MACHINE_TYPE);
unknown's avatar
unknown committed
251
	puts("By Monty, for your professional use\n");
unknown's avatar
unknown committed
252 253
	if (version)
	  break;
unknown's avatar
unknown committed
254
	puts("Write info about whats in a ISAM log file.");
unknown's avatar
unknown committed
255 256 257 258 259 260 261 262 263
	printf("If no file name is given %s is used\n",log_filename);
	puts("");
	printf(usage,my_progname);
	puts("");
	puts("Options: -? or -I \"Info\"     -V \"version\"   -c \"do only # commands\"");
	puts("         -f \"max open files\" -F \"filepath\"  -i \"extra info\"");
	puts("         -o \"offset\"         -p # \"remove # components from path\"");
	puts("         -r \"recover\"        -R \"file recordposition\"");
	puts("         -u \"update\"         -v \"verbose\"   -w \"write file\"");
unknown's avatar
unknown committed
264
	puts("         -P \"processes\"");
unknown's avatar
unknown committed
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
	puts("\nOne can give a second and a third '-v' for more verbose.");
	puts("Normaly one does a update (-u).");
	puts("If a recover is done all writes and all possibly updates and deletes is done\nand errors are only counted.");
	puts("If one gives table names as arguments only these tables will be updated\n");
	help=1;
	break;
      default:
	printf("illegal option: \"-%c\"\n",*pos);
	break;
      }
    }
  }
  if (! *argc)
  {
    if (help)
    exit(0);
    (*argv)++;
  }
  if (*argc >= 1)
  {
unknown's avatar
unknown committed
285
    log_filename=(char*) pos;
unknown's avatar
unknown committed
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
    (*argc)--;
    (*argv)++;
  }
  return;
 err:
  VOID(fprintf(stderr,"option \"%c\" used without or with wrong argument\n",
	       option));
  exit(1);
}


static int examine_log(my_string file_name, char **table_names)
{
  uint command,result,files_open;
  ulong access_time,length;
  uint32 filepos;
  int lock_command,ni_result;
  char isam_file_name[FN_REFLEN];
  uchar head[20];
  gptr	buff;
  struct test_if_open_param open_param;
  IO_CACHE cache;
  File file;
  FILE *write_file;
  enum ha_extra_function extra_command;
  TREE tree;
unknown's avatar
unknown committed
312 313
  struct isamlog_file_info file_info,*curr_file_info;
  char llbuff[22],llbuff2[22];
unknown's avatar
unknown committed
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
  DBUG_ENTER("examine_log");

  if ((file=my_open(file_name,O_RDONLY,MYF(MY_WME))) < 0)
    DBUG_RETURN(1);
  write_file=0;
  if (write_filename)
  {
    if (!(write_file=my_fopen(write_filename,O_WRONLY,MYF(MY_WME))))
    {
      my_close(file,MYF(0));
      DBUG_RETURN(1);
    }
  }

  init_io_cache(&cache,file,0,READ_CACHE,start_offset,0,MYF(0));
  bzero((gptr) com_count,sizeof(com_count));
unknown's avatar
unknown committed
330 331
  init_tree(&tree,0,0,sizeof(file_info),(qsort_cmp2) file_info_compare,1,
	    (tree_element_free) file_info_free, NULL);
unknown's avatar
unknown committed
332 333
  VOID(init_key_cache(dflt_keycache,KEY_CACHE_BLOCK_SIZE,KEY_CACHE_SIZE,
                      &dflt_key_cache_var));
unknown's avatar
unknown committed
334 335 336 337 338 339 340
  files_open=0; access_time=0;
  while (access_time++ != number_of_commands &&
	 !my_b_read(&cache,(byte*) head,9))
  {
    isamlog_filepos=my_b_tell(&cache)-9L;
    file_info.filenr=uint2korr(head+1);
    isamlog_process=file_info.process=(long) uint4korr(head+3);
unknown's avatar
unknown committed
341 342
    if (!opt_processes)
      file_info.process=0;
unknown's avatar
unknown committed
343
    result=uint2korr(head+7);
unknown's avatar
unknown committed
344
    if ((curr_file_info=(struct isamlog_file_info*)
345
	 tree_search(&tree, &file_info, tree.custom_arg)))
unknown's avatar
unknown committed
346 347 348 349 350 351 352 353 354 355 356 357 358 359
    {
      curr_file_info->accessed=access_time;
      if (update && curr_file_info->used && curr_file_info->closed)
      {
	if (reopen_closed_file(&tree,curr_file_info))
	{
	  command=sizeof(com_count)/sizeof(com_count[0][0])/3;
	  result=0;
	  goto com_err;
	}
      }
    }
    command=(uint) head[0];
    if (command < sizeof(com_count)/sizeof(com_count[0][0])/3 &&
unknown's avatar
unknown committed
360
	(!table_names[0] || (curr_file_info && curr_file_info->used)))
unknown's avatar
unknown committed
361 362 363 364 365 366 367
    {
      com_count[command][0]++;
      if (result)
	com_count[command][1]++;
    }
    switch ((enum nisam_log_commands) command) {
    case LOG_OPEN:
unknown's avatar
unknown committed
368 369 370 371 372 373
      if (!table_names[0])
      {
	com_count[command][0]--;		/* Must be counted explicite */
	if (result)
	  com_count[command][1]--;
      }
unknown's avatar
unknown committed
374 375

      if (curr_file_info)
unknown's avatar
unknown committed
376
	printf("\nWarning: %s is opened with same process and filenumber\nMaybe you should use the -P option ?\n",
unknown's avatar
unknown committed
377 378 379 380 381 382 383 384 385 386
	       curr_file_info->show_name);
      if (my_b_read(&cache,(byte*) head,2))
	goto err;
      file_info.name=0;
      file_info.show_name=0;
      file_info.record=0;
      if (read_string(&cache,(gptr*) &file_info.name,(uint) uint2korr(head)))
	goto err;
      {
	uint i;
unknown's avatar
unknown committed
387 388 389 390 391 392 393
	char *pos,*to;

	/* Fix if old DOS files to new format */
	for (pos=file_info.name; (pos=strchr(pos,'\\')) ; pos++)
	  *pos= '/';

	pos=file_info.name;
unknown's avatar
unknown committed
394 395 396
	for (i=0 ; i < prefix_remove ; i++)
	{
	  char *next;
unknown's avatar
unknown committed
397
	  if (!(next=strchr(pos,'/')))
unknown's avatar
unknown committed
398 399 400 401 402
	    break;
	  pos=next+1;
	}
	to=isam_file_name;
	if (filepath)
403
	  to=convert_dirname(isam_file_name, filepath, NullS);
unknown's avatar
unknown committed
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
	strmov(to,pos);
	fn_ext(isam_file_name)[0]=0;	/* Remove extension */
      }
      open_param.name=file_info.name;
      open_param.max_id=0;
      VOID(tree_walk(&tree,(tree_walk_action) test_if_open,(void*) &open_param,
		     left_root_right));
      file_info.id=open_param.max_id+1;
      file_info.show_name=my_memdup(isam_file_name,
				    (uint) strlen(isam_file_name)+6,
				    MYF(MY_WME));
      if (file_info.id > 1)
	sprintf(strend(file_info.show_name),"<%d>",file_info.id);
      file_info.closed=1;
      file_info.accessed=access_time;
      file_info.used=1;
      if (table_names[0])
      {
	char **name;
	file_info.used=0;
	for (name=table_names ; *name ; name++)
	{
	  if (!strcmp(*name,isam_file_name))
	    file_info.used=1;			/* Update/log only this */
	}
      }
      if (update && file_info.used)
      {
	if (files_open >= max_files)
	{
	  if (close_some_file(&tree))
	    goto com_err;
	  files_open--;
	}
	if (!(file_info.isam= nisam_open(isam_file_name,O_RDWR,
unknown's avatar
unknown committed
439
					 HA_OPEN_WAIT_IF_LOCKED)))
unknown's avatar
unknown committed
440 441 442 443 444 445 446
	  goto com_err;
	if (!(file_info.record=my_malloc(file_info.isam->s->base.reclength,
					 MYF(MY_WME))))
	  goto end;
	files_open++;
	file_info.closed=0;
      }
447
      VOID(tree_insert(&tree, (gptr) &file_info, 0, tree.custom_arg));
unknown's avatar
unknown committed
448 449 450
      if (file_info.used)
      {
	if (verbose && !record_pos_file)
unknown's avatar
unknown committed
451
	  printf_log("%s: open -> %d",file_info.show_name, file_info.filenr);
unknown's avatar
unknown committed
452 453 454 455 456 457 458 459 460 461 462 463 464 465
	com_count[command][0]++;
	if (result)
	  com_count[command][1]++;
      }
      break;
    case LOG_CLOSE:
      if (verbose && !record_pos_file &&
	  (!table_names[0] || (curr_file_info && curr_file_info->used)))
	printf_log("%s: %s -> %d",FILENAME(curr_file_info),
	       command_name[command],result);
      if (curr_file_info)
      {
	if (!curr_file_info->closed)
	  files_open--;
466
	VOID(tree_delete(&tree, (gptr) curr_file_info, tree.custom_arg));
unknown's avatar
unknown committed
467 468 469 470 471 472 473 474 475
      }
      break;
    case LOG_EXTRA:
      if (my_b_read(&cache,(byte*) head,sizeof(extra_command)))
	goto err;
      memcpy_fixed(&extra_command,head,sizeof(extra_command));
      if (verbose && !record_pos_file &&
	  (!table_names[0] || (curr_file_info && curr_file_info->used)))
	printf_log("%s: %s(%d) -> %d",FILENAME(curr_file_info),
unknown's avatar
unknown committed
476
		   command_name[command], (int) extra_command,result);
unknown's avatar
unknown committed
477 478 479 480
      if (update && curr_file_info && !curr_file_info->closed)
      {
	if (nisam_extra(curr_file_info->isam,extra_command) != (int) result)
	{
unknown's avatar
unknown committed
481
	  fflush(stdout);
unknown's avatar
unknown committed
482
	  VOID(fprintf(stderr,
unknown's avatar
unknown committed
483 484 485 486
		       "Warning: error %d, expected %d on command %s at %s\n",
		       my_errno,result,command_name[command],
		       llstr(isamlog_filepos,llbuff)));
	  fflush(stderr);
unknown's avatar
unknown committed
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
	}
      }
      break;
    case LOG_DELETE:
      if (my_b_read(&cache,(byte*) head,sizeof(filepos)))
	goto err;
      memcpy_fixed(&filepos,head,sizeof(filepos));
      if (verbose && (!record_pos_file ||
		      ((record_pos == filepos || record_pos == NO_FILEPOS) &&
		       !cmp_filename(curr_file_info,record_pos_file))) &&
	  (!table_names[0] || (curr_file_info && curr_file_info->used)))
	printf_log("%s: %s at %ld -> %d",FILENAME(curr_file_info),
		   command_name[command],(long) filepos,result);
      if (update && curr_file_info && !curr_file_info->closed)
      {
	if (nisam_rrnd(curr_file_info->isam,curr_file_info->record,filepos))
	{
	  if (!recover)
	    goto com_err;
	  com_count[command][2]++;		/* Mark error */
	}
	ni_result=nisam_delete(curr_file_info->isam,curr_file_info->record);
	if ((ni_result == 0 && result) ||
	    (ni_result && (uint) my_errno != result))
	{
	  if (!recover)
	    goto com_err;
	  if (ni_result)
	    com_count[command][2]++;		/* Mark error */
unknown's avatar
unknown committed
516 517 518
	  if (verbose)
	    printf_log("error: Got result %d from mi_delete instead of %d",
		       ni_result, result);
unknown's avatar
unknown committed
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
	}
      }
      break;
    case LOG_WRITE:
    case LOG_UPDATE:
      if (my_b_read(&cache,(byte*) head,8))
	goto err;
      filepos=uint4korr(head);
      length=uint4korr(head+4);
      buff=0;
      if (read_string(&cache,&buff,(uint) length))
	goto err;
      if ((!record_pos_file ||
	  ((record_pos == filepos || record_pos == NO_FILEPOS) &&
	   !cmp_filename(curr_file_info,record_pos_file))) &&
	  (!table_names[0] || (curr_file_info && curr_file_info->used)))
      {
	if (write_file &&
	    (my_fwrite(write_file,buff,length,MYF(MY_WAIT_IF_FULL | MY_NABP))))
	  goto end;
	if (verbose)
	  printf_log("%s: %s at %ld, length=%ld -> %d",
		     FILENAME(curr_file_info),
		     command_name[command], filepos,length,result);
      }
      if (update && curr_file_info && !curr_file_info->closed)
      {
	if (curr_file_info->isam->s->base.blobs)
	  fix_blob_pointers(curr_file_info->isam,buff);
	if ((enum nisam_log_commands) command == LOG_UPDATE)
	{
	  if (nisam_rrnd(curr_file_info->isam,curr_file_info->record,filepos))
	  {
	    if (!recover)
	    {
	      result=0;
	      goto com_err;
	    }
unknown's avatar
unknown committed
557 558
	    if (verbose)
	      printf_log("error: Didn't find row to update with mi_rrnd");
unknown's avatar
unknown committed
559 560 561 562 563 564 565 566 567 568 569 570 571 572
	    if (recover == 1 || result ||
		find_record_with_key(curr_file_info,buff))
	    {
	      com_count[command][2]++;		/* Mark error */
	      break;
	    }
	  }
	  ni_result=nisam_update(curr_file_info->isam,curr_file_info->record,
			      buff);
	  if ((ni_result == 0 && result) ||
	      (ni_result && (uint) my_errno != result))
	  {
	    if (!recover)
	      goto com_err;
unknown's avatar
unknown committed
573 574 575
	    if (verbose)
	      printf_log("error: Got result %d from mi_update instead of %d",
			 ni_result, result);
unknown's avatar
unknown committed
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
	    if (ni_result)
	      com_count[command][2]++;		/* Mark error */
	  }
	}
	else
	{
	  ni_result=nisam_write(curr_file_info->isam,buff);
	  if ((ni_result == 0 && result) ||
	      (ni_result && (uint) my_errno != result))
	  {
	    if (!recover)
	      goto com_err;
	    if (ni_result)
	      com_count[command][2]++;		/* Mark error */
	  }
	  if (! recover && filepos != curr_file_info->isam->lastpos)
	  {
unknown's avatar
unknown committed
593 594 595 596
	    printf("error: Wrote at position: %s, should have been %s",
		   llstr(curr_file_info->isam->lastpos,llbuff),
		   llstr(filepos,llbuff2));
	    goto end;
unknown's avatar
unknown committed
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
	  }
	}
      }
      my_free(buff,MYF(0));
      break;
    case LOG_LOCK:
      if (my_b_read(&cache,(byte*) head,sizeof(lock_command)))
	goto err;
      memcpy_fixed(&lock_command,head,sizeof(lock_command));
      if (verbose && !record_pos_file &&
	  (!table_names[0] || (curr_file_info && curr_file_info->used)))
	printf_log("%s: %s(%d) -> %d\n",FILENAME(curr_file_info),
		   command_name[command],lock_command,result);
      if (update && curr_file_info && !curr_file_info->closed)
      {
	if (nisam_lock_database(curr_file_info->isam,lock_command) !=
	    (int) result)
	  goto com_err;
      }
      break;
    default:
      VOID(fprintf(stderr,
		   "Error: found unknown command %d in logfile, aborted\n",
		   command));
unknown's avatar
unknown committed
621
      fflush(stderr);
unknown's avatar
unknown committed
622 623 624
      goto end;
    }
  }
unknown's avatar
unknown committed
625
  end_key_cache(dflt_keycache,1);
unknown's avatar
unknown committed
626 627 628 629 630 631 632 633
  delete_tree(&tree);
  VOID(end_io_cache(&cache));
  VOID(my_close(file,MYF(0)));
  if (write_file && my_fclose(write_file,MYF(MY_WME)))
    DBUG_RETURN(1);
  DBUG_RETURN(0);

 err:
unknown's avatar
unknown committed
634
  fflush(stdout);
unknown's avatar
unknown committed
635
  VOID(fprintf(stderr,"Got error %d when reading from logfile\n",my_errno));
unknown's avatar
unknown committed
636
  fflush(stderr);
unknown's avatar
unknown committed
637 638
  goto end;
 com_err:
unknown's avatar
unknown committed
639 640 641 642 643
  fflush(stdout);
  VOID(fprintf(stderr,"Got error %d, expected %d on command %s at %s\n",
	       my_errno,result,command_name[command],
	       llstr(isamlog_filepos,llbuff)));
  fflush(stderr);
unknown's avatar
unknown committed
644
 end:
unknown's avatar
unknown committed
645
  end_key_cache(dflt_keycache,1);
unknown's avatar
unknown committed
646 647 648 649 650 651 652 653 654
  delete_tree(&tree);
  VOID(end_io_cache(&cache));
  VOID(my_close(file,MYF(0)));
  if (write_file)
    VOID(my_fclose(write_file,MYF(MY_WME)));
  DBUG_RETURN(1);
}


unknown's avatar
unknown committed
655
static int read_string(IO_CACHE *file, reg1 gptr *to, reg2 uint length)
unknown's avatar
unknown committed
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
{
  DBUG_ENTER("read_string");

  if (*to)
    my_free((gptr) *to,MYF(0));
  if (!(*to= (gptr) my_malloc(length+1,MYF(MY_WME))) ||
      my_b_read(file,(byte*) *to,length))
  {
    if (*to)
      my_free(*to,MYF(0));
    *to= 0;
    DBUG_RETURN(1);
  }
  *((char*) *to+length)= '\0';
  DBUG_RETURN (0);
}				/* read_string */


unknown's avatar
unknown committed
674
static int file_info_compare(void *a, void *b)
unknown's avatar
unknown committed
675 676 677
{
  long lint;

unknown's avatar
unknown committed
678 679
  if ((lint=((struct isamlog_file_info*) a)->process -
       ((struct isamlog_file_info*) b)->process))
unknown's avatar
unknown committed
680
    return lint < 0L ? -1 : 1;
unknown's avatar
unknown committed
681 682
  return (((struct isamlog_file_info*) a)->filenr -
	  ((struct isamlog_file_info*) b)->filenr);
unknown's avatar
unknown committed
683 684 685 686
}

	/* ARGSUSED */

unknown's avatar
unknown committed
687 688 689
static int test_if_open (struct isamlog_file_info *key,
			 element_count count __attribute__((unused)),
			 struct test_if_open_param *param)
unknown's avatar
unknown committed
690 691 692 693 694 695 696
{
  if (!strcmp(key->name,param->name) && key->id > param->max_id)
    param->max_id=key->id;
  return 0;
}


unknown's avatar
unknown committed
697
static void fix_blob_pointers( N_INFO *info, byte *record)
unknown's avatar
unknown committed
698 699 700 701 702 703 704 705 706 707 708 709 710 711
{
  byte *pos;
  N_BLOB *blob,*end;

  pos=record+info->s->base.reclength;
  for (end=info->blobs+info->s->base.blobs, blob= info->blobs;
       blob != end ;
       blob++)
  {
    bmove(record+blob->offset+blob->pack_length,&pos,sizeof(char*));
    pos+=_calc_blob_length(blob->pack_length,record+blob->offset);
  }
}

unknown's avatar
unknown committed
712
static uint set_maximum_open_files(uint maximum_files)
unknown's avatar
unknown committed
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
{
#if defined(HAVE_GETRUSAGE) && defined(RLIMIT_NOFILE)
  struct rlimit rlimit;
  int old_max;

  if (maximum_files > MY_NFILE)
    maximum_files=MY_NFILE;			/* Don't crash my_open */

  if (!getrlimit(RLIMIT_NOFILE,&rlimit))
  {
    old_max=rlimit.rlim_max;
    if (maximum_files && (int) maximum_files > old_max)
      rlimit.rlim_max=maximum_files;
    rlimit.rlim_cur=rlimit.rlim_max;
    if (setrlimit(RLIMIT_NOFILE,&rlimit))
    {
      if (old_max != (int) maximum_files)
      {						/* Set as much as we can */
	rlimit.rlim_max=rlimit.rlim_cur=old_max;
	setrlimit(RLIMIT_NOFILE,&rlimit);
      }
    }
    getrlimit(RLIMIT_NOFILE,&rlimit);		/* Read if broken setrlimit */
    if (maximum_files && maximum_files < rlimit.rlim_cur)
      VOID(fprintf(stderr,"Warning: Error from setrlimit: Max open files is %d\n",old_max));
    return rlimit.rlim_cur;
  }
#endif
  return min(maximum_files,MY_NFILE);
}

	/* close the file with hasn't been accessed for the longest time */
	/* ARGSUSED */

unknown's avatar
unknown committed
747 748 749
static int test_when_accessed (struct isamlog_file_info *key,
			       element_count count __attribute__((unused)),
			       struct st_access_param *access_param)
unknown's avatar
unknown committed
750 751 752 753 754 755 756 757 758 759
{
  if (key->accessed < access_param->min_accessed && ! key->closed)
  {
    access_param->min_accessed=key->accessed;
    access_param->found=key;
  }
  return 0;
}


unknown's avatar
unknown committed
760
static void file_info_free(struct isamlog_file_info *fileinfo)
unknown's avatar
unknown committed
761
{
unknown's avatar
unknown committed
762
  DBUG_ENTER("file_info_free");
unknown's avatar
unknown committed
763 764 765 766 767 768 769 770 771
  if (update)
  {
    if (!fileinfo->closed)
      VOID(nisam_close(fileinfo->isam));
    if (fileinfo->record)
      my_free(fileinfo->record,MYF(0));
  }
  my_free(fileinfo->name,MYF(0));
  my_free(fileinfo->show_name,MYF(0));
unknown's avatar
unknown committed
772
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
773 774 775 776
}



unknown's avatar
unknown committed
777
static int close_some_file(TREE *tree)
unknown's avatar
unknown committed
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
{
  struct st_access_param access_param;

  access_param.min_accessed=LONG_MAX;
  access_param.found=0;

  VOID(tree_walk(tree,(tree_walk_action) test_when_accessed,
		 (void*) &access_param,left_root_right));
  if (!access_param.found)
    return 1;			/* No open file that is possibly to close */
  if (nisam_close(access_param.found->isam))
    return 1;
  access_param.found->closed=1;
  return 0;
}


unknown's avatar
unknown committed
795
static int reopen_closed_file(TREE *tree, struct isamlog_file_info *fileinfo)
unknown's avatar
unknown committed
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
{
  char name[FN_REFLEN];
  if (close_some_file(tree))
    return 1;				/* No file to close */
  strmov(name,fileinfo->show_name);
  if (fileinfo->id > 1)
    *strrchr(name,'<')='\0';		/* Remove "<id>" */

  if (!(fileinfo->isam= nisam_open(name,O_RDWR,HA_OPEN_WAIT_IF_LOCKED)))
    return 1;
  fileinfo->closed=0;
  re_open_count++;
  return 0;
}

	/* Try to find record with uniq key */

unknown's avatar
unknown committed
813 814
static int find_record_with_key(struct isamlog_file_info *file_info,
				byte *record)
unknown's avatar
unknown committed
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
{
  uint key;
  N_INFO *info=file_info->isam;
  uchar tmp_key[N_MAX_KEY_BUFF];

  for (key=0 ; key < info->s->state.keys ; key++)
  {
    if (info->s->keyinfo[key].base.flag & HA_NOSAME)
    {
      VOID(_nisam_make_key(info,key,tmp_key,record,0L));
      return nisam_rkey(info,file_info->record,(int) key,(char*) tmp_key,0,
		     HA_READ_KEY_EXACT);
    }
  }
  return 1;
}


static void printf_log(const char *format,...)
{
unknown's avatar
unknown committed
835
  char llbuff[21];
unknown's avatar
unknown committed
836 837 838
  va_list args;
  va_start(args,format);
  if (verbose > 2)
unknown's avatar
unknown committed
839
    printf("%9s:",llstr(isamlog_filepos,llbuff));
unknown's avatar
unknown committed
840 841 842 843 844 845 846 847
  if (verbose > 1)
    printf("%5ld ",isamlog_process);	/* Write process number */
  (void) vprintf((char*) format,args);
  putchar('\n');
  va_end(args);
}


unknown's avatar
unknown committed
848
static bool cmp_filename(struct isamlog_file_info *file_info,my_string name)
unknown's avatar
unknown committed
849 850 851 852 853
{
  if (!file_info)
    return 1;
  return strcmp(file_info->name,name) ? 1 : 0;
}