2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2004-04-17 09:57:15 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2004-04-17 09:57:15 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2004-04-17 09:57:15 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-04-17 09:57:15 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMON_STREAM_H
|
|
|
|
#define COMMON_STREAM_H
|
|
|
|
|
2009-09-11 08:55:47 +00:00
|
|
|
#include "common/endian.h"
|
2011-04-24 08:34:27 +00:00
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/str.h"
|
2004-04-17 09:57:15 +00:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
2010-11-19 17:03:07 +00:00
|
|
|
class SeekableReadStream;
|
2005-04-22 17:40:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Virtual base class for both ReadStream and WriteStream.
|
|
|
|
*/
|
|
|
|
class Stream {
|
|
|
|
public:
|
2005-06-20 17:59:00 +00:00
|
|
|
virtual ~Stream() {}
|
|
|
|
|
2008-09-14 22:28:53 +00:00
|
|
|
/**
|
|
|
|
* Returns true if an I/O failure occurred.
|
|
|
|
* This flag is never cleared automatically. In order to clear it,
|
|
|
|
* client code has to call clearErr() explicitly.
|
2011-05-18 11:06:41 +00:00
|
|
|
*
|
|
|
|
* @note The semantics of any implementation of this method are
|
|
|
|
* supposed to match those of ISO C ferror().
|
2008-09-14 22:28:53 +00:00
|
|
|
*/
|
|
|
|
virtual bool err() const { return false; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset the I/O error status as returned by err().
|
|
|
|
* For a ReadStream, also reset the end-of-stream status returned by eos().
|
2011-05-18 11:06:41 +00:00
|
|
|
*
|
|
|
|
* @note The semantics of any implementation of this method are
|
|
|
|
* supposed to match those of ISO C clearerr().
|
2008-09-14 22:28:53 +00:00
|
|
|
*/
|
|
|
|
virtual void clearErr() {}
|
2005-04-22 17:40:09 +00:00
|
|
|
};
|
|
|
|
|
2004-12-11 23:16:36 +00:00
|
|
|
/**
|
|
|
|
* Generic interface for a writable data stream.
|
|
|
|
*/
|
2005-04-22 17:40:09 +00:00
|
|
|
class WriteStream : virtual public Stream {
|
2004-04-17 09:57:15 +00:00
|
|
|
public:
|
2004-12-11 23:16:36 +00:00
|
|
|
/**
|
|
|
|
* Write data into the stream. Subclasses must implement this
|
|
|
|
* method; all other write methods are implemented using it.
|
|
|
|
*
|
2011-05-18 11:06:41 +00:00
|
|
|
* @note The semantics of any implementation of this method are
|
|
|
|
* supposed to match those of ISO C fwrite().
|
|
|
|
*
|
2005-05-05 15:59:24 +00:00
|
|
|
* @param dataPtr pointer to the data to be written
|
|
|
|
* @param dataSize number of bytes to be written
|
2004-12-11 23:16:36 +00:00
|
|
|
* @return the number of bytes which were actually written.
|
|
|
|
*/
|
2005-05-05 15:59:24 +00:00
|
|
|
virtual uint32 write(const void *dataPtr, uint32 dataSize) = 0;
|
2004-04-17 09:57:15 +00:00
|
|
|
|
2005-10-13 18:50:53 +00:00
|
|
|
/**
|
|
|
|
* Commit any buffered data to the underlying channel or
|
|
|
|
* storage medium; unbuffered streams can use the default
|
|
|
|
* implementation.
|
2008-09-13 16:51:46 +00:00
|
|
|
*
|
2011-05-18 11:06:41 +00:00
|
|
|
* @note The semantics of any implementation of this method are
|
|
|
|
* supposed to match those of ISO C fflush().
|
|
|
|
*
|
2008-09-13 16:51:46 +00:00
|
|
|
* @return true on success, false in case of a failure
|
2005-10-13 18:50:53 +00:00
|
|
|
*/
|
2008-09-13 16:51:46 +00:00
|
|
|
virtual bool flush() { return true; }
|
2004-04-17 09:57:15 +00:00
|
|
|
|
2008-08-04 11:30:47 +00:00
|
|
|
/**
|
|
|
|
* Finalize and close this stream. To be called right before this
|
|
|
|
* stream instance is deleted. The goal here is to enable calling
|
|
|
|
* code to detect and handle I/O errors which might occur when
|
|
|
|
* closing (and this flushing, if buffered) the stream.
|
|
|
|
*
|
|
|
|
* After this method has been called, no further writes may be
|
2008-09-14 22:28:53 +00:00
|
|
|
* performed on the stream. Calling err() is allowed.
|
2008-08-04 11:30:47 +00:00
|
|
|
*
|
|
|
|
* By default, this just flushes the stream.
|
|
|
|
*/
|
|
|
|
virtual void finalize() {
|
|
|
|
flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-11 23:16:36 +00:00
|
|
|
// The remaining methods all have default implementations; subclasses
|
|
|
|
// need not (and should not) overload them.
|
|
|
|
|
|
|
|
void writeByte(byte value) {
|
|
|
|
write(&value, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeSByte(int8 value) {
|
|
|
|
write(&value, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeUint16LE(uint16 value) {
|
2009-09-11 08:55:47 +00:00
|
|
|
value = TO_LE_16(value);
|
|
|
|
write(&value, 2);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void writeUint32LE(uint32 value) {
|
2009-09-11 08:55:47 +00:00
|
|
|
value = TO_LE_32(value);
|
|
|
|
write(&value, 4);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
void writeUint64LE(uint64 value) {
|
|
|
|
value = TO_LE_64(value);
|
|
|
|
write(&value, 8);
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2004-12-11 23:16:36 +00:00
|
|
|
void writeUint16BE(uint16 value) {
|
2009-09-11 08:55:47 +00:00
|
|
|
value = TO_BE_16(value);
|
|
|
|
write(&value, 2);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void writeUint32BE(uint32 value) {
|
2009-09-11 08:55:47 +00:00
|
|
|
value = TO_BE_32(value);
|
|
|
|
write(&value, 4);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
void writeUint64BE(uint64 value) {
|
|
|
|
value = TO_BE_64(value);
|
|
|
|
write(&value, 8);
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE void writeSint16LE(int16 value) {
|
2004-12-11 23:16:36 +00:00
|
|
|
writeUint16LE((uint16)value);
|
|
|
|
}
|
|
|
|
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE void writeSint32LE(int32 value) {
|
2004-12-11 23:16:36 +00:00
|
|
|
writeUint32LE((uint32)value);
|
|
|
|
}
|
2004-04-17 09:57:15 +00:00
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
FORCEINLINE void writeSint64LE(int64 value) {
|
|
|
|
writeUint64LE((uint64)value);
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE void writeSint16BE(int16 value) {
|
2004-12-11 23:16:36 +00:00
|
|
|
writeUint16BE((uint16)value);
|
|
|
|
}
|
2004-04-17 09:57:15 +00:00
|
|
|
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE void writeSint32BE(int32 value) {
|
2004-12-11 23:16:36 +00:00
|
|
|
writeUint32BE((uint32)value);
|
|
|
|
}
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
FORCEINLINE void writeSint64BE(int64 value) {
|
|
|
|
writeUint64BE((uint64)value);
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2009-03-15 20:30:57 +00:00
|
|
|
/**
|
|
|
|
* Write the given string to the stream.
|
|
|
|
* This writes str.size() characters, but no terminating zero byte.
|
|
|
|
*/
|
2005-04-22 17:40:09 +00:00
|
|
|
void writeString(const String &str);
|
2004-04-17 09:57:15 +00:00
|
|
|
};
|
|
|
|
|
2004-12-11 23:16:36 +00:00
|
|
|
/**
|
|
|
|
* Generic interface for a readable data stream.
|
|
|
|
*/
|
2005-04-22 17:40:09 +00:00
|
|
|
class ReadStream : virtual public Stream {
|
2004-04-17 09:57:15 +00:00
|
|
|
public:
|
2005-04-28 20:59:19 +00:00
|
|
|
/**
|
2010-05-27 20:59:15 +00:00
|
|
|
* Returns true if a read failed because the stream end has been reached.
|
2008-09-14 22:28:53 +00:00
|
|
|
* This flag is cleared by clearErr().
|
|
|
|
* For a SeekableReadStream, it is also cleared by a successful seek.
|
2011-05-18 11:06:41 +00:00
|
|
|
*
|
|
|
|
* @note The semantics of any implementation of this method are
|
|
|
|
* supposed to match those of ISO C feof(). In particular, in a stream
|
|
|
|
* with N bytes, reading exactly N bytes from the start should *not*
|
|
|
|
* set eos; only reading *beyond* the available data should set it.
|
2005-04-28 20:59:19 +00:00
|
|
|
*/
|
|
|
|
virtual bool eos() const = 0;
|
|
|
|
|
2004-12-11 23:16:36 +00:00
|
|
|
/**
|
|
|
|
* Read data from the stream. Subclasses must implement this
|
|
|
|
* method; all other read methods are implemented using it.
|
|
|
|
*
|
2011-05-18 11:06:41 +00:00
|
|
|
* @note The semantics of any implementation of this method are
|
|
|
|
* supposed to match those of ISO C fread(), in particular where
|
|
|
|
* it concerns setting error and end of file/stream flags.
|
|
|
|
*
|
2005-05-05 15:59:24 +00:00
|
|
|
* @param dataPtr pointer to a buffer into which the data is read
|
|
|
|
* @param dataSize number of bytes to be read
|
2004-12-11 23:16:36 +00:00
|
|
|
* @return the number of bytes which were actually read.
|
|
|
|
*/
|
2005-05-05 15:59:24 +00:00
|
|
|
virtual uint32 read(void *dataPtr, uint32 dataSize) = 0;
|
2004-04-17 09:57:15 +00:00
|
|
|
|
|
|
|
|
2004-12-11 23:16:36 +00:00
|
|
|
// The remaining methods all have default implementations; subclasses
|
2008-09-14 21:26:59 +00:00
|
|
|
// in general should not overload them.
|
2004-04-17 09:57:15 +00:00
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
2008-09-14 21:26:59 +00:00
|
|
|
* Read an unsigned byte from the stream and return it.
|
2007-02-25 18:35:51 +00:00
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2004-12-11 23:16:36 +00:00
|
|
|
byte readByte() {
|
2009-09-11 08:55:47 +00:00
|
|
|
byte b = 0; // FIXME: remove initialisation
|
2004-12-11 23:16:36 +00:00
|
|
|
read(&b, 1);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read a signed byte from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-12-22 11:22:15 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE int8 readSByte() {
|
|
|
|
return (int8)readByte();
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read an unsigned 16-bit word stored in little endian (LSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2004-12-11 23:16:36 +00:00
|
|
|
uint16 readUint16LE() {
|
2009-09-11 08:55:47 +00:00
|
|
|
uint16 val;
|
|
|
|
read(&val, 2);
|
|
|
|
return FROM_LE_16(val);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read an unsigned 32-bit word stored in little endian (LSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2004-12-11 23:16:36 +00:00
|
|
|
uint32 readUint32LE() {
|
2009-09-11 08:55:47 +00:00
|
|
|
uint32 val;
|
|
|
|
read(&val, 4);
|
|
|
|
return FROM_LE_32(val);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
/**
|
|
|
|
* Read an unsigned 64-bit word stored in little endian (LSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
|
|
|
* if a read error occurred (for which client code can check by
|
|
|
|
* calling err() and eos() ).
|
|
|
|
*/
|
2014-12-21 09:58:19 +00:00
|
|
|
uint64 readUint64LE() {
|
2014-09-16 18:49:27 +00:00
|
|
|
uint64 val;
|
|
|
|
read(&val, 8);
|
|
|
|
return FROM_LE_64(val);
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read an unsigned 16-bit word stored in big endian (MSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2004-12-11 23:16:36 +00:00
|
|
|
uint16 readUint16BE() {
|
2009-09-11 08:55:47 +00:00
|
|
|
uint16 val;
|
|
|
|
read(&val, 2);
|
|
|
|
return FROM_BE_16(val);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read an unsigned 32-bit word stored in big endian (MSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2004-12-11 23:16:36 +00:00
|
|
|
uint32 readUint32BE() {
|
2009-09-11 08:55:47 +00:00
|
|
|
uint32 val;
|
|
|
|
read(&val, 4);
|
|
|
|
return FROM_BE_32(val);
|
2004-12-11 23:16:36 +00:00
|
|
|
}
|
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
/**
|
|
|
|
* Read an unsigned 64-bit word stored in big endian (MSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
|
|
|
* if a read error occurred (for which client code can check by
|
|
|
|
* calling err() and eos() ).
|
|
|
|
*/
|
2014-12-21 09:58:19 +00:00
|
|
|
uint64 readUint64BE() {
|
2014-09-16 18:49:27 +00:00
|
|
|
uint64 val;
|
|
|
|
read(&val, 8);
|
|
|
|
return FROM_BE_64(val);
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read a signed 16-bit word stored in little endian (LSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE int16 readSint16LE() {
|
2004-12-11 23:16:36 +00:00
|
|
|
return (int16)readUint16LE();
|
|
|
|
}
|
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read a signed 32-bit word stored in little endian (LSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE int32 readSint32LE() {
|
2004-12-11 23:16:36 +00:00
|
|
|
return (int32)readUint32LE();
|
|
|
|
}
|
2004-04-17 09:57:15 +00:00
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
/**
|
|
|
|
* Read a signed 64-bit word stored in little endian (LSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
|
|
|
* if a read error occurred (for which client code can check by
|
|
|
|
* calling err() and eos() ).
|
|
|
|
*/
|
|
|
|
FORCEINLINE int64 readSint64LE() {
|
|
|
|
return (int64)readUint64LE();
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read a signed 16-bit word stored in big endian (MSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE int16 readSint16BE() {
|
2004-12-11 23:16:36 +00:00
|
|
|
return (int16)readUint16BE();
|
|
|
|
}
|
2004-04-17 09:57:15 +00:00
|
|
|
|
2007-02-25 18:35:51 +00:00
|
|
|
/**
|
|
|
|
* Read a signed 32-bit word stored in big endian (MSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
2007-02-25 19:08:57 +00:00
|
|
|
* if a read error occurred (for which client code can check by
|
2008-09-14 22:28:53 +00:00
|
|
|
* calling err() and eos() ).
|
2007-02-25 18:35:51 +00:00
|
|
|
*/
|
2009-09-11 08:55:47 +00:00
|
|
|
FORCEINLINE int32 readSint32BE() {
|
2004-12-11 23:16:36 +00:00
|
|
|
return (int32)readUint32BE();
|
|
|
|
}
|
2007-09-19 08:40:12 +00:00
|
|
|
|
2015-01-04 19:47:12 +00:00
|
|
|
#ifdef HAVE_INT64
|
2014-09-16 18:49:27 +00:00
|
|
|
/**
|
|
|
|
* Read a signed 64-bit word stored in big endian (MSB first) order
|
|
|
|
* from the stream and return it.
|
|
|
|
* Performs no error checking. The return value is undefined
|
|
|
|
* if a read error occurred (for which client code can check by
|
|
|
|
* calling err() and eos() ).
|
|
|
|
*/
|
|
|
|
FORCEINLINE int64 readSint64BE() {
|
|
|
|
return (int64)readUint64BE();
|
|
|
|
}
|
2015-01-04 19:47:12 +00:00
|
|
|
#endif
|
2014-09-16 18:49:27 +00:00
|
|
|
|
2007-02-20 21:41:01 +00:00
|
|
|
/**
|
|
|
|
* Read the specified amount of data into a malloc'ed buffer
|
|
|
|
* which then is wrapped into a MemoryReadStream.
|
2007-02-25 18:35:51 +00:00
|
|
|
* The returned stream might contain less data than requested,
|
2008-09-14 22:28:53 +00:00
|
|
|
* if reading more failed, because of an I/O error or because
|
|
|
|
* the end of the stream was reached. Which can be determined by
|
|
|
|
* calling err() and eos().
|
2007-02-20 21:41:01 +00:00
|
|
|
*/
|
2010-11-19 17:03:07 +00:00
|
|
|
SeekableReadStream *readStream(uint32 dataSize);
|
2007-02-20 21:41:01 +00:00
|
|
|
|
2004-04-17 09:57:15 +00:00
|
|
|
};
|
|
|
|
|
2005-01-09 01:41:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for a seekable & readable data stream.
|
|
|
|
*
|
2008-09-13 16:51:46 +00:00
|
|
|
* @todo Get rid of SEEK_SET, SEEK_CUR, or SEEK_END, use our own constants
|
2005-01-09 01:41:43 +00:00
|
|
|
*/
|
2006-11-13 20:58:21 +00:00
|
|
|
class SeekableReadStream : virtual public ReadStream {
|
2005-01-09 01:41:43 +00:00
|
|
|
public:
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2008-09-13 16:51:46 +00:00
|
|
|
/**
|
|
|
|
* Obtains the current value of the stream position indicator of the
|
|
|
|
* stream.
|
|
|
|
*
|
|
|
|
* @return the current position indicator, or -1 if an error occurred.
|
|
|
|
*/
|
|
|
|
virtual int32 pos() const = 0;
|
2005-01-09 01:41:43 +00:00
|
|
|
|
2008-09-13 16:51:46 +00:00
|
|
|
/**
|
|
|
|
* Obtains the total size of the stream, measured in bytes.
|
|
|
|
* If this value is unknown or can not be computed, -1 is returned.
|
|
|
|
*
|
|
|
|
* @return the size of the stream, or -1 if an error occurred
|
|
|
|
*/
|
|
|
|
virtual int32 size() const = 0;
|
2006-11-13 20:58:21 +00:00
|
|
|
|
2008-09-13 16:51:46 +00:00
|
|
|
/**
|
|
|
|
* Sets the stream position indicator for the stream. The new position,
|
|
|
|
* measured in bytes, is obtained by adding offset bytes to the position
|
|
|
|
* specified by whence. If whence is set to SEEK_SET, SEEK_CUR, or
|
|
|
|
* SEEK_END, the offset is relative to the start of the file, the current
|
|
|
|
* position indicator, or end-of-file, respectively. A successful call
|
|
|
|
* to the seek() method clears the end-of-file indicator for the stream.
|
|
|
|
*
|
2011-05-18 11:06:41 +00:00
|
|
|
* @note The semantics of any implementation of this method are
|
|
|
|
* supposed to match those of ISO C fseek().
|
|
|
|
*
|
2008-09-13 16:51:46 +00:00
|
|
|
* @param offset the relative offset in bytes
|
|
|
|
* @param whence the seek reference: SEEK_SET, SEEK_CUR, or SEEK_END
|
|
|
|
* @return true on success, false in case of a failure
|
|
|
|
*/
|
|
|
|
virtual bool seek(int32 offset, int whence = SEEK_SET) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TODO: Get rid of this??? Or keep it and document it
|
|
|
|
* @return true on success, false in case of a failure
|
|
|
|
*/
|
|
|
|
virtual bool skip(uint32 offset) { return seek(offset, SEEK_CUR); }
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2008-07-20 16:47:52 +00:00
|
|
|
/**
|
|
|
|
* Reads at most one less than the number of characters specified
|
|
|
|
* by bufSize from the and stores them in the string buf. Reading
|
2008-09-03 17:53:25 +00:00
|
|
|
* stops when the end of a line is reached (CR, CR/LF or LF), and
|
|
|
|
* at end-of-file or error. The newline, if any, is retained (CR
|
|
|
|
* and CR/LF are translated to LF = 0xA = '\n'). If any characters
|
|
|
|
* are read and there is no error, a `\0' character is appended
|
|
|
|
* to end the string.
|
2008-07-20 16:47:52 +00:00
|
|
|
*
|
|
|
|
* Upon successful completion, return a pointer to the string. If
|
|
|
|
* end-of-file occurs before any characters are read, returns NULL
|
|
|
|
* and the buffer contents remain unchanged. If an error occurs,
|
|
|
|
* returns NULL and the buffer contents are indeterminate.
|
|
|
|
* This method does not distinguish between end-of-file and error;
|
2008-09-14 22:28:53 +00:00
|
|
|
* callers must use err() or eos() to determine which occurred.
|
2008-07-20 16:47:52 +00:00
|
|
|
*
|
2008-09-06 16:46:28 +00:00
|
|
|
* @note This methods is closely modeled after the standard fgets()
|
|
|
|
* function from stdio.h.
|
|
|
|
*
|
2014-08-29 01:28:00 +00:00
|
|
|
* @param s the buffer to store into
|
2008-07-20 16:47:52 +00:00
|
|
|
* @param bufSize the size of the buffer
|
|
|
|
* @return a pointer to the read string, or NULL if an error occurred
|
|
|
|
*/
|
2009-12-30 23:00:55 +00:00
|
|
|
virtual char *readLine(char *s, size_t bufSize);
|
2008-09-03 17:53:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads a full line and returns it as a Common::String. Reading
|
|
|
|
* stops when the end of a line is reached (CR, CR/LF or LF), and
|
2008-09-06 16:46:28 +00:00
|
|
|
* at end-of-file or error.
|
2008-09-03 17:53:25 +00:00
|
|
|
*
|
|
|
|
* Upon successful completion, return a string with the content
|
|
|
|
* of the line, *without* the end of a line marker. This method
|
2009-12-30 23:00:22 +00:00
|
|
|
* does not indicate whether an error occurred. Callers must use
|
2009-05-19 11:42:14 +00:00
|
|
|
* err() or eos() to determine whether an exception occurred.
|
2008-09-03 17:53:25 +00:00
|
|
|
*/
|
|
|
|
virtual String readLine();
|
2005-01-09 01:41:43 +00:00
|
|
|
};
|
|
|
|
|
2010-11-23 22:26:27 +00:00
|
|
|
/**
|
|
|
|
* This is a ReadStream mixin subclass which adds non-endian read
|
2010-11-23 22:33:10 +00:00
|
|
|
* methods whose endianness is set during the stream creation.
|
2010-11-23 22:26:27 +00:00
|
|
|
*/
|
|
|
|
class ReadStreamEndian : virtual public ReadStream {
|
|
|
|
private:
|
|
|
|
const bool _bigEndian;
|
|
|
|
|
|
|
|
public:
|
2010-11-23 22:27:20 +00:00
|
|
|
ReadStreamEndian(bool bigEndian) : _bigEndian(bigEndian) {}
|
2010-11-23 22:26:27 +00:00
|
|
|
|
2010-11-26 15:06:25 +00:00
|
|
|
bool isBE() const { return _bigEndian; }
|
|
|
|
|
2010-11-23 22:26:27 +00:00
|
|
|
uint16 readUint16() {
|
|
|
|
uint16 val;
|
|
|
|
read(&val, 2);
|
|
|
|
return (_bigEndian) ? TO_BE_16(val) : TO_LE_16(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 readUint32() {
|
|
|
|
uint32 val;
|
|
|
|
read(&val, 4);
|
|
|
|
return (_bigEndian) ? TO_BE_32(val) : TO_LE_32(val);
|
|
|
|
}
|
|
|
|
|
2015-01-04 20:07:36 +00:00
|
|
|
#ifdef HAVE_INT64
|
|
|
|
uint64 readUint64() {
|
|
|
|
uint64 val;
|
|
|
|
read(&val, 8);
|
|
|
|
return (_bigEndian) ? TO_BE_64(val) : TO_LE_64(val);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-23 22:26:27 +00:00
|
|
|
FORCEINLINE int16 readSint16() {
|
|
|
|
return (int16)readUint16();
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE int32 readSint32() {
|
|
|
|
return (int32)readUint32();
|
|
|
|
}
|
2015-01-04 20:07:36 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_INT64
|
|
|
|
FORCEINLINE int64 readSint64() {
|
|
|
|
return (int64)readUint64();
|
|
|
|
}
|
|
|
|
#endif
|
2010-11-23 22:26:27 +00:00
|
|
|
};
|
|
|
|
|
2010-11-23 22:33:10 +00:00
|
|
|
/**
|
|
|
|
* This is a SeekableReadStream subclass which adds non-endian read
|
|
|
|
* methods whose endianness is set during the stream creation.
|
|
|
|
*/
|
|
|
|
class SeekableReadStreamEndian : public SeekableReadStream, public ReadStreamEndian {
|
|
|
|
public:
|
|
|
|
SeekableReadStreamEndian(bool bigEndian) : ReadStreamEndian(bigEndian) {}
|
|
|
|
};
|
|
|
|
|
2010-11-23 22:26:27 +00:00
|
|
|
|
2013-01-26 18:33:27 +00:00
|
|
|
} // End of namespace Common
|
2004-04-17 09:57:15 +00:00
|
|
|
|
|
|
|
#endif
|