RFile.h
上传用户: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: RFile.h,v 1.11.2.4 2005/06/18 16:29:27 mike Exp $
  29.  * 
  30.  */
  31. #if !defined(AFX_RFILE_H__3965961A_8172_4D80_990B_CC46A6EE9D62__INCLUDED_)
  32. #define AFX_RFILE_H__3965961A_8172_4D80_990B_CC46A6EE9D62__INCLUDED_
  33. #if _MSC_VER > 1000
  34. #pragma once
  35. #endif // _MSC_VER > 1000
  36. // block oriented file i/o
  37. class RFile  
  38. {
  39. public:
  40.   static int  BSZ,BMASK; // block size, must be a power of two
  41.   RFile(const CString& filename) : m_fh(INVALID_HANDLE_VALUE),
  42.     m_fn(filename), m_didreopen(false), m_diderror(false),
  43.     m_ptr(0) { }
  44.   virtual ~RFile() {
  45.     if (m_fh != INVALID_HANDLE_VALUE)
  46.       CloseHandle(m_fh);
  47.   }
  48.   // generic file operations
  49.   virtual DWORD   size();
  50.   virtual DWORD   read(void *buf);
  51.   virtual void   seek(DWORD pos);
  52.   // compression
  53.   virtual CString CompressionInfo() { return _T("None"); }
  54.   // buffer size setting
  55.   static void   InitBufSize();
  56.   // RFile helpers
  57.   bool   Reopen();
  58.   void   ShowError();
  59.   DWORD   read2(void *buf,DWORD size);
  60. protected:
  61.   HANDLE   m_fh;
  62.   CString   m_fn;
  63.   DWORD   m_ptr;
  64.   bool   m_didreopen;
  65.   bool   m_diderror;
  66.   void   seek2(DWORD where,DWORD how);
  67.   DWORD   pos();
  68. };
  69. // I/O error messages
  70. CString FileExceptionInfo(const CString& filename,DWORD dwError);
  71. CString FileName(const CString& file);
  72. #endif // !defined(AFX_RFILE_H__3965961A_8172_4D80_990B_CC46A6EE9D62__INCLUDED_)