Main Page | Modules | Namespace List | Class Hierarchy | Class List | Namespace Members | Class Members

AutoDeletable Class Reference
[Miscellaneous]

Auto-deletable concept. More...

#include <autoDeletable.h>

Inheritance diagram for AutoDeletable:

Object ResourceEntry PersistentObject VIEW::Renderer VIEW::RepresentationManager Composite NamedProperty TVector2< T > TVector2< float > VIEW::GLRenderer VIEW::POVRenderer VIEW::VRMLRenderer Atom AtomContainer Bond PDBAtom Chain Fragment Molecule SecondaryStructure System Nucleotide Residue NucleicAcid Protein List of all members.

Mutators

void setAutoDeletable (bool enable) throw ()
 Mark the object as auto-deletable.
void clearLastPtr ()

Public Member Functions

Constructors and Destructors
The constructors of this class are protected.

virtual ~AutoDeletable () throw ()
 Destructor.
void * operator new (size_t size) throw ()
 new operator.
void operator delete (void *ptr) throw ()
 delete operator.
void * operator new (size_t size, void *ptr) throw ()
 Placement new operator.
void operator delete (void *ptr, void *) throw ()
 Placement delete operator.
Predicates
bool isAutoDeletable () const throw ()
 Query the objects status.

Protected Member Functions

 AutoDeletable (const AutoDeletable &auto_deletable, bool deep=false) throw ()

Detailed Description

Auto-deletable concept.

This class allows the distinction between objects that may be deleted automatically (because they are created dynamically on the heap) and instances that are static and should not be deleted automatically.

Standard application is the class Composite . Composites may contain other composites (tree-like structure). If a composite is deleted, it has to decide whether all composites contained therein are to be deleted, too. If these composites are static objects, calling their destructor often is fatal! The same is true for objects contained in an array. Therefore, composite is derived from AutoDeletable .
The AutoDeletable class determines whether it was instantiated via new and then sets an internal flag to false. The mechanism to determine this is as follows:
AutoDeletable has on overloaded new operator. When invoked, this operator allocates storage for an instance of AutoDeletable using the global new operator and remembers the address of in a private variable last_ptr_. Each constructor of AutoDeletable checks whether its this pointer is equal to the address stored in last_ptr_. If both pointers are equal, the object has been created using the new operator and so it is safe to delete it automatically. If the adresses do not match, the object is either part of an array or static and should not be deleted automatically.
The state of each object may be changed after it is constructed by a call to setAutoDeletable . This might be useful to protect certain instances of objects, however usually this should not be neccessary.


Member Function Documentation

bool AutoDeletable::isAutoDeletable  )  const throw ()
 

Query the objects status.

Returns true if the object should be automatically deleted if the objects it is contained in are deleted. Recursive destruction methods should honor this flag and should not call the destructor for objects that return true.

void AutoDeletable::operator delete void *  ptr,
void * 
throw ()
 

Placement delete operator.

This operator frees the space allocated for an Autodeletable object. It is implemented solely to achieve a consistent interface and to avoid warnings issued by some compilers if operator new/delete do not appear in pairs.

void AutoDeletable::operator delete void *  ptr  )  throw ()
 

delete operator.

This operator frees the space allocated for an Autodeletable object. It is implemented solely to achieve a consistent interface and to avoid warnings issued by some compilers if operator new/delete do not appear in pairs.

void* AutoDeletable::operator new size_t  size,
void *  ptr
throw ()
 

Placement new operator.

This operator allocates storage for the object and remembers its pointer. This pointer is static and is evaluated by the constructors. As this operator is only invoked for the creation of single dynamic objects, arrays and static objects can be identified.

void* AutoDeletable::operator new size_t  size  )  throw ()
 

new operator.

This operator allocates storage for the object and remembers its pointer. This pointer is static and is evaluated by the constructors. As this operator is only invoked for the creation of single dynamic objects, arrays and static objects can be identified.

void AutoDeletable::setAutoDeletable bool  enable  )  throw ()
 

Mark the object as auto-deletable.

Objects can be marked as deletable or not deletable by this method. Use this method to protect objects from automatic deletion. You should never set static objects to autodeletable, as invoking delete on a static object may result in a crash.