OGRE  master
Object-Oriented Graphics Rendering Engine
Ogre::DataStream Class Referenceabstract

General purpose class used for encapsulating the reading and writing of data. More...

#include <OgreDataStream.h>

+ Inheritance diagram for Ogre::DataStream:

Public Types

enum  AccessMode { READ = 1, WRITE = 2 }
 

Public Member Functions

 DataStream (uint16 accessMode=READ)
 Constructor for creating unnamed streams. More...
 
 DataStream (const String &name, uint16 accessMode=READ)
 Constructor for creating named streams. More...
 
virtual ~DataStream ()
 
virtual void close (void)=0
 Close the stream; this makes further operations invalid. More...
 
virtual bool eof (void) const =0
 Returns true if the stream has reached the end. More...
 
uint16 getAccessMode () const
 Gets the access mode of the stream. More...
 
virtual String getAsString (void)
 Returns a String containing the entire stream. More...
 
virtual String getLine (bool trimAfter=true)
 Returns a String containing the next line of data, optionally trimmed for whitespace. More...
 
const StringgetName (void)
 Returns the name of the stream, if it has one. More...
 
virtual bool isReadable () const
 Reports whether this stream is readable. More...
 
virtual bool isWriteable () const
 Reports whether this stream is writeable. More...
 
template<typename T >
DataStreamoperator>> (T &val)
 
virtual size_t read (void *buf, size_t count)=0
 Read the requisite number of bytes from the stream, stopping at the end of the file. More...
 
