BufFile.cpp
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:3k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001,2002,2003 Mike Matsnev.  All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice immediately at the beginning of the file, without modification,
  10.  *    this list of conditions, and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. Absolutely no warranty of function or purpose is made by the author
  15.  *    Mike Matsnev.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * 
  28.  * $Id: BufFile.cpp,v 1.24.2.1 2003/04/12 22:52:32 mike Exp $
  29.  * 
  30.  */
  31. //#include <afx.h>
  32. #include "stdafx.h"
  33. #include "ptr.h"
  34. #include "BufFile.h"
  35. #ifdef _DEBUG
  36. #undef THIS_FILE
  37. static char THIS_FILE[]=__FILE__;
  38. #define new DEBUG_NEW
  39. #endif
  40. CBufFile::CBufFile(kilo::auto_ptr<RFile> file) :
  41.   m_fp(file),
  42.   m_ptr(0)
  43. {
  44.   m_cur=&m_b1;
  45. }
  46. void CBufFile::swapbuf() {
  47.   if (m_cur->len)
  48.     m_cur=m_cur==&m_b1 ? &m_b2 : &m_b1;
  49. }
  50. int CBufFile::nextbuf_ch()
  51. {
  52.   seek(m_cur->off+m_ptr);
  53.   return m_ptr<m_cur->len ? m_cur->buf[m_ptr++] : BEOF;
  54. }
  55. int CBufFile::read(void *buf,int count) {
  56.   BYTE   *bp=(BYTE*)buf;
  57.   while (count>0) {
  58.     // fill in our buffer
  59.     if (m_ptr>=m_cur->len)
  60.       seek(m_cur->off+m_ptr);
  61.     // if there are no bytes still, then exit
  62.     if (m_ptr>=m_cur->len)
  63.       break;
  64.     // copy whatever is left in our buffer
  65.     int   nb=m_cur->len-m_ptr;
  66.     if (nb>count)
  67.       nb=count;
  68.     memcpy(bp,m_cur->buf+m_ptr,nb);
  69.     m_ptr+=nb;
  70.     bp+=nb;
  71.     count-=nb;
  72.   }
  73.   return bp-(BYTE*)buf;
  74. }
  75. void  CBufFile::seek(DWORD pos) {
  76.   if (pos>=m_cur->off && pos<m_cur->off+m_cur->len) // inside current buffer
  77.     m_ptr=pos-m_cur->off;
  78.   else {
  79.     swapbuf();
  80.     if (pos>=m_cur->off && pos<m_cur->off+m_cur->len) // inside other buffer
  81.       m_ptr=pos-m_cur->off;
  82.     else if (pos>=m_fp->size()) { // don't seek past eof
  83.       m_cur->off=pos;
  84.       m_cur->len=m_ptr=0;
  85.     } else { // do seek on underlying file and fill next buffer
  86.       m_cur->off=pos&RFile::BMASK;
  87.       m_fp->seek(m_cur->off);
  88.       m_cur->len=m_fp->read(m_cur->buf);
  89.       m_ptr=pos-m_cur->off;
  90.     }
  91.   }
  92. }