131 lines
1.9 KiB
C++
131 lines
1.9 KiB
C++
/*
|
|||
* Copyright 2004-2010, Ingo Weinhold, [email protected].
|
|||
* Distributed under the terms of the MIT License.
|
|||
|
|
*/
|
||
#ifndef _REFERENCEABLE_H
|
|||
|
|
#define _REFERENCEABLE_H
|
||
|
|||
|
|
|
||
|
|
#include <SupportDefs.h>
|
||
|
|
|
||
|
|||
// #pragma mark - BReferenceable
|
|||
|
|
|
||
|
|
|
||
class BReferenceable {
|
|||
public:
|
|||
BReferenceable();
|
|||
virtual ~BReferenceable();
|
|||
|
|||
void AcquireReference();
|
|||
|
|
bool ReleaseReference();
|
||
|
|
// returns true after last
|
||
|
|||
int32 CountReferences() const
|
|||
|
|
{ return fReferenceCount; }
|
||
|
|||
protected:
|
|||
|
|
virtual void FirstReferenceAcquired();
|
||
|
|
virtual void LastReferenceReleased();
|
||
|
|
|
||
protected:
|
|||
|
|
vint32 fReferenceCount;
|
||
|
|
};
|
||
|
|
|
||
|
|||
// #pragma mark - BReference
|
|||
|
|||
|
|
|
||
template<typename Type = BReferenceable>
|
|||
|
|
class BReference {
|
||
|
|
public:
|
||
|
|
BReference()
|
||
|
|
: fObject(NULL)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
BReference(Type* object, bool alreadyHasReference = false)
|
||
|
|
: fObject(NULL)
|
||
|
|
{
|
||
|
|
SetTo(object, alreadyHasReference);
|
||
|
|
}
|
||
|
|
|
||
|
|
BReference(const BReference<Type>& other)
|
||
|
|
: fObject(NULL)
|
||
|
|
{
|
||
|
|
SetTo(other.fObject);
|
||
|
|
}
|
||
|
|
|
||
|
|
~BReference()
|
||
|
|
{
|
||
|
|
Unset();
|
||
|
|
}
|
||
|
|
|
||
|
|
void SetTo(Type* object, bool alreadyHasReference = false)
|
||
|
|
{
|
||
|
|
if (object != NULL && !alreadyHasReference)
|
||
object->AcquireReference();
|
|||
|
|||
|
|
Unset();
|
||
|
|
|
||
|
|
fObject = object;
|
||
|
|
}
|
||
|
|
|
||
|
|
void Unset()
|
||
|
|
{
|
||
|
|
if (fObject) {
|
||
fObject->ReleaseReference();
|
|||
fObject = NULL;
|
|||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Type* Get() const
|
||
|
|
{
|
||
|
|
return fObject;
|
||
|
|
}
|
||
|
|
|
||
|
|
Type* Detach()
|
||
|
|
{
|
||
|
|
Type* object = fObject;
|
||
|
|
fObject = NULL;
|
||
|
|
return object;
|
||
|
|
}
|
||
|
|
|
||
|
|
Type& operator*() const
|
||
|
|
{
|
||
|
|
return *fObject;
|
||
|
|
}
|
||
|
|
|
||
|
|
Type* operator->() const
|
||
|
|
{
|
||
|
|
return fObject;
|
||
|
|
}
|
||
|
|
|
||
operator Type*() const
|
|||
|
|
{
|
||
|
|
return fObject;
|
||
|
|
}
|
||
|
|
|
||
BReference& operator=(const BReference<Type>& other)
|
|||
|
|
{
|
||
|
|
SetTo(other.fObject);
|
||
|
|
return *this;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool operator==(const BReference<Type>& other) const
|
||
|
|
{
|
||
|
|
return (fObject == other.fObject);
|
||
|
|
}
|
||
|
|
|
||
|
|
bool operator!=(const BReference<Type>& other) const
|
||
|
|
{
|
||
|
|
return (fObject != other.fObject);
|
||
|
|
}
|
||
|
|
|
||
|
|
private:
|
||
|
|
Type* fObject;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
#endif // _REFERENCEABLE_H
|