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

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