2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2006-02-28 03:44:33 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSG_OBSERVER_PTR
|
|
|
|
#define OSG_OBSERVER_PTR
|
|
|
|
|
2006-11-27 06:27:09 +08:00
|
|
|
#include <osg/Notify>
|
2010-02-16 04:12:53 +08:00
|
|
|
#include <osg/ref_ptr>
|
|
|
|
#include <osg/Observer>
|
2006-11-27 06:27:09 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
#include <OpenThreads/ScopedLock>
|
|
|
|
#include <OpenThreads/Mutex>
|
|
|
|
|
2006-02-28 03:44:33 +08:00
|
|
|
namespace osg {
|
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
// Internal class used to hold the "naked" pointer to the weakly
|
|
|
|
// referenced object
|
|
|
|
template<typename T>
|
|
|
|
struct WeakReference : public Observer, public Referenced
|
|
|
|
{
|
|
|
|
WeakReference(const T* ptr) : _ptr(const_cast<T*>(ptr)) {}
|
|
|
|
|
|
|
|
void objectDeleted(void*);
|
|
|
|
/**
|
|
|
|
* "Lock" a Referenced object i.e., protect it from being deleted
|
|
|
|
* by incrementing its reference count.
|
|
|
|
*
|
|
|
|
* returns null if object doesn't exist anymore
|
|
|
|
*/
|
|
|
|
virtual T* addRefLock()
|
|
|
|
{
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
|
|
|
if (!_ptr) return 0;
|
|
|
|
int refCount = _ptr->ref();
|
|
|
|
if (refCount == 1)
|
|
|
|
{
|
|
|
|
// The object is in the process of being deleted, but our
|
|
|
|
// objectDeleted() method hasn't been run yet (and we're
|
|
|
|
// blocking it -- and the final destruction -- with our lock).
|
2010-05-17 22:21:53 +08:00
|
|
|
_ptr->unref_nodelete();
|
2010-05-14 20:14:14 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return _ptr;
|
|
|
|
}
|
|
|
|
OpenThreads::Mutex _mutex;
|
|
|
|
T* _ptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Reference object for observer_ptr that was initialized with an
|
|
|
|
// "unsafe" object e.g., a stack-allocated object.
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct UnsafeWeakReference : public WeakReference<T>
|
|
|
|
{
|
|
|
|
UnsafeWeakReference(const T* ptr) : WeakReference<T>(ptr) {}
|
|
|
|
|
|
|
|
// Don't even touch the ref count of an unsafe object
|
|
|
|
T* addRefLock()
|
|
|
|
{
|
|
|
|
OSG_WARN << "tried to lock an unsafe observer_ptr.";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
/**
|
2010-05-17 22:43:41 +08:00
|
|
|
Delete the WeakReference object, if necessary. The WeakReference
|
|
|
|
should be deleted when the last observer_ptr pointing to it goes
|
|
|
|
out of scope; this avoids a memory leak. A race must be prevented
|
|
|
|
between this function and WeakReference::objectDeleted(). If the
|
|
|
|
referenced object is being deleted at the same time as this
|
|
|
|
function is called, we can't prevent objectDeleted() from being
|
|
|
|
run, so we need to leave the WeakReference in a valid state and let
|
|
|
|
objectDeleted() delete it. */
|
2010-05-14 20:14:14 +08:00
|
|
|
template<typename T>
|
|
|
|
void maybeDelete(WeakReference<T>* weakRef)
|
|
|
|
{
|
|
|
|
if (!weakRef || weakRef->unref_nodelete() > 0)
|
|
|
|
return;
|
2010-05-17 22:43:41 +08:00
|
|
|
// No other observer_ptrs hold weakRef, so clean up.
|
2010-05-14 20:14:14 +08:00
|
|
|
bool doDelete = false;
|
|
|
|
{
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(weakRef->_mutex);
|
|
|
|
if (!weakRef->_ptr)
|
|
|
|
{
|
2010-05-17 22:43:41 +08:00
|
|
|
// The object has already been deleted; it's OK to delete weakRef.
|
2010-05-14 20:14:14 +08:00
|
|
|
doDelete = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-17 22:43:41 +08:00
|
|
|
// Carefully remove weakRef as an observer.
|
2010-05-14 20:14:14 +08:00
|
|
|
UnsafeWeakReference<T>* unsafe
|
|
|
|
= dynamic_cast<UnsafeWeakReference<T>*>(weakRef);
|
|
|
|
if (!unsafe && weakRef->_ptr->ref() == 1)
|
|
|
|
{
|
|
|
|
// The referenced object is being deleted, so the
|
|
|
|
// Observer method must delete the weak reference.
|
|
|
|
weakRef->_ptr->unref_nodelete();
|
|
|
|
weakRef->_ptr = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-17 22:43:41 +08:00
|
|
|
// The referenced object won't be deleted until we
|
|
|
|
// decrement the reference count, so go ahead and
|
|
|
|
// remove the observer.
|
2010-05-14 20:14:14 +08:00
|
|
|
doDelete = true;
|
|
|
|
weakRef->_ptr->removeObserver(weakRef);
|
|
|
|
if (!unsafe)
|
|
|
|
weakRef->_ptr->unref_nodelete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (doDelete) delete weakRef;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a weak reference from a Referenced. This returns a
|
|
|
|
* WeakReference object with the ref count bumped. We must already
|
|
|
|
* hold a reference to the Referenced object so it won't get
|
|
|
|
* deleted during this process.
|
|
|
|
*/
|
|
|
|
template<typename T> WeakReference<T>* getWeakReference(const T* object);
|
|
|
|
|
2010-02-16 04:12:53 +08:00
|
|
|
/** Smart pointer for observed objects, that automatically set pointers to them to null when they deleted.
|
2010-05-14 20:14:14 +08:00
|
|
|
* To use the observer_ptr<> robustly in multi-threaded applications it is recommend to access the pointer via
|
2010-02-16 04:12:53 +08:00
|
|
|
* the lock() method that passes back a ref_ptr<> that safely takes a reference to the object to prevent deletion
|
|
|
|
* during usage of the object. In certain conditions it may be safe to use the pointer directly without using lock(),
|
|
|
|
* which will confer a perfomance advantage, the conditions are:
|
|
|
|
* 1) The data structure is only accessed/deleted in single threaded/serial way.
|
|
|
|
* 2) The data strucutre is guarenteed by high level management of data strucutures and threads which avoid
|
|
|
|
* possible situations where the observer_ptr<>'s object may be deleted by one thread whilst being accessed
|
|
|
|
* by another.
|
|
|
|
* If you are in any doubt about whether it is safe to access the object safe then use
|
|
|
|
* ref_ptr<> observer_ptr<>.lock() combination. */
|
2006-02-28 03:44:33 +08:00
|
|
|
template<class T>
|
|
|
|
class observer_ptr : public Observer
|
|
|
|
{
|
2010-05-14 20:14:14 +08:00
|
|
|
public:
|
|
|
|
typedef T element_type;
|
|
|
|
observer_ptr() : _reference(0) {}
|
|
|
|
/**
|
|
|
|
* Create a observer_ptr from a ref_ptr.
|
|
|
|
*/
|
|
|
|
observer_ptr(ref_ptr<T>& rp)
|
|
|
|
{
|
|
|
|
_reference = getWeakReference(rp.get());
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Create a observer_ptr from a raw pointer. For compatibility;
|
|
|
|
* the result might not be lockable.
|
|
|
|
*/
|
|
|
|
observer_ptr(T* rp)
|
|
|
|
{
|
|
|
|
_reference = getWeakReference(rp);
|
|
|
|
}
|
|
|
|
|
|
|
|
observer_ptr(const observer_ptr& wp) : _reference(wp._reference)
|
|
|
|
{
|
|
|
|
if (_reference) _reference->ref();
|
|
|
|
}
|
2006-02-28 03:44:33 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
~observer_ptr()
|
|
|
|
{
|
|
|
|
maybeDelete(_reference);
|
|
|
|
}
|
|
|
|
|
|
|
|
observer_ptr& operator = (const observer_ptr& wp)
|
|
|
|
{
|
|
|
|
if (wp._reference) wp._reference->ref();
|
|
|
|
maybeDelete(_reference);
|
|
|
|
_reference = wp._reference;
|
|
|
|
return *this;
|
|
|
|
}
|
2006-02-28 03:44:33 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
observer_ptr& operator = (const ref_ptr<T>& rp)
|
|
|
|
{
|
|
|
|
WeakReference<T>* tmp = getWeakReference(rp.get());
|
|
|
|
maybeDelete(_reference);
|
|
|
|
_reference = tmp;
|
|
|
|
return *this;
|
|
|
|
}
|
2010-02-16 19:10:49 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
observer_ptr& operator = (T* rp)
|
|
|
|
{
|
|
|
|
WeakReference<T>* tmp = getWeakReference(rp);
|
|
|
|
maybeDelete(_reference);
|
|
|
|
_reference = tmp;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Create a ref_ptr from a observer_ptr. The ref_ptr will be valid if the
|
|
|
|
* referenced object hasn't been deleted and has a ref count > 0.
|
|
|
|
*/
|
|
|
|
ref_ptr<T> lock() const
|
|
|
|
{
|
|
|
|
if (!_reference)
|
|
|
|
return ref_ptr<T>();
|
|
|
|
T* obj = _reference->addRefLock();
|
|
|
|
if (!obj)
|
|
|
|
return ref_ptr<T>();
|
|
|
|
ref_ptr<T> result(obj);
|
|
|
|
obj->unref_nodelete();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
/** Comparison operators. These continue to work even after the
|
|
|
|
* observed object has been deleted.
|
|
|
|
*/
|
|
|
|
bool operator == (const observer_ptr& wp) const
|
|
|
|
{ return _reference == wp._reference; }
|
|
|
|
bool operator != (const observer_ptr& wp) const
|
|
|
|
{ return _reference != wp._reference; }
|
|
|
|
bool operator < (const observer_ptr& wp) const
|
|
|
|
{ return _reference < wp._reference; }
|
|
|
|
bool operator > (const observer_ptr& wp) const
|
|
|
|
{ return _reference < wp._reference; }
|
|
|
|
// Non-strict interface, for compatibility
|
|
|
|
// comparison operator for const T*.
|
|
|
|
inline bool operator == (const T* ptr) const
|
|
|
|
{
|
|
|
|
if (!_reference)
|
|
|
|
return !ptr;
|
|
|
|
else
|
|
|
|
return (_reference->_ptr==ptr);
|
|
|
|
}
|
|
|
|
inline bool operator != (const T* ptr) const
|
|
|
|
{
|
|
|
|
if (!_reference)
|
|
|
|
return ptr;
|
|
|
|
else
|
|
|
|
return (_reference->_ptr!=ptr);
|
|
|
|
}
|
|
|
|
inline bool operator < (const T* ptr) const { return (_reference && _reference->_ptr<ptr); }
|
|
|
|
inline bool operator > (const T* ptr) const { return (_reference && _reference->ptr>ptr); }
|
|
|
|
// Convenience methods for operating on object, however, access is not automatically threadsafe.
|
|
|
|
// To make thread safe, one should either ensure at a high level
|
|
|
|
// that the object will not be deleted while operating on it, or
|
|
|
|
// by using the observer_ptr<>::lock() to get a ref_ptr<> that
|
|
|
|
// ensures the objects stay alive throughout all access to it.
|
2010-02-16 19:10:49 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
// Throw an error if _reference is null?
|
|
|
|
inline T& operator*() const { return *_reference->_ptr; }
|
|
|
|
inline T* operator->() const { return _reference? _reference->_ptr : 0; }
|
|
|
|
// get the raw C pointer
|
|
|
|
inline T* get() const { return _reference ? _reference->_ptr : 0; }
|
2010-02-16 04:12:53 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
inline bool operator!() const { return !_reference || !_reference->_ptr; }
|
|
|
|
inline bool valid() const { return _reference && _reference->_ptr; }
|
|
|
|
protected:
|
|
|
|
// The pointer to the WeakReference is not kept in a ref_ptr so that
|
|
|
|
// its deletion can be managed explicitly.
|
|
|
|
WeakReference<T>* _reference;
|
|
|
|
};
|
2006-02-28 03:44:33 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
template<typename T>
|
|
|
|
void WeakReference<T>::objectDeleted(void*)
|
|
|
|
{
|
|
|
|
bool deleteNeeded = false;
|
|
|
|
{
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(_mutex);
|
|
|
|
if (!_ptr)
|
2006-02-28 03:44:33 +08:00
|
|
|
{
|
2010-05-14 20:14:14 +08:00
|
|
|
// The last weak reference was deleted after the last
|
|
|
|
// reference, but the observer hasn't run yet. The
|
|
|
|
// observer can't be prevented from running, so it
|
|
|
|
// must delete itself.
|
|
|
|
deleteNeeded = true;
|
2006-02-28 03:44:33 +08:00
|
|
|
}
|
2010-05-14 20:14:14 +08:00
|
|
|
else
|
2006-02-28 03:44:33 +08:00
|
|
|
{
|
2010-05-14 20:14:14 +08:00
|
|
|
_ptr = 0;
|
2006-02-28 03:44:33 +08:00
|
|
|
}
|
2010-05-14 20:14:14 +08:00
|
|
|
}
|
|
|
|
if (deleteNeeded) delete this;
|
|
|
|
}
|
2006-02-28 03:44:33 +08:00
|
|
|
|
2010-05-14 20:14:14 +08:00
|
|
|
template<typename T>
|
|
|
|
WeakReference<T>*
|
|
|
|
getWeakReference(const T* object)
|
|
|
|
{
|
|
|
|
if (!object)
|
|
|
|
return 0;
|
|
|
|
WeakReference<T>* result = 0;
|
|
|
|
ObserverSet* setData = object->getOrCreateObserverSet();
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(*setData->getObserverSetMutex());
|
|
|
|
ObserverSet::Observers &observers = setData->getObservers();
|
|
|
|
for (ObserverSet::Observers::iterator itr = observers.begin(),
|
|
|
|
end = observers.end();
|
|
|
|
itr != end;
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
if ((result = dynamic_cast<WeakReference<T>*>(*itr)))
|
2010-02-16 04:12:53 +08:00
|
|
|
{
|
2010-05-14 20:14:14 +08:00
|
|
|
int weakRefCount = result->ref();
|
|
|
|
if (weakRefCount == 1)
|
|
|
|
{
|
|
|
|
// The last weak reference disappeared, but hasn't
|
|
|
|
// been removed from the observers list yet.
|
|
|
|
result->unref_nodelete();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
2010-02-16 04:12:53 +08:00
|
|
|
}
|
2010-05-14 20:14:14 +08:00
|
|
|
}
|
|
|
|
if (object->referenceCount() > 0)
|
|
|
|
result = new WeakReference<T>(object);
|
|
|
|
else
|
|
|
|
result = new UnsafeWeakReference<T>(object);
|
|
|
|
result->ref();
|
|
|
|
observers.insert(result);
|
|
|
|
return result;
|
|
|
|
}
|
2006-02-28 03:44:33 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|