|
| weakPtr () |
| Initialize empty weak reference.
|
|
| weakPtr (const strongPtr< TYPE, DELETER > &other) |
| Construct from strongPtr observer.
|
|
weakPtr & | operator= (const strongPtr< TYPE, DELETER > &other) |
| Assign observation from strongPtr.
|
|
| weakPtr (const weakPtr &other) |
| Copy constructor duplicates observation.
|
|
weakPtr & | operator= (const weakPtr &other) |
| Copy assignment duplicates observation.
|
|
| weakPtr (weakPtr &&other) noexcept |
| Move constructor transfers observation.
|
|
weakPtr & | operator= (weakPtr &&other) noexcept |
| Move assignment transfers observation.
|
|
strongPtr< TYPE, DELETER > | lock () const |
| Attempt to acquire ownership.
|
|
const TYPE & | operator* () const override |
| Const dereference via temporary strong reference.
|
|
const TYPE * | operator-> () const override |
| Const member access via temporary strong reference.
|
|
const TYPE & | operator[] (u_integer index) const override |
| Const array element access via temporary strong reference.
|
|
TYPE & | operator* () override |
| Mutable dereference via temporary strong reference.
|
|
TYPE * | operator-> () override |
| Mutable member access via temporary strong reference.
|
|
TYPE & | operator[] (u_integer index) override |
| Mutable array element access via temporary strong reference.
|
|
std::string | className () const override |
| Get class type identifier.
|
|
| ~weakPtr () override |
| Destructor releases weak reference.
|
|
bool | operator== (const refCntPtr< TYPE, O_DERIVED, DELETER > &other) const |
| Equality comparison operator.
|
|
bool | operator!= (const refCntPtr< TYPE, O_DERIVED, DELETER > &other) const |
| Inequality comparison operator.
|
|
std::string | toString (bool enter) const override |
| Formatted string with reference info.
|
|
| ~refCntPtr () override=default |
| Default destructor of refCntPtr.
|
|
u_integer | strongRefs () const |
| Get strong reference count.
|
|
u_integer | weakRefs () const |
| Get weak reference count.
|
|
bool | exist () const |
| Check active ownership.
|
|
bool | expired () const |
| Check resource validity.
|
|
| operator bool () const |
| Boolean conversion operator.
|
|
const TYPE * | get () const |
| Get managed pointer const version.
|
|
TYPE * | get () |
| Get managed pointer.
|
|
void | swap (autoPtr &other) noexcept |
| Swaps the reference counters between two autoPtr instances.
|
|
integer | compareTo (const autoPtr &other) const override |
| Compare reference counters.
|
|
| ~autoPtr () override |
| Destructor triggers reference cleanup.
|
|
| operator std::string () const |
| Explicit conversion to std::string.
|
|
| operator const char * () const |
| Explicit conversion to C-style string.
|
|
const char * | toCString (bool enter) const |
| Direct C-string access with formatting control.
|
|
template<typename TYPE> |
auto | formatString (const TYPE &t) -> std::string |
|
template<typename TYPE> |
auto | formatCString (const TYPE &t) -> const char * |
|
template<typename TYPE> |
auto | formatEnum (const TYPE &t) -> std::string |
|
template<typename TYPE> |
auto | formatString (TYPE *const &ptr) -> std::string |
|
virtual integer | compareTo (const autoPtr< TYPE, weakPtr< TYPE, DELETER >, DELETER > &other) const=0 |
| Compares the current object with another of the same type.
|
|
bool | operator== (const autoPtr< TYPE, weakPtr< TYPE, DELETER >, DELETER > &other) const |
| Checks if the current object is equal to another.
|
|
bool | operator!= (const autoPtr< TYPE, weakPtr< TYPE, DELETER >, DELETER > &other) const |
| Checks if the current object is not equal to another.
|
|
bool | operator< (const autoPtr< TYPE, weakPtr< TYPE, DELETER >, DELETER > &other) const |
| Checks if the current object is less than another.
|
|
bool | operator> (const autoPtr< TYPE, weakPtr< TYPE, DELETER >, DELETER > &other) const |
| Checks if the current object is greater than another.
|
|
bool | operator<= (const autoPtr< TYPE, weakPtr< TYPE, DELETER >, DELETER > &other) const |
| Checks if the current object is less than or equal to another.
|
|
bool | operator>= (const autoPtr< TYPE, weakPtr< TYPE, DELETER >, DELETER > &other) const |
| Checks if the current object is greater than or equal to another.
|
|
virtual | ~comparable ()=default |
| Virtual destructor for proper cleanup of derived objects.
|
|
|
template<typename TYPE> |
static std::string | formatString (const TYPE &t) |
| Universal value-to-string conversion.
|
|
template<typename TYPE> |
static std::string | formatString (TYPE *const &ptr) |
| Pointer-specific formatting.
|
|
template<typename TYPE> |
static const char * | formatCString (const TYPE &t) |
| C-string cache for temporary usage.
|
|
template<typename TYPE> |
static std::string | formatEnum (const TYPE &t) |
| Enum formatting utility.
|
|
template<> |
auto | formatString (const char &t) -> std::string |
|
template<> |
auto | formatString (const bool &t) -> std::string |
|
template<> |
auto | formatString (const char *const &ptr) -> std::string |
|
| refCntPtr (TYPE *p=std::nullptr_t{}) |
| Construct from raw pointer.
|
|
| autoPtr (TYPE *p) |
| Construct from raw pointer.
|
|
void | setPtr (TYPE *p) |
| Replace managed pointer.
|
|
void | addStrongRef () |
| Increment strong reference count.
|
|
void | addWeakRef () |
| Increment weak reference count.
|
|
void | removeStrongRef () |
| Decrement strong reference count.
|
|
void | removeWeakRef () |
| Decrement weak reference count.
|
|
void | destroyRefCnt () noexcept |
| Destroy reference counter.
|
|
void | clean () noexcept |
| Cleanup resources when expired.
|
|
static refCount< TYPE, DELETER > * | newRefCount (TYPE *p=nullptr) |
| Create new reference counter.
|
|
refCount< TYPE, DELETER > * | ref_count |
| Reference counter object.
|
|
template<typename TYPE, typename DELETER>
class original::weakPtr< TYPE, DELETER >
Non-owning reference to shared resource.
- Template Parameters
-
TYPE | Managed object type |
DELETER | Deletion policy type (default: deleter<TYPE>) |
Provides safe access to resources managed by strongPtr:
- Does not affect object lifetime
- Must convert to strongPtr via lock() before access
- Automatically expires when all strong references removed