Main Page | Class Hierarchy | Compound List | File List | Compound Members

BxByte8 Class Reference

Class implementing the BinX data type signed 8-bit byte. More...

#include <BxByte8.h>

Inheritance diagram for BxByte8:

BxInteger BxDataObject BxObject BxCharacter8 List of all members.

Public Member Functions

 BxByte8 ()
 BxByte8 (const BxByte8 &)
 BxByte8 (const bx_byte8)
virtual bool equals (const BxDataObject &) const
virtual char * toString (bool xml)
virtual bool parseValue (const char *)
BxByte8operator= (const bx_byte8)

Detailed Description

Instances of this class hold and perform operations on the BinX XML Schema type <byte-8>. This class provides manipulations such as: The BinX primitive data type 8-bit byte is treated as an 8-bit signed integer value, in accordance with the XSD definition of this data type. Hence, an instance of this class must have a value from 0 to 127.
Since: BinX version 1.0.


Constructor & Destructor Documentation

BxByte8::BxByte8  ) 
 

Default constructor.

Constructs and initialises an instance of the class BxByte8. Default attribute values are assigned as follows:

       sizeInBits_ = 8;
       sizeInBytes_ = 1; 
       sizeInAll_ = 1; 
   

BxByte8::BxByte8 const BxByte8 copy  ) 
 

Construct a BxByte8 instance by copying a specified BxByte8 instance.

Constructs and initialises an instance of the class BxByte8.

Parameters:
copy A reference to the BxByte8 instance to copy.

BxByte8::BxByte8 const bx_byte8  b  ) 
 

Construct a BxByte8 instance and assign it a specified byte value.

Constructs and initialises an instance of the class BxByte8.

Parameters:
b A byte value to initialise the new BxByte8 object.


Member Function Documentation

bool BxByte8::equals const BxDataObject dataObj  )  const [virtual]
 

Compares the value of a specified data object with the value of this object.

In this method, two objects are considered to be equal if they are of the same BinX object type and if they store the same data value. Also, only primitive BinX data types implement this method.
Note: that byte order differences are not compensated for in this test. Hence, two signed 8-bit bytes that are equal in value, but represented in different byte orders would be found to be unequal.

Parameters:
dataObj A reference to another data object to be compared with this object.
Returns:
true If the data type and value of the two objects are equal,
false If the objects differ in type or value.

Reimplemented from BxDataObject.

Reimplemented in BxCharacter8.

BxByte8 & BxByte8::operator= const bx_byte8  b  ) 
 

Overloaded operator = assigns one byte from a specified source to a BxByte8 destination object.

Parameters:
b A single byte value to be assigned to a BxByte8 object.
Returns:
A reference to this BxByte8 object after the assignment has been performed.

bool BxByte8::parseValue const char *  strVal  )  [virtual]
 

Extract an 8-bit signed byte value from a specified string and assign the value to this object.

The data contained in the input string is assumed to be in ASCII representation, and to contain a signed 8-bit integer represented in decimal or hexadecimal (i.e., base 10 or base 16). A hexademinal string must begin with the characters 0x. The input string must not contain commas, periods, or other symbols. The input string must be null-terminated. All bytes of the input string are used in the conversion process. The input bytes is converted to integer representation, in conformance with the definiton of a BxByte8 object value. The converted value is stored as the value of this object. Only primitive BinX data types implement this method.

Parameters:
strVal A pointer to the string to extract a byte value from.
Returns:
true If value extraction and conversion was successful,
false If the input string is NULL.

Reimplemented from BxDataObject.

Reimplemented in BxCharacter8.

char * BxByte8::toString bool  xml  )  [virtual]
 

Return a string containing the DataBinX XML element (or printable value only ) for the value of this BxByte8 object.

The DataBinx representation of a BxByte8 object value consists of:

  • The BinX XML tags, <byte-8> and </byte-8>
  • The binary data value of this object, converted to a printable representation

Example Return Result:<byte-8>-82</byte-8>
This method allocates memory to hold the returned string. The caller is responsible for releasing the memory when the string is no longer needed.
If the BinX XML tags are not required, then the input boolean flag can be used to request that only the converted binary data value be included in the result string.
Only BinX primitive data types implement this method.
Parameters:
xml A boolean indicating whether to include BinX XML tags or not.
Returns:
A string buffer containing the DataBinX representation of the value of this object, if the input flag is true,
A string buffer containing the printable representation of the value of this object, if the input flag is false.

Reimplemented from BxDataObject.

Reimplemented in BxCharacter8.


The documentation for this class was generated from the following files:
Generated on Fri May 6 13:36:18 2005 for edikt::BinX by doxygen 1.3.3