From 9fd25e8b10b1291525a18c8b3e34256ca6151dd6 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 22 Mar 2025 11:50:31 +0000 Subject: Add ManyPtr which tracks specified subclasses This removes the need to repeated dynamic_cast the pointer. Provides interface which enforces the fastest option for the required types. --- lib/manyPtr.h | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ lib/persistence.h | 3 +- 2 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 lib/manyPtr.h (limited to 'lib') diff --git a/lib/manyPtr.h b/lib/manyPtr.h new file mode 100644 index 0000000..9e08452 --- /dev/null +++ b/lib/manyPtr.h @@ -0,0 +1,86 @@ +#pragma once + +#include +#include + +template class ManyPtr : Primary { +public: + using element_type = typename Primary::element_type; + + template ManyPtr(Params &&... params) : Primary {std::forward(params)...} + { + updatePtrs(); + } + + using Primary::operator->; + using Primary::operator*; + using Primary::operator bool; + using Primary::get; + + template + void + reset(Params &&... params) + { + Primary::reset(std::forward(params)...); + updatePtrs(); + } + + template + [[nodiscard]] consteval static bool + couldBe() + { + return (std::is_convertible_v || ...); + } + + template + requires(couldBe()) + [[nodiscard]] auto + getAs() const + { + return std::get()>(others); + } + + template + requires(!couldBe() && requires { std::dynamic_pointer_cast(std::declval()); }) + [[nodiscard]] auto + dynamicCast() const + { + return std::dynamic_pointer_cast(*this); + } + + template + requires(!couldBe() && !requires { std::dynamic_pointer_cast(std::declval()); }) + [[nodiscard]] auto + dynamicCast() const + { + return dynamic_cast(get()); + } + +private: + using OtherPtrs = std::tuple; + + template + requires(couldBe()) + [[nodiscard]] consteval static bool + idx() + { + size_t typeIdx = 0; + return ((typeIdx++ && std::is_convertible_v) || ...); + } + + void + updatePtrs() + { + if (*this) { + others = {dynamic_cast(get())...}; + } + else { + others = {}; + } + } + + OtherPtrs others; +}; + +template using ManySharedPtr = ManyPtr, Others...>; +template using ManyUniquePtr = ManyPtr, Others...>; diff --git a/lib/persistence.h b/lib/persistence.h index e385b20..75bcea6 100644 --- a/lib/persistence.h +++ b/lib/persistence.h @@ -1,5 +1,6 @@ #pragma once +#include "manyPtr.h" #include #include #include @@ -200,7 +201,7 @@ namespace Persistence { } [[nodiscard]] virtual NameActionSelection setName(const std::string_view key, SelectionFactory &&) = 0; - virtual void selHandler() {}; + virtual void selHandler() { }; virtual void setType(const std::string_view, const Persistable *) = 0; SelectionPtr sel {}; -- cgit v1.2.3