Public Member Functions | Private Attributes | List of all members
OSReferencedObject Class Reference

ReferencedObject class. More...

#include <OSReferenced.hpp>

Inheritance diagram for OSReferencedObject:
Inheritance graph
[legend]

Public Member Functions

 OSReferencedObject ()
 
virtual ~OSReferencedObject ()
 
int ReferenceCount () const
 
void AddRef (const OSReferencer *referencer) const
 
void ReleaseRef (const OSReferencer *referencer) const
 

Private Attributes

int reference_count_
 

Detailed Description

ReferencedObject class.

This is part of the implementation of an intrusive smart pointer design. This class stores the reference count of all the smart pointers that currently reference it. See the documentation for the OSSmartPtr class for more details.

A OSSmartPtr behaves much like a raw pointer, but manages the lifetime of an object, deleting the object automatically. This class implements a reference-counting, intrusive smart pointer design, where all objects pointed to must inherit off of ReferencedObject, which stores the reference count. Although this is intrusive (native types and externally authored classes require wrappers to be referenced by smart pointers), it is a safer design. A more detailed discussion of these issues follows after the usage information.

Usage Example: Note: to use the OSSmartPtr, all objects to which you point MUST inherit from ReferencedObject.

* 
* In MyClass.hpp...
* 
* #include "OSReferenced.hpp"

*  class MyClass : public ReferencedObject // must derive from ReferencedObject
*    {
*      ...
*    }
* 
* In my_usage.cpp...
* 
* #include "OSSmartPtr.hpp"
* #include "MyClass.hpp"
* 
* void func(AnyObject& obj)
*  {
*    OSSmartPtr<MyClass> ptr_to_myclass = new MyClass(...);
*    // ptr_to_myclass now points to a new MyClass,
*    // and the reference count is 1
*  
*    ...
* 
*    obj.SetMyClass(ptr_to_myclass);
*    // Here, let's assume that AnyObject uses a
*    // OSSmartPtr<MyClass> internally here.
*    // Now, both ptr_to_myclass and the internal
*    // OSSmartPtr in obj point to the same MyClass object
*    // and its reference count is 2.
* 
*    ...
* 
*    // No need to delete ptr_to_myclass, this
*    // will be done automatically when the
*    // reference count drops to zero.
* 
*  }  
*  
* 

Other Notes: The OSSmartPtr implements both dereference operators -> & *. The OSSmartPtr does NOT implement a conversion operator to the raw pointer. Use the GetRawPtr() method when this is necessary. Make sure that the raw pointer is NOT deleted. The OSSmartPtr implements the comparison operators == & != for a variety of types. Use these instead of

*    if (GetRawPtr(smrt_ptr) == ptr) // Don't use this
*    

OSSmartPtr's, as currently implemented, do NOT handle circular references. For example: consider a higher level object using OSSmartPtrs to point to A and B, but A and B also point to each other (i.e. A has an OSSmartPtr to B and B has an OSSmartPtr to A). In this scenario, when the higher level object is finished with A and B, their reference counts will never drop to zero (since they reference each other) and they will not be deleted. This can be detected by memory leak tools like valgrind. If the circular reference is necessary, the problem can be overcome by a number of techniques:

1) A and B can have a method that "releases" each other, that is they set their internal OSSmartPtrs to NULL.

*        void AClass::ReleaseCircularReferences()
*          {
*          smart_ptr_to_B = NULL;
*          }
*        

Then, the higher level class can call these methods before it is done using A & B.

2) Raw pointers can be used in A and B to reference each other. Here, an implicit assumption is made that the lifetime is controlled by the higher level object and that A and B will both exist in a controlled manner. Although this seems dangerous, in many situations, this type of referencing is very controlled and this is reasonably safe.

3) This OSSmartPtr class could be redesigned with the Weak/Strong design concept. Here, the OSSmartPtr is identified as being Strong (controls lifetime of the object) or Weak (merely referencing the object). The Strong OSSmartPtr increments (and decrements) the reference count in ReferencedObject but the Weak OSSmartPtr does not. In the example above, the higher level object would have Strong OSSmartPtrs to A and B, but A and B would have Weak OSSmartPtrs to each other. Then, when the higher level object was done with A and B, they would be deleted. The Weak OSSmartPtrs in A and B would not decrement the reference count and would, of course, not delete the object. This idea is very similar to item (2), where it is implied that the sequence of events is controlled such that A and B will not call anything using their pointers following the higher level delete (i.e. in their destructors!). This is somehow safer, however, because code can be written (however expensive) to perform run-time detection of this situation. For example, the ReferencedObject could store pointers to all Weak OSSmartPtrs that are referencing it and, in its destructor, tell these pointers that it is dying. They could then set themselves to NULL, or set an internal flag to detect usage past this point.

Comments on Non-Intrusive Design: In a non-intrusive design, the reference count is stored somewhere other than the object being referenced. This means, unless the reference counting pointer is the first referencer, it must get a pointer to the referenced object from another smart pointer (so it has access to the reference count location). In this non-intrusive design, if we are pointing to an object with a smart pointer (or a number of smart pointers), and we then give another smart pointer the address through a RAW pointer, we will have two independent, AND INCORRECT, reference counts. To avoid this pitfall, we use an intrusive reference counting technique where the reference count is stored in the object being referenced.

Definition at line 160 of file OSReferenced.hpp.

Constructor & Destructor Documentation

OSReferencedObject::OSReferencedObject ( )
inline

Definition at line 163 of file OSReferenced.hpp.

virtual OSReferencedObject::~OSReferencedObject ( )
inlinevirtual

Definition at line 168 of file OSReferenced.hpp.

Member Function Documentation

int OSReferencedObject::ReferenceCount ( ) const
inline

Definition at line 185 of file OSReferenced.hpp.

void OSReferencedObject::AddRef ( const OSReferencer referencer) const
inline

Definition at line 191 of file OSReferenced.hpp.

void OSReferencedObject::ReleaseRef ( const OSReferencer referencer) const
inline

Definition at line 197 of file OSReferenced.hpp.

Member Data Documentation

int OSReferencedObject::reference_count_
mutableprivate

Definition at line 180 of file OSReferenced.hpp.


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