OpenSceneGraph  3.5.1
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
osgDB::ObjectWrapper Class Reference
Inheritance diagram for osgDB::ObjectWrapper:
Inheritance graph
[legend]

Public Types

typedef std::vector< BaseSerializer::TypeTypeList
 
typedef std::vector< osg::ref_ptr< BaseSerializer > > SerializerList
 
typedef std::vector< osg::ref_ptr< FinishedObjectReadCallback > > FinishedObjectReadCallbackList
 
typedef osg::ObjectCreateInstanceFunc()
 
typedef std::multimap< std::string, osg::ref_ptr< MethodObject > > MethodObjectMap
 

Public Member Functions

 ObjectWrapper (CreateInstanceFunc *createInstanceFunc, const std::string &name, const std::string &associates)
 
 ObjectWrapper (CreateInstanceFunc *createInstanceFunc, const std::string &domain, const std::string &name, const std::string &associates)
 
void setUpdatedVersion (int ver)
 
int getUpdatedVersion () const
 
osg::ObjectcreateInstance () const
 
const std::string & getDomain () const
 
const std::string & getName () const
 
const StringListgetAssociates () const
 
SerializerListgetSerializerList ()
 
const SerializerListgetSerializerList () const
 
TypeListgetTypeList ()
 
const TypeListgetTypeList () const
 
void addSerializer (BaseSerializer *s, BaseSerializer::Type t=BaseSerializer::RW_UNDEFINED)
 
void markSerializerAsRemoved (const std::string &name)
 
BaseSerializergetLastSerializer ()
 
BaseSerializergetSerializer (const std::string &name)
 
BaseSerializergetSerializer (const std::string &name, BaseSerializer::Type &type)
 
void addFinishedObjectReadCallback (FinishedObjectReadCallback *forc)
 
bool read (InputStream &, osg::Object &)
 
bool write (OutputStream &, const osg::Object &)
 
bool readSchema (const StringList &properties, const TypeList &types)
 
void writeSchema (StringList &properties, TypeList &types)
 
void resetSchema ()
 
void addMethodObject (const std::string &methodName, MethodObject *mo)
 
MethodObjectMapgetMethodObjectMap ()
 
const MethodObjectMapgetMethodObjectMap () const
 
- Public Member Functions inherited from osg::Referenced
 Referenced ()
 
 Referenced (bool threadSafeRefUnref)
 
 Referenced (const Referenced &)
 
Referencedoperator= (const Referenced &)
 
virtual void setThreadSafeRefUnref (bool threadSafe)
 Set whether to use a mutex to ensure ref() and unref() are thread safe. More...
 
bool getThreadSafeRefUnref () const
 Get whether a mutex is used to ensure ref() and unref() are thread safe. More...
 
OpenThreads::Mutex * getRefMutex () const
 Get the mutex used to ensure thread safety of ref()/unref(). More...
 
int ref () const
 Increment the reference count by one, indicating that this object has another pointer which is referencing it. More...
 
int unref () const
 Decrement the reference count by one, indicating that a pointer to this object is no longer referencing it. More...
 
int unref_nodelete () const
 Decrement the reference count by one, indicating that a pointer to this object is no longer referencing it. More...
 
int referenceCount () const
 Return the number of pointers currently referencing this object. More...
 
ObserverSetgetObserverSet () const
 Get the ObserverSet if one is attached, otherwise return NULL. More...
 
ObserverSetgetOrCreateObserverSet () const
 Get the ObserverSet if one is attached, otherwise create an ObserverSet, attach it, then return this newly created ObserverSet. More...
 
void addObserver (Observer *observer) const
 Add a Observer that is observing this object, notify the Observer when this object gets deleted. More...
 
void removeObserver (Observer *observer) const
 Remove Observer that is observing this object. More...
 

Protected Member Functions

 ObjectWrapper ()
 
virtual ~ObjectWrapper ()
 
- Protected Member Functions inherited from osg::Referenced
virtual ~Referenced ()
 
void signalObserversAndDelete (bool signalDelete, bool doDelete) const
 
void deleteUsingDeleteHandler () const
 

Protected Attributes

CreateInstanceFunc_createInstanceFunc
 
std::string _domain
 
std::string _name
 
StringList _associates
 
SerializerList _serializers
 
SerializerList _backupSerializers
 
TypeList _typeList
 
FinishedObjectReadCallbackList _finishedObjectReadCallbacks
 
MethodObjectMap _methodObjectMap
 
int _version
 
- Protected Attributes inherited from osg::Referenced
OpenThreads::AtomicPtr _observerSet
 
OpenThreads::Atomic _refCount
 

Additional Inherited Members

