qxLib
link.h
Go to the documentation of this file.
1 /**
2 
3  @file link.h
4  @author Khrapov
5  @date 21.11.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
12 
13 #include <cstddef>
14 #include <memory>
15 
16 namespace qx
17 {
18 
19 /**
20 
21  @class link
22  @brief std::weak_ptr wrapper that do not allow you
23  to create strong pointer (std::shared_ptr)
24  @tparam T - pointer class type
25  @author Khrapov
26  @date 21.11.2021
27 
28 **/
29 template<class T>
30 class link
31 {
32  // friend templated link class
33  friend class link;
34 
35 public:
36  /**
37 
38  @class lock_ptr
39  @brief std::shared_ptr wrapper
40  @details ~
41  @author Khrapov
42  @date 23.11.2021
43 
44  **/
45  class lock_ptr
46  {
47  // private constructor
48  friend class link;
49 
50  // friend templated lock_ptr class
51  friend class lock_ptr;
52 
53  public:
55 
56  T* operator->() const noexcept;
57  T& operator*() const noexcept;
58 
59  /**
60  @brief Get object pointer
61  @retval - T object pointer
62  **/
63  T* get() const noexcept;
64 
65  /**
66  @brief Is object presents
67  @retval - true if object presents
68  **/
69  explicit operator bool() const noexcept;
70 
71  /**
72  @brief operator==
73  @tparam U - lock_ptr with pointer convertible to T
74  @param other - other link_ptr
75  @retval - true, if objects are equal
76  **/
77  template<class U>
78  bool operator==(const U& other) const noexcept;
79 
80  /**
81  @brief operator<=>
82  @tparam U - lock_ptr with pointer convertible to T
83  @param other - other link_ptr
84  @retval - three-way comparison result
85  **/
86  template<class U>
87  std::strong_ordering operator<=>(const U& other) const noexcept;
88 
89  private:
90  /**
91  @brief lock_ptr object constructor
92  @param pShared - object strong pointer
93  **/
94  lock_ptr(std::shared_ptr<T> pShared) noexcept;
95 
96  private:
97  std::shared_ptr<T> m_pRaw;
98  };
99 
100 public:
101  link() noexcept = default;
102 
103  /**
104  @brief link object constructor
105  @tparam U - T or type convertible to T
106  @param pWeak - weak object pointer
107  **/
108  template<class U>
109  link(const std::weak_ptr<U>& pWeak) noexcept;
110 
111  /**
112  @brief link object constructor
113  @param pWeak - weak object pointer
114  **/
115  link(std::weak_ptr<T> pWeak) noexcept;
116 
117  /**
118  @brief link object constructor
119  @tparam U - T or type convertible to T
120  @param pStrong - strong object pointer
121  **/
122  template<class U>
123  link(const std::shared_ptr<U>& pStrong) noexcept;
124 
125  /**
126  @brief link object constructor
127  @tparam U - T or type convertible to T
128  @param pLink - other link
129  **/
130  template<class U>
131  link(const link<U>& pLink) noexcept;
132 
133  /**
134  @brief operator=
135  @tparam U - T or type convertible to T
136  @param pLink - other link
137  @retval - this object reference
138  **/
139  template<class U>
140  link& operator=(const link<U>& pLink) noexcept;
141 
142  /**
143  @brief link object constructor
144  @tparam U - T or type convertible to T
145  @param pLink - other link rvalue ref
146  **/
147  template<class U>
148  link(link<U>&& pLink) noexcept;
149 
150  /**
151  @brief operator=
152  @tparam U - T or type convertible to T
153  @param pLink - other link rvalue ref
154  @retval - this object reference
155  **/
156  template<class U>
157  link& operator=(link<U>&& pLink) noexcept;
158 
159  /**
160  @brief link object constructor
161  @param - nullptr
162  **/
163  link(std::nullptr_t) noexcept;
164 
165  /**
166  @brief Lock and return strong pointer
167  @retval - strong pointer
168  **/
169  lock_ptr lock() const noexcept;
170 
171  /**
172  @brief Reset weak pointer
173  **/
174  void reset() noexcept;
175 
176  /**
177  @brief If pointer is expired
178  @retval - true if pointer is expired
179  **/
180  bool expired() const noexcept;
181 
182  /**
183  @brief If pointer is expired
184  @retval - true if pointer is expired
185  **/
186  explicit operator bool() const noexcept;
187 
188  template<class U>
189  bool operator==(const link<U>&) const noexcept = delete;
190  template<class U>
191  bool operator!=(const link<U>&) const noexcept = delete;
192 
193 private:
194  std::weak_ptr<T> m_pWeak;
195 };
196 
197 } // namespace qx
198 
199 #include <qx/link.inl>
#define QX_NONCOPYMOVABLE(className)
Define class as non copyable and non movable.