Quick Links:

bal | bbl | bdl | bsl

Public Member Functions | Friends

bslx::ByteInStream Class Reference

#include <bslx_byteinstream.h>

List of all members.

Public Member Functions

 ByteInStream ()
 ByteInStream (const char *buffer, bsl::size_t numBytes)
 ByteInStream (const bslstl::StringRef &srcData)
 ~ByteInStream ()
ByteInStreamgetLength (int &length)
ByteInStreamgetVersion (int &version)
void invalidate ()
void reset ()
void reset (const char *buffer, bsl::size_t numBytes)
void reset (const bslstl::StringRef &srcData)
ByteInStreamgetInt64 (bsls::Types::Int64 &variable)
ByteInStreamgetUint64 (bsls::Types::Uint64 &variable)
ByteInStreamgetInt56 (bsls::Types::Int64 &variable)
ByteInStreamgetUint56 (bsls::Types::Uint64 &variable)
ByteInStreamgetInt48 (bsls::Types::Int64 &variable)
ByteInStreamgetUint48 (bsls::Types::Uint64 &variable)
ByteInStreamgetInt40 (bsls::Types::Int64 &variable)
ByteInStreamgetUint40 (bsls::Types::Uint64 &variable)
ByteInStreamgetInt32 (int &variable)
ByteInStreamgetUint32 (unsigned int &variable)
ByteInStreamgetInt24 (int &variable)
ByteInStreamgetUint24 (unsigned int &variable)
ByteInStreamgetInt16 (short &variable)
ByteInStreamgetUint16 (unsigned short &variable)
ByteInStreamgetInt8 (char &variable)
ByteInStreamgetInt8 (signed char &variable)
ByteInStreamgetUint8 (char &variable)
ByteInStreamgetUint8 (unsigned char &variable)
ByteInStreamgetFloat64 (double &variable)
ByteInStreamgetFloat32 (float &variable)
ByteInStreamgetString (bsl::string &variable)
ByteInStreamgetArrayInt64 (bsls::Types::Int64 *variables, int numVariables)
ByteInStreamgetArrayUint64 (bsls::Types::Uint64 *variables, int numVariables)
ByteInStreamgetArrayInt56 (bsls::Types::Int64 *variables, int numVariables)
ByteInStreamgetArrayUint56 (bsls::Types::Uint64 *variables, int numVariables)
ByteInStreamgetArrayInt48 (bsls::Types::Int64 *variables, int numVariables)
ByteInStreamgetArrayUint48 (bsls::Types::Uint64 *variables, int numVariables)
ByteInStreamgetArrayInt40 (bsls::Types::Int64 *variables, int numVariables)
ByteInStreamgetArrayUint40 (bsls::Types::Uint64 *variables, int numVariables)
ByteInStreamgetArrayInt32 (int *variables, int numVariables)
ByteInStreamgetArrayUint32 (unsigned int *variables, int numVariables)
ByteInStreamgetArrayInt24 (int *variables, int numVariables)
ByteInStreamgetArrayUint24 (unsigned int *variables, int numVariables)
ByteInStreamgetArrayInt16 (short *variables, int numVariables)
ByteInStreamgetArrayUint16 (unsigned short *variables, int numVariables)
ByteInStreamgetArrayInt8 (char *variables, int numVariables)
ByteInStreamgetArrayInt8 (signed char *variables, int numVariables)
ByteInStreamgetArrayUint8 (char *variables, int numVariables)
ByteInStreamgetArrayUint8 (unsigned char *variables, int numVariables)
ByteInStreamgetArrayFloat64 (double *variables, int numVariables)
ByteInStreamgetArrayFloat32 (float *variables, int numVariables)
 operator const void * () const
bsl::size_t cursor () const
const char * data () const
bool isEmpty () const
bool isValid () const
bsl::size_t length () const

Friends

bsl::ostream & operator<< (bsl::ostream &stream, const ByteInStream &object)

Detailed Description

This class provides input methods to unexternalize values, and C-style arrays of values, of the fundamental integral and floating-point types, as well as bsl::string values, using a byte format documented in the bslx_byteoutstream component. In particular, each get method of this class is guaranteed to read stream data written by the corresponding put method of bslx::ByteOutStream. Note that attempting to read beyond the end of a stream will automatically invalidate the stream. See the bslx package-level documentation for the definition of the BDEX InStream protocol.

See Component bslx_byteinstream


Constructor & Destructor Documentation

bslx::ByteInStream::ByteInStream (  )  [explicit]

Create an empty input byte stream. Note that the constructed object is useless until a buffer is set with the reset method.

bslx::ByteInStream::ByteInStream ( const char *  buffer,
bsl::size_t  numBytes 
)

Create an input byte stream containing the specified initial numBytes from the specified buffer. The behavior is undefined unless 0 == numBytes if 0 == buffer.

bslx::ByteInStream::ByteInStream ( const bslstl::StringRef srcData  )  [explicit]

Create an input byte stream containing the specified srcData.

