SourcePro® API Reference Guide

 
List of all members | Public Member Functions | Protected Member Functions
RWvostreamToDataOutputStream Class Reference

Adaptor class that adapts the Rogue Wave virtual stream interface to the Rogue Wave data output stream interface. More...

#include <rw/stream/RWvostreamToDataOutputStream.h>

Inheritance diagram for RWvostreamToDataOutputStream:
RWvostream RWvios

Public Member Functions

 RWvostreamToDataOutputStream (const RWDataOutputStream &sinkStream)
 
virtual ~RWvostreamToDataOutputStream ()
 
virtual int bad ()
 
virtual void clear (int v=0)
 
virtual int eof ()
 
virtual int fail ()
 
virtual RWvostreamflush ()
 
virtual int good ()
 
virtual RWvostreamput (char c)
 
virtual RWvostreamput (signed char c)
 
virtual RWvostreamput (unsigned char c)
 
virtual RWvostreamput (wchar_t wc)
 
virtual RWvostreamput (bool b)
 
virtual RWvostreamput (int i)
 
virtual RWvostreamput (unsigned int i)
 
virtual RWvostreamput (short i)
 
virtual RWvostreamput (unsigned short i)
 
virtual RWvostreamput (long i)
 
virtual RWvostreamput (unsigned long i)
 
virtual RWvostreamput (long long i)
 
virtual RWvostreamput (unsigned long long i)
 
virtual RWvostreamput (float f)
 
virtual RWvostreamput (double d)
 
virtual RWvostreamput (long double d)
 
virtual RWvostreamput (const char *v, size_t n)
 
virtual RWvostreamput (const bool *v, size_t n)
 
virtual RWvostreamput (const wchar_t *v, size_t n)
 
virtual RWvostreamput (const signed char *v, size_t n)
 
virtual RWvostreamput (const unsigned char *v, size_t n)
 
virtual RWvostreamput (const short *v, size_t n)
 
virtual RWvostreamput (const unsigned short *v, size_t n)
 
virtual RWvostreamput (const int *v, size_t n)
 
virtual RWvostreamput (const unsigned int *v, size_t n)
 
virtual RWvostreamput (const long *v, size_t n)
 
virtual RWvostreamput (const unsigned long *v, size_t n)
 
virtual RWvostreamput (const float *v, size_t n)
 
virtual RWvostreamput (const double *v, size_t n)
 
virtual RWvostreamput (const long double *v, size_t n)
 
virtual RWvostreamput (const long long *v, size_t n)
 
virtual RWvostreamput (const unsigned long long *v, size_t n)
 
virtual RWvostreamputChar (char c)
 
virtual RWvostreamputChar (signed char c)
 
virtual RWvostreamputChar (unsigned char c)
 
virtual RWvostreamputChar (wchar_t wc)
 
virtual RWvostreamputChars (const char *s, size_t n)
 
virtual RWvostreamputSizeT (size_t sz)
 
virtual RWvostreamputString (const char *s, size_t n)
 
virtual int rdstate ()
 
- Public Member Functions inherited from RWvostream
virtual ~RWvostream ()
 
void version (unsigned v)
 
unsigned version () const
 
- Public Member Functions inherited from RWvios
 operator void * ()
 

Protected Member Functions

RWDataOutputStreamgetSinkStream ()
 
const RWDataOutputStreamgetSinkStream () const
 

Additional Inherited Members

Detailed Description

The class RWvostreamToDataOutputStream is an adaptor class that adapts the Rogue Wave virtual stream interface to the new Rogue Wave data output stream interface. Requests made through the Rogue Wave virtual output stream interface are forwarded to the embedded RWDataOutputStream handle.

Constructor & Destructor Documentation

RWvostreamToDataOutputStream::RWvostreamToDataOutputStream ( const RWDataOutputStream sinkStream)
inline

Initializes the reference to the data stream that will be used as the sink of data.

Parameters
sinkStreamThe data stream that will serve as the sink of data.
virtual RWvostreamToDataOutputStream::~RWvostreamToDataOutputStream ( )
virtual

Destructor.

Member Function Documentation

virtual int RWvostreamToDataOutputStream::bad ( )
virtual

Returns a nonzero integer if the bad bit has been set. Normally this indicates that a severe error has occurred from which recovery is probably impossible.

Implements RWvostream.

virtual void RWvostreamToDataOutputStream::clear ( int  v = 0)
virtual

Not supported. RWDataOutputStream does not provide a mechanism for setting/clearing the underlying state. Calls to this function are ignored.

Implements RWvostream.

virtual int RWvostreamToDataOutputStream::eof ( )
virtual

Returns a nonzero integer if an EOF is encountered.

Implements RWvostream.

virtual int RWvostreamToDataOutputStream::fail ( )
virtual

Returns a nonzero integer if the failed or bad bit has been set. Normally, this indicates that some storage or retrieval has failed, but that the stream is still in a usable state.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::flush ( )
virtual

Sends the contents of the stream buffer to output immediately.

