qxLib
link.inl
Go to the documentation of this file.
1 /**
2 
3  @file link.inl
4  @author Khrapov
5  @date 23.11.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class T>
14 T* link<T>::lock_ptr::operator->() const noexcept
15 {
16  return m_pRaw.get();
17 }
18 
19 template<class T>
20 T& link<T>::lock_ptr::operator*() const noexcept
21 {
22  return *m_pRaw;
23 }
24 
25 template<class T>
26 T* link<T>::lock_ptr::get() const noexcept
27 {
28  return m_pRaw.get();
29 }
30 
31 template<class T>
32 link<T>::lock_ptr::operator bool() const noexcept
33 {
34  return m_pRaw != nullptr;
35 }
36 
37 template<class T>
38 template<class U>
39 bool link<T>::lock_ptr::operator==(const U& other) const noexcept
40 {
41  return get() == other.get();
42 }
43 
44 template<class T>
45 template<class U>
46 std::strong_ordering link<T>::lock_ptr::operator<=>(const U& other) const noexcept
47 {
48  return get() <=> other.get();
49 }
50 
51 template<class T>
52 link<T>::lock_ptr::lock_ptr(std::shared_ptr<T> pShared) noexcept : m_pRaw(std::move(pShared))
53 {
54 }
55 
56 template<class T>
57 template<class U>
58 link<T>::link(const std::weak_ptr<U>& pWeak) noexcept : m_pWeak(pWeak)
59 {
60 }
61 
62 template<class T>
63 link<T>::link(std::weak_ptr<T> pWeak) noexcept : m_pWeak(std::move(pWeak))
64 {
65 }
66 
67 template<class T>
68 template<class U>
69 link<T>::link(const std::shared_ptr<U>& pStrong) noexcept : m_pWeak(pStrong)
70 {
71 }
72 
73 template<class T>
74 template<class U>
75 link<T>::link(const link<U>& pLink) noexcept : m_pWeak(pLink.m_pWeak)
76 {
77 }
78 
79 template<class T>
80 template<class U>
81 link<T>& link<T>::operator=(const link<U>& pLink) noexcept
82 {
83  m_pWeak = pLink.m_pWeak;
84  return *this;
85 }
86 
87 template<class T>
88 template<class U>
89 link<T>::link(link<U>&& pLink) noexcept : m_pWeak(std::move(pLink.m_pWeak))
90 {
91 }
92 
93 template<class T>
94 template<class U>
95 link<T>& link<T>::operator=(link<U>&& pLink) noexcept
96 {
97  m_pWeak = std::move(pLink.m_pWeak);
98  return *this;
99 }
100 
101 template<class T>
102 link<T>::link(std::nullptr_t) noexcept
103 {
104 }
105 
106 template<class T>
107 typename link<T>::lock_ptr link<T>::lock() const noexcept
108 {
109  return lock_ptr(m_pWeak.lock());
110 }
111 
112 template<class T>
113 void link<T>::reset() noexcept
114 {
115  m_pWeak.reset();
116 }
117 
118 template<class T>
119 inline bool link<T>::expired() const noexcept
120 {
121  return m_pWeak.expired();
122 }
123 
124 template<class T>
125 link<T>::operator bool() const noexcept
126 {
127  return !m_pWeak.expired();
128 }
129 
130 } // namespace qx