VMware GemFire Native C++ Reference
9.1
|
A PdxReader will be passed to PdxSerializable.fromData or during deserialization of a PDX. More...
Inherits apache::geode::client::SharedBase.
Public Member Functions | |
virtual bool | hasField (const char *fieldName)=0 |
Checks if the named field exists and returns the result. More... | |
virtual bool | isIdentityField (const char *fieldName)=0 |
Checks if the named field was PdxWriter#markIdentityFieldmarked as an identity field. More... | |
PdxReader () | |
constructors More... | |
void | preserveSB () const |
Atomically increment reference count. More... | |
virtual int8_t ** | readArrayOfByteArrays (const char *fieldName, int32_t &arrayLength, int32_t **elementLength)=0 |
Read a int8_t** value from the PdxReader and sets ArrayOfByteArray's length and individual ByteArray's length. More... | |
virtual bool | readBoolean (const char *fieldName)=0 |
Read a bool value from the PdxReader . More... | |
virtual bool * | readBooleanArray (const char *fieldName, int32_t &length)=0 |
Read a bool* value from the PdxReader and sets array length. More... | |
virtual int8_t | readByte (const char *fieldName)=0 |
Read a int8_t value from the PdxReader . More... | |
virtual int8_t * | readByteArray (const char *fieldName, int32_t &length)=0 |
Read a int8_t* value from the PdxReader and sets array length. More... | |
virtual char | readChar (const char *fieldName)=0 |
Read a char value from the PdxReader . More... | |
virtual char * | readCharArray (const char *fieldName, int32_t &length)=0 |
Read a char* value from the PdxReader and sets array length. More... | |
virtual CacheableDatePtr | readDate (const char *fieldName)=0 |
Read a CacheableDatePtr value from the PdxReader . More... | |
virtual double | readDouble (const char *fieldName)=0 |
Read a double value from the PdxReader . More... | |
virtual double * | readDoubleArray (const char *fieldName, int32_t &length)=0 |
Read a double* value from the PdxReader and sets array length. More... | |
virtual float | readFloat (const char *fieldName)=0 |
Read a float value from the PdxReader . More... | |
virtual float * | readFloatArray (const char *fieldName, int32_t &length)=0 |
Read a float* value from the PdxReader and sets array length. More... | |
virtual int32_t | readInt (const char *fieldName)=0 |
Read a int32_t value from the PdxReader . More... | |
virtual int32_t * | readIntArray (const char *fieldName, int32_t &length)=0 |
Read a int32_t* value from the PdxReader and sets array length. More... | |
virtual int64_t | readLong (const char *fieldName)=0 |
Read a int64_t value from the PdxReader . More... | |
virtual int64_t * | readLongArray (const char *fieldName, int32_t &length)=0 |
Read a int64_t* value from the PdxReader and sets array length. More... | |
virtual CacheablePtr | readObject (const char *fieldName)=0 |
Read a CacheablePtr value from the PdxReader . More... | |
virtual CacheableObjectArrayPtr | readObjectArray (const char *fieldName)=0 |
Read a CacheableObjectArrayPtr value from the PdxReader . More... | |
virtual int16_t | readShort (const char *fieldName)=0 |
Read a int16_t value from the PdxReader . More... | |
virtual int16_t * | readShortArray (const char *fieldName, int32_t &length)=0 |
Read a int16_t* value from the PdxReader and sets array length. More... | |
virtual char * | readString (const char *fieldName)=0 |
Read a char* value from the PdxReader . More... | |
virtual char ** | readStringArray (const char *fieldName, int32_t &length)=0 |
Read a char** value from the PdxReader and sets array length. More... | |
virtual PdxUnreadFieldsPtr | readUnreadFields ()=0 |
This method returns an object that represents all the unread fields which must be passed to PdxWriter#writeUnreadFields in the toData code. More... | |
virtual wchar_t | readWideChar (const char *fieldName)=0 |
Read a wide char value from the PdxReader . More... | |
virtual wchar_t * | readWideCharArray (const char *fieldName, int32_t &length)=0 |
Read a wchar_t* value from the PdxReader and sets array length. More... | |
virtual wchar_t * | readWideString (const char *fieldName)=0 |
Read a wchar_t* value from the PdxReader . More... | |
virtual wchar_t ** | readWideStringArray (const char *fieldName, int32_t &length)=0 |
Read a wchar_t** value from the PdxReader and sets array length. More... | |
int32_t | refCount () |
void | releaseSB () const |
Atomically decrement reference count, the SharedBase object is automatically deleted when its reference count goes to zero. More... | |
virtual | ~PdxReader () |
destructor More... | |
A PdxReader will be passed to PdxSerializable.fromData or during deserialization of a PDX.
The domain class needs to deserialize field members using this abstract class. This class is implemented by Native Client. Each readXXX call will return the field's value. If the serialized PDX does not contain the named field then a default value will be returned. Standard Java defaults are used. For Objects this is null and for primitives it is 0 or 0.0.
NULL
, non-empty strings returned from PdxReader::readString() or PdxReader::readWideString() must be freed with DataInput::freeUTFMemory(). Arrays returned from PdxReader::readStringArray() or PdxReader::readWideStringArray() must be freed with GF_SAFE_DELETE_ARRAY
once their constituent strings have been freed with DataInput::freeUTFMemory().
|
inline |
constructors
|
inlinevirtual |
destructor
|
pure virtual |
Checks if the named field exists and returns the result.
This can be useful when writing code that handles more than one version of a PDX class.
fieldname | the name of the field to check |
true
if the named field exists; otherwise false
|
pure virtual |
Checks if the named field was PdxWriter#markIdentityFieldmarked as an identity field.
Note that if no fields have been marked then all the fields are used as identity fields even though this method will return false
since none of them have been marked.
fieldname | the name of the field to check |
true
if the named field exists and was marked as an identify field; otherwise false
|
inherited |
Atomically increment reference count.
|
pure virtual |
Read a int8_t** value from the PdxReader
and sets ArrayOfByteArray's length and individual ByteArray's length.
C++ int8_t** is mapped to Java byte[][].
fieldName | name of the field to read |
arrayLength | length is set with number of int8_t* elements |
elementLength | elementLength is set with the length value of individual byte arrays. |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a bool value from the PdxReader
.
C++ bool is mapped to Java boolean
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a bool* value from the PdxReader
and sets array length.
C++ bool* is mapped to Java boolean[]
fieldName | name of the field to read |
length | length is set with number of bool elements. |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int8_t value from the PdxReader
.
C++ int8_t is mapped to Java byte
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int8_t* value from the PdxReader
and sets array length.
C++ int8_t* is mapped to Java byte[].
fieldName | name of the field to read |
length | length is set with number of int8_t elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a char value from the PdxReader
.
C++ char is mapped to Java char
fieldName | name of the field to read. |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a char* value from the PdxReader
and sets array length.
C++ char* is mapped to Java char[].
fieldName | name of the field to read |
length | length is set with number of wchar_t elements. |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a CacheableDatePtr value from the PdxReader
.
C++ CacheableDatePtr is mapped to Java Date
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a double value from the PdxReader
.
C++ double is mapped to Java double
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a double* value from the PdxReader
and sets array length.
C++ double* is mapped to Java double[].
fieldName | name of the field to read |
length | length is set with number of double elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a float value from the PdxReader
.
C++ float is mapped to Java float
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a float* value from the PdxReader
and sets array length.
C++ float* is mapped to Java float[].
fieldName | name of the field to read |
length | length is set with number of float elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int32_t value from the PdxReader
.
C++ int32_t is mapped to Java int
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int32_t* value from the PdxReader
and sets array length.
C++ int32_t* is mapped to Java int[].
fieldName | name of the field to read |
length | length is set with number of int32_t elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int64_t value from the PdxReader
.
C++ int64_t is mapped to Java long
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int64_t* value from the PdxReader
and sets array length.
C++ int64_t* is mapped to Java long[].
fieldName | name of the field to read |
length | length is set with number of int64_t elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a CacheablePtr value from the PdxReader
.
C++ CacheablePtr is mapped to Java object
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a CacheableObjectArrayPtr value from the PdxReader
.
C++ CacheableObjectArrayPtr is mapped to Java Object[].
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int16_t value from the PdxReader
.
C++ int16_t is mapped to Java short
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a int16_t* value from the PdxReader
and sets array length.
C++ int16_t* is mapped to Java short[].
fieldName | name of the field to read |
length | length is set with number of int16_t elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a char* value from the PdxReader
.
C++ char* is mapped to Java String
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a char** value from the PdxReader
and sets array length.
C++ char** is mapped to Java String[].
fieldName | name of the field to read |
length | length is set with number of char* elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
This method returns an object that represents all the unread fields which must be passed to PdxWriter#writeUnreadFields in the toData code.
Note that if CacheFactory#setPdxIgnoreUnreadFields is set to true
then this method will always return an object that has no unread fields.
|
pure virtual |
Read a wide char value from the PdxReader
.
C++ wchar_t is mapped to Java char
fieldName | name of the field to read. |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a wchar_t* value from the PdxReader
and sets array length.
C++ wchar_t* is mapped to Java char[].
fieldName | name of the field to read |
length | length is set with number of wchar_t elements. |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a wchar_t* value from the PdxReader
.
C++ wchar_t* is mapped to Java String
fieldName | name of the field to read |
IllegalStateException | if PdxReader doesn't has the named field. |
|
pure virtual |
Read a wchar_t** value from the PdxReader
and sets array length.
C++ wchar_t** is mapped to Java String[].
fieldName | name of the field to read |
length | length is set with number of wchar_t* elements |
IllegalStateException | if PdxReader doesn't has the named field. |
|
inlineinherited |
|
inherited |
Atomically decrement reference count, the SharedBase object is automatically deleted when its reference count goes to zero.