ORIGINAL
Loading...
Searching...
No Matches
autoPtr.h
Go to the documentation of this file.
1#ifndef AUTOPTR_H
2#define AUTOPTR_H
3
4#include "config.h"
5#include "printable.h"
6#include "comparable.h"
7#include "error.h"
8
16
17namespace original {
18 // Forward declaration for friend class
19 template<typename TYPE, typename DELETER>
20 class refCount;
21
35 template<typename TYPE, typename DERIVED, typename DELETER>
36 class autoPtr : public printable, public comparable<autoPtr<TYPE, DERIVED, DELETER>>{
37 protected:
39
45 explicit autoPtr(TYPE* p);
46
52 void setPtr(TYPE* p);
53
59
64 void addWeakRef();
65
71
77
82 void destroyRefCnt() noexcept;
83
88 void clean() noexcept;
89
95 static refCount<TYPE, DELETER>* newRefCount(TYPE* p = nullptr);
96
97 public:
98
104
110
115 bool exist() const;
116
121 bool expired() const;
122
127 explicit operator bool() const;
128
134 const TYPE* get() const;
135
141 TYPE* get();
142
148 virtual const TYPE& operator*() const;
149
155 virtual const TYPE* operator->() const;
156
163 virtual const TYPE& operator[](u_integer index) const;
164
165 // Mutable accessors
171 virtual TYPE& operator*();
172
178 virtual TYPE* operator->();
179
186 virtual TYPE& operator[](u_integer index);
187
197 void swap(autoPtr& other) noexcept;
198
204 integer compareTo(const autoPtr& other) const override;
205
210 std::string className() const override;
211
217 std::string toString(bool enter) const override;
218
222 ~autoPtr() override;
223
224 template<typename T, typename DER, typename DEL>
225 friend bool operator==(const autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
226
227 template<typename T, typename DER, typename DEL>
228 friend bool operator!=(const autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
229
230 template<typename T, typename DER, typename DEL>
231 friend bool operator==(const std::nullptr_t& null, const autoPtr<T, DER, DEL>& ptr);
232
233 template<typename T, typename DER, typename DEL>
234 friend bool operator!=(const std::nullptr_t& null, const autoPtr<T, DER, DEL>& ptr);
235 };
236
247 template<typename T, typename DER, typename DEL>
248 bool operator==(const autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
249
260 template<typename T, typename DER, typename DEL>
261 bool operator!=(const autoPtr<T, DER, DEL>& ptr, const std::nullptr_t& null);
262
273 template<typename T, typename DER, typename DEL>
274 bool operator==(const std::nullptr_t& null, const autoPtr<T, DER, DEL>& ptr);
275
286 template<typename T, typename DER, typename DEL>
287 bool operator!=(const std::nullptr_t& null, const autoPtr<T, DER, DEL>& ptr);
288
299 template<typename TYPE, typename DELETER>
300 class refCount {
301 template <typename, typename, typename>
302 friend class autoPtr;
303
304 TYPE* ptr;
305 u_integer strong_refs;
306 u_integer weak_refs;
307 DELETER deleter;
308
313 explicit refCount(TYPE* p = nullptr);
314
318 void destroyPtr() noexcept;
319
323 ~refCount();
324 };
325}
326
327template<typename TYPE, typename DERIVED, typename DELETER>
330
331
332template<typename TYPE, typename DERIVED, typename DELETER>
334 if (!this->exist()){
335 throw nullPointerError();
336 }
337 this->ref_count->ptr = p;
338}
339
340template<typename TYPE, typename DERIVED, typename DELETER>
344
345template<typename TYPE, typename DERIVED, typename DELETER>
349
350template<typename TYPE, typename DERIVED, typename DELETER>
354
355template<typename TYPE, typename DERIVED, typename DELETER>
359
360template<typename TYPE, typename DERIVED, typename DELETER>
362 delete this->ref_count;
363 this->ref_count = nullptr;
364}
365
366template<typename TYPE, typename DERIVED, typename DELETER>
368 if (!this->exist()){
369 this->destroyRefCnt();
370 }
371 if (this->expired()){
372 this->ref_count->destroyPtr();
373 }
374}
375
376template <typename TYPE, typename DERIVED, typename DELETER>
381
382template<typename TYPE, typename DERIVED, typename DELETER>
386
387template<typename TYPE, typename DERIVED, typename DELETER>
391
392template<typename TYPE, typename DERIVED, typename DELETER>
394 return this->ref_count && (this->strongRefs() > 0 || this->weakRefs() > 0);
395}
396
397template<typename TYPE, typename DERIVED, typename DELETER>
399 return this->ref_count && this->strongRefs() == 0;
400}
401
402template<typename TYPE, typename DERIVED, typename DELETER>
404 return this->exist() && this->get();
405}
406
407template<typename TYPE, typename DERIVED, typename DELETER>
409 if (!this->exist()){
410 throw nullPointerError();
411 }
412 return this->ref_count->ptr;
413}
414
415template<typename TYPE, typename DERIVED, typename DELETER>
417 if (!this->exist()){
418 throw nullPointerError();
419 }
420 return this->ref_count->ptr;
421}
422
423template<typename TYPE, typename DERIVED, typename DELETER>
425 if (!this->get())
426 throw nullPointerError();
427 return *this->get();
428}
429
430template<typename TYPE, typename DERIVED, typename DELETER>
431const TYPE*
433 if (!this->get())
434 throw nullPointerError();
435 return this->get();
436}
437
438template<typename TYPE, typename DERIVED, typename DELETER>
440 if (!this->get())
441 throw nullPointerError();
442 return this->get()[index];
443}
444
445template<typename TYPE, typename DERIVED, typename DELETER>
447 if (!this->get())
448 throw nullPointerError();
449 return *this->get();
450}
451
452template<typename TYPE, typename DERIVED, typename DELETER>
453TYPE*
455 if (!this->get())
456 throw nullPointerError();
457 return this->get();
458}
459
460template<typename TYPE, typename DERIVED, typename DELETER>
462 if (!this->get())
463 throw nullPointerError();
464 return this->get()[index];
465}
466
467template<typename TYPE, typename DERIVED, typename DELETER>
469 auto other_ref_count = other.ref_count;
470 other.ref_count = this->ref_count;
471 this->ref_count = other_ref_count;
472}
473
474template<typename TYPE, typename DERIVED, typename DELETER>
478
479template<typename TYPE, typename DERIVED, typename DELETER>
481 return "autoPtr";
482}
483
484template<typename TYPE, typename DERIVED, typename DELETER>
485std::string original::autoPtr<TYPE, DERIVED, DELETER>::toString(const bool enter) const {
486 std::stringstream ss;
487 ss << this->className() << "(";
488 ss << formatString(this->get());
489 ss << ")";
490 if (enter)
491 ss << "\n";
492 return ss.str();
493}
494
495template<typename TYPE, typename DERIVED, typename DELETER>
499
500template<typename T, typename DER, typename DEL>
501bool original::operator==(const autoPtr<T, DER, DEL>& ptr, const std::nullptr_t&) {
502 return !ptr.operator bool();
503}
504
505template<typename T, typename DER, typename DEL>
506bool original::operator!=(const autoPtr<T, DER, DEL>& ptr, const std::nullptr_t&) {
507 return ptr.operator bool();
508}
509
510template<typename T, typename DER, typename DEL>
511bool original::operator==(const std::nullptr_t&, const autoPtr<T, DER, DEL>& ptr) {
512 return !ptr.operator bool();
513}
514
515template<typename T, typename DER, typename DEL>
516bool original::operator!=(const std::nullptr_t&, const autoPtr<T, DER, DEL>& ptr) {
517 return ptr.operator bool();
518}
519
520template<typename TYPE, typename DELETER>
521original::refCount<TYPE, DELETER>::refCount(TYPE *p)
522 : ptr(p), strong_refs(0), weak_refs(0) {}
523
524template<typename TYPE, typename DELETER>
525void original::refCount<TYPE, DELETER>::destroyPtr() noexcept {
526 TYPE* tmp = this->ptr;
527 this->ptr = nullptr;
528 this->deleter(tmp);
529}
530
531template<typename TYPE, typename DELETER>
532original::refCount<TYPE, DELETER>::~refCount() {
533 this->destroyPtr();
534}
535
536#endif //AUTOPTR_H
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
~autoPtr() override
Destructor triggers reference cleanup.
Definition autoPtr.h:496
void addStrongRef()
Increment strong reference count.
Definition autoPtr.h:341
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
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
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.