/* * HLLib * Copyright (C) 2006 Ryan Gregg * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later * version. */ #ifndef MAPPINGSTREAM_H #define MAPPINGSTREAM_H #include "stdafx.h" #include "Stream.h" #include "Mapping.h" namespace HLLib { namespace Streams { class HLLIB_API CMappingStream : public IStream { private: hlBool bOpened; hlUInt uiMode; Mapping::CMapping &Mapping; Mapping::CView *pView; hlUInt uiMappingOffset; hlUInt uiMappingSize; hlUInt uiViewSize; hlUInt uiPointer; hlUInt uiLength; public: CMappingStream(Mapping::CMapping &Mapping, hlUInt uiMappingOffset, hlUInt uiMappingSize, hlUInt uiViewSize = 0); ~CMappingStream(); virtual HLStreamType GetType() const; const Mapping::CMapping &GetMapping() const; virtual const hlChar *GetFileName() const; virtual hlBool GetOpened() const; virtual hlUInt GetMode() const; virtual hlBool Open(hlUInt uiMode); virtual hlVoid Close(); virtual hlUInt GetStreamSize() const; virtual hlUInt GetStreamPointer() const; virtual hlUInt Seek(hlLong iOffset, HLSeekMode eSeekMode); virtual hlBool Read(hlChar &cChar); virtual hlUInt Read(hlVoid *lpData, hlUInt uiBytes); virtual hlBool Write(hlChar cChar); virtual hlUInt Write(const hlVoid *lpData, hlUInt uiBytes); private: hlBool Map(hlUInt uiPointer); }; } } #endif