home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / mf_iocache.c < prev    next >
C/C++ Source or Header  |  2000-11-16  |  18KB  |  615 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library 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 GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. /*
  19.   Cashing of files with only does (sequential) read or writes of fixed-
  20.   length records. A read isn't allowed to go over file-length. A read is ok
  21.   if it ends at file-length and next read can try to read after file-length
  22.   (and get a EOF-error).
  23.   Possibly use of asyncronic io.
  24.   macros for read and writes for faster io.
  25.   Used instead of FILE when reading or writing whole files.
  26.   This will make mf_rec_cache obsolete.
  27.   One can change info->pos_in_file to a higher value to skip bytes in file if
  28.   also info->rc_pos is set to info->rc_end.
  29.   If called through open_cached_file(), then the temporary file will
  30.   only be created if a write exeeds the file buffer or if one calls
  31.   flush_io_cache().  
  32. */
  33.  
  34. #define MAP_TO_USE_RAID
  35. #include "mysys_priv.h"
  36. #include <m_string.h>
  37. #ifdef HAVE_AIOWAIT
  38. #include "mysys_err.h"
  39. #include <errno.h>
  40. static void my_aiowait(my_aio_result *result);
  41. #endif
  42.  
  43.  
  44.     /*
  45.     ** if cachesize == 0 then use default cachesize (from s-file)
  46.     ** if file == -1 then real_open_cached_file() will be called.
  47.     ** returns 0 if ok
  48.     */
  49.  
  50. int init_io_cache(IO_CACHE *info, File file, uint cachesize,
  51.           enum cache_type type, my_off_t seek_offset,
  52.           pbool use_async_io, myf cache_myflags)
  53. {
  54.   uint min_cache;
  55.   DBUG_ENTER("init_io_cache");
  56.   DBUG_PRINT("enter",("type: %d  pos: %ld",(int) type, (ulong) seek_offset));
  57.  
  58.   info->file=file;
  59.   if (!cachesize)
  60.     if (! (cachesize= my_default_record_cache_size))
  61.       DBUG_RETURN(1);                /* No cache requested */
  62.   min_cache=use_async_io ? IO_SIZE*4 : IO_SIZE*2;
  63.   if (type == READ_CACHE)
  64.   {                        /* Assume file isn't growing */
  65.     if (cache_myflags & MY_DONT_CHECK_FILESIZE)
  66.     {
  67.       cache_myflags &= ~MY_DONT_CHECK_FILESIZE;
  68.     }
  69.     else
  70.     {
  71.       my_off_t file_pos,end_of_file;
  72.       if ((file_pos=my_tell(file,MYF(0)) == MY_FILEPOS_ERROR))
  73.     DBUG_RETURN(1);
  74.       end_of_file=my_seek(file,0L,MY_SEEK_END,MYF(0));
  75.       if (end_of_file < seek_offset)
  76.     end_of_file=seek_offset;
  77.       VOID(my_seek(file,file_pos,MY_SEEK_SET,MYF(0)));
  78.       if ((my_off_t) cachesize > end_of_file-seek_offset+IO_SIZE*2-1)
  79.       {
  80.     cachesize=(uint) (end_of_file-seek_offset)+IO_SIZE*2-1;
  81.     use_async_io=0;                /* No nead to use async */
  82.       }
  83.     }
  84.   }
  85.  
  86.   for (;;)
  87.   {
  88.     cachesize=(uint) ((ulong) (cachesize + min_cache-1) &
  89.               (ulong) ~(min_cache-1));
  90.     if (cachesize < min_cache)
  91.       cachesize = min_cache;
  92.     if ((info->buffer=
  93.      (byte*) my_malloc(cachesize,
  94.                MYF((cache_myflags & ~ MY_WME) |
  95.                    (cachesize == min_cache ? MY_WME : 0)))) != 0)
  96.       break;                    /* Enough memory found */
  97.     if (cachesize == min_cache)
  98.       DBUG_RETURN(2);                /* Can't alloc cache */
  99.     cachesize= (uint) ((long) cachesize*3/4);    /* Try with less memory */
  100.   }
  101.   info->pos_in_file=seek_offset;
  102.   info->read_length=info->buffer_length=cachesize;
  103.   info->seek_not_done= test(file >= 0);        /* Seek not done */
  104.   info->myflags=cache_myflags & ~(MY_NABP | MY_FNABP);
  105.   info->rc_request_pos=info->rc_pos=info->buffer;
  106.  
  107.   if (type == READ_CACHE)
  108.   {
  109.     info->rc_end=info->buffer;            /* Nothing in cache */
  110.   }
  111.   else /* type == WRITE_CACHE */
  112.   {
  113.     info->rc_end=info->buffer+info->buffer_length- (seek_offset & (IO_SIZE-1));
  114.   }
  115.   info->end_of_file=MY_FILEPOS_ERROR;        /* May be changed by user */
  116.   info->type=type;
  117.   info->error=0;
  118.   info->read_function=_my_b_read;
  119. #ifdef HAVE_AIOWAIT
  120.   if (use_async_io && ! my_disable_async_io)
  121.   {
  122.     DBUG_PRINT("info",("Using async io"));
  123.     info->read_length/=2;
  124.     info->read_function=_my_b_async_read;
  125.   }
  126.   info->inited=info->aio_result.pending=0;
  127. #endif
  128.   DBUG_RETURN(0);
  129. }                        /* init_io_cache */
  130.  
  131.  
  132.     /* Wait until current request is ready */
  133.  
  134. #ifdef HAVE_AIOWAIT
  135. static void my_aiowait(my_aio_result *result)
  136. {
  137.   if (result->pending)
  138.   {
  139.     struct aio_result_t *tmp;
  140.     for (;;)
  141.     {
  142.       if ((int) (tmp=aiowait((struct timeval *) 0)) == -1)
  143.       {
  144.     if (errno == EINTR)
  145.       continue;
  146.     DBUG_PRINT("error",("No aio request, error: %d",errno));
  147.     result->pending=0;            /* Assume everythings is ok */
  148.     break;
  149.       }
  150.       ((my_aio_result*) tmp)->pending=0;
  151.       if ((my_aio_result*) tmp == result)
  152.     break;
  153.     }
  154.   }
  155.   return;
  156. }
  157. #endif
  158.  
  159.     /* Use this to reset cache to start or other type */
  160.     /* Some simple optimizing is done when reinit in current buffer */
  161.  
  162. my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
  163.             my_off_t seek_offset,
  164.             pbool use_async_io __attribute__((unused)),
  165.             pbool clear_cache)
  166. {
  167.   DBUG_ENTER("reinit_io_cache");
  168.  
  169.   info->seek_not_done= test(info->file >= 0);    /* Seek not done */
  170.   if (! clear_cache &&
  171.       seek_offset >= info->pos_in_file &&
  172.       seek_offset <= info->pos_in_file +
  173.       (uint) (info->rc_end - info->rc_request_pos))
  174.   {                        /* use current buffer */
  175.     if (info->type == WRITE_CACHE && type == READ_CACHE)
  176.     {
  177.       info->rc_end=info->rc_pos;
  178.       info->end_of_file=my_b_tell(info);
  179.     }
  180.     else if (info->type == READ_CACHE && type == WRITE_CACHE)
  181.       info->rc_end=info->buffer+info->buffer_length;
  182.     info->rc_pos=info->rc_request_pos+(seek_offset-info->pos_in_file);
  183. #ifdef HAVE_AIOWAIT
  184.     my_aiowait(&info->aio_result);        /* Wait for outstanding req */
  185. #endif
  186.   }
  187.   else
  188.   {
  189.     if (info->type == WRITE_CACHE && type == READ_CACHE)
  190.       info->end_of_file=my_b_tell(info);
  191.     if (flush_io_cache(info))
  192.       DBUG_RETURN(1);
  193.     info->pos_in_file=seek_offset;
  194.     info->rc_request_pos=info->rc_pos=info->buffer;
  195.     if (type == READ_CACHE)
  196.     {
  197.       info->rc_end=info->buffer;        /* Nothing in cache */
  198.     }
  199.     else
  200.     {
  201.       info->rc_end=info->buffer+info->buffer_length-
  202.     (seek_offset & (IO_SIZE-1));
  203.       info->end_of_file=MY_FILEPOS_ERROR;    /* May be changed by user */
  204.     }
  205.   }
  206.   info->type=type;
  207.   info->error=0;
  208.   info->read_function=_my_b_read;
  209. #ifdef HAVE_AIOWAIT
  210.   if (use_async_io && ! my_disable_async_io &&
  211.       ((ulong) info->buffer_length <
  212.        (ulong) (info->end_of_file - seek_offset)))
  213.   {
  214.     info->read_length=info->buffer_length/2;
  215.     info->read_function=_my_b_async_read;
  216.   }
  217.   info->inited=0;
  218. #endif
  219.   DBUG_RETURN(0);
  220. } /* init_io_cache */
  221.  
  222.  
  223.  
  224.     /* Read buffered. Returns 1 if can't read requested characters */
  225.     /* Returns 0 if record read */
  226.  
  227. int _my_b_read(register IO_CACHE *info, byte *Buffer, uint Count)
  228. {
  229.   uint length,diff_length,left_length;
  230.   my_off_t max_length, pos_in_file;
  231.  
  232.   memcpy(Buffer,info->rc_pos,
  233.      (size_t) (left_length=(uint) (info->rc_end-info->rc_pos)));
  234.   Buffer+=left_length;
  235.   Count-=left_length;
  236.   pos_in_file=info->pos_in_file+(uint) (info->rc_end - info->buffer);
  237.   if (info->seek_not_done)
  238.   {                    /* File touched, do seek */
  239.     VOID(my_seek(info->file,pos_in_file,MY_SEEK_SET,MYF(0)));
  240.     info->seek_not_done=0;
  241.   }
  242.   diff_length=(uint) (pos_in_file & (IO_SIZE-1));
  243.   if (Count >= (uint) (IO_SIZE+(IO_SIZE-diff_length)))
  244.   {                    /* Fill first intern buffer */
  245.     uint read_length;
  246.     if (info->end_of_file == pos_in_file)
  247.     {                    /* End of file */
  248.       info->error=(int) left_length;
  249.       return 1;
  250.     }
  251.     length=(Count & (uint) ~(IO_SIZE-1))-diff_length;
  252.     if ((read_length=my_read(info->file,Buffer,(uint) length,info->myflags))
  253.     != (uint) length)
  254.     {
  255.       info->error= read_length == (uint) -1 ? -1 :
  256.     (int) (read_length+left_length);
  257.       return 1;
  258.     }
  259.     Count-=length;
  260.     Buffer+=length;
  261.     pos_in_file+=length;
  262.     left_length+=length;
  263.     diff_length=0;
  264.   }
  265.   max_length=info->end_of_file - pos_in_file;
  266.   if (max_length > info->read_length-diff_length)
  267.     max_length=info->read_length-diff_length;
  268.  
  269.   if (!max_length)
  270.   {
  271.     if (Count)
  272.     {
  273.       info->error= left_length;        /* We only got this many char */
  274.       return 1;
  275.     }
  276.     length=0;                /* Didn't read any chars */
  277.   }
  278.   else if ((length=my_read(info->file,info->buffer,(uint) max_length,
  279.                info->myflags)) < Count ||
  280.        length == (uint) -1)
  281.   {
  282.     if (length != (uint) -1)
  283.       memcpy(Buffer,info->buffer,(size_t) length);
  284.     info->error= length == (uint) -1 ? -1 : (int) (length+left_length);
  285.     return 1;
  286.   }
  287.   info->rc_pos=info->buffer+Count;
  288.   info->rc_end=info->buffer+length;
  289.   info->pos_in_file=pos_in_file;
  290.   memcpy(Buffer,info->buffer,(size_t) Count);
  291.   return 0;
  292. }
  293.  
  294.  
  295. #ifdef HAVE_AIOWAIT
  296.  
  297. int _my_b_async_read(register IO_CACHE *info, byte *Buffer, uint Count)
  298. {
  299.   uint length,read_length,diff_length,left_length,use_length,org_Count;
  300.   my_off_t max_length;
  301.   my_off_t next_pos_in_file;
  302.   byte *read_buffer;
  303.  
  304.   memcpy(Buffer,info->rc_pos,
  305.      (size_t) (left_length=(uint) (info->rc_end-info->rc_pos)));
  306.   Buffer+=left_length;
  307.   org_Count=Count;
  308.   Count-=left_length;
  309.  
  310.   if (info->inited)
  311.   {                        /* wait for read block */
  312.     info->inited=0;                /* No more block to read */
  313.     my_aiowait(&info->aio_result);        /* Wait for outstanding req */
  314.     if (info->aio_result.result.aio_errno)
  315.     {
  316.       if (info->myflags & MY_WME)
  317.     my_error(EE_READ, MYF(ME_BELL+ME_WAITTANG),
  318.          my_filename(info->file),
  319.          info->aio_result.result.aio_errno);
  320.       my_errno=info->aio_result.result.aio_errno;
  321.       info->error= -1;
  322.       return(1);
  323.     }
  324.     if (! (read_length = (uint) info->aio_result.result.aio_return) ||
  325.     read_length == (uint) -1)
  326.     {
  327.       my_errno=0;                /* For testing */
  328.       info->error= (read_length == (uint) -1 ? -1 :
  329.             (int) (read_length+left_length));
  330.       return(1);
  331.     }
  332.     info->pos_in_file+=(uint) (info->rc_end - info->rc_request_pos);
  333.  
  334.     if (info->rc_request_pos != info->buffer)
  335.       info->rc_request_pos=info->buffer;
  336.     else
  337.       info->rc_request_pos=info->buffer+info->read_length;
  338.     info->rc_pos=info->rc_request_pos;
  339.     next_pos_in_file=info->aio_read_pos+read_length;
  340.  
  341.     /* Check if pos_in_file is changed
  342.        (_ni_read_cache may have skipped some bytes) */
  343.  
  344.     if (info->aio_read_pos < info->pos_in_file)
  345.     {                        /* Fix if skipped bytes */
  346.       if (info->aio_read_pos + read_length < info->pos_in_file)
  347.       {
  348.     read_length=0;                /* Skipp block */
  349.     next_pos_in_file=info->pos_in_file;
  350.       }
  351.       else
  352.       {
  353.     my_off_t offset= (info->pos_in_file - info->aio_read_pos);
  354.     info->pos_in_file=info->aio_read_pos; /* Whe are here */
  355.     info->rc_pos=info->rc_request_pos+offset;
  356.     read_length-=offset;            /* Bytes left from rc_pos */
  357.       }
  358.     }
  359. #ifndef DBUG_OFF
  360.     if (info->aio_read_pos > info->pos_in_file)
  361.     {
  362.       my_errno=EINVAL;
  363.       return(info->read_length= -1);
  364.     }
  365. #endif
  366.     /* Copy found bytes to buffer */
  367.     length=min(Count,read_length);
  368.     memcpy(Buffer,info->rc_pos,(size_t) length);
  369.     Buffer+=length;
  370.     Count-=length;
  371.     left_length+=length;
  372.     info->rc_end=info->rc_pos+read_length;
  373.     info->rc_pos+=length;
  374.   }
  375.   else
  376.     next_pos_in_file=(info->pos_in_file+ (uint)
  377.               (info->rc_end - info->rc_request_pos));
  378.  
  379.     /* If reading large blocks, or first read or read with skipp */
  380.   if (Count)
  381.   {
  382.     if (next_pos_in_file == info->end_of_file)
  383.     {
  384.       info->error=(int) (read_length+left_length);
  385.       return 1;
  386.     }
  387.     VOID(my_seek(info->file,next_pos_in_file,MY_SEEK_SET,MYF(0)));
  388.     read_length=IO_SIZE*2- (uint) (next_pos_in_file & (IO_SIZE-1));
  389.     if (Count < read_length)
  390.     {                    /* Small block, read to cache */
  391.       if ((read_length=my_read(info->file,info->rc_request_pos,
  392.                    read_length, info->myflags)) == (uint) -1)
  393.     return info->error= -1;
  394.       use_length=min(Count,read_length);
  395.       memcpy(Buffer,info->rc_request_pos,(size_t) use_length);
  396.       info->rc_pos=info->rc_request_pos+Count;
  397.       info->rc_end=info->rc_request_pos+read_length;
  398.       info->pos_in_file=next_pos_in_file;    /* Start of block in cache */
  399.       next_pos_in_file+=read_length;
  400.  
  401.       if (Count != use_length)
  402.       {                    /* Didn't find hole block */
  403.     if (info->myflags & (MY_WME | MY_FAE | MY_FNABP) && Count != org_Count)
  404.       my_error(EE_EOFERR, MYF(ME_BELL+ME_WAITTANG),
  405.            my_filename(info->file),my_errno);
  406.     info->error=(int) (read_length+left_length);
  407.     return 1;
  408.       }
  409.     }
  410.     else
  411.     {                        /* Big block, don't cache it */
  412.       if ((read_length=my_read(info->file,Buffer,(uint) Count,info->myflags))
  413.       != Count)
  414.       {
  415.     info->error= read_length == (uint)  -1 ? -1 : read_length+left_length;
  416.     return 1;
  417.       }
  418.       info->rc_pos=info->rc_end=info->rc_request_pos;
  419.       info->pos_in_file=(next_pos_in_file+=Count);
  420.     }
  421.   }
  422.  
  423.     /* Read next block with asyncronic io */
  424.   max_length=info->end_of_file - next_pos_in_file;
  425.   diff_length=(next_pos_in_file & (IO_SIZE-1));
  426.  
  427.   if (max_length > (my_off_t) info->read_length - diff_length)
  428.     max_length= (my_off_t) info->read_length - diff_length;
  429.   if (info->rc_request_pos != info->buffer)
  430.     read_buffer=info->buffer;
  431.   else
  432.     read_buffer=info->buffer+info->read_length;
  433.   info->aio_read_pos=next_pos_in_file;
  434.   if (max_length)
  435.   {
  436.     info->aio_result.result.aio_errno=AIO_INPROGRESS;    /* Marker for test */
  437.     DBUG_PRINT("aioread",("filepos: %ld  length: %ld",
  438.               (ulong) next_pos_in_file,(ulong) max_length));
  439.     if (aioread(info->file,read_buffer,(int) max_length,
  440.         (my_off_t) next_pos_in_file,MY_SEEK_SET,
  441.         &info->aio_result.result))
  442.     {                        /* Skipp async io */
  443.       my_errno=errno;
  444.       DBUG_PRINT("error",("got error: %d, aio_result: %d from aioread, async skipped",
  445.               errno, info->aio_result.result.aio_errno));
  446.       if (info->rc_request_pos != info->buffer)
  447.       {
  448.     bmove(info->buffer,info->rc_request_pos,
  449.           (uint) (info->rc_end - info->rc_pos));
  450.     info->rc_request_pos=info->buffer;
  451.     info->rc_pos-=info->read_length;
  452.     info->rc_end-=info->read_length;
  453.       }
  454.       info->read_length=info->buffer_length;    /* Use hole buffer */
  455.       info->read_function=_my_b_read;        /* Use normal IO_READ next */
  456.     }
  457.     else
  458.       info->inited=info->aio_result.pending=1;
  459.   }
  460.   return 0;                    /* Block read, async in use */
  461. } /* _my_b_async_read */
  462. #endif
  463.  
  464.  
  465. /* Read one byte when buffer is empty */
  466.  
  467. int _my_b_get(IO_CACHE *info)
  468. {
  469.   byte buff;
  470.   if ((*(info)->read_function)(info,&buff,1))
  471.     return my_b_EOF;
  472.   return (int) (uchar) buff;
  473. }
  474.  
  475.     /* Returns != 0 if error on write */
  476.  
  477. int _my_b_write(register IO_CACHE *info, const byte *Buffer, uint Count)
  478. {
  479.   uint rest_length,length;
  480.  
  481.   rest_length=(uint) (info->rc_end - info->rc_pos);
  482.   memcpy(info->rc_pos,Buffer,(size_t) rest_length);
  483.   Buffer+=rest_length;
  484.   Count-=rest_length;
  485.   info->rc_pos+=rest_length;
  486.   if (flush_io_cache(info))
  487.     return 1;
  488.   if (Count >= IO_SIZE)
  489.   {                    /* Fill first intern buffer */
  490.     length=Count & (uint) ~(IO_SIZE-1);
  491.     if (info->seek_not_done)
  492.     {                    /* File touched, do seek */
  493.       VOID(my_seek(info->file,info->pos_in_file,MY_SEEK_SET,MYF(0)));
  494.       info->seek_not_done=0;
  495.     }
  496.     if (my_write(info->file,Buffer,(uint) length,info->myflags | MY_NABP))
  497.       return info->error= -1;
  498.     Count-=length;
  499.     Buffer+=length;
  500.     info->pos_in_file+=length;
  501.   }
  502.   memcpy(info->rc_pos,Buffer,(size_t) Count);
  503.   info->rc_pos+=Count;
  504.   return 0;
  505. }
  506.  
  507.  
  508. /*
  509.   Write a block to disk where part of the data may be inside the record
  510.   buffer.  As all write calls to the data goes through the cache,
  511.   we will never get a seek over the end of the buffer
  512. */
  513.  
  514. int my_block_write(register IO_CACHE *info, const byte *Buffer, uint Count,
  515.            my_off_t pos)
  516. {
  517.   uint length;
  518.   int error=0;
  519.  
  520.   if (pos < info->pos_in_file)
  521.   {
  522.     /* Of no overlap, write everything without buffering */
  523.     if (pos + Count <= info->pos_in_file)
  524.       return my_pwrite(info->file, Buffer, Count, pos,
  525.                info->myflags | MY_NABP);
  526.     /* Write the part of the block that is before buffer */
  527.     length= (uint) (info->pos_in_file - pos);
  528.     if (my_pwrite(info->file, Buffer, length, pos, info->myflags | MY_NABP))
  529.       info->error=error=-1;
  530.     Buffer+=length;
  531.     pos+=  length;
  532.     Count-= length;
  533.   }
  534.  
  535.   /* Check if we want to write inside the used part of the buffer.*/
  536.   length= (uint) (info->rc_end - info->buffer);
  537.   if (pos < info->pos_in_file + length)
  538.   {
  539.     uint offset= (uint) (pos - info->pos_in_file);
  540.     length-=offset;
  541.     if (length > Count)
  542.       length=Count;
  543.     memcpy(info->buffer+offset, Buffer, length);
  544.     Buffer+=length;
  545.     Count-= length;
  546.     /* Fix length of buffer if the new data was larger */
  547.     if (info->buffer+length > info->rc_pos)
  548.       info->rc_pos=info->buffer+length;
  549.     if (!Count)
  550.       return (error);
  551.   }
  552.   /* Write at the end of the current buffer; This is the normal case */
  553.   if (_my_b_write(info, Buffer, Count))
  554.     error= -1;
  555.   return error;
  556. }
  557.  
  558.     /* Flush write cache */
  559.  
  560. int flush_io_cache(IO_CACHE *info)
  561. {
  562.   uint length;
  563.   DBUG_ENTER("flush_io_cache");
  564.  
  565.   if (info->type == WRITE_CACHE)
  566.   {
  567.     if (info->file == -1)
  568.     {
  569.       if (real_open_cached_file(info))
  570.     DBUG_RETURN((info->error= -1));
  571.     }
  572.     if (info->rc_pos != info->buffer)
  573.     {
  574.       length=(uint) (info->rc_pos - info->buffer);
  575.       if (info->seek_not_done)
  576.       {                    /* File touched, do seek */
  577.     if (my_seek(info->file,info->pos_in_file,MY_SEEK_SET,MYF(0)) ==
  578.         MY_FILEPOS_ERROR)
  579.       DBUG_RETURN((info->error= -1));
  580.     info->seek_not_done=0;
  581.       }
  582.       info->rc_pos=info->buffer;
  583.       info->pos_in_file+=length;
  584.       info->rc_end=(info->buffer+info->buffer_length-
  585.             (info->pos_in_file & (IO_SIZE-1)));
  586.       if (my_write(info->file,info->buffer,length,info->myflags | MY_NABP))
  587.     DBUG_RETURN((info->error= -1));
  588.       DBUG_RETURN(0);
  589.     }
  590.   }
  591. #ifdef HAVE_AIOWAIT
  592.   else
  593.   {
  594.     my_aiowait(&info->aio_result);    /* Wait for outstanding req */
  595.     info->inited=0;
  596.   }
  597. #endif
  598.   DBUG_RETURN(0);
  599. }
  600.  
  601.  
  602. int end_io_cache(IO_CACHE *info)
  603. {
  604.   int error=0;
  605.   DBUG_ENTER("end_io_cache");
  606.   if (info->buffer)
  607.   {
  608.     if (info->file != -1)            /* File doesn't exist */
  609.       error=flush_io_cache(info);
  610.     my_free((gptr) info->buffer,MYF(MY_WME));
  611.     info->buffer=info->rc_pos=(byte*) 0;
  612.   }
  613.   DBUG_RETURN(error);
  614. } /* end_io_cache */
  615.