Darwin Neuroevolution Framework
modules.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "utils.h"
18 
19 #include <functional>
20 #include <map>
21 #include <memory>
22 #include <string>
23 using namespace std;
24 
25 namespace core {
26 
29 template <class INTERFACE>
31  using Factory = std::function<INTERFACE*()>;
32 
33  public:
35  template <class IMPL>
36  void add(const string& name) {
37  auto factory = [] { return new IMPL(); };
38  CHECK(implementations_.insert({ name, factory }).second);
39  }
40 
42  INTERFACE* create(const string& name) const {
43  auto it = implementations_.find(name);
44  return it != implementations_.end() ? it->second() : nullptr;
45  }
46 
48  auto begin() const { return implementations_.begin(); }
49 
51  auto end() const { return implementations_.end(); }
52 
54  bool empty() const { return implementations_.empty(); }
55 
56  private:
57  map<string, Factory> implementations_;
58 };
59 
62 template <class INTERFACE>
64  public:
66  template <class FACTORY>
67  void add(const string& name) {
68  CHECK(factories_.insert({ name, make_unique<FACTORY>() }).second);
69  }
70 
73  INTERFACE* find(const string& name) const {
74  auto it = factories_.find(name);
75  return it != factories_.end() ? it->second.get() : nullptr;
76  }
77 
79  auto begin() const { return factories_.begin(); }
80 
82  auto end() const { return factories_.end(); }
83 
85  bool empty() const { return factories_.empty(); }
86 
87  private:
88  map<string, unique_ptr<INTERFACE>> factories_;
89 };
90 
93  public:
94  virtual ~ModuleFactory() = default;
95 };
96 
97 } // namespace core
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&#39;s registered name) ...
Definition: modules.h:30
auto begin() const
Registered types begin iterator.
Definition: modules.h:48
STL namespace.
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&#39;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