Interface Factory helper for creating objects with polymorphic allocators using proper RAII semantics.
Uses the cetl::pmr::PmrInterfaceDeleter type to ensure proper type-erased deallocation.
Example usage:
cetl::pmr::polymorphic_allocator<MyObject> alloc{cetl::pmr::get_default_resource()};
auto obj0 = cetl::pmr::InterfaceFactory::make_unique<MyObject>(alloc, "obj0", 4U);
auto obj1 = cetl::pmr::InterfaceFactory::make_unique<IIdentifiable>(alloc, "obj1", 4U);
{
obj1.reset();
}
auto obj2 = cetl::pmr::InterfaceFactory::make_unique<IDescribable>(alloc, "obj2", 4U);
{
}
auto obj3 = cetl::pmr::InterfaceFactory::make_unique<INamed>(alloc, "obj3", 4U);
{
}
As shown in the next example, objects can maintain tight control of their lifecycle by befriending the allocators used to create cetl::pmr::InterfacePtr objects.
{
public:
using ConcreteAllocator = cetl::pf17::pmr::polymorphic_allocator<MyConcreteType>;
friend ConcreteAllocator;
template <typename... Args>
static cetl::pmr::InterfacePtr<cetl::rtti> make(std::allocator_arg_t, ConcreteAllocator alloc, Args&&... args)
{
return cetl::pmr::InterfaceFactory::make_unique<cetl::rtti>(alloc,
std::forward<Args>(args)...);
}
{
return nullptr;
}
{
return nullptr;
}
private:
MyConcreteType() = default;
virtual ~MyConcreteType() = default;
};
(See full example here...)