- Static Public Member Functions inherited from osg::Referenced
static OpenThreads::Mutex * getGlobalReferencedMutex ()
 Get the optional global Referenced mutex, this can be shared between all osg::Referenced. More...
 
static void setThreadSafeReferenceCounting (bool enableThreadSafeReferenceCounting)
 Set whether reference counting should use a mutex for thread safe reference counting. More...
 
static bool getThreadSafeReferenceCounting ()
 Get whether reference counting is active. More...
 
static void setDeleteHandler (DeleteHandler *handler)
 Set a DeleteHandler to which deletion of all referenced counted objects will be delegated. More...
 
static DeleteHandlergetDeleteHandler ()
 Get a DeleteHandler. More...
 

Member Typedef Documentation

typedef osg::Object* osgDB::ObjectWrapper::CreateInstanceFunc()
typedef std::multimap< std::string, osg::ref_ptr<MethodObject> > osgDB::ObjectWrapper::MethodObjectMap

Constructor & Destructor Documentation

osgDB::ObjectWrapper::ObjectWrapper ( CreateInstanceFunc createInstanceFunc,
const std::string &  name,
const std::string &  associates 
)
osgDB::ObjectWrapper::ObjectWrapper ( CreateInstanceFunc createInstanceFunc,
const std::string &  domain,
const std::string &  name,
const std::string &  associates 
)
osgDB::ObjectWrapper::ObjectWrapper ( )
inlineprotected
virtual osgDB::ObjectWrapper::~ObjectWrapper ( )
inlineprotectedvirtual

Member Function Documentation

void osgDB::ObjectWrapper::addFinishedObjectReadCallback ( FinishedObjectReadCallback forc)
inline
void osgDB::ObjectWrapper::addMethodObject ( const std::string &  methodName,
MethodObject mo 
)
void osgDB::ObjectWrapper::addSerializer ( BaseSerializer s,
BaseSerializer::Type  t = BaseSerializer::RW_UNDEFINED 
)
osg::Object* osgDB::ObjectWrapper::createInstance ( ) const
inline
const StringList& osgDB::ObjectWrapper::getAssociates ( ) const
inline
const std::string& osgDB::ObjectWrapper::getDomain ( ) const
inline
BaseSerializer* osgDB::ObjectWrapper::getLastSerializer ( )
inline
MethodObjectMap& osgDB::ObjectWrapper::getMethodObjectMap ( )
inline
const MethodObjectMap& osgDB::ObjectWrapper::getMethodObjectMap ( ) const
inline
const std::string& osgDB::ObjectWrapper::getName ( ) const
inline
BaseSerializer* osgDB::ObjectWrapper::getSerializer ( const std::string &  name)
BaseSerializer* osgDB::ObjectWrapper::getSerializer ( const std::string &  name,
BaseSerializer::Type type 
)
SerializerList& osgDB::ObjectWrapper::getSerializerList ( )
inline
const SerializerList& osgDB::ObjectWrapper::getSerializerList ( ) const
inline
TypeList& osgDB::ObjectWrapper::getTypeList ( )
inline
const TypeList& osgDB::ObjectWrapper::getTypeList ( ) const
inline
int osgDB::ObjectWrapper::getUpdatedVersion ( ) const
inline
void osgDB::ObjectWrapper::markSerializerAsRemoved ( const std::string &  name)
bool osgDB::ObjectWrapper::read ( InputStream ,
osg::Object  
)
bool osgDB::ObjectWrapper::readSchema ( const StringList properties,
const TypeList types 
)
void osgDB::ObjectWrapper::resetSchema ( )
inline
void osgDB::ObjectWrapper::setUpdatedVersion ( int  ver)
inline
bool osgDB::ObjectWrapper::write ( OutputStream ,
const osg::Object  
)
void osgDB::ObjectWrapper::writeSchema ( StringList properties,
TypeList types 
)

Member Data Documentation

StringList osgDB::ObjectWrapper::_associates
protected
SerializerList osgDB::ObjectWrapper::_backupSerializers
protected
CreateInstanceFunc* osgDB::ObjectWrapper::_createInstanceFunc
protected
std::string osgDB::ObjectWrapper::_domain
protected
FinishedObjectReadCallbackList osgDB::ObjectWrapper::_finishedObjectReadCallbacks
protected
MethodObjectMap osgDB::ObjectWrapper::_methodObjectMap
protected
std::string osgDB::ObjectWrapper::_name
protected
SerializerList osgDB::ObjectWrapper::_serializers
protected
TypeList osgDB::ObjectWrapper::_typeList
protected
int osgDB::ObjectWrapper::_version
protected

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

osg logo
Generated at Wed Nov 11 2015 22:14:55 for the OpenSceneGraph by doxygen 1.8.10.