From 76bc728bc1681ed216ffe6f7720f3f57b5137fab Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Fri, 10 Apr 2020 12:40:24 +0100 Subject: IVGCVSW-4483 Introduce PolymorphicPointerDowncast * as replacement for boost::polymorphic_pointer_downcast * added PolymorphicPointerDowncast * added related unit test * added description to PolymorphicDowncast Signed-off-by: Jan Eilers Change-Id: I47e94344c1c21941865549a5632cfb7cad804d35 --- include/armnn/utility/PolymorphicDowncast.hpp | 58 +++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) (limited to 'include') diff --git a/include/armnn/utility/PolymorphicDowncast.hpp b/include/armnn/utility/PolymorphicDowncast.hpp index b4a5cad314..8f052370e5 100644 --- a/include/armnn/utility/PolymorphicDowncast.hpp +++ b/include/armnn/utility/PolymorphicDowncast.hpp @@ -9,6 +9,7 @@ #include +#include #include namespace armnn @@ -29,6 +30,46 @@ namespace armnn #endif +namespace utility +{ +// static_pointer_cast overload for std::shared_ptr +template +std::shared_ptr StaticPointerCast (const std::shared_ptr& sp) +{ + return std::static_pointer_cast(sp); +} + +// dynamic_pointer_cast overload for std::shared_ptr +template +std::shared_ptr DynamicPointerCast (const std::shared_ptr& sp) +{ + return std::dynamic_pointer_cast(sp); +} + +// static_pointer_cast overload for raw pointers +template +inline T1* StaticPointerCast(T2 *ptr) +{ + return static_cast(ptr); +} + +// dynamic_pointer_cast overload for raw pointers +template +inline T1* DynamicPointerCast(T2 *ptr) +{ + return dynamic_cast(ptr); +} + +} // namespace utility + +/// Polymorphic downcast for build in pointers only +/// +/// Usage: Child* pChild = PolymorphicDowncast(pBase); +/// +/// \tparam DestType Pointer type to the target object (Child pointer type) +/// \tparam SourceType Pointer type to the source object (Base pointer type) +/// \param value Pointer to the source object +/// \return Pointer of type DestType (Pointer of type child) template DestType PolymorphicDowncast(SourceType value) { @@ -40,4 +81,21 @@ DestType PolymorphicDowncast(SourceType value) return static_cast(value); } + +/// Polymorphic downcast for shared pointers and build in pointers +/// +/// Usage: auto pChild = PolymorphicPointerDowncast(pBase) +/// +/// \tparam DestType Type of the target object (Child type) +/// \tparam SourceType Pointer type to the source object (Base (shared) pointer type) +/// \param value Pointer to the source object +/// \return Pointer of type DestType ((Shared) pointer of type child) +template +auto PolymorphicPointerDowncast(const SourceType& value) +{ + ARMNN_POLYMORPHIC_CAST_CHECK(utility::DynamicPointerCast(value) + == utility::StaticPointerCast(value)); + return utility::StaticPointerCast(value); +} + } //namespace armnn \ No newline at end of file -- cgit v1.2.1