123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2012 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #ifndef _FILESTREAM_H_
- #define _FILESTREAM_H_
- #ifndef _VOLUME_H_
- #include "core/volume.h"
- #endif
- #ifndef _STREAM_H_
- #include "core/stream/stream.h"
- #endif
- class FileStream : public Stream
- {
- public:
- enum : U32
- {
- BUFFER_SIZE = 8 * 1024, // this can be changed to anything appropriate [in k]
- BUFFER_INVALID = 0xffffffff // file offsets must all be less than this
- };
- typedef char Ch; //!< Character type. Only support char.
- public:
- FileStream(); // default constructor
- virtual ~FileStream(); // destructor
- // This function will allocate a new FileStream and open it.
- // If it fails to allocate or fails to open, it will return NULL.
- // The caller is responsible for deleting the instance.
- static FileStream *createAndOpen(const String &inFileName, Torque::FS::File::AccessMode inMode);
- // mandatory methods from Stream base class...
- virtual bool hasCapability(const Capability i_cap) const;
- virtual U32 getPosition() const;
- virtual bool setPosition(const U32 i_newPosition);
- virtual U32 getStreamSize();
- // additional methods needed for a file stream...
- virtual bool open(const String &inFileName, Torque::FS::File::AccessMode inMode);
- virtual void close();
- bool flush();
- //rjson compatibility
- bool Flush() { return flush(); }
- FileStream* clone() const;
- protected:
- // more mandatory methods from Stream base class...
- virtual bool _read(const U32 i_numBytes, void *o_pBuffer);
- virtual bool _write(const U32 i_numBytes, const void* i_pBuffer);
- void init();
- bool fillBuffer(const U32 i_startPosition);
- void clearBuffer();
- static void calcBlockHead(const U32 i_position, U32 *o_blockHead);
- static void calcBlockBounds(const U32 i_position, U32 *o_blockHead, U32 *o_blockTail);
- void setStatus();
- U32 mStreamCaps; // dependent on access mode
- private:
- Torque::FS::FileRef mFile; // file being streamed
- U8 mBuffer[BUFFER_SIZE];
- U32 mBuffHead; // first valid position of buffer (from start-of-file)
- U32 mBuffPos; // next read or write will occur here
- U32 mBuffTail; // last valid position in buffer (inclusive)
- bool mDirty; // whether buffer has been written to
- bool mEOF; // whether disk reads have reached the end-of-file
- FileStream(const FileStream &i_fileStrm); // disable copy constructor
- FileStream& operator=(const FileStream &i_fileStrm); // disable assignment operator
- };
- #endif // _FILE_STREAM_H
|