added object_proxy as the holder of the object in object_ptr

This commit is contained in:
2025-02-22 15:39:38 +01:00
parent d0b3ce4231
commit 35f078bbc4
5 changed files with 46 additions and 18 deletions
+12 -10
View File
@@ -3,6 +3,7 @@
#include "matador/utils/identifier.hpp"
#include "matador/object/object_proxy.hpp"
#include "matador/object/primary_key_resolver.hpp"
#include <memory>
@@ -11,35 +12,36 @@ namespace matador::object {
template <typename Type>
class object_ptr {
public:
object_ptr() = default;
object_ptr()
: ptr_(std::make_shared<object_proxy<Type>>()) {}
explicit object_ptr(Type *obj)
: ptr_(obj)
: ptr_(std::make_shared<object_proxy<Type>>(obj))
, pk_(primary_key_resolver::resolve_object(*obj).pk) {}
explicit object_ptr(std::shared_ptr<Type> obj) : ptr_(obj) {}
object_ptr(const object_ptr &other) : ptr_(other.ptr_) {}
object_ptr(object_ptr &&other) noexcept : ptr_(std::move(other.ptr_)) {}
object_ptr &operator=(const object_ptr &other) = default;
object_ptr &operator=(object_ptr &&other) = default;
using value_type = Type;
Type* operator->() const { return ptr_.get(); }
Type& operator*() const { return *ptr_; }
Type* operator->() const { return ptr_->pointer(); }
Type& operator*() { return ptr_->ref(); }
const Type& operator*() const { return ptr_->ref(); }
[[nodiscard]] bool empty() const { return ptr_ == nullptr; }
[[nodiscard]] bool empty() const { return ptr_->pointer() == nullptr; }
void reset(Type *obj) {
ptr_.reset(obj);
ptr_->reset(obj);
pk_ = primary_key_resolver::resolve_object(*obj).pk;
}
Type* get() { return ptr_.get(); }
const Type* get() const { return ptr_.get(); }
Type* get() const { return static_cast<Type*>(ptr_->pointer()); }
operator bool() { return valid(); }
bool valid() { return ptr_ != nullptr; }
[[nodiscard]] const utils::identifier& primary_key() const { return pk_; }
void primary_key(const utils::identifier &pk) { pk_ = pk; }
private:
std::shared_ptr<Type> ptr_{};
std::shared_ptr<object_proxy<Type>> ptr_{};
utils::identifier pk_;
};