NuriaProject Framework  0.1
The NuriaProject Framework
dependencymanager.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_DEPEDENCYMANAGER_HPP
18 #define NURIA_DEPEDENCYMANAGER_HPP
19 
20 #include "essentials.hpp"
21 #include <functional>
22 #include <QObject>
23 
24 namespace Nuria {
25 class DependencyManagerPrivate;
26 
86 class NURIA_CORE_EXPORT DependencyManager : public QObject {
87  Q_OBJECT
88 public:
89 
99 
105 
111 
118  ThreadLocal
119  };
120 
122  ~DependencyManager ();
123 
127  static DependencyManager *instance ();
128 
133  ThreadingPolicy defaultThreadingPolicy () const;
134 
141  void setDefaultThreadingPolicy (ThreadingPolicy policy);
142 
155  void *objectByName (const QByteArray &name, int type = -1, ThreadingPolicy policy = DefaultPolicy);
156 
160  int objectType (const QByteArray &name, ThreadingPolicy policy = DefaultPolicy) const;
161 
165  inline bool hasObject (const QByteArray &name, ThreadingPolicy policy = DefaultPolicy) const
166  { return objectType (name, policy) != -1; }
167 
175  void storeObject (const QByteArray &name, void *object, int type,
176  ThreadingPolicy policy = DefaultPolicy);
177 
179  template< typename T >
180  void storeObject (const QByteArray &name, T *object)
181  { storeObject (name, object, qMetaTypeId< T * > ()); }
182 
194  void setCreator (const QByteArray &name, const std::function< QObject *() > &creator);
195 
200  template< typename T >
201  inline static T *get (const QByteArray &name, ThreadingPolicy policy = DefaultPolicy) {
202  return static_cast< T * > (instance ()->objectByName (name, qMetaTypeId< T * > (), policy));
203  }
204 
205 private slots:
206 
207  void freeAllObjects ();
208 
209 private:
210  explicit DependencyManager (QObject *parent = 0);
211 
212  DependencyManagerPrivate *d_ptr;
213 };
214 
251 template< typename T >
252 class Dependency {
253  mutable T *m_obj = nullptr;
254  QByteArray m_name;
255 public:
256 
261  Dependency (const QByteArray &objectName = QByteArray ())
262  : m_name (objectName)
263  {
264  if (objectName.isEmpty ()) {
265  const char *name = QMetaType::typeName (qMetaTypeId< T * > ());
266  this->m_name.setRawData (name, ::qstrlen (name) - 1);
267  }
268 
269  }
270 
272  bool operator== (const Dependency< T > &other) const
273  { return (this->m_name == other.m_name); }
274 
276  bool operator!= (const Dependency< T > &other) const
277  { return (this->m_name != other.m_name); }
278 
280  operator bool () const
281  { return (get () != nullptr); }
282 
284  T *operator-> () const
285  { return get (); }
286 
291  T *get () const {
292  if (!this->m_obj) {
293  this->m_obj = DependencyManager::get< T > (this->m_name);
294  }
295 
296  return this->m_obj;
297  }
298 
299 };
300 
301 }
302 
303 #endif // NURIA_DEPEDENCYMANAGER_HPP
Definition: dependencymanager.hpp:104
bool hasObject(const QByteArray &name, ThreadingPolicy policy=DefaultPolicy) const
Definition: dependencymanager.hpp:165
void storeObject(const QByteArray &name, T *object)
Definition: dependencymanager.hpp:180
bool operator==(const Dependency< T > &other) const
Definition: dependencymanager.hpp:272
bool operator!=(const Dependency< T > &other) const
Definition: dependencymanager.hpp:276
Smart pointer class for dependency injection.
Definition: dependencymanager.hpp:252
Definition: abstractsessionmanager.hpp:24
Dependency(const QByteArray &objectName=QByteArray())
Definition: dependencymanager.hpp:261
Dependency injection manager.
Definition: dependencymanager.hpp:86
T * operator->() const
Definition: dependencymanager.hpp:284
Definition: dependencymanager.hpp:110
ThreadingPolicy
Definition: dependencymanager.hpp:94
Definition: dependencymanager.hpp:98