VSTGUI 4.10
Graphical User Interface Framework not only for VST plugins
Loading...
Searching...
No Matches
CMemoryStream Class Reference

Memory input and output stream. More...

#include <cstream.h>

+ Inheritance diagram for CMemoryStream:

Public Member Functions

 CMemoryStream (uint32_t initialSize=1024, uint32_t delta=1024, bool binaryMode=true, ByteOrder byteOrder=kNativeByteOrder)
 
 CMemoryStream (const int8_t *buffer, uint32_t bufferSize, bool binaryMode=true, ByteOrder byteOrder=kNativeByteOrder)
 
 ~CMemoryStream () noexcept override
 
uint32_t writeRaw (const void *buffer, uint32_t size) override
 
uint32_t readRaw (void *buffer, uint32_t size) override
 
int64_t seek (int64_t pos, SeekMode mode) override
 returns -1 if seek fails otherwise new position
 
int64_t tell () const override
 
void rewind () override
 
const int8_t * getBuffer () const
 
bool operator<< (const std::string &str) override
 
bool operator>> (std::string &string) override
 
bool end ()
 
bool operator<< (const int8_t &input)
 
bool operator<< (const uint8_t &input)
 
bool operator<< (const int16_t &input)
 
bool operator<< (const uint16_t &input)
 
bool operator<< (const int32_t &input)
 
bool operator<< (const uint32_t &input)
 
bool operator<< (const int64_t &input)
 
bool operator<< (const uint64_t &input)
 
bool operator<< (const double &input)
 
bool operator>> (int8_t &output)
 
bool operator>> (uint8_t &output)
 
bool operator>> (int16_t &output)
 
bool operator>> (uint16_t &output)
 
bool operator>> (int32_t &output)
 
bool operator>> (uint32_t &output)
 
bool operator>> (int64_t &output)
 
bool operator>> (uint64_t &output)
 
bool operator>> (double &output)
 
- Public Member Functions inherited from OutputStream
 OutputStream (ByteOrder byteOrder=kNativeByteOrder)
 
virtual ~OutputStream () noexcept=default
 
ByteOrder getByteOrder () const
 
void setByteOrder (ByteOrder newByteOrder)
 
bool operator<< (const int8_t &input)
 
bool operator<< (const uint8_t &input)
 
bool operator<< (const int16_t &input)
 
bool operator<< (const uint16_t &input)
 
bool operator<< (const int32_t &input)
 
bool operator<< (const uint32_t &input)
 
bool operator<< (const int64_t &input)
 
bool operator<< (const uint64_t &input)
 
bool operator<< (const double &input)
 
- Public Member Functions inherited from InputStream
 InputStream (ByteOrder byteOrder=kNativeByteOrder)
 
virtual ~InputStream () noexcept=default
 
ByteOrder getByteOrder () const
 
void setByteOrder (ByteOrder newByteOrder)
 
bool operator>> (int8_t &output)
 
bool operator>> (uint8_t &output)
 
bool operator>> (int16_t &output)
 
bool operator>> (uint16_t &output)
 
bool operator>> (int32_t &output)
 
bool operator>> (uint32_t &output)
 
bool operator>> (int64_t &output)
 
bool operator>> (uint64_t &output)
 
bool operator>> (double &output)
 
- Public Member Functions inherited from SeekableStream
virtual ~SeekableStream () noexcept=default
 
- Public Member Functions inherited from ReferenceCounted< std::atomic< int32_t > >
 ReferenceCounted ()=default
 
virtual ~ReferenceCounted () noexcept=default
 
 ReferenceCounted (const ReferenceCounted &)
 
ReferenceCountedoperator= (const ReferenceCounted &)
 
 ReferenceCounted ()=default
 
 ReferenceCounted (const ReferenceCounted &)
 
virtual ~ReferenceCounted () noexcept=default
 
ReferenceCountedoperator= (const ReferenceCounted &)
 
void forget () override
 decrease refcount and delete object if refcount == 0
 
void remember () override
 increase refcount
 
virtual int32_t getNbReference () const
 get refcount
 
