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

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. /* Test av isam-databas: stor test */
  14. #ifndef USE_MY_FUNC /* We want to be able to dbug this !! */
  15. #define USE_MY_FUNC
  16. #endif
  17. #ifdef DBUG_OFF
  18. #undef DBUG_OFF
  19. #endif
  20. #ifndef SAFEMALLOC
  21. #define SAFEMALLOC
  22. #endif
  23. #include "heapdef.h" /* Because of hp_find_block */
  24. #include <signal.h>
  25. #define MAX_RECORDS 100000
  26. #define MAX_KEYS 4
  27. static int get_options(int argc, char *argv[]);
  28. static int rnd(int max_value);
  29. static sig_handler endprog(int sig_number);
  30. static uint flag=0,verbose=0,testflag=0,recant=10000,silent=0;
  31. static uint keys=MAX_KEYS;
  32. static uint16 key1[1001];
  33. static my_bool key3[MAX_RECORDS];
  34. static int reclength=39;
  35. static int calc_check(byte *buf,uint length);
  36. static void make_record(char *record, uint n1, uint n2, uint n3,
  37. const char *mark, uint count);
  38. /* Main program */
  39. int main(int argc, char *argv[])
  40. {
  41.   register uint i,j;
  42.   uint ant,n1,n2,n3;
  43.   uint write_count,update,opt_delete,check2,dupp_keys,found_key;
  44.   int error;
  45.   ulong pos;
  46.   unsigned long key_check;
  47.   char record[128],record2[128],record3[128],key[10];
  48.   const char *filename,*filename2;
  49.   HP_INFO *file,*file2;
  50.   HP_KEYDEF keyinfo[MAX_KEYS];
  51.   HA_KEYSEG keyseg[MAX_KEYS*5];
  52.   HEAP_PTR position;
  53.   HP_CREATE_INFO hp_create_info;
  54.   CHARSET_INFO *cs= &my_charset_latin1;
  55.   MY_INIT(argv[0]); /* init my_sys library & pthreads */
  56.   LINT_INIT(position);
  57.   filename= "test2";
  58.   filename2= "test2_2";
  59.   file=file2=0;
  60.   get_options(argc,argv);
  61.   
  62.   bzero(&hp_create_info, sizeof(hp_create_info));
  63.   write_count=update=opt_delete=0;
  64.   key_check=0;
  65.   keyinfo[0].seg=keyseg;
  66.   keyinfo[0].keysegs=1;
  67.   keyinfo[0].flag= 0;
  68.   keyinfo[0].algorithm= HA_KEY_ALG_HASH;
  69.   keyinfo[0].seg[0].type=HA_KEYTYPE_BINARY;
  70.   keyinfo[0].seg[0].start=0;
  71.   keyinfo[0].seg[0].length=6;
  72.   keyinfo[0].seg[0].null_bit=0;
  73.   keyinfo[0].seg[0].charset=cs;
  74.   keyinfo[1].seg=keyseg+1;
  75.   keyinfo[1].keysegs=2;
  76.   keyinfo[1].flag=0;
  77.   keyinfo[1].algorithm= HA_KEY_ALG_HASH;
  78.   keyinfo[1].seg[0].type=HA_KEYTYPE_BINARY;
  79.   keyinfo[1].seg[0].start=7;
  80.   keyinfo[1].seg[0].length=6;
  81.   keyinfo[1].seg[0].null_bit=0;
  82.   keyinfo[1].seg[0].charset=cs;
  83.   keyinfo[1].seg[1].type=HA_KEYTYPE_TEXT;
  84.   keyinfo[1].seg[1].start=0; /* key in two parts */
  85.   keyinfo[1].seg[1].length=6;
  86.   keyinfo[1].seg[1].null_bit=0;
  87.   keyinfo[1].seg[1].charset=cs;
  88.   keyinfo[2].seg=keyseg+3;
  89.   keyinfo[2].keysegs=1;
  90.   keyinfo[2].flag=HA_NOSAME;
  91.   keyinfo[2].algorithm= HA_KEY_ALG_HASH;
  92.   keyinfo[2].seg[0].type=HA_KEYTYPE_BINARY;
  93.   keyinfo[2].seg[0].start=12;
  94.   keyinfo[2].seg[0].length=8;
  95.   keyinfo[2].seg[0].null_bit=0;
  96.   keyinfo[2].seg[0].charset=cs;
  97.   keyinfo[3].seg=keyseg+4;
  98.   keyinfo[3].keysegs=1;
  99.   keyinfo[3].flag=HA_NOSAME;
  100.   keyinfo[3].algorithm= HA_KEY_ALG_HASH;
  101.   keyinfo[3].seg[0].type=HA_KEYTYPE_BINARY;
  102.   keyinfo[3].seg[0].start=37;
  103.   keyinfo[3].seg[0].length=1;
  104.   keyinfo[3].seg[0].null_bit=1;
  105.   keyinfo[3].seg[0].null_pos=38;
  106.   keyinfo[3].seg[0].charset=cs;
  107.   bzero((char*) key1,sizeof(key1));
  108.   bzero((char*) key3,sizeof(key3));
  109.   printf("- Creating heap-filen");
  110.   if (heap_create(filename,keys,keyinfo,reclength,(ulong) flag*100000L, 
  111. (ulong) recant/2, &hp_create_info) ||
  112.       !(file= heap_open(filename, 2)))
  113.     goto err;
  114.   signal(SIGINT,endprog);
  115.   printf("- Writing records:sn");
  116.   strmov(record,"          ..... key");
  117.   for (i=0 ; i < recant ; i++)
  118.   {
  119.     n1=rnd(1000); n2=rnd(100); n3=rnd(min(recant*5,MAX_RECORDS));
  120.     make_record(record,n1,n2,n3,"Pos",write_count);
  121.     if (heap_write(file,record))
  122.     {
  123.       if (my_errno != HA_ERR_FOUND_DUPP_KEY || key3[n3] == 0)
  124.       {
  125. printf("Error: %d in write at record: %dn",my_errno,i);
  126. goto err;
  127.       }
  128.       if (verbose) printf("   Double key: %dn",n3);
  129.     }
  130.     else
  131.     {
  132.       if (key3[n3] == 1)
  133.       {
  134. printf("Error: Didn't get error when writing second key: '%8d'n",n3);
  135. goto err;
  136.       }
  137.       write_count++; key1[n1]++; key3[n3]=1;
  138.       key_check+=n1;
  139.     }
  140.     if (testflag == 1 && heap_check_heap(file,0))
  141.     {
  142.       puts("Heap keys crashed");
  143.       goto err;
  144.     }
  145.   }
  146.   if (testflag == 1)
  147.     goto end;
  148.   if (heap_check_heap(file,0))
  149.   {
  150.     puts("Heap keys crashed");
  151.     goto err;
  152.   }
  153.   printf("- Deleten");
  154.   for (i=0 ; i < write_count/10 ; i++)
  155.   {
  156.     for (j=rnd(1000)+1 ; j>0 && key1[j] == 0 ; j--) ;
  157.     if (j != 0)
  158.     {
  159.       sprintf(key,"%6d",j);
  160.       if (heap_rkey(file,record,0,key,6, HA_READ_KEY_EXACT))
  161.       {
  162. printf("can't find key1: "%s"n",key);
  163. goto err;
  164.       }
  165. #ifdef NOT_USED
  166.       if (file->current_ptr == hp_find_block(&file->s->block,0) ||
  167.   file->current_ptr == hp_find_block(&file->s->block,1))
  168. continue; /* Don't remove 2 first records */
  169. #endif
  170.       if (heap_delete(file,record))
  171.       {
  172. printf("error: %d; can't delete record: "%s"n", my_errno,record);
  173. goto err;
  174.       }
  175.       opt_delete++;
  176.       key1[atoi(record+keyinfo[0].seg[0].start)]--;
  177.       key3[atoi(record+keyinfo[2].seg[0].start)]=0;
  178.       key_check-=atoi(record);
  179.       if (testflag == 2 && heap_check_heap(file,0))
  180.       {
  181. puts("Heap keys crashed");
  182. goto err;
  183.       }
  184.     }
  185.     else
  186.       puts("Warning: Skipping delete test because no dupplicate keys");
  187.   }
  188.   if (testflag==2) goto end;
  189.   if (heap_check_heap(file,0))
  190.   {
  191.     puts("Heap keys crashed");
  192.     goto err;
  193.   }
  194.   printf("- Updaten");
  195.   for (i=0 ; i < write_count/10 ; i++)
  196.   {
  197.     n1=rnd(1000); n2=rnd(100); n3=rnd(min(recant*2,MAX_RECORDS));
  198.     make_record(record2, n1, n2, n3, "XXX", update);
  199.     if (rnd(2) == 1)
  200.     {
  201.       if (heap_scan_init(file))
  202. goto err;
  203.       j=rnd(write_count-opt_delete);
  204.       while ((error=heap_scan(file,record) == HA_ERR_RECORD_DELETED) ||
  205.      (!error && j))
  206.       {
  207. if (!error)
  208.   j--;
  209.       }
  210.       if (error)
  211. goto err;
  212.     }
  213.     else
  214.     {
  215.       for (j=rnd(1000)+1 ; j>0 && key1[j] == 0 ; j--) ;
  216.       if (!key1[j])
  217. continue;
  218.       sprintf(key,"%6d",j);
  219.       if (heap_rkey(file,record,0,key,6, HA_READ_KEY_EXACT))
  220.       {
  221. printf("can't find key1: "%s"n",key);
  222. goto err;
  223.       }
  224.     }
  225.     if (heap_update(file,record,record2))
  226.     {
  227.       if (my_errno != HA_ERR_FOUND_DUPP_KEY || key3[n3] == 0)
  228.       {
  229. printf("error: %d; can't update:nFrom: "%s"nTo:   "%s"n",
  230.        my_errno,record,record2);
  231. goto err;
  232.       }
  233.       if (verbose)
  234. printf("Double key when tried to update:nFrom: "%s"nTo:   "%s"n",record,record2);
  235.     }
  236.     else
  237.     {
  238.       key1[atoi(record+keyinfo[0].seg[0].start)]--;
  239.       key3[atoi(record+keyinfo[2].seg[0].start)]=0;
  240.       key1[n1]++; key3[n3]=1;
  241.       update++;
  242.       key_check=key_check-atoi(record)+n1;
  243.     }
  244.     if (testflag == 3 && heap_check_heap(file,0))
  245.     {
  246.       puts("Heap keys crashed");
  247.       goto err;
  248.     }
  249.   }
  250.   if (testflag == 3) goto end;
  251.   if (heap_check_heap(file,0))
  252.   {
  253.     puts("Heap keys crashed");
  254.     goto err;
  255.   }
  256.   for (i=999, dupp_keys=found_key=0 ; i>0 ; i--)
  257.   {
  258.     if (key1[i] > dupp_keys) { dupp_keys=key1[i]; found_key=i; }
  259.     sprintf(key,"%6d",found_key);
  260.   }
  261.   if (dupp_keys > 3)
  262.   {
  263.     if (!silent)
  264.       printf("- Read first key - next - delete - next -> lastn");
  265.     DBUG_PRINT("progpos",("first - next - delete - next -> last"));
  266.     if (heap_rkey(file,record,0,key,6, HA_READ_KEY_EXACT))
  267.       goto err;
  268.     if (heap_rnext(file,record3)) goto err;
  269.     if (heap_delete(file,record3)) goto err;
  270.     key_check-=atoi(record3);
  271.     key1[atoi(record+keyinfo[0].seg[0].start)]--;
  272.     key3[atoi(record+keyinfo[2].seg[0].start)]=0;
  273.     opt_delete++;
  274.     ant=2;
  275.     while ((error=heap_rnext(file,record3)) == 0 ||
  276.    error == HA_ERR_RECORD_DELETED)
  277.       if (! error)
  278. ant++;
  279.     if (ant != dupp_keys)
  280.     {
  281.       printf("next: I can only find: %d records of %dn",
  282.      ant,dupp_keys);
  283.       goto end;
  284.     }
  285.     dupp_keys--;
  286.     if (heap_check_heap(file,0))
  287.     {
  288.       puts("Heap keys crashed");
  289.       goto err;
  290.     }
  291.     if (!silent)
  292.       printf("- Read last key - delete - prev - prev - opt_delete - prev -> firstn");
  293.     if (heap_rlast(file,record3,0)) goto err;
  294.     if (heap_delete(file,record3)) goto err;
  295.     key_check-=atoi(record3);
  296.     key1[atoi(record+keyinfo[0].seg[0].start)]--;
  297.     key3[atoi(record+keyinfo[2].seg[0].start)]=0;
  298.     opt_delete++;
  299.     if (heap_rprev(file,record3) || heap_rprev(file,record3))
  300.       goto err;
  301.     if (heap_delete(file,record3)) goto err;
  302.     key_check-=atoi(record3);
  303.     key1[atoi(record+keyinfo[0].seg[0].start)]--;
  304.     key3[atoi(record+keyinfo[2].seg[0].start)]=0;
  305.     opt_delete++;
  306.     ant=3;
  307.     while ((error=heap_rprev(file,record3)) == 0 ||
  308.    error == HA_ERR_RECORD_DELETED)
  309.     {
  310.       if (! error)
  311. ant++;
  312.     }
  313.     if (ant != dupp_keys)
  314.     {
  315.       printf("next: I can only find: %d records of %dn",
  316.      ant,dupp_keys);
  317.       goto end;
  318.     }
  319.     dupp_keys-=2;
  320.     if (heap_check_heap(file,0))
  321.     {
  322.       puts("Heap keys crashed");
  323.       goto err;
  324.     }
  325.   }
  326.   else
  327.     puts("Warning: Not enough duplicated keys:  Skipping delete key check");
  328.   if (!silent)
  329.     printf("- Read (first) - next - delete - next -> lastn");
  330.   DBUG_PRINT("progpos",("first - next - delete - next -> last"));
  331.   if (heap_scan_init(file))
  332.     goto err;
  333.   while ((error=heap_scan(file,record3) == HA_ERR_RECORD_DELETED)) ;
  334.   if (error)
  335.     goto err;
  336.   if (heap_delete(file,record3)) goto err;
  337.   key_check-=atoi(record3);
  338.   opt_delete++;
  339.   key1[atoi(record+keyinfo[0].seg[0].start)]--;
  340.   key3[atoi(record+keyinfo[2].seg[0].start)]=0;
  341.   ant=0;
  342.   while ((error=heap_scan(file,record3)) == 0 ||
  343.  error == HA_ERR_RECORD_DELETED)
  344.     if (! error)
  345.       ant++;
  346.   if (ant != write_count-opt_delete)
  347.   {
  348.     printf("next: Found: %d records of %dn",ant,write_count-opt_delete);
  349.     goto end;
  350.   }
  351.   if (heap_check_heap(file,0))
  352.   {
  353.     puts("Heap keys crashed");
  354.     goto err;
  355.   }
  356.   puts("- Test if: Read rrnd - same - rkey - same");
  357.   DBUG_PRINT("progpos",("Read rrnd - same"));
  358.   pos=rnd(write_count-opt_delete-5)+5;
  359.   heap_scan_init(file);
  360.   i=5;
  361.   while ((error=heap_scan(file,record)) == HA_ERR_RECORD_DELETED ||
  362.  (error == 0 && pos))
  363.   {
  364.     if (!error)
  365.       pos--;
  366.     if (i-- == 0)
  367.     {
  368.       bmove(record3,record,reclength);
  369.       position=heap_position(file);
  370.     }
  371.   }
  372.   if (error)
  373.     goto err;
  374.   bmove(record2,record,reclength);
  375.   if (heap_rsame(file,record,-1) || heap_rsame(file,record2,2))
  376.     goto err;
  377.   if (bcmp(record2,record,reclength))
  378.   {
  379.     puts("heap_rsame didn't find right record");
  380.     goto end;
  381.   }
  382.   puts("- Test of read through position");
  383.   if (heap_rrnd(file,record,position))
  384.     goto err;
  385.   if (bcmp(record3,record,reclength))
  386.   {
  387.     puts("heap_frnd didn't find right record");
  388.     goto end;
  389.   }
  390.   printf("- heap_infon");
  391.   {
  392.     HEAPINFO info;
  393.     heap_info(file,&info,0);
  394.     /* We have to test with opt_delete +1 as this may be the case if the last
  395.        inserted row was a duplicate key */
  396.     if (info.records != write_count-opt_delete ||
  397. (info.deleted != opt_delete && info.deleted != opt_delete+1))
  398.     {
  399.       puts("Wrong info from heap_info");
  400.       printf("Got: records: %ld(%d)  deleted: %ld(%d)n",
  401.      info.records,write_count-opt_delete,info.deleted,opt_delete);
  402.     }
  403.   }
  404. #ifdef OLD_HEAP_VERSION
  405.   {
  406.     uint check;
  407.     printf("- Read through all records with rndn");
  408.     if (heap_extra(file,HA_EXTRA_RESET) || heap_extra(file,HA_EXTRA_CACHE))
  409.     {
  410.       puts("got error from heap_extra");
  411.       goto end;
  412.     }
  413.     ant=check=0;
  414.     while ((error=heap_rrnd(file,record,(ulong) -1)) != HA_ERR_END_OF_FILE &&
  415.    ant < write_count + 10)
  416.     {
  417.       if (!error)
  418.       {
  419. ant++;
  420. check+=calc_check(record,reclength);
  421.       }
  422.     }
  423.     if (ant != write_count-opt_delete)
  424.     {
  425.       printf("rrnd: I can only find: %d records of %dn", ant,
  426.      write_count-opt_delete);
  427.       goto end;
  428.     }
  429.     if (heap_extra(file,HA_EXTRA_NO_CACHE))
  430.     {
  431.       puts("got error from heap_extra(HA_EXTRA_NO_CACHE)");
  432.       goto end;
  433.     }
  434.   }
  435. #endif
  436.   printf("- Read through all records with scann");
  437.   if (heap_extra(file,HA_EXTRA_RESET) || heap_extra(file,HA_EXTRA_CACHE))
  438.   {
  439.     puts("got error from heap_extra");
  440.     goto end;
  441.   }
  442.   ant=check2=0;
  443.   heap_scan_init(file);
  444.   while ((error=heap_scan(file,record)) != HA_ERR_END_OF_FILE &&
  445.  ant < write_count + 10)
  446.   {
  447.     if (!error)
  448.     {
  449.       ant++;
  450.       check2+=calc_check(record,reclength);
  451.     }
  452.   }
  453.   if (ant != write_count-opt_delete)
  454.   {
  455.     printf("scan: I can only find: %d records of %dn", ant,
  456.    write_count-opt_delete);
  457.     goto end;
  458.   }
  459. #ifdef OLD_HEAP_VERSION
  460.   if (check != check2)
  461.   {
  462.     puts("scan: Checksum didn't match reading with rrnd");
  463.     goto end;
  464.   }
  465. #endif
  466.   if (heap_extra(file,HA_EXTRA_NO_CACHE))
  467.   {
  468.     puts("got error from heap_extra(HA_EXTRA_NO_CACHE)");
  469.     goto end;
  470.   }
  471.   for (i=999, dupp_keys=found_key=0 ; i>0 ; i--)
  472.   {
  473.     if (key1[i] > dupp_keys) { dupp_keys=key1[i]; found_key=i; }
  474.     sprintf(key,"%6d",found_key);
  475.   }
  476.   printf("- Read through all keys with first-next-last-prevn");
  477.   ant=0;
  478.   for (error=heap_rkey(file,record,0,key,6, HA_READ_KEY_EXACT);
  479.       ! error ;
  480.        error=heap_rnext(file,record))
  481.     ant++;
  482.   if (ant != dupp_keys)
  483.   {
  484.     printf("first-next: I can only find: %d records of %dn", ant,
  485.    dupp_keys);
  486.     goto end;
  487.   }
  488.   ant=0;
  489.   for (error=heap_rlast(file,record,0) ;
  490.       ! error ;
  491.       error=heap_rprev(file,record))
  492.   {
  493.     ant++;
  494.     check2+=calc_check(record,reclength);
  495.   }
  496.   if (ant != dupp_keys)
  497.   {
  498.     printf("last-prev: I can only find: %d records of %dn", ant,
  499.    dupp_keys);
  500.     goto end;
  501.   }
  502.   if (testflag == 4) goto end;
  503.   printf("- Reading through all rows through keysn");
  504.   if (!(file2=heap_open(filename, 2)))
  505.     goto err;
  506.   if (heap_scan_init(file))
  507.     goto err;
  508.   while ((error=heap_scan(file,record)) != HA_ERR_END_OF_FILE)
  509.   {
  510.     if (error == 0)
  511.     {
  512.       if (heap_rkey(file2,record2,2,record+keyinfo[2].seg[0].start,8,
  513.     HA_READ_KEY_EXACT))
  514.       {
  515. printf("can't find key3: "%.8s"n",
  516.        record+keyinfo[2].seg[0].start);
  517. goto err;
  518.       }
  519.     }
  520.   }
  521.   heap_close(file2);
  522.   printf("- Creating output heap-file 2n");
  523.   if (heap_create(filename2,1,keyinfo,reclength,0L,0L,&hp_create_info) ||
  524.       !(file2= heap_open(filename2, 2)))
  525.     goto err;
  526.   printf("- Copying and removing recordsn");
  527.   if (heap_scan_init(file))
  528.     goto err;
  529.   while ((error=heap_scan(file,record)) != HA_ERR_END_OF_FILE)
  530.   {
  531.     if (error == 0)
  532.     {
  533.       if (heap_write(file2,record))
  534. goto err;
  535.       key_check-=atoi(record);
  536.       write_count++;
  537.       if (heap_delete(file,record))
  538. goto err;
  539.       opt_delete++;
  540.     }
  541.     pos++;
  542.   }
  543.   printf("- Checking heap tablesn");
  544.   if (heap_check_heap(file,1) || heap_check_heap(file2,1))
  545.   {
  546.     puts("Heap keys crashed");
  547.     goto err;
  548.   }
  549.   if (my_errno != HA_ERR_END_OF_FILE)
  550.     printf("error: %d from heap_rrndn",my_errno);
  551.   if (key_check)
  552.     printf("error: Some read got wrong: check is %ldn",(long) key_check);
  553. end:
  554.   printf("nFollowing test have been made:n");
  555.   printf("Write records: %dnUpdate records: %dnDelete records: %dn", write_count,update,opt_delete);
  556.   heap_clear(file);
  557.   if (heap_close(file) || (file2 && heap_close(file2)))
  558.     goto err;
  559.   heap_delete_table(filename2);
  560.   heap_panic(HA_PANIC_CLOSE);
  561.   my_end(MY_GIVE_INFO);
  562.   return(0);
  563. err:
  564.   printf("Got error: %d when using heap-databasen",my_errno);
  565.   VOID(heap_close(file));
  566.   return(1);
  567. } /* main */
  568. /* Read options */
  569. static int get_options(int argc,char *argv[])
  570. {
  571.   char *pos,*progname;
  572.   DEBUGGER_OFF;
  573.   progname= argv[0];
  574.   while (--argc >0 && *(pos = *(++argv)) == '-' ) {
  575.     switch(*++pos) {
  576.     case 'B': /* Big file */
  577.       flag=1;
  578.       break;
  579.     case 'v': /* verbose */
  580.       verbose=1;
  581.       break;
  582.     case 'm': /* records */
  583.       recant=atoi(++pos);
  584.       break;
  585.     case 's':
  586.       silent=1;
  587.       break;
  588.     case 't':
  589.       testflag=atoi(++pos); /* testmod */
  590.       break;
  591.     case 'V':
  592.     case 'I':
  593.     case '?':
  594.       printf("%s  Ver 1.1 for %s at %sn",progname,SYSTEM_TYPE,MACHINE_TYPE);
  595.       puts("TCX Datakonsult AB, by Monty, for your professional usen");
  596.       printf("Usage: %s [-?ABIKLsWv] [-m#] [-t#]n",progname);
  597.       exit(0);
  598.     case '#':
  599.       DEBUGGER_ON;
  600.       DBUG_PUSH (++pos);
  601.       break;
  602.     }
  603.   }
  604.   return 0;
  605. } /* get options */
  606. /* Generate a random value in intervall 0 <=x <= n */
  607. static int rnd(int max_value)
  608. {
  609.   return (int) ((rand() & 32767)/32767.0*max_value);
  610. } /* rnd */
  611. static sig_handler endprog(int sig_number __attribute__((unused)))
  612. {
  613. #ifndef THREAD
  614.   if (my_dont_interrupt)
  615.     my_remember_signal(sig_number,endprog);
  616.   else
  617. #endif
  618.   {
  619.     heap_panic(HA_PANIC_CLOSE);
  620.     my_end(1);
  621.     exit(1);
  622.   }
  623. }
  624. static int calc_check(byte *buf, uint length)
  625. {
  626.   int check=0;
  627.   while (length--)
  628.     check+= (int) (uchar) *(buf++);
  629.   return check;
  630. }
  631. static void make_record(char *record, uint n1, uint n2, uint n3,
  632. const char *mark, uint count)
  633. {
  634.   bfill(record,reclength,' ');
  635.   sprintf(record,"%6d:%4d:%8d:%3.3s: %4d",
  636.   n1,n2,n3,mark,count);
  637.   record[37]='A'; /* Store A in null key */
  638.   record[38]=1; /* set as null */
  639. }