123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- //-----------------------------------------------------------------------------
- // 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.
- //-----------------------------------------------------------------------------
- #include "platform/platform.h"
- #include "core/stream/memStream.h"
- MemStream::MemStream( U32 growSize,
- bool allowRead,
- bool allowWrite )
- : mGrowSize( growSize ),
- mBufferSize( 0 ),
- mStreamSize( 0 ),
- mBufferBase( NULL ),
- mInstCaps( 0 ),
- mCurrentPosition( 0 )
- {
- AssertFatal( allowRead || allowWrite, "Either write or read must be allowed" );
- if ( allowRead )
- mInstCaps |= Stream::StreamRead;
- if ( allowWrite )
- mInstCaps |= Stream::StreamWrite;
- mOwnsMemory = true;
- setStatus( mGrowSize > 0 ? Ok : EOS );
- }
- MemStream::MemStream( U32 bufferSize,
- void *buffer,
- bool allowRead,
- bool allowWrite)
- : mGrowSize( 0 ),
- mBufferSize( bufferSize ),
- mStreamSize( bufferSize ),
- mBufferBase( buffer ),
- mInstCaps( 0 ),
- mOwnsMemory( false ),
- mCurrentPosition( 0 )
- {
- AssertFatal( bufferSize > 0, "Invalid buffer size");
- AssertFatal( allowRead || allowWrite, "Either write or read must be allowed");
- if ( allowRead )
- mInstCaps |= Stream::StreamRead;
- if ( allowWrite )
- mInstCaps |= Stream::StreamWrite;
- if ( !buffer )
- {
- mOwnsMemory = true;
- mBufferBase = dMalloc( mBufferSize );
- }
- setStatus( Ok );
- }
- MemStream::~MemStream()
- {
- if ( mOwnsMemory )
- dFree( mBufferBase );
- mBufferBase = NULL;
- mCurrentPosition = 0;
- setStatus( Closed );
- }
- U32 MemStream::getStreamSize()
- {
- AssertFatal( getStatus() != Closed, "Stream not open, size undefined" );
- return mStreamSize;
- }
- bool MemStream::hasCapability(const Capability in_cap) const
- {
- // Closed streams can't do anything
- //
- if (getStatus() == Closed)
- return false;
- U32 totalCaps = U32(Stream::StreamPosition) | mInstCaps;
- return (U32(in_cap) & totalCaps) != 0;
- }
- U32 MemStream::getPosition() const
- {
- AssertFatal(getStatus() != Closed, "Position of a closed stream is undefined");
- return mCurrentPosition;
- }
- bool MemStream::setPosition(const U32 in_newPosition)
- {
- AssertFatal(getStatus() != Closed, "SetPosition of a closed stream is not allowed");
- AssertFatal(in_newPosition <= mStreamSize, "Invalid position");
- mCurrentPosition = in_newPosition;
- if (mCurrentPosition > mStreamSize) {
- // Never gets here in debug version, this is for the release builds...
- //
- setStatus(UnknownError);
- return false;
- } else if (mCurrentPosition == mStreamSize) {
- setStatus(EOS);
- } else {
- setStatus(Ok);
- }
- return true;
- }
- bool MemStream::_read(const U32 in_numBytes, void *out_pBuffer)
- {
- AssertFatal(getStatus() != Closed, "Attempted read from a closed stream");
- if (in_numBytes == 0)
- return true;
- AssertFatal(out_pBuffer != NULL, "Invalid output buffer");
- if (hasCapability(StreamRead) == false) {
- AssertWarn(false, "Reading is disallowed on this stream");
- setStatus(IllegalCall);
- return false;
- }
- bool success = true;
- U32 actualBytes = in_numBytes;
- if ((mCurrentPosition + in_numBytes) > mStreamSize) {
- success = false;
- actualBytes = mStreamSize - mCurrentPosition;
- }
- // Obtain a current pointer, and do the copy
- const void* pCurrent = (const void*)((const U8*)mBufferBase + mCurrentPosition);
- dMemcpy(out_pBuffer, pCurrent, actualBytes);
- // Advance the stream position
- mCurrentPosition += actualBytes;
- if (!success)
- setStatus(EOS);
- else
- setStatus(Ok);
- return success;
- }
- bool MemStream::_write(const U32 in_numBytes, const void *in_pBuffer)
- {
- AssertFatal(getStatus() != Closed, "Attempted write to a closed stream");
- if (in_numBytes == 0)
- return true;
- if (hasCapability(StreamWrite) == false)
- {
- AssertWarn(0, "Writing is disallowed on this stream");
- setStatus(IllegalCall);
- return false;
- }
- bool success = true;
- U32 actualBytes = in_numBytes;
- if ((mCurrentPosition + in_numBytes) > mBufferSize)
- {
- if ( mGrowSize > 0 )
- {
- U32 growSize = (mCurrentPosition + in_numBytes) - mBufferSize;
- mBufferSize += growSize + ( mGrowSize - ( growSize % mGrowSize ) );
- mBufferBase = dRealloc( mBufferBase, mBufferSize );
- }
- else
- {
- success = false;
- actualBytes = mBufferSize - mCurrentPosition;
- }
- }
- AssertFatal(in_pBuffer != NULL, "Invalid input buffer");
- // Obtain a current pointer, and do the copy
- void* pCurrent = (void*)((U8*)mBufferBase + mCurrentPosition);
- dMemcpy(pCurrent, in_pBuffer, actualBytes);
- // Advance the stream position
- mCurrentPosition += actualBytes;
- if (mCurrentPosition > mStreamSize)
- mStreamSize = mCurrentPosition;
- if (mCurrentPosition == mStreamSize)
- setStatus(EOS);
- else
- setStatus(Ok);
- return success;
- }
- void *MemStream::takeBuffer()
- {
- void *buffer = mBufferBase;
-
- mBufferBase = NULL;
- mBufferSize = 0;
- mStreamSize = 0;
- mCurrentPosition = 0;
- setStatus(EOS);
- return buffer;
- }
|