virtual size_t readLine (char *buf, size_t maxCount, const String &delim="\)
 Get a single line from the stream. More...
 
virtual void seek (size_t pos)=0
 Repositions the read point to a specified byte. More...
 
size_t size (void) const
 Returns the total size of the data to be read from the stream, or 0 if this is indeterminate for this stream. More...
 
virtual void skip (long count)=0
 Skip a defined number of bytes. More...
 
virtual size_t skipLine (const String &delim="\)
 Skip a single line from the stream. More...
 
virtual size_t tell (void) const =0
 Returns the current byte offset from beginning. More...
 
virtual size_t write (const void *buf, size_t count)
 Write the requisite number of bytes from the stream (only applicable to streams that are not read-only) More...
 

Detailed Description

General purpose class used for encapsulating the reading and writing of data.

This class performs basically the same tasks as std::basic_istream, except that it does not have any formatting capabilities, and is designed to be subclassed to receive data from multiple sources, including libraries which have no compatibility with the STL's stream interfaces. As such, this is an abstraction of a set of wrapper classes which pretend to be standard stream classes but can actually be implemented quite differently.

Generally, if a plugin or application provides an ArchiveFactory, it should also provide a DataStream subclass which will be used to stream data out of that Archive implementation, unless it can use one of the common implementations included.
Note
Ogre makes no guarantees about thread safety, for performance reasons. If you wish to access stream data asynchronously then you should organise your own mutexes to avoid race conditions.

Member Enumeration Documentation

◆ AccessMode

Enumerator
READ 
WRITE 

Constructor & Destructor Documentation

◆ DataStream() [1/2]

Ogre::DataStream::DataStream ( uint16  accessMode = READ)
inline

Constructor for creating unnamed streams.

◆ DataStream() [2/2]

Ogre::DataStream::DataStream ( const String name,
uint16  accessMode = READ 
)
inline

Constructor for creating named streams.

◆ ~DataStream()

virtual Ogre::DataStream::~DataStream ( )
inlinevirtual

Member Function Documentation

◆ getName()

const String& Ogre::DataStream::getName ( void  )
inline

Returns the name of the stream, if it has one.

◆ getAccessMode()

uint16 Ogre::DataStream::getAccessMode ( ) const
inline

Gets the access mode of the stream.

◆ isReadable()

virtual bool Ogre::DataStream::isReadable ( ) const
inlinevirtual

Reports whether this stream is readable.

◆ isWriteable()

virtual bool Ogre::DataStream::isWriteable ( ) const
inlinevirtual

Reports whether this stream is writeable.

◆ operator>>()

template<typename T >
DataStream& Ogre::DataStream::operator>> ( T &  val)

◆ read()

virtual size_t Ogre::DataStream::read ( void *  buf,
size_t  count 
)
pure virtual

Read the requisite number of bytes from the stream, stopping at the end of the file.

Parameters
bufReference to a buffer pointer
countNumber of bytes to read
Returns
The number of bytes read

Implemented in Ogre::FileHandleDataStream, Ogre::FileStreamDataStream, Ogre::MemoryDataStream, and Ogre::DeflateStream.

◆ write()

virtual size_t Ogre::DataStream::write ( const void *  buf,
size_t  count 
)
inlinevirtual

Write the requisite number of bytes from the stream (only applicable to streams that are not read-only)

Parameters
bufPointer to a buffer containing the bytes to write
countNumber of bytes to write
Returns
The number of bytes written

Reimplemented in Ogre::FileHandleDataStream, Ogre::FileStreamDataStream, Ogre::MemoryDataStream, and Ogre::DeflateStream.

◆ readLine()

virtual size_t Ogre::DataStream::readLine ( char *  buf,
size_t  maxCount 
)
virtual

Get a single line from the stream.

The delimiter character is not included in the data returned, and it is skipped over so the next read will occur after it. The buffer contents will include a terminating character.

Note
If you used this function, you must open the stream in binary mode, otherwise, it'll produce unexpected results.
Parameters
bufReference to a buffer pointer
maxCountThe maximum length of data to be read, excluding the terminating character
delimThe delimiter to stop at
Returns
The number of bytes read, excluding the terminating character

Reimplemented in Ogre::FileStreamDataStream, and Ogre::MemoryDataStream.

◆ getLine()

virtual String Ogre::DataStream::getLine ( bool  trimAfter = true)
virtual

Returns a String containing the next line of data, optionally trimmed for whitespace.

This is a convenience method for text streams only, allowing you to retrieve a String object containing the next line of data. The data is read up to the next newline character and the result trimmed if required.

Note
If you used this function, you must open the stream in binary mode, otherwise, it'll produce unexpected results.
Parameters
trimAfterIf true, the line is trimmed for whitespace (as in String.trim(true,true))

◆ getAsString()

virtual String Ogre::DataStream::getAsString ( void  )
virtual

Returns a String containing the entire stream.

This is a convenience method for text streams only, allowing you to retrieve a String object containing all the data in the stream.

◆ skipLine()

virtual size_t Ogre::DataStream::skipLine ( )
virtual

Skip a single line from the stream.

Note
If you used this function, you must open the stream in binary mode, otherwise, it'll produce unexpected results.
delim The delimiter(s) to stop at
Returns
The number of bytes skipped

Reimplemented in Ogre::MemoryDataStream.

◆ skip()

virtual void Ogre::DataStream::skip ( long  count)
pure virtual

Skip a defined number of bytes.

This can also be a negative value, in which case the file pointer rewinds a defined number of bytes.

Implemented in Ogre::FileHandleDataStream, Ogre::FileStreamDataStream, Ogre::MemoryDataStream, and Ogre::DeflateStream.

◆ seek()

virtual void Ogre::DataStream::seek ( size_t  pos)
pure virtual

Repositions the read point to a specified byte.

Implemented in Ogre::FileHandleDataStream, Ogre::FileStreamDataStream, Ogre::MemoryDataStream, and Ogre::DeflateStream.

◆ tell()

virtual size_t Ogre::DataStream::tell ( void  ) const
pure virtual

Returns the current byte offset from beginning.

Implemented in Ogre::FileHandleDataStream, Ogre::FileStreamDataStream, Ogre::MemoryDataStream, and Ogre::DeflateStream.

◆ eof()

virtual bool Ogre::DataStream::eof ( void  ) const
pure virtual

Returns true if the stream has reached the end.

Implemented in Ogre::FileHandleDataStream, Ogre::FileStreamDataStream, Ogre::MemoryDataStream, and Ogre::DeflateStream.

◆ size()

size_t Ogre::DataStream::size ( void  ) const
inline

Returns the total size of the data to be read from the stream, or 0 if this is indeterminate for this stream.

◆ close()

virtual void Ogre::DataStream::close ( void  )
pure virtual

Close the stream; this makes further operations invalid.

Implemented in Ogre::FileHandleDataStream, Ogre::FileStreamDataStream, Ogre::MemoryDataStream, and Ogre::DeflateStream.


The documentation for this class was generated from the following file: