From 0c1b1f8eac847ada60e702533ff44aec7c16da41 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 17 Sep 2015 19:04:55 +0100 Subject: Add instantiation macros --- libadhocutil/factory.impl.h | 6 ++++++ libadhocutil/plugins.impl.h | 8 ++++++++ libadhocutil/unittests/testFactory.cpp | 3 +++ 3 files changed, 17 insertions(+) diff --git a/libadhocutil/factory.impl.h b/libadhocutil/factory.impl.h index 4e34310..5aefba4 100644 --- a/libadhocutil/factory.impl.h +++ b/libadhocutil/factory.impl.h @@ -2,6 +2,7 @@ #define ADHOCUTIL_FACTORY_IMPL_H #include "factory.h" +#include "plugins.impl.h" namespace AdHoc { template @@ -21,5 +22,10 @@ namespace AdHoc { return get(name)->create(p...); } } + +#define INSTANIATEFACTORY(Base, ...) \ + template class AdHoc::Factory; \ + INSTANIATEPLUGINOF(Base) + #endif diff --git a/libadhocutil/plugins.impl.h b/libadhocutil/plugins.impl.h index 44b6dab..aad6b2d 100644 --- a/libadhocutil/plugins.impl.h +++ b/libadhocutil/plugins.impl.h @@ -75,5 +75,13 @@ namespace AdHoc { } } +#define INSTANIATEPLUGINOF(T) \ + template class AdHoc::PluginOf; \ + template void AdHoc::PluginManager::add(const T *, const std::string &, const std::string &, int); \ + template void AdHoc::PluginManager::remove(const std::string &); \ + template boost::shared_ptr> AdHoc::PluginManager::get(const std::string &) const; \ + template const T * AdHoc::PluginManager::getImplementation(const std::string &) const; \ + template std::set>> AdHoc::PluginManager::getAll() const; \ + #endif diff --git a/libadhocutil/unittests/testFactory.cpp b/libadhocutil/unittests/testFactory.cpp index 9b463f1..6c0a5d5 100644 --- a/libadhocutil/unittests/testFactory.cpp +++ b/libadhocutil/unittests/testFactory.cpp @@ -11,6 +11,7 @@ using namespace AdHoc; class BaseThing { public: BaseThing(int, const std::string &){} + virtual ~BaseThing() = default; virtual void execute() const = 0; }; @@ -31,6 +32,8 @@ typedef AdHoc::Factory BaseThingFactory; NAMEDFACTORY("a", ImplOfThing, BaseThingFactory); FACTORY(OtherImplOfThing, BaseThingFactory); +INSTANIATEFACTORY(BaseThing, int, std::string); + BOOST_AUTO_TEST_CASE( ready ) { BOOST_REQUIRE_EQUAL(2, PluginManager::getDefault()->count()); -- cgit v1.2.3