mi_test2.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:27k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* Test av isam-databas: stor test */
  17. #ifndef USE_MY_FUNC /* We want to be able to dbug this !! */
  18. #define USE_MY_FUNC
  19. #endif
  20. #ifdef DBUG_OFF
  21. #undef DBUG_OFF
  22. #endif
  23. #ifndef SAFEMALLOC
  24. #define SAFEMALLOC
  25. #endif
  26. #include "myisamdef.h"
  27. #include <m_ctype.h>
  28. #define STANDARD_LENGTH 37
  29. #define MYISAM_KEYS 6
  30. #define MAX_PARTS 4
  31. #if !defined(MSDOS) && !defined(labs)
  32. #define labs(a) abs(a)
  33. #endif
  34. static void get_options(int argc, char *argv[]);
  35. static uint rnd(uint max_value);
  36. static void fix_length(byte *record,uint length);
  37. static void put_blob_in_record(char *blob_pos,char **blob_buffer);
  38. static void copy_key(struct st_myisam_info *info,uint inx,
  39.      uchar *record,uchar *key);
  40. static int verbose=0,testflag=0,
  41.     first_key=0,async_io=0,key_cacheing=0,write_cacheing=0,locking=0,
  42.             rec_pointer_size=0,pack_fields=1,use_log=0,silent=0,
  43.             opt_quick_mode=0;
  44. static int pack_seg=HA_SPACE_PACK,pack_type=HA_PACK_KEY,remove_count=-1,
  45.    create_flag=0;
  46. static ulong key_cache_size=IO_SIZE*16;
  47. static uint keys=MYISAM_KEYS,recant=1000;
  48. static uint use_blob=0;
  49. static uint16 key1[1001],key3[5000];
  50. static char record[300],record2[300],key[100],key2[100],
  51.     read_record[300],read_record2[300],read_record3[300];
  52. static MI_KEYSEG glob_keyseg[MYISAM_KEYS][MAX_PARTS];
  53. /* Test program */
  54. int main(int argc, char **argv)
  55. {
  56.   uint i;
  57.   int j,n1,n2,n3,error,k;
  58.   uint write_count,update,dupp_keys,delete,start,length,blob_pos,
  59.        reclength,ant,found_parts;
  60.   my_off_t lastpos;
  61.   ha_rows range_records,records;
  62.   MI_INFO *file;
  63.   MI_KEYDEF keyinfo[10];
  64.   MI_COLUMNDEF recinfo[10];
  65.   MI_ISAMINFO info;
  66.   const char *filename;
  67.   char *blob_buffer;
  68.   MI_CREATE_INFO create_info;
  69.   MY_INIT(argv[0]);
  70.   filename= "test2";
  71.   get_options(argc,argv);
  72.   if (! async_io)
  73.     my_disable_async_io=1;
  74.   reclength=STANDARD_LENGTH+60+(use_blob ? 8 : 0);
  75.   blob_pos=STANDARD_LENGTH+60;
  76.   keyinfo[0].seg= &glob_keyseg[0][0];
  77.   keyinfo[0].seg[0].start=0;
  78.   keyinfo[0].seg[0].length=6;
  79.   keyinfo[0].seg[0].type=HA_KEYTYPE_TEXT;
  80.   keyinfo[0].seg[0].language=MY_CHARSET_CURRENT;
  81.   keyinfo[0].seg[0].flag=(uint8) pack_seg;
  82.   keyinfo[0].seg[0].null_bit=0;
  83.   keyinfo[0].seg[0].null_pos=0;
  84.   keyinfo[0].keysegs=1;
  85.   keyinfo[0].flag = pack_type;
  86.   keyinfo[1].seg= &glob_keyseg[1][0];
  87.   keyinfo[1].seg[0].start=7;
  88.   keyinfo[1].seg[0].length=6;
  89.   keyinfo[1].seg[0].type=HA_KEYTYPE_BINARY;
  90.   keyinfo[1].seg[0].flag=0;
  91.   keyinfo[1].seg[0].null_bit=0;
  92.   keyinfo[1].seg[0].null_pos=0;
  93.   keyinfo[1].seg[1].start=0; /* two part key */
  94.   keyinfo[1].seg[1].length=6;
  95.   keyinfo[1].seg[1].type=HA_KEYTYPE_NUM;
  96.   keyinfo[1].seg[1].flag=HA_REVERSE_SORT;
  97.   keyinfo[1].seg[1].null_bit=0;
  98.   keyinfo[1].seg[1].null_pos=0;
  99.   keyinfo[1].keysegs=2;
  100.   keyinfo[1].flag =0;
  101.   keyinfo[2].seg= &glob_keyseg[2][0];
  102.   keyinfo[2].seg[0].start=12;
  103.   keyinfo[2].seg[0].length=8;
  104.   keyinfo[2].seg[0].type=HA_KEYTYPE_BINARY;
  105.   keyinfo[2].seg[0].flag=HA_REVERSE_SORT;
  106.   keyinfo[2].seg[0].null_bit=0;
  107.   keyinfo[2].seg[0].null_pos=0;
  108.   keyinfo[2].keysegs=1;
  109.   keyinfo[2].flag =HA_NOSAME;
  110.   keyinfo[3].seg= &glob_keyseg[3][0];
  111.   keyinfo[3].seg[0].start=0;
  112.   keyinfo[3].seg[0].length=reclength-(use_blob ? 8 : 0);
  113.   keyinfo[3].seg[0].type=HA_KEYTYPE_TEXT;
  114.   keyinfo[3].seg[0].language=MY_CHARSET_CURRENT;
  115.   keyinfo[3].seg[0].flag=(uint8) pack_seg;
  116.   keyinfo[3].seg[0].null_bit=0;
  117.   keyinfo[3].seg[0].null_pos=0;
  118.   keyinfo[3].keysegs=1;
  119.   keyinfo[3].flag = pack_type;
  120.   keyinfo[4].seg= &glob_keyseg[4][0];
  121.   keyinfo[4].seg[0].start=0;
  122.   keyinfo[4].seg[0].length=5;
  123.   keyinfo[4].seg[0].type=HA_KEYTYPE_TEXT;
  124.   keyinfo[4].seg[0].language=MY_CHARSET_CURRENT;
  125.   keyinfo[4].seg[0].flag=0;
  126.   keyinfo[4].seg[0].null_bit=0;
  127.   keyinfo[4].seg[0].null_pos=0;
  128.   keyinfo[4].keysegs=1;
  129.   keyinfo[4].flag = pack_type;
  130.   keyinfo[5].seg= &glob_keyseg[5][0];
  131.   keyinfo[5].seg[0].start=0;
  132.   keyinfo[5].seg[0].length=4;
  133.   keyinfo[5].seg[0].type=HA_KEYTYPE_TEXT;
  134.   keyinfo[5].seg[0].language=MY_CHARSET_CURRENT;
  135.   keyinfo[5].seg[0].flag=pack_seg;
  136.   keyinfo[5].seg[0].null_bit=0;
  137.   keyinfo[5].seg[0].null_pos=0;
  138.   keyinfo[5].keysegs=1;
  139.   keyinfo[5].flag = pack_type;
  140.   recinfo[0].type=pack_fields ? FIELD_SKIPP_PRESPACE : 0;
  141.   recinfo[0].length=7;
  142.   recinfo[0].null_bit=0;
  143.   recinfo[0].null_pos=0;
  144.   recinfo[1].type=pack_fields ? FIELD_SKIPP_PRESPACE : 0;
  145.   recinfo[1].length=5;
  146.   recinfo[1].null_bit=0;
  147.   recinfo[1].null_pos=0;
  148.   recinfo[2].type=pack_fields ? FIELD_SKIPP_PRESPACE : 0;
  149.   recinfo[2].length=9;
  150.   recinfo[2].null_bit=0;
  151.   recinfo[2].null_pos=0;
  152.   recinfo[3].type=FIELD_NORMAL;
  153.   recinfo[3].length=STANDARD_LENGTH-7-5-9-4;
  154.   recinfo[3].null_bit=0;
  155.   recinfo[3].null_pos=0;
  156.   recinfo[4].type=pack_fields ? FIELD_SKIPP_ZERO : 0;
  157.   recinfo[4].length=4;
  158.   recinfo[4].null_bit=0;
  159.   recinfo[4].null_pos=0;
  160.   recinfo[5].type=pack_fields ? FIELD_SKIPP_ENDSPACE : 0;
  161.   recinfo[5].length=60;
  162.   recinfo[5].null_bit=0;
  163.   recinfo[5].null_pos=0;
  164.   if (use_blob)
  165.   {
  166.     recinfo[6].type=FIELD_BLOB;
  167.     recinfo[6].length=4+mi_portable_sizeof_char_ptr;
  168.     recinfo[6].null_bit=0;
  169.     recinfo[6].null_pos=0;
  170.   }
  171.   write_count=update=dupp_keys=delete=0;
  172.   blob_buffer=0;
  173.   for (i=1000 ; i>0 ; i--) key1[i]=0;
  174.   for (i=4999 ; i>0 ; i--) key3[i]=0;
  175.   if (!silent)
  176.     printf("- Creating isam-filen");
  177.   /*  DBUG_PUSH(""); */
  178.   /* my_delete(filename,MYF(0)); */ /* Remove old locks under gdb */
  179.   file= 0;
  180.   bzero((char*) &create_info,sizeof(create_info));
  181.   create_info.max_rows=(ha_rows) (rec_pointer_size ?
  182.   (1L << (rec_pointer_size*8))/
  183.   reclength : 0);
  184.   create_info.reloc_rows=(ha_rows) 100;
  185.   if (mi_create(filename,keys,&keyinfo[first_key],
  186. use_blob ? 7 : 6, &recinfo[0],
  187. 0,(MI_UNIQUEDEF*) 0,
  188. &create_info,create_flag))
  189.     goto err;
  190.   if (use_log)
  191.     mi_log(1);
  192.   if (!(file=mi_open(filename,2,HA_OPEN_ABORT_IF_LOCKED)))
  193.     goto err;
  194.   if (!silent)
  195.     printf("- Writing key:sn");
  196.   if (key_cacheing)
  197.     init_key_cache(key_cache_size,(uint) IO_SIZE*4*10); /* Use a small cache */
  198.   if (locking)
  199.     mi_lock_database(file,F_WRLCK);
  200.   if (write_cacheing)
  201.     mi_extra(file,HA_EXTRA_WRITE_CACHE);
  202.   if (opt_quick_mode)
  203.     mi_extra(file,HA_EXTRA_QUICK);
  204.   for (i=0 ; i < recant ; i++)
  205.   {
  206.     n1=rnd(1000); n2=rnd(100); n3=rnd(5000);
  207.     sprintf(record,"%6d:%4d:%8d:Pos: %4d    ",n1,n2,n3,write_count);
  208.     int4store(record+STANDARD_LENGTH-4,(long) i);
  209.     fix_length(record,(uint) STANDARD_LENGTH+rnd(60));
  210.     put_blob_in_record(record+blob_pos,&blob_buffer);
  211.     DBUG_PRINT("test",("record: %d",i));
  212.     if (mi_write(file,record))
  213.     {
  214.       if (my_errno != HA_ERR_FOUND_DUPP_KEY || key3[n3] == 0)
  215.       {
  216. printf("Error: %d in write at record: %dn",my_errno,i);
  217. goto err;
  218.       }
  219.       if (verbose) printf("   Double key: %dn",n3);
  220.     }
  221.     else
  222.     {
  223.       if (key3[n3] == 1 && first_key <3 && first_key+keys >= 3)
  224.       {
  225. printf("Error: Didn't get error when writing second key: '%8d'n",n3);
  226. goto err;
  227.       }
  228.       write_count++; key1[n1]++; key3[n3]=1;
  229.     }
  230.     /* Check if we can find key without flushing database */
  231.     if (i == recant/2)
  232.     {
  233.       for (j=rnd(1000)+1 ; j>0 && key1[j] == 0 ; j--) ;
  234.       if (!j)
  235. for (j=999 ; j>0 && key1[j] == 0 ; j--) ;
  236.       sprintf(key,"%6d",j);
  237.       if (mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT))
  238.       {
  239. printf("Test in loop: Can't find key: "%s"n",key);
  240. goto err;
  241.       }
  242.     }
  243.   }
  244.   if (testflag==1) goto end;
  245.   if (write_cacheing)
  246.     if (mi_extra(file,HA_EXTRA_NO_CACHE))
  247.     {
  248.       puts("got error from mi_extra(HA_EXTRA_NO_CACHE)");
  249.       goto end;
  250.     }
  251.   if (!silent)
  252.     printf("- Deleten");
  253.   for (i=0 ; i<recant/10 ; i++)
  254.   {
  255.     for (j=rnd(1000)+1 ; j>0 && key1[j] == 0 ; j--) ;
  256.     if (j != 0)
  257.     {
  258.       sprintf(key,"%6d",j);
  259.       if (mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT))
  260.       {
  261. printf("can't find key1: "%s"n",key);
  262. goto err;
  263.       }
  264.       if (delete == (uint) remove_count) /* While testing */
  265. goto end;
  266.       if (mi_delete(file,read_record))
  267.       {
  268. printf("error: %d; can't delete record: "%s"n", my_errno,read_record);
  269. goto err;
  270.       }
  271.       delete++;
  272.       key1[atoi(read_record+keyinfo[0].seg[0].start)]--;
  273.       key3[atoi(read_record+keyinfo[2].seg[0].start)]=0;
  274.     }
  275.     else
  276.       puts("Warning: Skipping delete test because no dupplicate keys");
  277.   }
  278.   if (testflag==2) goto end;
  279.   if (!silent)
  280.     printf("- Updaten");
  281.   for (i=0 ; i<recant/10 ; i++)
  282.   {
  283.     n1=rnd(1000); n2=rnd(100); n3=rnd(5000);
  284.     sprintf(record2,"%6d:%4d:%8d:XXX: %4d     ",n1,n2,n3,update);
  285.     int4store(record2+STANDARD_LENGTH-4,(long) i);
  286.     fix_length(record2,(uint) STANDARD_LENGTH+rnd(60));
  287.     for (j=rnd(1000)+1 ; j>0 && key1[j] == 0 ; j--) ;
  288.     if (j != 0)
  289.     {
  290.       sprintf(key,"%6d",j);
  291.       if (mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT))
  292.       {
  293. printf("can't find key1: "%s"n",key);
  294. goto err;
  295.       }
  296.       if (use_blob)
  297.       {
  298. if (i & 1)
  299.   put_blob_in_record(record+blob_pos,&blob_buffer);
  300. else
  301.   bmove(record+blob_pos,read_record+blob_pos,8);
  302.       }
  303.       if (mi_update(file,read_record,record2))
  304.       {
  305. if (my_errno != HA_ERR_FOUND_DUPP_KEY || key3[n3] == 0)
  306. {
  307.   printf("error: %d; can't uppdate:nFrom: "%s"nTo:   "%s"n",
  308.  my_errno,read_record,record2);
  309.   goto err;
  310. }
  311. if (verbose)
  312.   printf("Double key when tryed to uppdate:nFrom: "%s"nTo:   "%s"n",record,record2);
  313.       }
  314.       else
  315.       {
  316. key1[atoi(read_record+keyinfo[0].seg[0].start)]--;
  317. key3[atoi(read_record+keyinfo[2].seg[0].start)]=0;
  318. key1[n1]++; key3[n3]=1;
  319. update++;
  320.       }
  321.     }
  322.   }
  323.   if (testflag==3) goto end;
  324.   if (!silent)
  325.     printf("- Same key: first - next -> last - prev -> firstn");
  326.   DBUG_PRINT("progpos",("first - next -> last - prev -> first"));
  327.   for (i=999, dupp_keys=j=0 ; i>0 ; i--)
  328.   {
  329.     if (key1[i] >dupp_keys) { dupp_keys=key1[i]; j=i; }
  330.   }
  331.   sprintf(key,"%6d",j);
  332.   if (verbose) printf("  Using key: "%s"  Keys: %dn",key,dupp_keys);
  333.   if (mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT)) goto err;
  334.   if (mi_rsame(file,read_record2,-1)) goto err;
  335.   if (memcmp(read_record,read_record2,reclength) != 0)
  336.   {
  337.     printf("mi_rsame didn't find same recordn");
  338.     goto end;
  339.   }
  340.   info.recpos=mi_position(file);
  341.   if (mi_rfirst(file,read_record2,0) ||
  342.       mi_rsame_with_pos(file,read_record2,0,info.recpos) ||
  343.       memcmp(read_record,read_record2,reclength) != 0)
  344.   {
  345.     printf("mi_rsame_with_pos didn't find same recordn");
  346.     goto end;
  347.   }
  348.   {
  349.     int skr=mi_rnext(file,read_record2,0);
  350.     if ((skr && my_errno != HA_ERR_END_OF_FILE) ||
  351. mi_rprev(file,read_record2,-1) ||
  352. memcmp(read_record,read_record2,reclength) != 0)
  353.     {
  354.       printf("mi_rsame_with_pos lost positionn");
  355.       goto end;
  356.     }
  357.   }
  358.   ant=1;
  359.   start=keyinfo[0].seg[0].start; length=keyinfo[0].seg[0].length;
  360.   while (mi_rnext(file,read_record2,0) == 0 &&
  361.  memcmp(read_record2+start,key,length) == 0) ant++;
  362.   if (ant != dupp_keys)
  363.   {
  364.     printf("next: Found: %d keys of %dn",ant,dupp_keys);
  365.     goto end;
  366.   }
  367.   ant=0;
  368.   while (mi_rprev(file,read_record3,0) == 0 &&
  369.  bcmp(read_record3+start,key,length) == 0) ant++;
  370.   if (ant != dupp_keys)
  371.   {
  372.     printf("prev: Found: %d records of %dn",ant,dupp_keys);
  373.     goto end;
  374.   }
  375.   /* Check of mi_rnext_same */
  376.   if (mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT))
  377.     goto err;
  378.   ant=1;
  379.   while (!mi_rnext_same(file,read_record3) && ant < dupp_keys+10)
  380.     ant++;
  381.   if (ant != dupp_keys || my_errno != HA_ERR_END_OF_FILE)
  382.   {
  383.     printf("mi_rnext_same: Found: %d records of %dn",ant,dupp_keys);
  384.     goto end;
  385.   }
  386.   if (!silent)
  387.     printf("- All keys: first - next -> last - prev -> firstn");
  388.   DBUG_PRINT("progpos",("All keys: first - next -> last - prev -> first"));
  389.   ant=1;
  390.   if (mi_rfirst(file,read_record,0))
  391.   {
  392.     printf("Can't find first recordn");
  393.     goto end;
  394.   }
  395.   while ((error=mi_rnext(file,read_record3,0)) == 0 && ant < write_count+10)
  396.     ant++;
  397.   if (ant != write_count - delete || error != HA_ERR_END_OF_FILE)
  398.   {
  399.     printf("next: I found: %d records of %d (error: %d)n",
  400.    ant, write_count - delete, error);
  401.     goto end;
  402.   }
  403.   if (mi_rlast(file,read_record2,0) ||
  404.       bcmp(read_record2,read_record3,reclength))
  405.   {
  406.     printf("Can't find last recordn");
  407.     DBUG_DUMP("record2",(byte*) read_record2,reclength);
  408.     DBUG_DUMP("record3",(byte*) read_record3,reclength);
  409.     goto end;
  410.   }
  411.   ant=1;
  412.   while (mi_rprev(file,read_record3,0) == 0 && ant < write_count+10)
  413.     ant++;
  414.   if (ant != write_count - delete)
  415.   {
  416.     printf("prev: I found: %d records of %dn",ant,write_count);
  417.     goto end;
  418.   }
  419.   if (bcmp(read_record,read_record3,reclength))
  420.   {
  421.     printf("Can't find first recordn");
  422.     goto end;
  423.   }
  424.   if (!silent)
  425.     printf("- Test if: Read first - next - prev - prev - next == firstn");
  426.   DBUG_PRINT("progpos",("- Read first - next - prev - prev - next == first"));
  427.   if (mi_rfirst(file,read_record,0) ||
  428.       mi_rnext(file,read_record3,0) ||
  429.       mi_rprev(file,read_record3,0) ||
  430.       mi_rprev(file,read_record3,0) == 0 ||
  431.       mi_rnext(file,read_record3,0))
  432.       goto err;
  433.   if (bcmp(read_record,read_record3,reclength) != 0)
  434.      printf("Can't find first recordn");
  435.   if (!silent)
  436.     printf("- Test if: Read last - prev - next - next - prev == lastn");
  437.   DBUG_PRINT("progpos",("Read last - prev - next - next - prev == last"));
  438.   if (mi_rlast(file,read_record2,0) ||
  439.       mi_rprev(file,read_record3,0) ||
  440.       mi_rnext(file,read_record3,0) ||
  441.       mi_rnext(file,read_record3,0) == 0 ||
  442.       mi_rprev(file,read_record3,0))
  443.       goto err;
  444.   if (bcmp(read_record2,read_record3,reclength))
  445.      printf("Can't find last recordn");
  446.   if (!silent)
  447.     puts("- Test read key-part");
  448.   strmov(key2,key);
  449.   for(i=strlen(key2) ; i-- > 1 ;)
  450.   {
  451.     key2[i]=0;
  452.     /* The following row is just to catch some bugs in the key code */
  453.     bzero((char*) file->lastkey,file->s->base.max_key_length*2);
  454.     if (mi_rkey(file,read_record,0,key2,(uint) i,HA_READ_PREFIX))
  455.       goto err;
  456.     if (bcmp(read_record+start,key,(uint) i))
  457.     {
  458.       puts("Didn't find right record");
  459.       goto end;
  460.     }
  461.   }
  462.   if (dupp_keys > 2)
  463.   {
  464.     if (!silent)
  465.       printf("- Read key (first) - next - delete - next -> lastn");
  466.     DBUG_PRINT("progpos",("first - next - delete - next -> last"));
  467.     if (mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT)) goto err;
  468.     if (mi_rnext(file,read_record3,0)) goto err;
  469.     if (mi_delete(file,read_record3)) goto err;
  470.     delete++;
  471.     ant=1;
  472.     while (mi_rnext(file,read_record3,0) == 0 &&
  473.    bcmp(read_record3+start,key,length) == 0) ant++;
  474.     if (ant != dupp_keys-1)
  475.     {
  476.       printf("next: I can only find: %d keys of %dn",ant,dupp_keys-1);
  477.       goto end;
  478.     }
  479.   }
  480.   if (dupp_keys>4)
  481.   {
  482.     if (!silent)
  483.       printf("- Read last of key - prev - delete - prev -> firstn");
  484.     DBUG_PRINT("progpos",("last - prev - delete - prev -> first"));
  485.     if (mi_rprev(file,read_record3,0)) goto err;
  486.     if (mi_rprev(file,read_record3,0)) goto err;
  487.     if (mi_delete(file,read_record3)) goto err;
  488.     delete++;
  489.     ant=1;
  490.     while (mi_rprev(file,read_record3,0) == 0 &&
  491.    bcmp(read_record3+start,key,length) == 0) ant++;
  492.     if (ant != dupp_keys-2)
  493.     {
  494.       printf("next: I can only find: %d keys of %dn",ant,dupp_keys-2);
  495.       goto end;
  496.     }
  497.   }
  498.   if (dupp_keys > 6)
  499.   {
  500.     if (!silent)
  501.       printf("- Read first - delete - next -> lastn");
  502.     DBUG_PRINT("progpos",("first - delete - next -> last"));
  503.     if (mi_rkey(file,read_record3,0,key,0,HA_READ_KEY_EXACT)) goto err;
  504.     if (mi_delete(file,read_record3)) goto err;
  505.     delete++;
  506.     ant=1;
  507.     if (mi_rnext(file,read_record,0))
  508.       goto err; /* Skall finnas poster */
  509.     while (mi_rnext(file,read_record3,0) == 0 &&
  510.    bcmp(read_record3+start,key,length) == 0) ant++;
  511.     if (ant != dupp_keys-3)
  512.     {
  513.       printf("next: I can only find: %d keys of %dn",ant,dupp_keys-3);
  514.       goto end;
  515.     }
  516.     if (!silent)
  517.       printf("- Read last - delete - prev -> firstn");
  518.     DBUG_PRINT("progpos",("last - delete - prev -> first"));
  519.     if (mi_rprev(file,read_record3,0)) goto err;
  520.     if (mi_delete(file,read_record3)) goto err;
  521.     delete++;
  522.     ant=0;
  523.     while (mi_rprev(file,read_record3,0) == 0 &&
  524.    bcmp(read_record3+start,key,length) == 0) ant++;
  525.     if (ant != dupp_keys-4)
  526.     {
  527.       printf("next: I can only find: %d keys of %dn",ant,dupp_keys-4);
  528.       goto end;
  529.     }
  530.   }
  531.   if (!silent)
  532.     puts("- Test if: Read rrnd - same");
  533.   DBUG_PRINT("progpos",("Read rrnd - same"));
  534.   for (i=0 ; i < write_count ; i++)
  535.   {
  536.     if (mi_rrnd(file,read_record,i == 0 ? 0L : HA_OFFSET_ERROR) == 0)
  537.       break;
  538.   }
  539.   if (i == write_count)
  540.     goto err;
  541.   bmove(read_record2,read_record,reclength);
  542.   for (i=min(2,keys) ; i-- > 0 ;)
  543.   {
  544.     if (mi_rsame(file,read_record2,(int) i)) goto err;
  545.     if (bcmp(read_record,read_record2,reclength) != 0)
  546.     {
  547.       printf("is_rsame didn't find same recordn");
  548.       goto end;
  549.     }
  550.   }
  551.   if (!silent)
  552.     puts("- Test mi_records_in_range");
  553.   mi_status(file,&info,HA_STATUS_VARIABLE);
  554.   for (i=0 ; i < info.keys ; i++)
  555.   {
  556.     if (mi_rfirst(file,read_record,(int) i) ||
  557. mi_rlast(file,read_record2,(int) i))
  558.       goto err;
  559.     copy_key(file,(uint) i,(uchar*) read_record,(uchar*) key);
  560.     copy_key(file,(uint) i,(uchar*) read_record2,(uchar*) key2);
  561.     range_records=mi_records_in_range(file,(int) i,key,0,HA_READ_KEY_EXACT,
  562.       key2,0,HA_READ_AFTER_KEY);
  563.     if (range_records < info.records*8/10 ||
  564. range_records > info.records*12/10)
  565.     {
  566.       printf("mi_records_range returned %ld; Should be about %ldn",
  567.      (long) range_records,(long) info.records);
  568.       goto end;
  569.     }
  570.     if (verbose)
  571.     {
  572.       printf("mi_records_range returned %ld;  Exact is %ld  (diff: %4.2g %%)n",
  573.      (long) range_records, (long) info.records,
  574.      labs((long) range_records - (long) info.records)*100.0/
  575.      info.records);
  576.     }
  577.   }
  578.   for (i=0 ; i < 5 ; i++)
  579.   {
  580.     for (j=rnd(1000)+1 ; j>0 && key1[j] == 0 ; j--) ;
  581.     for (k=rnd(1000)+1 ; k>0 && key1[k] == 0 ; k--) ;
  582.     if (j != 0 && k != 0)
  583.     {
  584.       if (j > k)
  585. swap(int,j,k);
  586.       sprintf(key,"%6d",j);
  587.       sprintf(key2,"%6d",k);
  588.       range_records=mi_records_in_range(file,0,key,0,HA_READ_AFTER_KEY,
  589. key2,0,HA_READ_BEFORE_KEY);
  590.       records=0;
  591.       for (j++ ; j < k ; j++)
  592. records+=key1[j];
  593.       if ((long) range_records < (long) records*7/10-2 ||
  594.   (long) range_records > (long) records*14/10+2)
  595.       {
  596. printf("mi_records_range for key: %d returned %ld; Should be about %ldn",
  597.        i, range_records, records);
  598. goto end;
  599.       }
  600.       if (verbose && records)
  601.       {
  602. printf("mi_records_range returned %ld;  Exact is %ld  (diff: %4.2g %%)n",
  603.        range_records,records,
  604.        labs((long) range_records-(long) records)*100.0/records);
  605.       }
  606.     }
  607.     }
  608.   if (!silent)
  609.     printf("- mi_infon");
  610.   mi_status(file,&info,HA_STATUS_VARIABLE | HA_STATUS_CONST);
  611.   if (info.records != write_count-delete || info.deleted > delete + update
  612.       || info.keys != keys)
  613.   {
  614.     puts("Wrong info from mi_info");
  615.     printf("Got: records: %ld  delete: %ld  i_keys: %dn",
  616.    info.records,info.deleted,info.keys);
  617.   }
  618.   if (verbose)
  619.   {
  620.     char buff[80];
  621.     get_date(buff,3,info.create_time);
  622.     printf("info: Created %sn",buff);
  623.     get_date(buff,3,info.check_time);
  624.     printf("info: checked %sn",buff);
  625.     get_date(buff,3,info.update_time);
  626.     printf("info: Modified %sn",buff);
  627.   }
  628.   mi_panic(HA_PANIC_WRITE);
  629.   mi_panic(HA_PANIC_READ);
  630.   if (mi_is_changed(file))
  631.     puts("Warning: mi_is_changed reported that datafile was changed");
  632.   if (!silent)
  633.     printf("- mi_extra(CACHE) + mi_rrnd.... + mi_extra(NO_CACHE)n");
  634.   if (mi_extra(file,HA_EXTRA_RESET) || mi_extra(file,HA_EXTRA_CACHE))
  635.   {
  636.     if (locking || (!use_blob && !pack_fields))
  637.     {
  638.       puts("got error from mi_extra(HA_EXTRA_CACHE)");
  639.       goto end;
  640.     }
  641.   }
  642.   ant=0;
  643.   while ((error=mi_rrnd(file,record,HA_OFFSET_ERROR)) != HA_ERR_END_OF_FILE &&
  644.  ant < write_count + 10)
  645. ant+= error ? 0 : 1;
  646.   if (ant != write_count-delete)
  647.   {
  648.     printf("rrnd with cache: I can only find: %d records of %dn",
  649.    ant,write_count-delete);
  650.     goto end;
  651.   }
  652.   if (mi_extra(file,HA_EXTRA_NO_CACHE))
  653.   {
  654.     puts("got error from mi_extra(HA_EXTRA_NO_CACHE)");
  655.     goto end;
  656.   }
  657.   ant=0;
  658.   mi_scan_init(file);
  659.   while ((error=mi_scan(file,record)) != HA_ERR_END_OF_FILE &&
  660.  ant < write_count + 10)
  661. ant+= error ? 0 : 1;
  662.   if (ant != write_count-delete)
  663.   {
  664.     printf("scan with cache: I can only find: %d records of %dn",
  665.    ant,write_count-delete);
  666.     goto end;
  667.   }
  668.   if (testflag == 4) goto end;
  669.   if (!silent)
  670.     printf("- Removing keysn");
  671.   DBUG_PRINT("progpos",("Removing keys"));
  672.   lastpos = HA_OFFSET_ERROR;
  673.   /* DBUG_POP(); */
  674.   mi_extra(file,HA_EXTRA_RESET);
  675.   found_parts=0;
  676.   while ((error=mi_rrnd(file,read_record,HA_OFFSET_ERROR)) !=
  677.  HA_ERR_END_OF_FILE)
  678.   {
  679.     info.recpos=mi_position(file);
  680.     if (lastpos >= info.recpos && lastpos != HA_OFFSET_ERROR)
  681.     {
  682.       printf("mi_rrnd didn't advance filepointer; old: %ld, new: %ldn",
  683.      (long) lastpos, (long) info.recpos);
  684.       goto err;
  685.     }
  686.     lastpos=info.recpos;
  687.     if (error == 0)
  688.     {
  689.       if (delete == (uint) remove_count) /* While testing */
  690. goto end;
  691.       if (mi_rsame(file,read_record,-1))
  692.       {
  693. printf("can't find record %lxn",(long) info.recpos);
  694. goto err;
  695.       }
  696.       if (use_blob)
  697.       {
  698. ulong blob_length,pos;
  699. uchar *ptr;
  700. longget(blob_length,read_record+blob_pos+4);
  701. ptr=(uchar*) blob_length;
  702. longget(blob_length,read_record+blob_pos);
  703. for (pos=0 ; pos < blob_length ; pos++)
  704. {
  705.   if (ptr[pos] != (uchar) (blob_length+pos))
  706.   {
  707.     printf("found blob with wrong info at %ldn",(long) lastpos);
  708.     use_blob=0;
  709.     break;
  710.   }
  711. }
  712.       }
  713.       if (mi_delete(file,read_record))
  714.       {
  715. printf("can't delete record: %6.6s,  delete_count: %dn",
  716.        read_record, delete);
  717. goto err;
  718.       }
  719.       delete++;
  720.     }
  721.     else
  722.       found_parts++;
  723.   }
  724.   if (my_errno != HA_ERR_END_OF_FILE && my_errno != HA_ERR_RECORD_DELETED)
  725.     printf("error: %d from mi_rrndn",my_errno);
  726.   if (write_count != delete)
  727.   {
  728.     printf("Deleted only %d of %d records (%d parts)n",delete,write_count,
  729.    found_parts);
  730.     goto err;
  731.   }
  732. end:
  733.   if (mi_close(file))
  734.     goto err;
  735.   mi_panic(HA_PANIC_CLOSE); /* Should close log */
  736.   if (!silent)
  737.   {
  738.     printf("nFollowing test have been made:n");
  739.     printf("Write records: %dnUpdate records: %dnSame-key-read: %dnDelete records: %dn", write_count,update,dupp_keys,delete);
  740.     if (rec_pointer_size)
  741.       printf("Record pointer size: %dn",rec_pointer_size);
  742.     if (key_cacheing)
  743.       puts("Key cacheing used");
  744.     if (write_cacheing)
  745.       puts("Write cacheing used");
  746.     if (write_cacheing)
  747.       puts("quick mode");
  748.     if (async_io && locking)
  749.       puts("Asyncron io with locking used");
  750.     else if (locking)
  751.       puts("Locking used");
  752.     if (use_blob)
  753.       puts("blobs used");
  754.     printf("key cache status: n
  755. blocks used:%10lun
  756. w_requests: %10lun
  757. writes:     %10lun
  758. r_requests: %10lun
  759. reads:      %10lun",
  760.    _my_blocks_used,_my_cache_w_requests, _my_cache_write,
  761.    _my_cache_r_requests,_my_cache_read);
  762.   }
  763.   end_key_cache();
  764.   if (blob_buffer)
  765.     my_free(blob_buffer,MYF(0));
  766.   my_end(MY_CHECK_ERROR | MY_GIVE_INFO);
  767.   return(0);
  768. err:
  769.   printf("got error: %d when using MyISAM-databasen",my_errno);
  770.   if (file)
  771.     VOID(mi_close(file));
  772.   return(1);
  773. } /* main */
  774. /* l{ser optioner */
  775. /* OBS! intierar endast DEBUG - ingen debuggning h{r ! */
  776. static void get_options(int argc, char **argv)
  777. {
  778.   char *pos,*progname;
  779.   DEBUGGER_OFF;
  780.   progname= argv[0];
  781.   while (--argc >0 && *(pos = *(++argv)) == '-' ) {
  782.     switch(*++pos) {
  783.     case 'B':
  784.       pack_type= HA_BINARY_PACK_KEY;
  785.       break;
  786.     case 'b':
  787.       use_blob=1;
  788.       break;
  789.     case 'K': /* Use key cacheing */
  790.       key_cacheing=1;
  791.       if (*++pos)
  792. key_cache_size=atol(pos);
  793.       break;
  794.     case 'W': /* Use write cacheing */
  795.       write_cacheing=1;
  796.       if (*++pos)
  797. my_default_record_cache_size=atoi(pos);
  798.       break;
  799.     case 'd':
  800.       remove_count= atoi(++pos);
  801.       break;
  802.     case 'i':
  803.       if (*++pos)
  804. srand(atoi(pos));
  805.       break;
  806.     case 'l':
  807.       use_log=1;
  808.       break;
  809.     case 'L':
  810.       locking=1;
  811.       break;
  812.     case 'A': /* use asyncron io */
  813.       async_io=1;
  814.       if (*++pos)
  815. my_default_record_cache_size=atoi(pos);
  816.       break;
  817.     case 'v': /* verbose */
  818.       verbose=1;
  819.       break;
  820.     case 'm': /* records */
  821.       recant=atoi(++pos);
  822.       break;
  823.     case 'f':
  824.       if ((first_key=atoi(++pos)) < 0 || first_key >= MYISAM_KEYS)
  825. first_key=0;
  826.       break;
  827.     case 'k':
  828.       if ((keys=(uint) atoi(++pos)) < 1 ||
  829.    keys > (uint) (MYISAM_KEYS-first_key))
  830. keys=MYISAM_KEYS-first_key;
  831.       break;
  832.     case 'P':
  833.       pack_type=0; /* Don't use DIFF_LENGTH */
  834.       pack_seg=0;
  835.       break;
  836.     case 'R': /* Length of record pointer */
  837.       rec_pointer_size=atoi(++pos);
  838.       if (rec_pointer_size > 7)
  839. rec_pointer_size=0;
  840.       break;
  841.     case 'S':
  842.       pack_fields=0; /* Static-length-records */
  843.       break;
  844.     case 's':
  845.       silent=1;
  846.       break;
  847.     case 't':
  848.       testflag=atoi(++pos); /* testmod */
  849.       break;
  850.     case 'q':
  851.       opt_quick_mode=1;
  852.       break;
  853.     case 'c':
  854.       create_flag|= HA_CREATE_CHECKSUM;
  855.       break;
  856.     case 'D':
  857.       create_flag|=HA_CREATE_DELAY_KEY_WRITE;
  858.       break;
  859.     case '?':
  860.     case 'I':
  861.     case 'V':
  862.       printf("%s  Ver 1.2 for %s at %sn",progname,SYSTEM_TYPE,MACHINE_TYPE);
  863.       puts("By Monty, for your professional usen");
  864.       printf("Usage: %s [-?AbBcDIKLPRqSsVWltv] [-k#] [-f#] [-m#] [-t#]n",
  865.      progname);
  866.       exit(0);
  867.     case '#':
  868.       DEBUGGER_ON;
  869.       DBUG_PUSH (++pos);
  870.       break;
  871.     default:
  872.       printf("Illegal option: '%c'n",*pos);
  873.       break;
  874.     }
  875.   }
  876.   return;
  877. } /* get options */
  878. /* Get a random value 0 <= x <= n */
  879. static uint rnd(uint max_value)
  880. {
  881.   return (uint) ((rand() & 32767)/32767.0*max_value);
  882. } /* rnd */
  883. /* Create a variable length record */
  884. static void fix_length(byte *rec, uint length)
  885. {
  886.   bmove(rec+STANDARD_LENGTH,
  887. "0123456789012345678901234567890123456789012345678901234567890",
  888. length-STANDARD_LENGTH);
  889.   strfill(rec+length,STANDARD_LENGTH+60-length,' ');
  890. } /* fix_length */
  891. /* Put maybe a blob in record */
  892. static void put_blob_in_record(char *blob_pos, char **blob_buffer)
  893. {
  894.   ulong i,length;
  895.   if (use_blob)
  896.   {
  897.     if (rnd(10) == 0)
  898.     {
  899.       if (! *blob_buffer &&
  900.   !(*blob_buffer=my_malloc((uint) use_blob,MYF(MY_WME))))
  901.       {
  902. use_blob=0;
  903. return;
  904.       }
  905.       length=rnd(use_blob);
  906.       for (i=0 ; i < length ; i++)
  907. (*blob_buffer)[i]=(char) (length+i);
  908.       int4store(blob_pos,length);
  909.       memcpy_fixed(blob_pos+4,(char*) blob_buffer,sizeof(char*));
  910.     }
  911.     else
  912.     {
  913.       int4store(blob_pos,0);
  914.     }
  915.   }
  916.   return;
  917. }
  918. static void copy_key(MI_INFO *info,uint inx,uchar *rec,uchar *key_buff)
  919. {
  920.   MI_KEYSEG *keyseg;
  921.   for (keyseg=info->s->keyinfo[inx].seg ; keyseg->type ; keyseg++)
  922.   {
  923.     memcpy(key_buff,rec+keyseg->start,(size_t) keyseg->length);
  924.     key_buff+=keyseg->length;
  925.   }
  926.   return;
  927. }