Equalizer
1.2.1
|
A generic, distributed object. More...
#include <object.h>
Public Member Functions | |
CO_API | Object () |
Construct a new distributed object. | |
virtual CO_API | ~Object () |
Destruct the distributed object. | |
Data Access | |
bool | isAttached () const |
LocalNodePtr | getLocalNode () |
CO_API void | setID (const base::UUID &identifier) |
Set the object's unique identifier. | |
const base::UUID & | getID () const |
uint32_t | getInstanceID () const |
CO_API bool | isBuffered () const |
CO_API bool | isMaster () const |
Versioning | |
virtual ChangeType | getChangeType () const |
virtual CO_API uint32_t | chooseCompressor () const |
Return the compressor to be used for data transmission. | |
virtual bool | isDirty () const |
Return if this object needs a commit. | |
CO_API void | push (const uint128_t &groupID, const uint128_t &typeID, const Nodes &nodes) |
Push the instance data of the object to the given nodes. | |
virtual CO_API uint128_t | commit (const uint32_t incarnation=CO_COMMIT_NEXT) |
Commit a new version of this object. | |
CO_API void | setAutoObsolete (const uint32_t count) |
Automatically obsolete old versions. | |
CO_API uint32_t | getAutoObsolete () const |
virtual CO_API uint128_t | sync (const uint128_t &version=VERSION_HEAD) |
Sync to a given version. | |
CO_API uint128_t | getHeadVersion () const |
CO_API uint128_t | getVersion () const |
virtual CO_API void | notifyNewHeadVersion (const uint128_t &version) |
Notification that a new head version was received by a slave object. | |
virtual void | notifyNewVersion () |
Notification that a new version was received by a master object. | |
Serialization methods for instantiation and versioning. | |
virtual void | getInstanceData (DataOStream &os)=0 |
Serialize all instance information of this distributed object. | |
virtual void | applyInstanceData (DataIStream &is)=0 |
Deserialize the instance data. | |
virtual void | pack (DataOStream &os) |
Serialize the modifications since the last call to commit(). | |
virtual void | unpack (DataIStream &is) |
Deserialize a change. | |
Packet Transmission | |
CO_API bool | send (NodePtr node, ObjectPacket &packet) |
Send a packet to peer object instance(s) on another node. | |
CO_API bool | send (NodePtr node, ObjectPacket &packet, const std::string &string) |
Send a packet to peer object instance(s) on another node. | |
CO_API bool | send (NodePtr node, ObjectPacket &packet, const void *data, const uint64_t size) |
Send a packet to peer object instance(s) on another node. | |
Notifications | |
virtual void | notifyAttach () |
Notify that this object will be registered or mapped. | |
virtual void | notifyAttached () |
Notify that this object has been registered or mapped. | |
virtual CO_API void | notifyDetach () |
Notify that this object will be deregistered or unmapped. | |
virtual void | notifyDetached () |
Notify that this object has been deregistered or unmapped. | |
uint32_t | getMasterInstanceID () const |
NodePtr | getMasterNode () |
void | addSlave (Command &command) |
CO_API void | removeSlave (NodePtr node) |
CO_API void | removeSlaves (NodePtr node) |
void | setMasterNode (NodePtr node) |
void | addInstanceDatas (const ObjectDataIStreamDeque &, const uint128_t &) |
void | setupChangeManager (const Object::ChangeType type, const bool master, LocalNodePtr localNode, const uint32_t masterInstanceID) |
virtual CO_API void | attach (const base::UUID &id, const uint32_t instanceID) |
virtual CO_API void | detach () |
void | transfer (Object *from) |
void | applyMapData (const uint128_t &version) |
void | sendInstanceData (Nodes &nodes) |
Public Types | |
enum | ChangeType { NONE, STATIC, INSTANCE, DELTA, UNBUFFERED } |
Object change handling characteristics, see Programming Guide. More... | |
Protected Member Functions | |
CO_API | Object (const Object &) |
Copy constructor. | |
const Object & | operator= (const Object &) |
NOP assignment operator. | |
Friends | |
class | DeltaMasterCM |
class | FullMasterCM |
class | MasterCM |
class | ObjectCM |
class | StaticMasterCM |
class | StaticSlaveCM |
class | UnbufferedMasterCM |
class | VersionedSlaveCM |
A generic, distributed object.
Please refer to the Programming Guide and examples on how to develop and use distributed objects.
Definition at line 39 of file co/object.h.
Object change handling characteristics, see Programming Guide.
STATIC |
non-versioned, static object. |
INSTANCE |
use only instance data |
DELTA |
use pack/unpack delta |
UNBUFFERED |
versioned, but don't retain versions |
Definition at line 43 of file co/object.h.
CO_API co::Object::Object | ( | ) |
Construct a new distributed object.
Reimplemented in eq::fabric::Object.
virtual CO_API co::Object::~Object | ( | ) | [virtual] |
Destruct the distributed object.
Reimplemented in eq::fabric::Object.
CO_API co::Object::Object | ( | const Object & | ) | [protected] |
Copy constructor.
virtual void co::Object::applyInstanceData | ( | DataIStream & | is | ) | [pure virtual] |
Deserialize the instance data.
This method is called during object mapping to populate slave instances with the master object's data.
is | the input stream. |
Implemented in eq::FrameData, eq::Frame, osgScaleViewer::InitData, co::Barrier, eqPly::VertexBufferDist, eqPly::VertexBufferDist, eVolve::InitData, eqPly::InitData, and eqNbody::InitData.
Referenced by unpack().
virtual CO_API uint32_t co::Object::chooseCompressor | ( | ) | const [virtual] |
Return the compressor to be used for data transmission.
This default implementation chooses the compressor with the highest compression ratio with lossless compression for EQ_COMPRESSOR_DATATYPE_BYTE tokens. The application may override this method to deactivate compression by returning EQ_COMPRESSOR_NONE or to select object-specific compressors.
virtual CO_API uint128_t co::Object::commit | ( | const uint32_t | incarnation = CO_COMMIT_NEXT | ) | [virtual] |
Commit a new version of this object.
Objects using the change type STATIC can not be committed.
Master instances will increment new versions continously, starting at VERSION_FIRST. If the object has not changed, no new version will be generated, that is, the current version is returned. The high value of the returned version will always be 0.
Slave objects can be commited, but have certain caveats for serialization. Please refer to the Programming Guide for more details. Slave object commits will return a random version on a successful commit, or VERSION_NONE if the object has not changed since the last commit. The high value of a successful commit will never be 0.
The incarnation count is meaningful for buffered master objects. The commit implementation will keep all instance data committed with an incarnation count newer than current_incarnation - getAutoObsolete()
. By default, each call to commit creates a new incarnation, retaining the data from last getAutoObsolete() commit calls. When the application wishes to auto obsolete by another metric than commit calls, it has to consistently provide an incarnation counter. Buffers with a higher incarnation count than the current are discarded. A typical use case is to tie the auto obsoletion to an application-specific frame loop. Decreasing the incarnation counter will lead to undefined results.
incarnation | the commit incarnation for auto obsoletion. |
Reimplemented in eq::fabric::Config< S, C, O, L, CV, N, V >, eq::fabric::Config< Server, Config, Observer, Layout, Canvas, Node, ConfigVisitor >, eq::fabric::Window< P, W, C >, eq::fabric::Window< Pipe, Window, Channel >, eq::fabric::Segment< C, S, CH >, eq::fabric::Segment< Canvas, Segment, Channel >, eq::fabric::Pipe< N, P, W, V >, eq::fabric::Pipe< Node, Pipe, eq::Window, PipeVisitor >, eq::fabric::Node< C, N, P, V >, eq::fabric::Node< Config, Node, Pipe, NodeVisitor >, eq::fabric::Object, co::ObjectMap, and co::Serializable.
CO_API uint32_t co::Object::getAutoObsolete | ( | ) | const |
virtual ChangeType co::Object::getChangeType | ( | ) | const [inline, virtual] |
Reimplemented in eq::fabric::Channel< W, C >, eq::fabric::Channel< Window, Channel >, eq::FrameData, eq::Frame, eq::fabric::Window< P, W, C >, eq::fabric::Window< Pipe, Window, Channel >, eq::fabric::Pipe< N, P, W, V >, eq::fabric::Pipe< Node, Pipe, eq::Window, PipeVisitor >, eq::fabric::Node< C, N, P, V >, eq::fabric::Node< Config, Node, Pipe, NodeVisitor >, eqPly::FrameData, eqPly::FrameData, osgScaleViewer::FrameData, eVolve::FrameData, co::Serializable, co::ObjectMap, co::Barrier, and eqNbody::SharedDataProxy.
Definition at line 99 of file co/object.h.
References STATIC.
CO_API uint128_t co::Object::getHeadVersion | ( | ) | const |
const base::UUID& co::Object::getID | ( | ) | const [inline] |
Definition at line 82 of file co/object.h.
Referenced by eqPly::Channel::frameClear(), eqPly::Channel::frameViewFinish(), eqPly::Config::getModel(), eVolve::Config::init(), osgScaleViewer::Config::init(), eqPly::Config::init(), eVolve::Config::mapData(), eqPly::Config::mapData(), co::DataIStream::operator>>(), and eqPly::Config::sync().
virtual void co::Object::getInstanceData | ( | DataOStream & | os | ) | [pure virtual] |
Serialize all instance information of this distributed object.
os | The output stream. |
Implemented in eq::FrameData, eq::Frame, osgScaleViewer::InitData, co::Barrier, eqPly::VertexBufferDist, eqPly::VertexBufferDist, eVolve::InitData, eqPly::InitData, and eqNbody::InitData.
Referenced by pack().
uint32_t co::Object::getInstanceID | ( | ) | const [inline] |
Definition at line 85 of file co/object.h.
LocalNodePtr co::Object::getLocalNode | ( | ) | [inline] |
Definition at line 67 of file co/object.h.
CO_API uint128_t co::Object::getVersion | ( | ) | const |
bool co::Object::isAttached | ( | ) | const [inline] |
Definition at line 61 of file co/object.h.
Referenced by eVolve::Config::mapData(), eqPly::Config::mapData(), co::DataOStream::operator<<(), and eqPly::Config::unmapData().
virtual bool co::Object::isDirty | ( | ) | const [inline, virtual] |
Return if this object needs a commit.
This function is used for optimization, to detect early that no commit is needed. If it returns true, pack() or getInstanceData() will be executed. The serialization methods can still decide to not write any data, upon which no new version will be created. If it returns false, commit() will exit early.
Reimplemented in eq::fabric::Object, co::ObjectMap, and co::Serializable.
Definition at line 123 of file co/object.h.
CO_API bool co::Object::isMaster | ( | ) | const |
Referenced by co::Serializable::notifyAttached(), and eqPly::Config::unmapData().
virtual void co::Object::notifyAttach | ( | ) | [inline, virtual] |
Notify that this object will be registered or mapped.
The method is called from the thread initiating the registration or mapping, before the operation is executed.
Definition at line 313 of file co/object.h.
virtual void co::Object::notifyAttached | ( | ) | [inline, virtual] |
Notify that this object has been registered or mapped.
The method is called from the thread initiating the registration or mapping, after the operation has been completed successfully.
Reimplemented in eq::Config, co::Serializable, and co::ObjectMap.
Definition at line 322 of file co/object.h.
virtual CO_API void co::Object::notifyDetach | ( | ) | [virtual] |
Notify that this object will be deregistered or unmapped.
The method is called from the thread initiating the deregistration or unmapping, before the operation is executed.
Reimplemented in eq::Config, eq::fabric::Config< S, C, O, L, CV, N, V >, eq::fabric::Config< Server, Config, Observer, Layout, Canvas, Node, ConfigVisitor >, eq::fabric::Window< P, W, C >, eq::fabric::Window< Pipe, Window, Channel >, eq::fabric::Pipe< N, P, W, V >, eq::fabric::Pipe< Node, Pipe, eq::Window, PipeVisitor >, eq::fabric::Canvas< CFG, C, S, L >, eq::fabric::Canvas< Config, Canvas, Segment, Layout >, eq::fabric::Object, eq::fabric::Node< C, N, P, V >, eq::fabric::Node< Config, Node, Pipe, NodeVisitor >, eq::fabric::Layout< C, L, V >, and eq::fabric::Layout< Config, Layout, View >.
virtual void co::Object::notifyDetached | ( | ) | [inline, virtual] |
Notify that this object has been deregistered or unmapped.
The method is called from the thread initiating the deregistration or unmapping, after the operation has been executed.
Definition at line 339 of file co/object.h.
virtual CO_API void co::Object::notifyNewHeadVersion | ( | const uint128_t & | version | ) | [virtual] |
Notification that a new head version was received by a slave object.
The notification is send from the receiver thread, which is different from the node main thread. The object should not be sync()'ed from this notification, as this might lead to deadlocks and synchronization issues with the application thread changing the object. Its purpose is to send a message to the application, which then takes the appropriate action. In particular do not perform any potentially blocking operations from this method.
version | The new head version. |
virtual void co::Object::notifyNewVersion | ( | ) | [inline, virtual] |
Notification that a new version was received by a master object.
Definition at line 252 of file co/object.h.
NOP assignment operator.
Definition at line 396 of file co/object.h.
virtual void co::Object::pack | ( | DataOStream & | os | ) | [inline, virtual] |
Serialize the modifications since the last call to commit().
No new version will be created if no data is written to the output stream.
os | the output stream. |
Reimplemented in co::Barrier.
Definition at line 282 of file co/object.h.
References getInstanceData().
CO_API void co::Object::push | ( | const uint128_t & | groupID, |
const uint128_t & | typeID, | ||
const Nodes & | nodes | ||
) |
Push the instance data of the object to the given nodes.
Used to push object data from a Node, instead of pulling it during mapping. Does not establish any mapping, that is, the receiving side will typically use LocalNode::mapObject with VERSION_NONE to establish a slave mapping. On each receiving node, LocalNode::objectPush() is called once per node.
Buffered objects do not re-serialize their instance data. Multicast connections are preferred, that is, for a set of nodes sharing one multicast connection the data is only send once.
groupID | An identifier to group a set of push operations. |
typeID | A per-push identifier. |
nodes | The vector of nodes to push to. |
CO_API bool co::Object::send | ( | NodePtr | node, |
ObjectPacket & | packet | ||
) |
Send a packet to peer object instance(s) on another node.
CO_API bool co::Object::send | ( | NodePtr | node, |
ObjectPacket & | packet, | ||
const std::string & | string | ||
) |
Send a packet to peer object instance(s) on another node.
CO_API bool co::Object::send | ( | NodePtr | node, |
ObjectPacket & | packet, | ||
const void * | data, | ||
const uint64_t | size | ||
) |
Send a packet to peer object instance(s) on another node.
CO_API void co::Object::setAutoObsolete | ( | const uint32_t | count | ) |
Automatically obsolete old versions.
The versions for the last count commits are retained. The actual number of versions retained may be less since a commit does not always generate a new version.
count | the number of versions to retain, excluding the head version. |
Referenced by eVolve::Config::init(), and eqPly::Config::init().
CO_API void co::Object::setID | ( | const base::UUID & | identifier | ) |
Set the object's unique identifier.
Only to be called on unattached objects. The application has to ensure the uniqueness of the identifier in the peer-to-peer node network. By default, each object has an identifier guaranteed to be unique. During mapping, the identifier of the object will be overwritten with the identifier of the master object.
virtual CO_API uint128_t co::Object::sync | ( | const uint128_t & | version = VERSION_HEAD | ) | [virtual] |
Sync to a given version.
Objects using the change type STATIC can not be synced.
Syncing to VERSION_HEAD syncs up to the last received version, does not block and always returns true. Syncing to VERSION_NEXT applies one new version, potentially blocking. Syncing to VERSION_NONE does nothing.
Slave objects can be synced to VERSION_HEAD, VERSION_NEXT or to any version generated by a commit on the master instance. Syncing to a concrete version applies all pending deltas up to this version and potentially blocks.
Master objects can only be synced to VERSION_HEAD, VERSION_NEXT or to any version generated by a commit on a slave instance. Syncing to a concrete version applies only this version and potentially blocks.
The different sync semantics for concrete versions originate from the fact that master versions are continous and ordered, while slave versions are random and unordered.
This function is not thread safe, that is, calling sync() simultaneously on the same object from multiple threads has to be protected by the caller using a mutex.
version | the version to synchronize (see above). |
Reimplemented in eqPly::Config.
Referenced by eqNbody::Pipe::frameStart(), eVolve::Pipe::frameStart(), eqPly::Pipe::frameStart(), and osgScaleViewer::Pipe::frameStart().
virtual void co::Object::unpack | ( | DataIStream & | is | ) | [inline, virtual] |
Deserialize a change.
is | the input data stream. |
Reimplemented in co::Barrier.
Definition at line 289 of file co/object.h.
References applyInstanceData().