void forget () override
 decrease refcount and delete object if refcount == 0
 
void remember () override
 increase refcount
 
virtual int32_t getNbReference () const
 get refcount
 

Protected Member Functions

bool resize (uint32_t newSize)
 

Protected Attributes

int8_t * buffer
 
uint32_t bufferSize
 
uint32_t size
 
uint32_t pos
 
uint32_t delta
 
bool binaryMode
 
bool ownsBuffer
 

Additional Inherited Members

- Public Types inherited from SeekableStream
enum  SeekMode { kSeekSet , kSeekCurrent , kSeekEnd }
 

Detailed Description

Memory input and output stream.

Constructor & Destructor Documentation

◆ CMemoryStream() [1/2]

CMemoryStream ( uint32_t initialSize = 1024,
uint32_t delta = 1024,
bool binaryMode = true,
ByteOrder byteOrder = kNativeByteOrder )

◆ CMemoryStream() [2/2]

CMemoryStream ( const int8_t * buffer,
uint32_t bufferSize,
bool binaryMode = true,
ByteOrder byteOrder = kNativeByteOrder )

◆ ~CMemoryStream()

~CMemoryStream ( )
overridenoexcept

Member Function Documentation

◆ end()

bool end ( )

◆ getBuffer()

const int8_t * getBuffer ( ) const
inline

◆ operator<<() [1/10]

bool operator<< ( const double & input)

◆ operator<<() [2/10]

bool operator<< ( const int16_t & input)

◆ operator<<() [3/10]

bool operator<< ( const int32_t & input)

◆ operator<<() [4/10]

bool operator<< ( const int64_t & input)

◆ operator<<() [5/10]

bool operator<< ( const int8_t & input)

◆ operator<<() [6/10]

bool operator<< ( const std::string & str)
overridevirtual

Implements OutputStream.

◆ operator<<() [7/10]

bool operator<< ( const uint16_t & input)

◆ operator<<() [8/10]

bool operator<< ( const uint32_t & input)

◆ operator<<() [9/10]

bool operator<< ( const uint64_t & input)

◆ operator<<() [10/10]

bool operator<< ( const uint8_t & input)

◆ operator>>() [1/10]

bool operator>> ( double & output)

◆ operator>>() [2/10]

bool operator>> ( int16_t & output)

◆ operator>>() [3/10]

bool operator>> ( int32_t & output)

◆ operator>>() [4/10]

bool operator>> ( int64_t & output)

◆ operator>>() [5/10]

bool operator>> ( int8_t & output)

◆ operator>>() [6/10]

bool operator>> ( std::string & string)
overridevirtual

Implements InputStream.

◆ operator>>() [7/10]

bool operator>> ( uint16_t & output)

◆ operator>>() [8/10]

bool operator>> ( uint32_t & output)

◆ operator>>() [9/10]

bool operator>> ( uint64_t & output)

◆ operator>>() [10/10]

bool operator>> ( uint8_t & output)

◆ readRaw()

uint32_t readRaw ( void * buffer,
uint32_t size )
overridevirtual

Implements InputStream.

◆ resize()

bool resize ( uint32_t newSize)
protected

◆ rewind()

void rewind ( )
inlineoverridevirtual

Implements SeekableStream.

Reimplemented in MemoryContentProvider.

◆ seek()

int64_t seek ( int64_t pos,
SeekMode mode )
overridevirtual

returns -1 if seek fails otherwise new position

Implements SeekableStream.

◆ tell()

int64_t tell ( ) const
inlineoverridevirtual

Implements SeekableStream.

◆ writeRaw()

uint32_t writeRaw ( const void * buffer,
uint32_t size )
overridevirtual

Implements OutputStream.

Member Data Documentation

◆ binaryMode

bool binaryMode
protected

◆ buffer

int8_t* buffer
protected

◆ bufferSize

uint32_t bufferSize
protected

◆ delta

uint32_t delta
protected

◆ ownsBuffer

bool ownsBuffer
protected

◆ pos

uint32_t pos
protected

◆ size

uint32_t size
protected

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