|
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.
|
|
virtual const TYPE & | operator* () const |
| Const dereference operator.
|
|
virtual const TYPE * | operator-> () const |
| Const member access operator.
|
|
virtual const TYPE & | operator[] (u_integer index) const |
| Const array access operator.
|
|
virtual TYPE & | operator* () |
| Mutable dereference operator.
|
|
virtual TYPE * | operator-> () |
| Mutable member access operator.
|
|
virtual TYPE & | operator[] (u_integer index) |
| Mutable array access operator.
|
|
void | swap (autoPtr &other) noexcept |
| Swaps the reference counters between two autoPtr instances.
|
|
integer | compareTo (const autoPtr &other) const override |
| Compare reference counters.
|
|
std::string | className () const override |
| Get class name string.
|
|
std::string | toString (bool enter) const override |
| String representation formatter.
|
|
| ~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 DERIVED &other) const=0 |
| Compares the current object with another of the same type.
|
|
bool | operator== (const DERIVED &other) const |
| Checks if the current object is equal to another.
|
|
bool | operator!= (const DERIVED &other) const |
| Checks if the current object is not equal to another.
|
|
bool | operator< (const DERIVED &other) const |
| Checks if the current object is less than another.
|
|
bool | operator> (const DERIVED &other) const |
| Checks if the current object is greater than another.
|
|
bool | operator<= (const DERIVED &other) const |
| Checks if the current object is less than or equal to another.
|
|
bool | operator>= (const DERIVED &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 T, typename DER, typename DEL> |
bool | operator== (const autoPtr< T, DER, DEL > &ptr, const std::nullptr_t &null) |
| Equality comparison with nullptr.
|
|
template<typename T, typename DER, typename DEL> |
bool | operator!= (const autoPtr< T, DER, DEL > &ptr, const std::nullptr_t &null) |
| Inequality comparison with nullptr.
|
|
template<typename T, typename DER, typename DEL> |
bool | operator== (const std::nullptr_t &null, const autoPtr< T, DER, DEL > &ptr) |
| Equality comparison with nullptr (reversed operands)
|
|
template<typename T, typename DER, typename DEL> |
bool | operator!= (const std::nullptr_t &null, const autoPtr< T, DER, DEL > &ptr) |
| Inequality comparison with nullptr (reversed operands)
|
|
|
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 |
|
template<typename TYPE, typename DERIVED, typename DELETER>
class original::autoPtr< TYPE, DERIVED, DELETER >
Base smart pointer with reference counting.
- Template Parameters
-
TYPE | Managed object type |
DERIVED | CRTP pattern parameter for inheritance |
DELETER | Custom deleter policy type |
Provides core resource management capabilities through:
- Strong/weak reference tracking
- Automatic cleanup when references reach zero
- Custom deletion policies via template parameter
template<typename TYPE, typename DERIVED, typename DELETER>
template<typename T, typename DER, typename DEL>
bool operator!= |
( |
const autoPtr< T, DER, DEL > & | ptr, |
|
|
const std::nullptr_t & | null ) |
|
friend |
Inequality comparison with nullptr.
- Template Parameters
-
T | Managed object type |
DER | CRTP derived class type |
DEL | Deleter policy type |
- Parameters
-
ptr | autoPtr to compare |
null | nullptr_t to compare against |
- Returns
- true if the autoPtr is not empty (has a managed object)
- Note
- Equivalent to checking operator bool() of ptr
template<typename TYPE, typename DERIVED, typename DELETER>
template<typename T, typename DER, typename DEL>
bool operator!= |
( |
const std::nullptr_t & | null, |
|
|
const autoPtr< T, DER, DEL > & | ptr ) |
|
friend |
Inequality comparison with nullptr (reversed operands)
- Template Parameters
-
T | Managed object type |
DER | CRTP derived class type |
DEL | Deleter policy type |
- Parameters
-
ptr | autoPtr to compare |
null | nullptr_t to compare against |
- Returns
- true if the autoPtr is not empty (has a managed object)
- Note
- Equivalent to checking operator bool() of ptr
template<typename TYPE, typename DERIVED, typename DELETER>
template<typename T, typename DER, typename DEL>
bool operator== |
( |
const autoPtr< T, DER, DEL > & | ptr, |
|
|
const std::nullptr_t & | null ) |
|
friend |
Equality comparison with nullptr.
- Template Parameters
-
T | Managed object type |
DER | CRTP derived class type |
DEL | Deleter policy type |
- Parameters
-
ptr | autoPtr to compare |
null | nullptr_t to compare against |
- Returns
- true if the autoPtr is empty (no managed object)
- Note
- Equivalent to checking !operator bool() of ptr
template<typename TYPE, typename DERIVED, typename DELETER>
template<typename T, typename DER, typename DEL>
bool operator== |
( |
const std::nullptr_t & | null, |
|
|
const autoPtr< T, DER, DEL > & | ptr ) |
|
friend |
Equality comparison with nullptr (reversed operands)
- Template Parameters
-
T | Managed object type |
DER | CRTP derived class type |
DEL | Deleter policy type |
- Parameters
-
ptr | autoPtr to compare |
null | nullptr_t to compare against |
- Returns
- true if the autoPtr is empty (no managed object)
- Note
- Equivalent to checking !operator bool() of ptr