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

MySQL数据库

开发平台:

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. /* write whats in isam.log */
  14. #ifndef USE_MY_FUNC
  15. #define USE_MY_FUNC
  16. #endif
  17. #include "myisamdef.h"
  18. #include <my_tree.h>
  19. #include <stdarg.h>
  20. #ifdef HAVE_GETRUSAGE
  21. #include <sys/resource.h>
  22. #endif
  23. #define FILENAME(A) (A ? A->show_name : "Unknown")
  24. struct file_info {
  25.   long process;
  26.   int  filenr,id;
  27.   uint rnd;
  28.   my_string name,show_name,record;
  29.   MI_INFO *isam;
  30.   bool closed,used;
  31.   ulong accessed;
  32. };
  33. struct test_if_open_param {
  34.   my_string name;
  35.   int max_id;
  36. };
  37. struct st_access_param
  38. {
  39.   ulong min_accessed;
  40.   struct file_info *found;
  41. };
  42. #define NO_FILEPOS (ulong) ~0L
  43. extern int main(int argc,char * *argv);
  44. static void get_options(int *argc,char ***argv);
  45. static int examine_log(my_string file_name,char **table_names);
  46. static int read_string(IO_CACHE *file,gptr *to,uint length);
  47. static int file_info_compare(void *cmp_arg, void *a,void *b);
  48. static int test_if_open(struct file_info *key,element_count count,
  49. struct test_if_open_param *param);
  50. static void fix_blob_pointers(MI_INFO *isam,byte *record);
  51. static int test_when_accessed(struct file_info *key,element_count count,
  52.       struct st_access_param *access_param);
  53. static void file_info_free(struct file_info *info);
  54. static int close_some_file(TREE *tree);
  55. static int reopen_closed_file(TREE *tree,struct file_info *file_info);
  56. static int find_record_with_key(struct file_info *file_info,byte *record);
  57. static void printf_log(const char *str,...);
  58. static bool cmp_filename(struct file_info *file_info,my_string name);
  59. static uint verbose=0,update=0,test_info=0,max_files=0,re_open_count=0,
  60.   recover=0,prefix_remove=0,opt_processes=0;
  61. static my_string log_filename=0,filepath=0,write_filename=0,record_pos_file=0;
  62. static ulong com_count[10][3],number_of_commands=(ulong) ~0L,
  63.      isamlog_process;
  64. static my_off_t isamlog_filepos,start_offset=0,record_pos= HA_OFFSET_ERROR;
  65. static const char *command_name[]=
  66. {"open","write","update","delete","close","extra","lock","re-open",
  67.  "delete-all", NullS};
  68. int main(int argc, char **argv)
  69. {
  70.   int error,i,first;
  71.   ulong total_count,total_error,total_recover;
  72.   MY_INIT(argv[0]);
  73.   log_filename=myisam_log_filename;
  74.   get_options(&argc,&argv);
  75.   /* Number of MyISAM files we can have open at one time */
  76.   max_files= (my_set_max_open_files(min(max_files,8))-6)/2;
  77.   if (update)
  78.     printf("Trying to %s MyISAM files according to log '%s'n",
  79.    (recover ? "recover" : "update"),log_filename);
  80.   error= examine_log(log_filename,argv);
  81.   if (update && ! error)
  82.     puts("Tables updated successfully");
  83.   total_count=total_error=total_recover=0;
  84.   for (i=first=0 ; command_name[i] ; i++)
  85.   {
  86.     if (com_count[i][0])
  87.     {
  88.       if (!first++)
  89.       {
  90. if (verbose || update)
  91.   puts("");
  92. puts("Commands   Used count    Errors   Recover errors");
  93.       }
  94.       printf("%-12s%9ld%10ld%17ldn",command_name[i],com_count[i][0],
  95.      com_count[i][1],com_count[i][2]);
  96.       total_count+=com_count[i][0];
  97.       total_error+=com_count[i][1];
  98.       total_recover+=com_count[i][2];
  99.     }
  100.   }
  101.   if (total_count)
  102.     printf("%-12s%9ld%10ld%17ldn","Total",total_count,total_error,
  103.    total_recover);
  104.   if (re_open_count)
  105.     printf("Had to do %d re-open because of too few possibly open filesn",
  106.    re_open_count);
  107.   VOID(mi_panic(HA_PANIC_CLOSE));
  108.   my_free_open_file_info();
  109.   my_end(test_info ? MY_CHECK_ERROR | MY_GIVE_INFO : MY_CHECK_ERROR);
  110.   exit(error);
  111.   return 0; /* No compiler warning */
  112. } /* main */
  113. static void get_options(register int *argc, register char ***argv)
  114. {
  115.   int help,version;
  116.   const char *pos,*usage;
  117.   char option;
  118.   help=0;
  119.   usage="Usage: %s [-?iruvDIV] [-c #] [-f #] [-F filepath/] [-o #] [-R file recordpos] [-w write_file] [log-filename [table ...]] n";
  120.   pos="";
  121.   while (--*argc > 0 && *(pos = *(++*argv)) == '-' ) {
  122.     while (*++pos)
  123.     {
  124.       version=0;
  125.       switch((option=*pos)) {
  126.       case '#':
  127. DBUG_PUSH (++pos);
  128. pos=" "; /* Skip rest of arg */
  129. break;
  130.       case 'c':
  131. if (! *++pos)
  132. {
  133.   if (!--*argc)
  134.     goto err;
  135.   else
  136.     pos= *(++*argv);
  137. }
  138. number_of_commands=(ulong) atol(pos);
  139. pos=" ";
  140. break;
  141.       case 'u':
  142. update=1;
  143. break;
  144.       case 'f':
  145. if (! *++pos)
  146. {
  147.   if (!--*argc)
  148.     goto err;
  149.   else
  150.     pos= *(++*argv);
  151. }
  152. max_files=(uint) atoi(pos);
  153. pos=" ";
  154. break;
  155.       case 'i':
  156. test_info=1;
  157. break;
  158.       case 'o':
  159. if (! *++pos)
  160. {
  161.   if (!--*argc)
  162.     goto err;
  163.   else
  164.     pos= *(++*argv);
  165. }
  166. start_offset=(my_off_t) strtoll(pos,NULL,10);
  167. pos=" ";
  168. break;
  169.       case 'p':
  170. if (! *++pos)
  171. {
  172.   if (!--*argc)
  173.     goto err;
  174.   else
  175.     pos= *(++*argv);
  176. }
  177. prefix_remove=atoi(pos);
  178. break;
  179.       case 'r':
  180. update=1;
  181. recover++;
  182. break;
  183.       case 'P':
  184. opt_processes=1;
  185. break;
  186.       case 'R':
  187. if (! *++pos)
  188. {
  189.   if (!--*argc)
  190.     goto err;
  191.   else
  192.     pos= *(++*argv);
  193. }
  194. record_pos_file=(char*) pos;
  195. if (!--*argc)
  196.   goto err;
  197. record_pos=(my_off_t) strtoll(*(++*argv),NULL,10);
  198. pos=" ";
  199. break;
  200.       case 'v':
  201. verbose++;
  202. break;
  203.       case 'w':
  204. if (! *++pos)
  205. {
  206.   if (!--*argc)
  207.     goto err;
  208.   else
  209.     pos= *(++*argv);
  210. }
  211. write_filename=(char*) pos;
  212. pos=" ";
  213. break;
  214.       case 'F':
  215. if (! *++pos)
  216. {
  217.   if (!--*argc)
  218.     goto err;
  219.   else
  220.     pos= *(++*argv);
  221. }
  222. filepath= (char*) pos;
  223. pos=" ";
  224. break;
  225.       case 'V':
  226. version=1;
  227. /* Fall through */
  228.       case 'I':
  229.       case '?':
  230. #include <help_start.h>
  231. printf("%s  Ver 1.4 for %s at %sn",my_progname,SYSTEM_TYPE,
  232.        MACHINE_TYPE);
  233. puts("By Monty, for your professional usen");
  234. if (version)
  235.   break;
  236. puts("Write info about whats in a MyISAM log file.");
  237. printf("If no file name is given %s is usedn",log_filename);
  238. puts("");
  239. printf(usage,my_progname);
  240. puts("");
  241. puts("Options: -? or -I "Info"     -V "version"   -c "do only # commands"");
  242. puts("         -f "max open files" -F "filepath"  -i "extra info"");
  243. puts("         -o "offset"         -p # "remove # components from path"");
  244. puts("         -r "recover"        -R "file recordposition"");
  245. puts("         -u "update"         -v "verbose"   -w "write file"");
  246. puts("         -D "myisam compiled with DBUG"   -P "processes"");
  247. puts("nOne can give a second and a third '-v' for more verbose.");
  248. puts("Normaly one does a update (-u).");
  249. puts("If a recover is done all writes and all possibly updates and deletes is donenand errors are only counted.");
  250. puts("If one gives table names as arguments only these tables will be updatedn");
  251. help=1;
  252. #include <help_end.h>
  253. break;
  254.       default:
  255. printf("illegal option: "-%c"n",*pos);
  256. break;
  257.       }
  258.     }
  259.   }
  260.   if (! *argc)
  261.   {
  262.     if (help)
  263.     exit(0);
  264.     (*argv)++;
  265.   }
  266.   if (*argc >= 1)
  267.   {
  268.     log_filename=(char*) pos;
  269.     (*argc)--;
  270.     (*argv)++;
  271.   }
  272.   return;
  273.  err:
  274.   VOID(fprintf(stderr,"option "%c" used without or with wrong argumentn",
  275.        option));
  276.   exit(1);
  277. }
  278. static int examine_log(my_string file_name, char **table_names)
  279. {
  280.   uint command,result,files_open;
  281.   ulong access_time,length;
  282.   my_off_t filepos;
  283.   int lock_command,mi_result;
  284.   char isam_file_name[FN_REFLEN],llbuff[21],llbuff2[21];
  285.   uchar head[20];
  286.   gptr buff;
  287.   struct test_if_open_param open_param;
  288.   IO_CACHE cache;
  289.   File file;
  290.   FILE *write_file;
  291.   enum ha_extra_function extra_command;
  292.   TREE tree;
  293.   struct file_info file_info,*curr_file_info;
  294.   DBUG_ENTER("examine_log");
  295.   if ((file=my_open(file_name,O_RDONLY,MYF(MY_WME))) < 0)
  296.     DBUG_RETURN(1);
  297.   write_file=0;
  298.   if (write_filename)
  299.   {
  300.     if (!(write_file=my_fopen(write_filename,O_WRONLY,MYF(MY_WME))))
  301.     {
  302.       my_close(file,MYF(0));
  303.       DBUG_RETURN(1);
  304.     }
  305.   }
  306.   init_io_cache(&cache,file,0,READ_CACHE,start_offset,0,MYF(0));
  307.   bzero((gptr) com_count,sizeof(com_count));
  308.   init_tree(&tree,0,0,sizeof(file_info),(qsort_cmp2) file_info_compare,1,
  309.     (tree_element_free) file_info_free, NULL);
  310.   VOID(init_key_cache(dflt_key_cache,KEY_CACHE_BLOCK_SIZE,KEY_CACHE_SIZE,
  311.                       0, 0));
  312.   files_open=0; access_time=0;
  313.   while (access_time++ != number_of_commands &&
  314.  !my_b_read(&cache,(byte*) head,9))
  315.   {
  316.     isamlog_filepos=my_b_tell(&cache)-9L;
  317.     file_info.filenr= mi_uint2korr(head+1);
  318.     isamlog_process=file_info.process=(long) mi_uint4korr(head+3);
  319.     if (!opt_processes)
  320.       file_info.process=0;
  321.     result= mi_uint2korr(head+7);
  322.     if ((curr_file_info=(struct file_info*) tree_search(&tree, &file_info,
  323. tree.custom_arg)))
  324.     {
  325.       curr_file_info->accessed=access_time;
  326.       if (update && curr_file_info->used && curr_file_info->closed)
  327.       {
  328. if (reopen_closed_file(&tree,curr_file_info))
  329. {
  330.   command=sizeof(com_count)/sizeof(com_count[0][0])/3;
  331.   result=0;
  332.   goto com_err;
  333. }
  334.       }
  335.     }
  336.     command=(uint) head[0];
  337.     if (command < sizeof(com_count)/sizeof(com_count[0][0])/3 &&
  338. (!table_names[0] || (curr_file_info && curr_file_info->used)))
  339.     {
  340.       com_count[command][0]++;
  341.       if (result)
  342. com_count[command][1]++;
  343.     }
  344.     switch ((enum myisam_log_commands) command) {
  345.     case MI_LOG_OPEN:
  346.       if (!table_names[0])
  347.       {
  348. com_count[command][0]--; /* Must be counted explicite */
  349. if (result)
  350.   com_count[command][1]--;
  351.       }
  352.       if (curr_file_info)
  353. printf("nWarning: %s is opened with same process and filenumbernMaybe you should use the -P option ?n",
  354.        curr_file_info->show_name);
  355.       if (my_b_read(&cache,(byte*) head,2))
  356. goto err;
  357.       file_info.name=0;
  358.       file_info.show_name=0;
  359.       file_info.record=0;
  360.       if (read_string(&cache,(gptr*) &file_info.name,
  361.       (uint) mi_uint2korr(head)))
  362. goto err;
  363.       {
  364. uint i;
  365. char *pos,*to;
  366. /* Fix if old DOS files to new format */
  367. for (pos=file_info.name; (pos=strchr(pos,'\')) ; pos++)
  368.   *pos= '/';
  369. pos=file_info.name;
  370. for (i=0 ; i < prefix_remove ; i++)
  371. {
  372.   char *next;
  373.   if (!(next=strchr(pos,'/')))
  374.     break;
  375.   pos=next+1;
  376. }
  377. to=isam_file_name;
  378. if (filepath)
  379.   to=convert_dirname(isam_file_name,filepath,NullS);
  380. strmov(to,pos);
  381. fn_ext(isam_file_name)[0]=0; /* Remove extension */
  382.       }
  383.       open_param.name=file_info.name;
  384.       open_param.max_id=0;
  385.       VOID(tree_walk(&tree,(tree_walk_action) test_if_open,(void*) &open_param,
  386.      left_root_right));
  387.       file_info.id=open_param.max_id+1;
  388.       /*
  389.        * In the line below +10 is added to accomodate '<' and '>' chars
  390.        * plus '' at the end, so that there is place for 7 digits.
  391.        * It is  improbable that same table can have that many entries in 
  392.        * the table cache.
  393.        * The additional space is needed for the sprintf commands two lines
  394.        * below.
  395.        */ 
  396.       file_info.show_name=my_memdup(isam_file_name,
  397.     (uint) strlen(isam_file_name)+10,
  398.     MYF(MY_WME));
  399.       if (file_info.id > 1)
  400. sprintf(strend(file_info.show_name),"<%d>",file_info.id);
  401.       file_info.closed=1;
  402.       file_info.accessed=access_time;
  403.       file_info.used=1;
  404.       if (table_names[0])
  405.       {
  406. char **name;
  407. file_info.used=0;
  408. for (name=table_names ; *name ; name++)
  409. {
  410.   if (!strcmp(*name,isam_file_name))
  411.     file_info.used=1; /* Update/log only this */
  412. }
  413.       }
  414.       if (update && file_info.used)
  415.       {
  416. if (files_open >= max_files)
  417. {
  418.   if (close_some_file(&tree))
  419.     goto com_err;
  420.   files_open--;
  421. }
  422. if (!(file_info.isam= mi_open(isam_file_name,O_RDWR,
  423.       HA_OPEN_WAIT_IF_LOCKED)))
  424.   goto com_err;
  425. if (!(file_info.record=my_malloc(file_info.isam->s->base.reclength,
  426.  MYF(MY_WME))))
  427.   goto end;
  428. files_open++;
  429. file_info.closed=0;
  430.       }
  431.       VOID(tree_insert(&tree, (gptr) &file_info, 0, tree.custom_arg));
  432.       if (file_info.used)
  433.       {
  434. if (verbose && !record_pos_file)
  435.   printf_log("%s: open -> %d",file_info.show_name, file_info.filenr);
  436. com_count[command][0]++;
  437. if (result)
  438.   com_count[command][1]++;
  439.       }
  440.       break;
  441.     case MI_LOG_CLOSE:
  442.       if (verbose && !record_pos_file &&
  443.   (!table_names[0] || (curr_file_info && curr_file_info->used)))
  444. printf_log("%s: %s -> %d",FILENAME(curr_file_info),
  445.        command_name[command],result);
  446.       if (curr_file_info)
  447.       {
  448. if (!curr_file_info->closed)
  449.   files_open--;
  450. VOID(tree_delete(&tree, (gptr) curr_file_info, tree.custom_arg));
  451.       }
  452.       break;
  453.     case MI_LOG_EXTRA:
  454.       if (my_b_read(&cache,(byte*) head,1))
  455. goto err;
  456.       extra_command=(enum ha_extra_function) head[0];
  457.       if (verbose && !record_pos_file &&
  458.   (!table_names[0] || (curr_file_info && curr_file_info->used)))
  459. printf_log("%s: %s(%d) -> %d",FILENAME(curr_file_info),
  460.    command_name[command], (int) extra_command,result);
  461.       if (update && curr_file_info && !curr_file_info->closed)
  462.       {
  463. if (mi_extra(curr_file_info->isam, extra_command, 0) != (int) result)
  464. {
  465.   fflush(stdout);
  466.   VOID(fprintf(stderr,
  467.        "Warning: error %d, expected %d on command %s at %sn",
  468.        my_errno,result,command_name[command],
  469.        llstr(isamlog_filepos,llbuff)));
  470.   fflush(stderr);
  471. }
  472.       }
  473.       break;
  474.     case MI_LOG_DELETE:
  475.       if (my_b_read(&cache,(byte*) head,8))
  476. goto err;
  477.       filepos=mi_sizekorr(head);
  478.       if (verbose && (!record_pos_file ||
  479.       ((record_pos == filepos || record_pos == NO_FILEPOS) &&
  480.        !cmp_filename(curr_file_info,record_pos_file))) &&
  481.   (!table_names[0] || (curr_file_info && curr_file_info->used)))
  482. printf_log("%s: %s at %ld -> %d",FILENAME(curr_file_info),
  483.    command_name[command],(long) filepos,result);
  484.       if (update && curr_file_info && !curr_file_info->closed)
  485.       {
  486. if (mi_rrnd(curr_file_info->isam,curr_file_info->record,filepos))
  487. {
  488.   if (!recover)
  489.     goto com_err;
  490.   if (verbose)
  491.     printf_log("error: Didn't find row to delete with mi_rrnd");
  492.   com_count[command][2]++; /* Mark error */
  493. }
  494. mi_result=mi_delete(curr_file_info->isam,curr_file_info->record);
  495. if ((mi_result == 0 && result) ||
  496.     (mi_result && (uint) my_errno != result))
  497. {
  498.   if (!recover)
  499.     goto com_err;
  500.   if (mi_result)
  501.     com_count[command][2]++; /* Mark error */
  502.   if (verbose)
  503.     printf_log("error: Got result %d from mi_delete instead of %d",
  504.        mi_result, result);
  505. }
  506.       }
  507.       break;
  508.     case MI_LOG_WRITE:
  509.     case MI_LOG_UPDATE:
  510.       if (my_b_read(&cache,(byte*) head,12))
  511. goto err;
  512.       filepos=mi_sizekorr(head);
  513.       length=mi_uint4korr(head+8);
  514.       buff=0;
  515.       if (read_string(&cache,&buff,(uint) length))
  516. goto err;
  517.       if ((!record_pos_file ||
  518.   ((record_pos == filepos || record_pos == NO_FILEPOS) &&
  519.    !cmp_filename(curr_file_info,record_pos_file))) &&
  520.   (!table_names[0] || (curr_file_info && curr_file_info->used)))
  521.       {
  522. if (write_file &&
  523.     (my_fwrite(write_file,buff,length,MYF(MY_WAIT_IF_FULL | MY_NABP))))
  524.   goto end;
  525. if (verbose)
  526.   printf_log("%s: %s at %ld, length=%ld -> %d",
  527.      FILENAME(curr_file_info),
  528.      command_name[command], filepos,length,result);
  529.       }
  530.       if (update && curr_file_info && !curr_file_info->closed)
  531.       {
  532. if (curr_file_info->isam->s->base.blobs)
  533.   fix_blob_pointers(curr_file_info->isam,buff);
  534. if ((enum myisam_log_commands) command == MI_LOG_UPDATE)
  535. {
  536.   if (mi_rrnd(curr_file_info->isam,curr_file_info->record,filepos))
  537.   {
  538.     if (!recover)
  539.     {
  540.       result=0;
  541.       goto com_err;
  542.     }
  543.     if (verbose)
  544.       printf_log("error: Didn't find row to update with mi_rrnd");
  545.     if (recover == 1 || result ||
  546. find_record_with_key(curr_file_info,buff))
  547.     {
  548.       com_count[command][2]++; /* Mark error */
  549.       break;
  550.     }
  551.   }
  552.   mi_result=mi_update(curr_file_info->isam,curr_file_info->record,
  553.       buff);
  554.   if ((mi_result == 0 && result) ||
  555.       (mi_result && (uint) my_errno != result))
  556.   {
  557.     if (!recover)
  558.       goto com_err;
  559.     if (verbose)
  560.       printf_log("error: Got result %d from mi_update instead of %d",
  561.  mi_result, result);
  562.     if (mi_result)
  563.       com_count[command][2]++; /* Mark error */
  564.   }
  565. }
  566. else
  567. {
  568.   mi_result=mi_write(curr_file_info->isam,buff);
  569.   if ((mi_result == 0 && result) ||
  570.       (mi_result && (uint) my_errno != result))
  571.   {
  572.     if (!recover)
  573.       goto com_err;
  574.     if (verbose)
  575.       printf_log("error: Got result %d from mi_write instead of %d",
  576.  mi_result, result);
  577.     if (mi_result)
  578.       com_count[command][2]++; /* Mark error */
  579.   }
  580.   if (!recover && filepos != curr_file_info->isam->lastpos)
  581.   {
  582.     printf("error: Wrote at position: %s, should have been %s",
  583.    llstr(curr_file_info->isam->lastpos,llbuff),
  584.    llstr(filepos,llbuff2));
  585.     goto end;
  586.   }
  587. }
  588.       }
  589.       my_free(buff,MYF(0));
  590.       break;
  591.     case MI_LOG_LOCK:
  592.       if (my_b_read(&cache,(byte*) head,sizeof(lock_command)))
  593. goto err;
  594.       memcpy_fixed(&lock_command,head,sizeof(lock_command));
  595.       if (verbose && !record_pos_file &&
  596.   (!table_names[0] || (curr_file_info && curr_file_info->used)))
  597. printf_log("%s: %s(%d) -> %dn",FILENAME(curr_file_info),
  598.    command_name[command],lock_command,result);
  599.       if (update && curr_file_info && !curr_file_info->closed)
  600.       {
  601. if (mi_lock_database(curr_file_info->isam,lock_command) !=
  602.     (int) result)
  603.   goto com_err;
  604.       }
  605.       break;
  606.     case MI_LOG_DELETE_ALL:
  607.       if (verbose && !record_pos_file &&
  608.   (!table_names[0] || (curr_file_info && curr_file_info->used)))
  609. printf_log("%s: %s -> %dn",FILENAME(curr_file_info),
  610.    command_name[command],result);
  611.       break;
  612.     default:
  613.       fflush(stdout);
  614.       VOID(fprintf(stderr,
  615.    "Error: found unknown command %d in logfile, abortedn",
  616.    command));
  617.       fflush(stderr);
  618.       goto end;
  619.     }
  620.   }
  621.   end_key_cache(dflt_key_cache,1);
  622.   delete_tree(&tree);
  623.   VOID(end_io_cache(&cache));
  624.   VOID(my_close(file,MYF(0)));
  625.   if (write_file && my_fclose(write_file,MYF(MY_WME)))
  626.     DBUG_RETURN(1);
  627.   DBUG_RETURN(0);
  628.  err:
  629.   fflush(stdout);
  630.   VOID(fprintf(stderr,"Got error %d when reading from logfilen",my_errno));
  631.   fflush(stderr);
  632.   goto end;
  633.  com_err:
  634.   fflush(stdout);
  635.   VOID(fprintf(stderr,"Got error %d, expected %d on command %s at %sn",
  636.        my_errno,result,command_name[command],
  637.        llstr(isamlog_filepos,llbuff)));
  638.   fflush(stderr);
  639.  end:
  640.   end_key_cache(dflt_key_cache, 1);
  641.   delete_tree(&tree);
  642.   VOID(end_io_cache(&cache));
  643.   VOID(my_close(file,MYF(0)));
  644.   if (write_file)
  645.     VOID(my_fclose(write_file,MYF(MY_WME)));
  646.   DBUG_RETURN(1);
  647. }
  648. static int read_string(IO_CACHE *file, register gptr *to, register uint length)
  649. {
  650.   DBUG_ENTER("read_string");
  651.   if (*to)
  652.     my_free((gptr) *to,MYF(0));
  653.   if (!(*to= (gptr) my_malloc(length+1,MYF(MY_WME))) ||
  654.       my_b_read(file,(byte*) *to,length))
  655.   {
  656.     if (*to)
  657.       my_free(*to,MYF(0));
  658.     *to= 0;
  659.     DBUG_RETURN(1);
  660.   }
  661.   *((char*) *to+length)= '';
  662.   DBUG_RETURN (0);
  663. } /* read_string */
  664. static int file_info_compare(void* cmp_arg __attribute__((unused)),
  665.      void *a, void *b)
  666. {
  667.   long lint;
  668.   if ((lint=((struct file_info*) a)->process -
  669.        ((struct file_info*) b)->process))
  670.     return lint < 0L ? -1 : 1;
  671.   return ((struct file_info*) a)->filenr - ((struct file_info*) b)->filenr;
  672. }
  673. /* ARGSUSED */
  674. static int test_if_open (struct file_info *key,
  675.  element_count count __attribute__((unused)),
  676.  struct test_if_open_param *param)
  677. {
  678.   if (!strcmp(key->name,param->name) && key->id > param->max_id)
  679.     param->max_id=key->id;
  680.   return 0;
  681. }
  682. static void fix_blob_pointers(MI_INFO *info, byte *record)
  683. {
  684.   byte *pos;
  685.   MI_BLOB *blob,*end;
  686.   pos=record+info->s->base.reclength;
  687.   for (end=info->blobs+info->s->base.blobs, blob= info->blobs;
  688.        blob != end ;
  689.        blob++)
  690.   {
  691.     memcpy_fixed(record+blob->offset+blob->pack_length,&pos,sizeof(char*));
  692.     pos+=_mi_calc_blob_length(blob->pack_length,record+blob->offset);
  693.   }
  694. }
  695. /* close the file with hasn't been accessed for the longest time */
  696. /* ARGSUSED */
  697. static int test_when_accessed (struct file_info *key,
  698.        element_count count __attribute__((unused)),
  699.        struct st_access_param *access_param)
  700. {
  701.   if (key->accessed < access_param->min_accessed && ! key->closed)
  702.   {
  703.     access_param->min_accessed=key->accessed;
  704.     access_param->found=key;
  705.   }
  706.   return 0;
  707. }
  708. static void file_info_free(struct file_info *fileinfo)
  709. {
  710.   DBUG_ENTER("file_info_free");
  711.   if (update)
  712.   {
  713.     if (!fileinfo->closed)
  714.       VOID(mi_close(fileinfo->isam));
  715.     if (fileinfo->record)
  716.       my_free(fileinfo->record,MYF(0));
  717.   }
  718.   my_free(fileinfo->name,MYF(0));
  719.   my_free(fileinfo->show_name,MYF(0));
  720.   DBUG_VOID_RETURN;
  721. }
  722. static int close_some_file(TREE *tree)
  723. {
  724.   struct st_access_param access_param;
  725.   access_param.min_accessed=LONG_MAX;
  726.   access_param.found=0;
  727.   VOID(tree_walk(tree,(tree_walk_action) test_when_accessed,
  728.  (void*) &access_param,left_root_right));
  729.   if (!access_param.found)
  730.     return 1; /* No open file that is possibly to close */
  731.   if (mi_close(access_param.found->isam))
  732.     return 1;
  733.   access_param.found->closed=1;
  734.   return 0;
  735. }
  736. static int reopen_closed_file(TREE *tree, struct file_info *fileinfo)
  737. {
  738.   char name[FN_REFLEN];
  739.   if (close_some_file(tree))
  740.     return 1; /* No file to close */
  741.   strmov(name,fileinfo->show_name);
  742.   if (fileinfo->id > 1)
  743.     *strrchr(name,'<')=''; /* Remove "<id>" */
  744.   if (!(fileinfo->isam= mi_open(name,O_RDWR,HA_OPEN_WAIT_IF_LOCKED)))
  745.     return 1;
  746.   fileinfo->closed=0;
  747.   re_open_count++;
  748.   return 0;
  749. }
  750. /* Try to find record with uniq key */
  751. static int find_record_with_key(struct file_info *file_info, byte *record)
  752. {
  753.   uint key;
  754.   MI_INFO *info=file_info->isam;
  755.   uchar tmp_key[MI_MAX_KEY_BUFF];
  756.   for (key=0 ; key < info->s->base.keys ; key++)
  757.   {
  758.     if ((((ulonglong) 1 << key) & info->s->state.key_map) &&
  759. info->s->keyinfo[key].flag & HA_NOSAME)
  760.     {
  761.       VOID(_mi_make_key(info,key,tmp_key,record,0L));
  762.       return mi_rkey(info,file_info->record,(int) key,(char*) tmp_key,0,
  763.      HA_READ_KEY_EXACT);
  764.     }
  765.   }
  766.   return 1;
  767. }
  768. static void printf_log(const char *format,...)
  769. {
  770.   char llbuff[21];
  771.   va_list args;
  772.   va_start(args,format);
  773.   if (verbose > 2)
  774.     printf("%9s:",llstr(isamlog_filepos,llbuff));
  775.   if (verbose > 1)
  776.     printf("%5ld ",isamlog_process); /* Write process number */
  777.   (void) vprintf((char*) format,args);
  778.   putchar('n');
  779.   va_end(args);
  780. }
  781. static bool cmp_filename(struct file_info *file_info, my_string name)
  782. {
  783.   if (!file_info)
  784.     return 1;
  785.   return strcmp(file_info->name,name) ? 1 : 0;
  786. }