bslx::ByteInStream::~ByteInStream (  ) 

Destroy this object.


Member Function Documentation

ByteInStream& bslx::ByteInStream::getLength ( int &  length  ) 

If the most-significant bit of the one byte of this stream at the current cursor location is set, assign to the specified length the four-byte, two's complement integer (in host byte order) comprised of the four bytes of this stream at the current cursor location (in network byte order) with the most-significant bit unset; otherwise, assign to length the one-byte, two's complement integer comprised of the one byte of this stream at the current cursor location. Update the cursor location and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of length is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getVersion ( int &  version  ) 

Assign to the specified version the one-byte, two's complement unsigned integer comprised of the one byte of this stream at the current cursor location, update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of version is undefined. Note that the value will be zero-extended.

void bslx::ByteInStream::invalidate (  ) 

Put this input stream in an invalid state. This function has no effect if this stream is already invalid. Note that this function should be called whenever a value extracted from this stream is determined to be invalid, inconsistent, or otherwise incorrect.

void bslx::ByteInStream::reset (  ) 

Set the index of the next byte to be extracted from this stream to 0 (i.e., the beginning of the stream) and validate this stream if it is currently invalid.

void bslx::ByteInStream::reset ( const char *  buffer,
bsl::size_t  numBytes 
)

Reset this stream to extract from the specified buffer containing the specified numBytes, set the index of the next byte to be extracted to 0 (i.e., the beginning of the stream), and validate this stream if it is currently invalid. The behavior is undefined unless 0 == numBytes if 0 == buffer.

void bslx::ByteInStream::reset ( const bslstl::StringRef srcData  ) 

Reset this stream to extract from the specified srcData, set the index of the next byte to be extracted to 0 (i.e., the beginning of the stream), and validate this stream if it is currently invalid.

ByteInStream& bslx::ByteInStream::getInt64 ( bsls::Types::Int64 variable  ) 

Assign to the specified variable the eight-byte, two's complement integer (in host byte order) comprised of the eight bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint64 ( bsls::Types::Uint64 variable  ) 

Assign to the specified variable the eight-byte, two's complement unsigned integer (in host byte order) comprised of the eight bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getInt56 ( bsls::Types::Int64 variable  ) 

Assign to the specified variable the seven-byte, two's complement integer (in host byte order) comprised of the seven bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint56 ( bsls::Types::Uint64 variable  ) 

Assign to the specified variable the seven-byte, two's complement unsigned integer (in host byte order) comprised of the seven bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getInt48 ( bsls::Types::Int64 variable  ) 

Assign to the specified variable the six-byte, two's complement integer (in host byte order) comprised of the six bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint48 ( bsls::Types::Uint64 variable  ) 

Assign to the specified variable the six-byte, two's complement unsigned integer (in host byte order) comprised of the six bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getInt40 ( bsls::Types::Int64 variable  ) 

Assign to the specified variable the five-byte, two's complement integer (in host byte order) comprised of the five bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint40 ( bsls::Types::Uint64 variable  ) 

Assign to the specified variable the five-byte, two's complement unsigned integer (in host byte order) comprised of the five bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getInt32 ( int &  variable  ) 

Assign to the specified variable the four-byte, two's complement integer (in host byte order) comprised of the four bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint32 ( unsigned int &  variable  ) 

Assign to the specified variable the four-byte, two's complement unsigned integer (in host byte order) comprised of the four bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getInt24 ( int &  variable  ) 

Assign to the specified variable the three-byte, two's complement integer (in host byte order) comprised of the three bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint24 ( unsigned int &  variable  ) 

Assign to the specified variable the three-byte, two's complement unsigned integer (in host byte order) comprised of the three bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getInt16 ( short &  variable  ) 

Assign to the specified variable the two-byte, two's complement integer (in host byte order) comprised of the two bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint16 ( unsigned short &  variable  ) 

Assign to the specified variable the two-byte, two's complement unsigned integer (in host byte order) comprised of the two bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getInt8 ( char &  variable  ) 
ByteInStream& bslx::ByteInStream::getInt8 ( signed char &  variable  ) 

Assign to the specified variable the one-byte, two's complement integer comprised of the one byte of this stream at the current cursor location, update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be sign-extended.

ByteInStream& bslx::ByteInStream::getUint8 ( char &  variable  ) 
ByteInStream& bslx::ByteInStream::getUint8 ( unsigned char &  variable  ) 

Assign to the specified variable the one-byte, two's complement unsigned integer comprised of the one byte of this stream at the current cursor location, update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined. Note that the value will be zero-extended.

ByteInStream& bslx::ByteInStream::getFloat64 ( double &  variable  ) 

Assign to the specified variable the eight-byte IEEE double-precision floating-point number (in host byte order) comprised of the eight bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined.

ByteInStream& bslx::ByteInStream::getFloat32 ( float &  variable  ) 

Assign to the specified variable the four-byte IEEE single-precision floating-point number (in host byte order) comprised of the four bytes of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined.

