20#ifndef GEODE_PDXINSTANCE_H_
21#define GEODE_PDXINSTANCE_H_
24#include "PdxFieldTypes.hpp"
25#include "PdxSerializable.hpp"
30class WritablePdxInstance;
32class CacheableObjectArray;
66 virtual std::shared_ptr<PdxSerializable>
getObject() = 0;
76 virtual bool hasField(
const std::string& fieldname) = 0;
91 const std::string& fieldname)
const = 0;
129 virtual int32_t
getIntField(
const std::string& fieldname)
const = 0;
190 const std::string& fieldname)
const = 0;
201 const std::string& fieldname)
const = 0;
212 const std::string& fieldname)
const = 0;
223 const std::string& fieldname)
const = 0;
234 const std::string& fieldname)
const = 0;
245 const std::string& fieldname)
const = 0;
256 const std::string& fieldname)
const = 0;
268 const std::string& fieldName)
const = 0;
279 const std::string& fieldname)
const = 0;
292 const std::string& fieldname)
const = 0;
306 virtual void getField(
const std::string& fieldName, int8_t*** value,
307 int32_t& arrayLength,
308 int32_t*& elementLength)
const = 0;
324 const std::string& fieldname)
const = 0;
468 virtual PdxFieldTypes
getFieldType(
const std::string& fieldname)
const = 0;
Contains generic template definitions for Cacheable types and instantiations for built-in types.
Represents a cacheable key.
Definition: CacheableKey.hpp:40
PdxInstance provides run time access to the fields of a PDX without deserializing the PDX.
Definition: PdxInstance.hpp:51
virtual bool operator==(const CacheableKey &other) const override=0
Returns true if the given CacheableKey derived object is equals to this instance.
virtual int64_t getLongField(const std::string &fieldname) const =0
Reads the named field and sets its value in int64_t type out param.
virtual bool hasField(const std::string &fieldname)=0
Checks if the named field exists and returns the result.
virtual std::shared_ptr< WritablePdxInstance > createWriter()=0
Creates and returns a WritablePdxInstance whose initial values are those of this PdxInstance.
virtual bool getBooleanField(const std::string &fieldname) const =0
Reads the named field and sets its value in bool type out param.
virtual size_t objectSize() const override=0
virtual std::vector< bool > getBooleanArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in bool array type out param.
virtual std::string toString() const override=0
Prints out all of the identity fields of this PdxInstance.
virtual int32_t getIntField(const std::string &fieldname) const =0
Reads the named field and sets its value in int32_t type out param.
virtual std::vector< int64_t > getLongArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in int64_t array type out param.
virtual std::shared_ptr< Cacheable > getCacheableField(const std::string &fieldname) const =0
Reads the named field and sets its value in std::shared_ptr<Cacheable> type out param.
virtual int8_t getByteField(const std::string &fieldname) const =0
Reads the named field and sets its value in signed char type out param.
~PdxInstance() override=default
destructor
virtual std::vector< float > getFloatArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in float array type out param.
virtual std::vector< char16_t > getCharArrayField(const std::string &fieldName) const =0
Reads the named field and sets its value in char array type out param.
virtual int32_t hashcode() const override=0
Generates a hashcode based on the identity fields of this PdxInstance.
virtual std::shared_ptr< CacheableObjectArray > getCacheableObjectArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in std::shared_ptr<CacheableObjectArray> type out param.
virtual void getField(const std::string &fieldName, int8_t ***value, int32_t &arrayLength, int32_t *&elementLength) const =0
Reads the named field and sets its value in array of byte arrays type out param.
PdxInstance()
constructors
Definition: PdxInstance.hpp:477
virtual std::string getStringField(const std::string &fieldname) const =0
Reads the named field and sets its value in std::string type out param.
virtual const std::string & getClassName() const override=0
Return the full name of the class that this pdx instance represents.
virtual std::vector< std::string > getStringArrayField(const std::string &fieldname) const =0
Reads the named field as a string array.
virtual void toData(PdxWriter &output) const override=0
serialize this object in geode PDX format.
virtual void fromData(PdxReader &input) override=0
Deserialize this object.
virtual std::vector< int16_t > getShortArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in int16_t array type out param.
virtual std::vector< int8_t > getByteArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in signed char array type out param.
virtual std::shared_ptr< CacheableDate > getCacheableDateField(const std::string &fieldname) const =0
Reads the named field and sets its value in std::shared_ptr<CacheableDate> type out param.
virtual PdxFieldTypes getFieldType(const std::string &fieldname) const =0
Return the type.
virtual double getDoubleField(const std::string &fieldname) const =0
Reads the named field and sets its value in double type out param.
virtual std::vector< double > getDoubleArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in double array type out param.
virtual char16_t getCharField(const std::string &fieldName) const =0
Reads the named field and sets its value in char type out param.
virtual int16_t getShortField(const std::string &fieldname) const =0
Reads the named field and sets its value in int16_t type out param.
virtual bool isIdentityField(const std::string &fieldname)=0
Checks if the named field was PdxWriter#markIdentityFieldmarked as an identity field.
virtual std::vector< int32_t > getIntArrayField(const std::string &fieldname) const =0
Reads the named field and sets its value in int32_t array type out param.
virtual std::shared_ptr< PdxSerializable > getObject()=0
Deserializes and returns the domain object that this instance represents.
virtual std::shared_ptr< CacheableStringArray > getFieldNames()=0
Return an unmodifiable list of the field names on this PdxInstance.
virtual float getFloatField(const std::string &fieldname) const =0
Reads the named field and sets its value in float type out param.
A PdxReader will be passed to PdxSerializable.fromData or during deserialization of a PDX.
Definition: PdxReader.hpp:58
An interface for objects whose contents can be serialized as PDX types.
Definition: PdxSerializable.hpp:41
A PdxWriter will be passed to PdxSerializable.toData when it is serializing the domain class.
Definition: PdxWriter.hpp:41