ADTF
Loading...
Searching...
No Matches
object_ptr_utilities.h
Go to the documentation of this file.
1
7#pragma once
8
9#include "object_ptr.h"
10#include "object_ptr_privates.h"
11
12#include <memory>
13#include <type_traits>
14
15namespace adtf
16{
17namespace ucom
18{
19namespace vision
20{
21template<typename Implementation, bool Fuse, typename Allocator, typename... Args>
22inline object_ptr<Implementation> allocate_object_ptr(Allocator&& allocator, Args&&... args);
23}
24namespace ant
25{
26
38template<typename T>
40{
41protected: // construction/destruction
50
51public:
58 {
59 return m_pWeak.Lock();
60 }
61
68 {
69 return m_pWeak.Lock();
70 }
71
72private:
73 // Only allocate_object_ptr has access to Assign()
74 template<typename Implementation, bool Fuse, typename Allocator, typename... Args>
75 friend object_ptr<Implementation> vision::allocate_object_ptr(Allocator&& allocator, Args&&... args);
76
82 void Assign(const object_ptr<T>& i_pObject)
83 {
84 m_pWeak.Reset(i_pObject);
85 }
86
87private: // private data
88 weak_object_ptr<T> m_pWeak;
89}; // template<typename T> class enable_object_ptr_from_this
90
91// #################################################################################################
92// ############################### Special free functions ##########################################
93// #################################################################################################
103template<typename T>
105{
106 return oCasted;
107}
108
128template<typename Implementation, typename... Args>
130{
131 return vision::allocate_object_ptr<Implementation, true>(std::allocator<void>(), std::forward<Args>(args)...);
132}
133
145template<typename Implementation>
146inline object_ptr<std::decay_t<Implementation>> make_object_ptr(Implementation&& object_to_emplace)
147{
148 return vision::allocate_object_ptr<std::decay_t<Implementation>, true>(std::allocator<void>(),
149 std::forward<Implementation>(object_to_emplace));
150}
151
165template<typename T, typename U>
167{
168 // must be checked beforehand to determine error if ucom_object_ptr_cast returns empty
169 if (nullptr == i_oSrc.Get())
170 { // resetting empty is not an error
171 o_oDest.Reset(object_ptr<const T>());
172 return ERR_NOERROR;
173 }
174
175 // if the subsequent call returns empty, the ucom_cast<> failed
176 const auto pTmp = ucom_object_ptr_cast<const T>(i_oSrc);
177 if (!pTmp)
178 { // reset empty and return error
179 o_oDest.Reset(object_ptr<const T>());
180 return ERR_NO_INTERFACE;
181 }
182
183 return o_oDest.Reset(pTmp);
184}
185
195template<typename T>
197{
198 const object_ptr<const T> pTmp(i_oSrc);
199 return o_oDest.Reset(pTmp);
200}
201
202} // namespace ant
203
204namespace penguin
205{
206
213template<typename T>
215{
216 return ant::object_ptr<T>(i_oOther, const_cast<typename ant::object_ptr<T>::element_type*>(i_oOther.Get()));
217}
218
219} // namespace penguin
220
221namespace vision
222{
244template<typename Implementation, bool Fuse, typename Allocator, typename... Args>
245inline object_ptr<Implementation> allocate_object_ptr(Allocator&& allocator, Args&&... args)
246{
247 static_assert(!std::is_reference_v<Implementation> && !std::is_volatile_v<Implementation>);
248 using implementation_base_type = std::remove_const_t<Implementation>;
249 using allocator_base = typename std::allocator_traits<Allocator>::template rebind_alloc<void>;
250 using counter_type = detail::fused_object_reference_counter<implementation_base_type, allocator_base, Fuse>;
251
252 auto pCounter = counter_type::Create(std::forward<Allocator>(allocator), std::forward<Args>(args)...);
253 auto pSharedObject = pCounter->GetSharedObject();
254 object_ptr<implementation_base_type> oResult(static_cast<ant::detail::iobject_ptr_ref<size_t>*>(pCounter),
255 pSharedObject);
256
257 if constexpr (std::is_base_of_v<ant::enable_object_ptr_from_this<implementation_base_type>, implementation_base_type>)
258 {
259 const auto pEnabler = static_cast<ant::enable_object_ptr_from_this<implementation_base_type>*>(pSharedObject);
260 pEnabler->Assign(oResult);
261 }
262
263 return oResult;
264}
265} // namespace vision
266
268template<class T>
270
273
276
279
282
285
286} // namespace ucom
287} // namespace adtf
A_UTILS_NS::cResult tResult
For backwards compatibility and to bring latest version into scope.
Definition result.h:736
Safely retrieve a valid object_ptr<> instance to *this when all we have is *this.
Definition object_ptr_utilities.h:40
~enable_object_ptr_from_this()=default
Default destructor.
object_ptr< T > object_ptr_from_this()
Retrieve an object_ptr with *this being the shared resource.
Definition object_ptr_utilities.h:57
enable_object_ptr_from_this()=default
Default constructor.
object_ptr< const T > object_ptr_from_this() const
Retrieve an object_ptr with *this being the shared resource - const correct.
Definition object_ptr_utilities.h:67
enable_object_ptr_from_this(const enable_object_ptr_from_this &)=default
Default copy construction.
enable_object_ptr_from_this & operator=(const enable_object_ptr_from_this &)=default
Default copy assignment.
virtual tResult Reset(const iobject_ptr< T > &i_oOther)=0
Reset this object_ptr<> with the content of another iobject_ptr<>
virtual T * Get() const =0
Get raw pointer to shared object.
Base object pointer to realize binary compatible reference counting in interface methods.
Definition object_ptr_intf.h:112
Definition object_ptr.h:384
Namespace for all functionality of the ADTF UCOM SDK provided since v3.0.
Definition test_runtime.h:14
tResult reset_object_ptr(iobject_ptr< const T > &o_oDest, const iobject_ptr< U > &i_oSrc)
Reset an iobject_ptr with const T.
Definition object_ptr_utilities.h:166
object_ptr< T > ucom_object_ptr_cast(object_ptr< T > oCasted)
Create an object_ptr with an already shared resource of implicitly convertible type.
Definition object_ptr_utilities.h:104
object_ptr< Implementation > make_object_ptr(Args &&... args)
Create an instance of type object_ptr with Implementation as the shared resource.
Definition object_ptr_utilities.h:129
Namespace for all functionality of the ADTF UCOM SDK provided since v3.21.
Definition plugin_logging_intf.h:48
object_ptr< Implementation > allocate_object_ptr(Allocator &&allocator, Args &&... args)
Create an instance of type object_ptr with Implementation as the shared resource.
Definition object_ptr_utilities.h:245
Namespace for the ADTF uCOM SDK.
Definition adtf_system.h:324
ant::weak_object_ptr< T > weak_object_ptr
Alias always bringing the latest version of ant::weak_object_ptr into scope.
Definition weak_object_ptr.h:232
ant::enable_object_ptr_from_this< T > enable_object_ptr_from_this
Alias always bringing the latest version of ant::enable_object_ptr_from_this into scope.
Definition object_ptr_utilities.h:269
Namespace for all functionality provided by ADTF and its SDKs.
Definition adtf_client_connector.h:14
ant::object_ptr< T > ucom_object_ptr_const_cast(const ant::iobject_ptr< const T > &i_oOther)
Create an object_ptr with a mutable shared resource of an existing const resource.
Definition object_ptr_utilities.h:214