ByteInStream& bslx::ByteInStream::getString ( bsl::string variable  ) 

Assign to the specified variable the string comprised of the length of the string (see getLength) and the string data (see getUint8), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variable is undefined.

ByteInStream& bslx::ByteInStream::getArrayInt64 ( bsls::Types::Int64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive eight-byte, two's complement integers (in host byte order) comprised of each of the specified numVariables eight-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint64 ( bsls::Types::Uint64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive eight-byte, two's complement unsigned integers (in host byte order) comprised of each of the specified numVariables eight-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayInt56 ( bsls::Types::Int64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive seven-byte, two's complement integers (in host byte order) comprised of each of the specified numVariables seven-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint56 ( bsls::Types::Uint64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive seven-byte, two's complement unsigned integers (in host byte order) comprised of each of the specified numVariables seven-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayInt48 ( bsls::Types::Int64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive six-byte, two's complement integers (in host byte order) comprised of each of the specified numVariables six-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint48 ( bsls::Types::Uint64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive six-byte, two's complement unsigned integers (in host byte order) comprised of each of the specified numVariables six-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayInt40 ( bsls::Types::Int64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive five-byte, two's complement integers (in host byte order) comprised of each of the specified numVariables five-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint40 ( bsls::Types::Uint64 variables,
int  numVariables 
)

Assign to the specified variables the consecutive five-byte, two's complement unsigned integers (in host byte order) comprised of each of the specified numVariables five-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayInt32 ( int *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive four-byte, two's complement integers (in host byte order) comprised of each of the specified numVariables four-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint32 ( unsigned int *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive four-byte, two's complement unsigned integers (in host byte order) comprised of each of the specified numVariables four-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayInt24 ( int *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive three-byte, two's complement integers (in host byte order) comprised of each of the specified numVariables three-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numValues and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint24 ( unsigned int *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive three-byte, two's complement unsigned integers (in host byte order) comprised of each of the specified numVariables three-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayInt16 ( short *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive two-byte, two's complement integers (in host byte order) comprised of each of the specified numVariables two-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint16 ( unsigned short *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive two-byte, two's complement unsigned integers (in host byte order) comprised of each of the specified numVariables two-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayInt8 ( char *  variables,
int  numVariables 
)
ByteInStream& bslx::ByteInStream::getArrayInt8 ( signed char *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive one-byte, two's complement integers comprised of each of the specified numVariables one-byte sequences of this stream at the current cursor location, update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be sign-extended.

ByteInStream& bslx::ByteInStream::getArrayUint8 ( char *  variables,
int  numVariables 
)
ByteInStream& bslx::ByteInStream::getArrayUint8 ( unsigned char *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive one-byte, two's complement unsigned integers comprised of each of the specified numVariables one-byte sequences of this stream at the current cursor location, update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity. Note that each of the values will be zero-extended.

ByteInStream& bslx::ByteInStream::getArrayFloat64 ( double *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive eight-byte IEEE double-precision floating-point numbers (in host byte order) comprised of each of the specified numVariables eight-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity.

ByteInStream& bslx::ByteInStream::getArrayFloat32 ( float *  variables,
int  numVariables 
)

Assign to the specified variables the consecutive four-byte IEEE single-precision floating-point numbers (in host byte order) comprised of each of the specified numVariables four-byte sequences of this stream at the current cursor location (in network byte order), update the cursor location, and return a reference to this stream. If this stream is initially invalid, this operation has no effect. If this function otherwise fails to extract a valid value, this stream is marked invalid and the value of variables is undefined. The behavior is undefined unless 0 <= numVariables and variables has sufficient capacity.

bslx::ByteInStream::operator const void * (  )  const

Return a non-zero value if this stream is valid, and 0 otherwise. An invalid stream is a stream for which an input operation was detected to have failed.

bsl::size_t bslx::ByteInStream::cursor (  )  const

Return the index of the next byte to be extracted from this stream.

const char* bslx::ByteInStream::data (  )  const

Return the address of the contiguous, non-modifiable external memory buffer of this stream. The behavior of accessing elements outside the range [ data() .. data() + (length() - 1) ] is undefined.

bool bslx::ByteInStream::isEmpty (  )  const

Return true if this stream is empty, and false otherwise. Note that this function enables higher-level types to verify that, after successfully reading all expected data, no data remains.

bool bslx::ByteInStream::isValid (  )  const

Return true if this stream is valid, and false otherwise. An invalid stream is a stream in which insufficient or invalid data was detected during an extraction operation. Note that an empty stream will be valid unless an extraction attempt or explicit invalidation causes it to be otherwise.

bsl::size_t bslx::ByteInStream::length (  )  const

Return the total number of bytes stored in the external memory buffer.


Friends And Related Function Documentation

bsl::ostream& operator<< ( bsl::ostream &  stream,
const ByteInStream object 
) [friend]

Write the specified object to the specified output stream in some reasonable (multi-line) format, and return a reference to stream.


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