29 template <
class INTERFACE>
31 using Factory = std::function<INTERFACE*()>;
36 void add(
const string& name) {
37 auto factory = [] {
return new IMPL(); };
38 CHECK(implementations_.insert({ name, factory }).second);
42 INTERFACE*
create(
const string& name)
const {
43 auto it = implementations_.find(name);
44 return it != implementations_.end() ? it->second() :
nullptr;
48 auto begin()
const {
return implementations_.begin(); }
51 auto end()
const {
return implementations_.end(); }
54 bool empty()
const {
return implementations_.empty(); }
57 map<string, Factory> implementations_;
62 template <
class INTERFACE>
66 template <
class FACTORY>
67 void add(
const string& name) {
68 CHECK(factories_.insert({ name, make_unique<FACTORY>() }).second);
73 INTERFACE*
find(
const string& name)
const {
74 auto it = factories_.find(name);
75 return it != factories_.end() ? it->second.get() :
nullptr;
79 auto begin()
const {
return factories_.begin(); }
82 auto end()
const {
return factories_.end(); }
85 bool empty()
const {
return factories_.empty(); }
88 map<string, unique_ptr<INTERFACE>> factories_;
A set of instances implementing common interface (primarily intended to support registering named fac...
Definition: modules.h:63
bool empty() const
Returns true if the set of registered instances is empty.
Definition: modules.h:85
Generic utilities.
Definition: exception.h:24
A simple factory implementation (instances can be created using the type's registered name) ...
Definition: modules.h:30
auto begin() const
Registered types begin iterator.
Definition: modules.h:48
auto end() const
Registered instances end iterator.
Definition: modules.h:82
auto end() const
Registered types end iterator.
Definition: modules.h:51
bool empty() const
Returns true if the set of registered types is empty.
Definition: modules.h:54
INTERFACE * find(const string &name) const
Returns a previously registered instance (or nullptr if the name doesn't map to a registered instance...
Definition: modules.h:73
void add(const string &name)
Registers a concrete implementation.
Definition: modules.h:67
Root of the polymorphic factories.
Definition: modules.h:92
void add(const string &name)
Registers a new type.
Definition: modules.h:36
Classes derived from this are not copyable or movable.
Definition: utils.h:69
INTERFACE * create(const string &name) const
Creates an instance of a previously registered type.
Definition: modules.h:42
auto begin() const
Registered instances begin iterator.
Definition: modules.h:79