Public Types |
| enum | Referenced { R_node = 0x001,
R_cache = 0x002
} |
Public Member Functions |
| int | get_node_ref_count () const |
| | Returns the current reference count.
|
| int | get_referenced_bits () const |
| | Returns the union of the values defined in the Referenced enum that represents the various things that appear to be holding a pointer to this object.
|
| void | node_ref () const |
| | Explicitly increments the reference count.
|
| bool | node_unref () const |
| | Explicitly decrements the node reference count and the normal reference count simultaneously.
|
| bool | test_ref_count_integrity () const |
| | Does some easy checks to make sure that the reference count isn't completely bogus.
|
Static Public Member Functions |
|
static TypeHandle | get_class_type () |
|
static void | init_type () |
Protected Member Functions |
| | NodeCachedReferenceCount () |
| | The ReferenceCount constructor is protected because you almost never want to create just a ReferenceCount object by itself, and it's probably a mistake if you try.
|
| | NodeCachedReferenceCount (const NodeCachedReferenceCount ©) |
| | The copies of reference-counted objects do not themselves inherit the reference count!
|
| | ~NodeCachedReferenceCount () |
| | The ReferenceCount destructor is protected to discourage users from accidentally trying to delete a ReferenceCount pointer directly.
|
| bool | do_test_ref_count_integrity () const |
| | Does some easy checks to make sure that the reference count isn't completely bogus.
|
| void | node_unref_only () const |
| | Decrements the node reference count without affecting the normal reference count.
|
| void | operator= (const NodeCachedReferenceCount ©) |
| | The copies of reference-counted objects do not themselves inherit the reference count!
|
This class further specializes CachedTypedWritableReferenceCount to also add a node_ref_count, for the purposes of counting the number of times the object is referenced by a "node", presumably a PandaNode.
This essentially combines the functionality of NodeReferenceCount and CachedTypedWritableReferenceCount, so that a derivative of this object actually has three counters: the standard reference count, the "cache" reference count, and the "node" reference count. Rather than multiply inheriting from the two reference count classes, we inherit only from CachedTypedWritableReferenceCount and simply duplicate the functionality of NodeReferenceCount, to avoid all of the problems associated with multiple inheritance.
The intended design is to use this as a base class for RenderState and TransformState, both of which are held by PandaNodes, and also have caches which are independently maintained. By keeping track of how many nodes hold a pointer to a particular object, we can classify each object into node-referenced, cache-referenced, or other, which is primarily useful for PStats reporting.
As with CachedTypedWritableReferenceCount's cache_ref() and cache_unref(), the new methods node_ref() and node_unref() automatically increment and decrement the primary reference count as well. In this case, however, there does exist a NodePointerTo<> class to maintain the node_ref counters automatically.
Definition at line 61 of file nodeCachedReferenceCount.h.
| void NodeCachedReferenceCount::node_ref |
( |
| ) |
const [inline] |