Implements RWvostream.

RWDataOutputStream& RWvostreamToDataOutputStream::getSinkStream ( )
inlineprotected

Returns a handle to the embedded data output stream that is used as the sink of data. Throws no exceptions.

const RWDataOutputStream& RWvostreamToDataOutputStream::getSinkStream ( ) const
inlineprotected

Returns a handle to the embedded data output stream that is used as the sink of data. Throws no exceptions.

virtual int RWvostreamToDataOutputStream::good ( )
virtual

Returns a nonzero integer if no error bits have been set.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( char  c)
virtual

Stores the char c to the output stream, preserving its value.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( signed char  c)
virtual

Stores the signed char c to the output stream, preserving its value.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( unsigned char  c)
virtual

Stores the unsigned char c to the output stream, preserving its value.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( wchar_t  wc)
virtual

Stores the wchar_t wc to the output stream, preserving its value.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( bool  b)
virtual

Stores the bool b to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( int  i)
virtual

Stores the int i to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( unsigned int  i)
virtual

Stores the unsigned int i to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( short  i)
virtual

Stores the short i to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( unsigned short  i)
virtual

Stores the unsigned short i to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( long  i)
virtual

Stores the long i to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( unsigned long  i)
virtual

Stores the unsigned long i to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( long long  i)
virtual

Stores the long long i to the output stream.

Note
This operator function is available only if your compiler supports the long long type.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( unsigned long long  i)
virtual

Stores the unsigned long long i to the output stream.

Note
This operator function is available only if your compiler supports the unsigned long long type.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( float  f)
virtual

Stores the float f to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( double  d)
virtual

Stores the double d to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( long double  d)
virtual

Stores the long double d to the output stream.

Note
This operator function is available only if your compiler supports the long double type.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const char *  v,
size_t  n 
)
virtual

Stores the vector of n char starting at v to the output stream. The characters should be treated as literal numbers (i.e., not as a character string).

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const bool *  v,
size_t  n 
)
virtual

Stores the vector of n bool starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const wchar_t *  v,
size_t  n 
)
virtual

Stores the vector of n wchar_t starting at v to the output stream. The characters should be treated as literal numbers (i.e., not as a character string).

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const signed char *  v,
size_t  n 
)
virtual

Stores the vector of n signed char starting at v to the output stream. The characters should be treated as literal numbers (i.e., not as a character string).

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const unsigned char *  v,
size_t  n 
)
virtual

Stores the vector of n unsigned char starting at v to the output stream. The characters should be treated as literal numbers (i.e., not as a character string).

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const short *  v,
size_t  n 
)
virtual

Stores the vector of n short starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const unsigned short *  v,
size_t  n 
)
virtual

Stores the vector of n unsigned short starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const int *  v,
size_t  n 
)
virtual

Stores the vector of n int starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const unsigned int *  v,
size_t  n 
)
virtual

Stores the vector of n unsigned int starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const long *  v,
size_t  n 
)
virtual

Stores the vector of n long starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const unsigned long *  v,
size_t  n 
)
virtual

Stores the vector of n unsigned long starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const float *  v,
size_t  n 
)
virtual

Stores the vector of n float starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const double *  v,
size_t  n 
)
virtual

Stores the vector of n double starting at v to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const long double *  v,
size_t  n 
)
virtual

Stores the vector of n long double starting at v to the output stream.

Note
This operator function is available only if your compiler supports the long double type.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const long long *  v,
size_t  n 
)
virtual

Stores the vector of n long long starting at v to the output stream.

Note
This operator function is available only if your compiler supports the long long type.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::put ( const unsigned long long *  v,
size_t  n 
)
virtual

Stores the vector of n unsigned long long starting at v to the output stream.

Note
This operator function is available only if your compiler supports the unsigned long long type.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::putChar ( char  c)
virtual

Stores the char c to the output stream, preserving its meaning. c is treated as a character.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::putChar ( signed char  c)
virtual

Stores the signed char c to the output stream, preserving its meaning. c is treated as a character.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::putChar ( unsigned char  c)
virtual

Stores the unsigned char c to the output stream, preserving its meaning. c is treated as a character.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::putChar ( wchar_t  wc)
virtual

Stores the wchar_t wc to the output stream, preserving its value. wc is treated as a character.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::putChars ( const char *  s,
size_t  n 
)
virtual

Stores n char starting at s to the output stream. s is treated as a character string.

Note
This function delegates to put(const char*, size_t) if not overridden.

Reimplemented from RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::putSizeT ( size_t  sz)
virtual

Stores the size_t sz to the output stream.

Implements RWvostream.

virtual RWvostream& RWvostreamToDataOutputStream::putString ( const char *  s,
size_t  n 
)
virtual

Stores the character string, including embedded nulls, starting at s to the output stream.

Implements RWvostream.

virtual int RWvostreamToDataOutputStream::rdstate ( )
virtual

Returns the current error state.

Implements RWvostream.

Copyright © 2023 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved.