19 template<
typename TYPE,
typename DELETER>
35 template<
typename TYPE,
typename DERIVED,
typename DELETER>
127 explicit operator
bool() const;
148 virtual const TYPE& operator*() const;
155 virtual const TYPE* operator->() const;
171 virtual TYPE& operator*();
178 virtual TYPE* operator->();
224 template<typename T, typename DER, typename DEL>
225 friend
bool operator==(const
autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
227 template<typename T, typename DER, typename DEL>
228 friend
bool operator!=(const
autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
230 template<typename T, typename DER, typename DEL>
231 friend
bool operator==(const std::nullptr_t& null, const
autoPtr<T, DER, DEL>& ptr);
233 template<typename T, typename DER, typename DEL>
234 friend
bool operator!=(const std::nullptr_t& null, const
autoPtr<T, DER, DEL>& ptr);
247 template<typename T, typename DER, typename DEL>
248 bool operator==(const
autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
260 template<typename T, typename DER, typename DEL>
261 bool operator!=(const
autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
273 template<typename T, typename DER, typename DEL>
274 bool operator==(const std::nullptr_t& null, const
autoPtr<T, DER, DEL>& ptr);
286 template<typename T, typename DER, typename DEL>
287 bool operator!=(const std::nullptr_t& null, const
autoPtr<T, DER, DEL>& ptr);
299 template<typename TYPE, typename DELETER>
301 template <
typename,
typename,
typename>
302 friend class autoPtr;
313 explicit refCount(TYPE* p =
nullptr);
318 void destroyPtr()
noexcept;
327template<
typename TYPE,
typename DERIVED,
typename DELETER>
332template<
typename TYPE,
typename DERIVED,
typename DELETER>
340template<
typename TYPE,
typename DERIVED,
typename DELETER>
345template<
typename TYPE,
typename DERIVED,
typename DELETER>
350template<
typename TYPE,
typename DERIVED,
typename DELETER>
355template<
typename TYPE,
typename DERIVED,
typename DELETER>
360template<
typename TYPE,
typename DERIVED,
typename DELETER>
366template<
typename TYPE,
typename DERIVED,
typename DELETER>
376template <
typename TYPE,
typename DERIVED,
typename DELETER>
382template<
typename TYPE,
typename DERIVED,
typename DELETER>
387template<
typename TYPE,
typename DERIVED,
typename DELETER>
392template<
typename TYPE,
typename DERIVED,
typename DELETER>
397template<
typename TYPE,
typename DERIVED,
typename DELETER>
402template<
typename TYPE,
typename DERIVED,
typename DELETER>
404 return this->
exist() && this->
get();
407template<
typename TYPE,
typename DERIVED,
typename DELETER>
415template<
typename TYPE,
typename DERIVED,
typename DELETER>
423template<
typename TYPE,
typename DERIVED,
typename DELETER>
430template<
typename TYPE,
typename DERIVED,
typename DELETER>
438template<
typename TYPE,
typename DERIVED,
typename DELETER>
442 return this->
get()[index];
445template<
typename TYPE,
typename DERIVED,
typename DELETER>
452template<
typename TYPE,
typename DERIVED,
typename DELETER>
460template<
typename TYPE,
typename DERIVED,
typename DELETER>
464 return this->
get()[index];
467template<
typename TYPE,
typename DERIVED,
typename DELETER>
469 auto other_ref_count = other.ref_count;
474template<
typename TYPE,
typename DERIVED,
typename DELETER>
479template<
typename TYPE,
typename DERIVED,
typename DELETER>
484template<
typename TYPE,
typename DERIVED,
typename DELETER>
486 std::stringstream ss;
495template<
typename TYPE,
typename DERIVED,
typename DELETER>
500template<
typename T,
typename DER,
typename DEL>
502 return !ptr.operator bool();
505template<
typename T,
typename DER,
typename DEL>
507 return ptr.operator bool();
510template<
typename T,
typename DER,
typename DEL>
512 return !ptr.operator bool();
515template<
typename T,
typename DER,
typename DEL>
517 return ptr.operator bool();
520template<
typename TYPE,
typename DELETER>
521original::refCount<TYPE, DELETER>::refCount(TYPE *p)
522 : ptr(p), strong_refs(0), weak_refs(0) {}
524template<
typename TYPE,
typename DELETER>
525void original::refCount<TYPE, DELETER>::destroyPtr() noexcept {
526 TYPE* tmp = this->ptr;
531template<
typename TYPE,
typename DELETER>
532original::refCount<TYPE, DELETER>::~refCount() {
Base smart pointer with reference counting.
Definition autoPtr.h:36
static refCount< TYPE, deleter< TYPE > > * newRefCount(TYPE *p=nullptr)
Definition autoPtr.h:377
integer compareTo(const autoPtr &other) const override
Definition autoPtr.h:475
void destroyRefCnt() noexcept
Destroy reference counter.
Definition autoPtr.h:361
void removeStrongRef()
Decrement strong reference count.
Definition autoPtr.h:351
virtual const TYPE & operator[](u_integer index) const
Const array access operator.
Definition autoPtr.h:439
u_integer strongRefs() const
Definition autoPtr.h:383
~autoPtr() override
Destructor triggers reference cleanup.
Definition autoPtr.h:496
void addStrongRef()
Increment strong reference count.
Definition autoPtr.h:341
bool exist() const
Definition autoPtr.h:393
void setPtr(TYPE *p)
Replace managed pointer.
Definition autoPtr.h:333
void removeWeakRef()
Decrement weak reference count.
Definition autoPtr.h:356
void addWeakRef()
Increment weak reference count.
Definition autoPtr.h:346
std::string className() const override
Definition autoPtr.h:480
void swap(autoPtr &other) noexcept
Definition autoPtr.h:468
bool expired() const
Definition autoPtr.h:398
void clean() noexcept
Definition autoPtr.h:367
u_integer weakRefs() const
Definition autoPtr.h:388
autoPtr(TYPE *p)
Construct from raw pointer.
Definition autoPtr.h:328
refCount< TYPE, DELETER > * ref_count
Reference counter object.
Definition autoPtr.h:38
virtual const TYPE & operator*() const
Const dereference operator.
Definition autoPtr.h:424
std::string toString(bool enter) const override
Definition autoPtr.h:485
const TYPE * get() const
Definition autoPtr.h:408
virtual const TYPE * operator->() const
Const member access operator.
Definition autoPtr.h:432
Base class for comparable objects.
Definition comparable.h:31
Exception for null pointer dereference attempts.
Definition error.h:110
Base class providing polymorphic string conversion capabilities.
Definition printable.h:25
static std::string formatString(const TYPE &t)
Universal value-to-string conversion.
Reference counting metadata container.
Definition autoPtr.h:300
Interface for objects that can be compared.
Platform-independent integer type definitions.
Custom exception classes and callback validation utilities.
Main namespace for the project Original.
Definition algorithms.h:21
std::uint32_t u_integer
32-bit unsigned integer type for sizes/indexes
Definition config.h:17
std::int64_t integer
64-bit signed integer type for arithmetic operations
Definition config.h:15
bool operator!=(const autoPtr< T, DER, DEL > &ptr, const std::nullptr_t &null)
Inequality comparison with nullptr.
Definition autoPtr.h:506
bool operator==(const autoPtr< T, DER, DEL > &ptr, const std::nullptr_t &null)
Equality comparison with nullptr.
Definition autoPtr.h:501
Interface for polymorphic string formatting and output.