diff -r f9893eea978b -r bc1414343e19 src/bytestream.cpp --- a/src/bytestream.cpp Wed Jul 17 19:45:19 2013 +0300 +++ b/src/bytestream.cpp Sun Aug 11 02:58:55 2013 +0300 @@ -7,38 +7,38 @@ float f; } g_floatunion; -Bytestream::Bytestream( ulong len ) { +Bytestream::Bytestream (ulong len) { m_data = null; - resize( len ); + resize (len); clear(); } -Bytestream::Bytestream( const char* data, ulong len ) { +Bytestream::Bytestream (const char* data, ulong len) { m_data = null; - init( data, len ); + init (data, len); } -void Bytestream::resize( ulong newsize ) { +void Bytestream::resize (ulong newsize) { char* olddata = null; ulong oldsize; - - if( m_data ) { + + if (m_data) { oldsize = m_size; olddata = new char[oldsize]; - memcpy( olddata, m_data, oldsize ); + memcpy (olddata, m_data, oldsize); } - + delete[] m_data; m_data = new uint8[newsize]; m_size = newsize; - - if( olddata ) - memcpy( m_data, olddata, min ( oldsize, newsize )); + + if (olddata) + memcpy (m_data, olddata, min (oldsize, newsize)); } -void Bytestream::init( const char* data, ulong len ) { - resize( len ); - memcpy( m_data, data, len ); +void Bytestream::init (const char* data, ulong len) { + resize (len); + memcpy (m_data, data, len); m_ptr = &m_data[0]; m_len = len; } @@ -52,15 +52,15 @@ m_len = 0; } -uint8& Bytestream::subscript( ulong idx ) { +uint8& Bytestream::subscript (ulong idx) { return m_data[idx]; } -const uint8& Bytestream::const_subscript( ulong idx ) const { +const uint8& Bytestream::const_subscript (ulong idx) const { return m_data[idx]; } -void Bytestream::seek( ulong pos ) { +void Bytestream::seek (ulong pos) { m_ptr = m_data + pos; } @@ -70,51 +70,51 @@ } ulong Bytestream::bytesLeft() const { - return ( m_len - ( m_ptr - &m_data[0] )); + return (m_len - (m_ptr - &m_data[0])); } ulong Bytestream::spaceLeft() const { - return ( m_size - m_len ); + return (m_size - m_len); } // ============================================================================= -bool Bytestream::readByte( uint8& val ) { - if( bytesLeft() < 1 ) +bool Bytestream::readByte (uint8& val) { + if (bytesLeft() < 1) return false; - + val = *m_ptr++; return true; } // ============================================================================= -bool Bytestream::readShort( uint16& val ) { - if( bytesLeft() < 2 ) +bool Bytestream::readShort (uint16& val) { + if (bytesLeft() < 2) return false; - + val = 0; - - for( int i = 0; i < 2; ++i ) - val |= *m_ptr++ << ( i * 8 ); + + for (int i = 0; i < 2; ++i) + val |= *m_ptr++ << (i * 8); return true; } // ============================================================================= -bool Bytestream::readLong( uint32& val ) { - if( bytesLeft() < 4 ) +bool Bytestream::readLong (uint32& val) { + if (bytesLeft() < 4) return false; - + val = 0; - - for( int i = 0; i < 4; ++i ) - val |= *m_ptr++ << ( i * 8 ); - + + for (int i = 0; i < 4; ++i) + val |= *m_ptr++ << (i * 8); + return true; } // ============================================================================= -bool Bytestream::readFloat( float& val ) { - if( !readLong( g_floatunion.i )) +bool Bytestream::readFloat (float& val) { + if (!readLong (g_floatunion.i)) return false; val = g_floatunion.f; @@ -122,104 +122,104 @@ } // ============================================================================= -bool Bytestream::readString( str& val ) { - if( bytesLeft() < 1 ) // need at least the null terminator +bool Bytestream::readString (str& val) { + if (bytesLeft() < 1) // need at least the null terminator return false; - + uint8_t c; - - while( readByte( c ) && c != '\0' ) - val += ( char ) c; - + + while (readByte (c) && c != '\0') + val += (char) c; + return true; } // ============================================================================= -void Bytestream::doWrite( uint8_t val ) { +void Bytestream::doWrite (uint8_t val) { *m_ptr++ = val; m_len++; } -void Bytestream::growToFit( ulong bytes ) { - if( spaceLeft() < bytes ) - resize( m_size + bytes + 128 ); +void Bytestream::growToFit (ulong bytes) { + if (spaceLeft() < bytes) + resize (m_size + bytes + 128); } -bool Bytestream::readBytes( uint8 numbytes, uint8* val ) { - while( numbytes-- ) - if( !readByte( *val++ )) +bool Bytestream::readBytes (uint8 numbytes, uint8* val) { + while (numbytes--) + if (!readByte (*val++)) return false; - + return true; } -void Bytestream::writeBytes( uint8 numbytes, const uint8* val ) { - growToFit( numbytes ); - - while( numbytes-- ) - writeByte( *val++ ); +void Bytestream::writeBytes (uint8 numbytes, const uint8* val) { + growToFit (numbytes); + + while (numbytes--) + writeByte (*val++); } // ============================================================================= -void Bytestream::writeByte( uint8 val ) { - growToFit( 1 ); - doWrite( val ); +void Bytestream::writeByte (uint8 val) { + growToFit (1); + doWrite (val); } // ============================================================================= -void Bytestream::writeShort( uint16 val ) { - growToFit( 2 ); - - for( int i = 0; i < 2; ++i ) - doWrite(( val >> ( i * 8 )) & 0xFF ); +void Bytestream::writeShort (uint16 val) { + growToFit (2); + + for (int i = 0; i < 2; ++i) + doWrite ( (val >> (i * 8)) & 0xFF); } // ============================================================================= -void Bytestream::writeLong( uint32 val ) { - growToFit( 4 ); - - for( int i = 0; i < 4; ++i ) - doWrite(( val >> ( i * 8 )) & 0xFF ); +void Bytestream::writeLong (uint32 val) { + growToFit (4); + + for (int i = 0; i < 4; ++i) + doWrite ( (val >> (i * 8)) & 0xFF); } // ============================================================================= -void Bytestream::writeFloat( float val ) { +void Bytestream::writeFloat (float val) { g_floatunion.f = val; - writeLong( g_floatunion.i ); + writeLong (g_floatunion.i); } // ============================================================================= -void Bytestream::writeString( str val ) { - growToFit( val.length() + 1 ); - - for( qchar c : val ) - doWrite( c.toAscii() ); - - doWrite( '\0' ); +void Bytestream::writeString (str val) { + growToFit (val.length() + 1); + +for (qchar c : val) + doWrite (c.toAscii()); + + doWrite ('\0'); } // ============================================================================= -bool Bytestream::tryMerge( const Bytestream& other ) { - if( spaceLeft() < other.len() ) +bool Bytestream::tryMerge (const Bytestream& other) { + if (spaceLeft() < other.len()) return false; - - for( ulong i = 0; i < other.len(); ++i ) - writeByte( other[i] ); - + + for (ulong i = 0; i < other.len(); ++i) + writeByte (other[i]); + return true; } -void Bytestream::merge( const Bytestream& other ) { - growToFit( other.len() ); - - if( !tryMerge( other )) { +void Bytestream::merge (const Bytestream& other) { + growToFit (other.len()); + + if (!tryMerge (other)) { // Shouldn't happen - fprint( stderr, "ByteStream: Not enough space for merge (%1 bytes left, need %2)", - spaceLeft(), other.len() ); + fprint (stderr, "ByteStream: Not enough space for merge (%1 bytes left, need %2)", + spaceLeft(), other.len()); abort(); } } const uint8* Bytestream::data() const { return m_data; -} \ No newline at end of file +}