ORIGINAL
Loading...
Searching...
No Matches
refCntPtr.h
Go to the documentation of this file.
1#ifndef REFCNTPTR_H
2#define REFCNTPTR_H
3
4#include "autoPtr.h"
5#include "deleter.h"
6
15
16
17namespace original{
30 template<typename TYPE, typename DERIVED, typename DELETER>
31 class refCntPtr : public autoPtr<TYPE, DERIVED, DELETER>{
32 protected:
38 explicit refCntPtr(TYPE* p = std::nullptr_t{});
39 public:
40 using autoPtr<TYPE, DERIVED, DELETER>::operator==;
41 using autoPtr<TYPE, DERIVED, DELETER>::operator!=;
42
49 template<typename O_DERIVED>
51
58 template<typename O_DERIVED>
60
65 [[nodiscard]] std::string className() const override;
66
72 [[nodiscard]] std::string toString(bool enter) const override;
73
77 ~refCntPtr() override = default;
78 };
79
80 template<typename TYPE, typename DELETER = deleter<TYPE>>
81 class strongPtr;
82
83 template<typename TYPE, typename DELETER = deleter<TYPE>>
84 class weakPtr;
85
86
99 template<typename TYPE, typename DELETER>
100 class strongPtr final : public refCntPtr<TYPE, strongPtr<TYPE, DELETER>, DELETER>{
101 friend class weakPtr<TYPE, DELETER>;
102
103 public:
109 explicit strongPtr(TYPE* p = std::nullptr_t{});
110
115 strongPtr(const strongPtr& other);
116
123
129 strongPtr(strongPtr&& other) noexcept;
130
139 void reset() noexcept;
140
147 strongPtr& operator=(strongPtr&& other) noexcept;
148
153 [[nodiscard]] std::string className() const override;
154
158 ~strongPtr() override;
159
160 template <typename T, typename DEL, typename... Args>
161 friend strongPtr<T, DEL> makeStrongPtr(Args&&... args);
162
163 template <typename T, typename DEL, typename... Args>
164 friend strongPtr<T, DEL> makeStrongPtrArray(u_integer size, Args&&... args);
165 };
166
178 template<typename TYPE, typename DELETER>
179 class weakPtr final : public refCntPtr<TYPE, weakPtr<TYPE, DELETER>, DELETER>{
180 friend class strongPtr<TYPE, DELETER>;
181
182 public:
183
187 explicit weakPtr();
188
197 explicit weakPtr(const strongPtr<TYPE, DELETER>& other);
198
210
218 weakPtr(const weakPtr& other);
219
230 weakPtr& operator=(const weakPtr& other);
231
237 weakPtr(weakPtr&& other) noexcept;
238
245 weakPtr& operator=(weakPtr&& other) noexcept;
246
257
262 const TYPE& operator*() const override;
263
268 const TYPE* operator->() const override;
269
275 const TYPE& operator[](u_integer index) const override;
276
281 TYPE& operator*() override;
282
287 TYPE* operator->() override;
288
294 TYPE& operator[](u_integer index) override;
295
300 [[nodiscard]] std::string className() const override;
301
308 ~weakPtr() override;
309 };
310
326 template <typename T, typename DEL = deleter<T>, typename... Args>
327 strongPtr<T, DEL> makeStrongPtr(Args&&... args);
328
345 template <typename T, typename DEL = deleter<T[]>, typename... Args>
346 strongPtr<T, DEL> makeStrongPtrArray(u_integer size, Args&&... args);
347
348
349 // ----------------- Definitions of refCntPtr.h -----------------
350
351
352 template<typename TYPE, typename DERIVED, typename DELETER>
354 : autoPtr<TYPE, DERIVED, DELETER>::autoPtr(p) {}
355
356 template<typename TYPE, typename DERIVED, typename DELETER>
357 template<typename O_DERIVED>
359 return this->get() == other.get();
360 }
361
362 template<typename TYPE, typename DERIVED, typename DELETER>
363 template<typename O_DERIVED>
365 return this->get() != other.get();
366 }
367
368 template<typename TYPE, typename DERIVED, typename DELETER>
370 return "refCntPtr";
371 }
372
373 template<typename TYPE, typename DERIVED, typename DELETER>
374 std::string refCntPtr<TYPE, DERIVED, DELETER>::toString(const bool enter) const {
375 std::stringstream ss;
376 ss << this->className() << "(";
377 ss << printable::formatString(this->get()) << ", ";
378 ss << "strong ref: " << this->strongRefs() << ", " << "weak ref: " << this->weakRefs();
379 ss << ")";
380 if (enter)
381 ss << "\n";
382 return ss.str();
383 }
384
385 template<typename TYPE, typename DELETER>
387 : refCntPtr<TYPE, strongPtr, DELETER>(p) {
388 this->addStrongRef();
389 }
390
391 template<typename TYPE, typename DELETER>
393 this->operator=(other);
394 }
395
396 template<typename TYPE, typename DELETER>
398 if (this == &other || *this == other)
399 return *this;
400
401 this->removeStrongRef();
402 this->clean();
403 this->ref_count = other.ref_count;
404 this->addStrongRef();
405 return *this;
406 }
407
408 template<typename TYPE, typename DELETER>
410 this->operator=(std::move(other));
411 }
412
413 template<typename TYPE, typename DELETER>
415 this->removeStrongRef();
416 this->clean();
418 this->addStrongRef();
419 }
420
421 template<typename TYPE, typename DELETER>
423 if (this == &other || *this == other)
424 return *this;
425
426 this->removeStrongRef();
427 this->clean();
428 this->ref_count = other.ref_count;
430 other.addStrongRef();
431 return *this;
432 }
433
434 template<typename TYPE, typename DELETER>
436 return "strongPtr";
437 }
438
439 template<typename TYPE, typename DELETER>
443
444 template<typename T, typename DEL, typename ... Args>
446 return strongPtr<T, DEL>(new T(std::forward<Args>(args)...));
447 }
448
449 template<typename T, typename DEL, typename ... Args>
450 strongPtr<T, DEL> makeStrongPtrArray(const u_integer size, Args &&...args) {
451 auto strong_ptr = strongPtr<T, DEL>(new T[size]);
452 for (u_integer i = 0; i < size; i++)
453 {
454 strong_ptr[i] = T(std::forward<Args>(args)...);
455 }
456 return strong_ptr;
457 }
458
459 template<typename TYPE, typename DELETER>
461 : refCntPtr<TYPE, weakPtr, DELETER>() {
462 this->addWeakRef();
463 }
464
465 template<typename TYPE, typename DELETER>
467 : weakPtr() {
468 this->operator=(other);
469 }
470
471 template<typename TYPE, typename DELETER>
473 if (*this == other)
474 return *this;
475
476 this->removeWeakRef();
477 this->clean();
478 this->ref_count = other.ref_count;
479 this->addWeakRef();
480 return *this;
481 }
482
483 template<typename TYPE, typename DELETER>
485 : weakPtr() {
486 this->operator=(other);
487 }
488
489 template<typename TYPE, typename DELETER>
491 if (this == &other || *this == other)
492 return *this;
493
494 this->removeWeakRef();
495 this->clean();
496 this->ref_count = other.ref_count;
497 this->addWeakRef();
498 return *this;
499 }
500
501 template<typename TYPE, typename DELETER>
503 this->operator=(std::move(other));
504 }
505
506 template<typename TYPE, typename DELETER>
508 if (this == &other || *this == other)
509 return *this;
510
511 this->removeWeakRef();
512 this->clean();
513 this->ref_count = other.ref_count;
515 other.addWeakRef();
516 return *this;
517 }
518
519 template<typename TYPE, typename DELETER>
521 strongPtr<TYPE, DELETER> strong_ptr;
522 if (!this->expired()){
523 strong_ptr.removeStrongRef();
524 strong_ptr.clean();
525 strong_ptr.ref_count = this->ref_count;
526 strong_ptr.addStrongRef();
527 }
528 return strong_ptr;
529 }
530
531 template<typename TYPE, typename DELETER>
533 return this->lock().operator*();
534 }
535
536 template<typename TYPE, typename DELETER>
538 return this->lock().operator->();
539 }
540
541 template<typename TYPE, typename DELETER>
543 return this->lock().operator[](index);
544 }
545
546 template<typename TYPE, typename DELETER>
548 return this->lock().operator*();
549 }
550
551 template<typename TYPE, typename DELETER>
553 return this->lock().operator->();
554 }
555
556 template<typename TYPE, typename DELETER>
558 return this->lock().operator[](index);
559 }
560
561 template<typename TYPE, typename DELETER>
563 return "weakPtr";
564 }
565
566 template<typename TYPE, typename DELETER>
570}
571
572#endif //REFCNTPTR_H
Base class for reference-counted smart pointers.
Base smart pointer with reference counting.
Definition autoPtr.h:36
static refCount< TYPE, DELETER > * newRefCount(TYPE *p=nullptr)
Create new reference counter.
Definition autoPtr.h:377
virtual const TYPE & operator[](u_integer index) const
Definition autoPtr.h:439
u_integer strongRefs() const
Get strong reference count.
Definition autoPtr.h:383
u_integer weakRefs() const
Get weak reference count.
Definition autoPtr.h:388
autoPtr(TYPE *p)
Construct from raw pointer.
Definition autoPtr.h:328
refCount< TYPE, DELETER > * ref_count
Definition autoPtr.h:38
virtual const TYPE & operator*() const
Definition autoPtr.h:424
const TYPE * get() const
Get managed pointer const version.
Definition autoPtr.h:408
virtual const TYPE * operator->() const
Definition autoPtr.h:432
static std::string formatString(const TYPE &t)
Universal value-to-string conversion.
std::string className() const override
Get class identifier.
Definition refCntPtr.h:369
std::string toString(bool enter) const override
Formatted string with reference info.
Definition refCntPtr.h:374
bool operator!=(const refCntPtr< TYPE, O_DERIVED, DELETER > &other) const
Inequality comparison operator.
Definition refCntPtr.h:364
bool operator==(const refCntPtr< TYPE, O_DERIVED, DELETER > &other) const
Equality comparison operator.
Definition refCntPtr.h:358
~refCntPtr() override=default
Default destructor of refCntPtr.
refCntPtr(TYPE *p=std::nullptr_t{})
Construct from raw pointer.
Definition refCntPtr.h:353
Shared ownership smart pointer with strong references.
Definition refCntPtr.h:100
strongPtr(strongPtr &&other) noexcept
Move constructor transfers ownership.
Definition refCntPtr.h:409
void reset() noexcept
Resets the smart pointer and releases the managed object.
Definition refCntPtr.h:414
std::string className() const override
Definition refCntPtr.h:435
friend strongPtr< T, DEL > makeStrongPtr(Args &&... args)
Definition refCntPtr.h:445
strongPtr & operator=(const strongPtr &other)
Copy assignment shares ownership.
Definition refCntPtr.h:397
strongPtr(TYPE *p=std::nullptr_t{})
Construct from raw pointer.
Definition refCntPtr.h:386
friend strongPtr< T, DEL > makeStrongPtrArray(u_integer size, Args &&... args)
Definition refCntPtr.h:450
~strongPtr() override
Destructor decreases strong references count.
Definition refCntPtr.h:440
strongPtr(const strongPtr &other)
Copy constructor shares ownership.
Definition refCntPtr.h:392
Non-owning reference to shared resource.
Definition refCntPtr.h:179
const TYPE & operator*() const override
Const dereference via temporary strong reference.
Definition refCntPtr.h:532
std::string className() const override
Get class type identifier.
Definition refCntPtr.h:562
strongPtr< TYPE, DELETER > lock() const
Attempt to acquire ownership.
Definition refCntPtr.h:520
weakPtr & operator=(const strongPtr< TYPE, DELETER > &other)
Assign observation from strongPtr.
Definition refCntPtr.h:472
~weakPtr() override
Destructor releases weak reference.
Definition refCntPtr.h:567
const TYPE & operator[](u_integer index) const override
Const array element access via temporary strong reference.
Definition refCntPtr.h:542
const TYPE * operator->() const override
Const member access via temporary strong reference.
Definition refCntPtr.h:537
weakPtr()
Initialize empty weak reference.
Definition refCntPtr.h:460
Default deleters for resource management.
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
strongPtr< T, DEL > makeStrongPtrArray(u_integer size, Args &&... args)
Creates a new strongPtr managing a shared array.
Definition refCntPtr.h:450
strongPtr< T, DEL > makeStrongPtr(Args &&... args)
Creates a new strongPtr managing a shared object.
Definition refCntPtr.h:445