NuriaProject Framework  0.1
The NuriaProject Framework
metaobject.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_METAOBJECT_HPP
18 #define NURIA_METAOBJECT_HPP
19 
20 #include "essentials.hpp"
21 #include "callback.hpp"
22 
23 #include <QVariant>
24 #include <QString>
25 
26 namespace Nuria {
27 
28 class MetaObject;
29 class MetaMethod;
30 class MetaField;
31 class MetaEnum;
32 
57 class NURIA_CORE_EXPORT MetaAnnotation {
58 public:
59 
61  MetaAnnotation ();
62 
64  bool isValid () const;
65 
67  QByteArray name () const;
68 
70  QVariant value () const;
71 
72 private:
73  friend class MetaObject;
74  friend class MetaMethod;
75  friend class MetaField;
76  friend class MetaEnum;
77 
78  inline MetaAnnotation (MetaObject *meta, short category, short index, short nth)
79  : m_meta (meta), m_category (category), m_index (index), m_nth (nth)
80  {}
81 
82  mutable MetaObject *m_meta;
83  short m_category;
84  short m_index;
85  short m_nth;
86 };
87 
136 class NURIA_CORE_EXPORT MetaMethod {
137 public:
138 
140  enum Type {
141 
143  Method = 0,
144 
146  Static = 1,
147 
149  Constructor = 2
150  };
151 
153  MetaMethod ();
154 
156  bool isValid () const;
157 
159  QByteArray name () const;
160 
162  Type type () const;
163 
165  QByteArray returnType () const;
166 
168  QVector< QByteArray > argumentTypes () const;
169 
171  QVector< QByteArray > argumentNames () const;
172 
185  Callback callback (void *instance = nullptr) const;
186 
194  Callback unsafeCallback (void *instance = nullptr) const;
195 
201  Callback testCallback (void *instance = nullptr) const;
202 
207  int annotationCount () const;
208 
213  MetaAnnotation annotation (int idx) const;
214 
219  int annotationLowerBound (const QByteArray &name) const;
220 
225  int annotationUpperBound (const QByteArray &name) const;
226 
227 private:
228  friend class MetaObject;
229 
230  inline MetaMethod (MetaObject *meta, int index)
231  : m_meta (meta), m_index (index)
232  {}
233 
234  mutable MetaObject *m_meta;
235  int m_index;
236 
237 };
238 
296 class NURIA_CORE_EXPORT MetaField {
297 public:
299  enum Access {
300  NoAccess = 0x00,
301  ReadOnly = 0x01,
302  WriteOnly = 0x02,
303  ReadWrite = ReadOnly | WriteOnly
304  };
305 
307  MetaField ();
308 
310  bool isValid () const;
311 
313  QByteArray name () const;
314 
316  QByteArray typeName () const;
317 
319  Access access () const;
320 
322  QVariant read (void *instance) const;
323 
328  bool write (void *instance, const QVariant &value);
329 
334  int annotationCount () const;
335 
340  MetaAnnotation annotation (int idx) const;
341 
346  int annotationLowerBound (const QByteArray &name) const;
347 
352  int annotationUpperBound (const QByteArray &name) const;
353 
354 private:
355  friend class MetaObject;
356 
357  inline MetaField (MetaObject *meta, short index)
358  : m_meta (meta), m_index (index)
359  {}
360 
361  mutable MetaObject *m_meta;
362  short m_index;
363 };
364 
371 class NURIA_CORE_EXPORT MetaEnum {
372 public:
373 
375  MetaEnum ();
376 
378  bool isValid () const;
379 
381  QByteArray name () const;
382 
384  int elementCount () const;
385 
387  QByteArray key (int at) const;
388 
390  int value (int at) const;
391 
396  QByteArray valueToKey (int value) const;
397 
402  int keyToValue (const QByteArray &key) const;
403 
408  int annotationCount () const;
409 
414  MetaAnnotation annotation (int idx) const;
415 
420  int annotationLowerBound (const QByteArray &name) const;
421 
426  int annotationUpperBound (const QByteArray &name) const;
427 
428 private:
429  friend class MetaObject;
430 
431  inline MetaEnum (MetaObject *meta, int index)
432  : m_meta (meta), m_index (index)
433  {}
434 
435  mutable MetaObject *m_meta;
436  int m_index;
437 
438 };
439 
441 typedef QMap< QByteArray, MetaObject * > MetaObjectMap;
442 
560 class NURIA_CORE_EXPORT MetaObject {
561 public:
562 
567  enum class GateMethod {
568  ClassName = 0, // QByteArray
569  MetaTypeId = 1, // int
570  PointerMetaTypeId = 2, // int
571  BaseClasses = 3, // QVector< QByteArray >
572  AnnotationCount = 4, // int
573  MethodCount = 5, // int
574  FieldCount = 6, // int
575  EnumCount = 7, // int
576 
577  AnnotationName = 10, // QByteArray
578  AnnotationValue = 11, // QVariant
579 
580  MethodName = 20, // QByteArray
581  MethodType = 21, // Nuria::MetaMethod::Type
582  MethodReturnType = 22, // QByteArray
583  MethodArgumentNames = 23, // QVector< QByteArray >
584  MethodArgumentTypes = 24, // QVector< QByteArray >
585  MethodCallback = 25, // Nuria::Callback, additional = void *instance
586  MethodUnsafeCallback = 26, // Nuria::Callback, additional = void *instance
587  MethodArgumentTest = 27, // Nuria::Callback, additional = void *instance
588 
589  FieldName = 30, // QByteArray
590  FieldType = 31, // QByteArray
591  FieldRead = 32, // QVariant, additional = void *instance
592  FieldWrite = 33, // bool, additional = void** = { instance, value }
593  FieldAccess = 34, // MetaField::Access
594 
595  EnumName = 40, // QByteArray
596  EnumElementCount = 41, // int
597  EnumElementKey = 42, // QByteArray
598  EnumElementValue = 43, // int
599 
600  DestroyInstance = 50 // void, additional = void *instance
601  };
602 
608  template< typename T >
609  static MetaObject *of () {
610  int id = qMetaTypeId< T * > ();
611  const char *typeName = QMetaType::typeName (id);
612  return MetaObject::byName (QByteArray (typeName, ::strlen (typeName) - 1));
613  }
614 
619  static MetaObject *byName (const QByteArray &type);
620 
626  static MetaObject *byTypeId (int typeId);
627 
632  static MetaObjectMap typesInheriting (const QByteArray &typeName);
633 
638  static MetaObjectMap typesWithAnnotation (const QByteArray &name);
639 
643  static MetaObjectMap allTypes ();
644 
655  static void registerMetaObject (MetaObject *object);
656 
658  inline MetaObject () {}
659 
661  virtual ~MetaObject () {}
662 
666  QByteArray className ();
667 
672  int metaTypeId ();
673 
677  int pointerMetaTypeId ();
678 
682  QVector< QByteArray > parents ();
683 
688  int annotationCount ();
689 
694  MetaAnnotation annotation (int idx) const;
695 
700  int annotationLowerBound (const QByteArray &name) const;
701 
706  int annotationUpperBound (const QByteArray &name) const;
707 
712  int methodCount ();
713 
718  MetaMethod method (int idx);
719 
724  int methodLowerBound (const QByteArray &name);
725 
730  int methodUpperBound (const QByteArray &name);
731 
740  MetaMethod method (const QVector< QByteArray > &prototype);
741 
747  void destroyInstance (void *instance);
748 
753  int fieldCount ();
754 
759  MetaField field (int idx);
760 
766  MetaField fieldByName (const QByteArray &name);
767 
772  int enumCount ();
773 
778  MetaEnum enumAt (int idx);
779 
785  MetaEnum enumByName (const QByteArray &name);
786 
787 protected:
788 
793  virtual void gateCall (GateMethod method, int category, int index, int nth,
794  void *result, void *additional = 0) = 0;
795 
796 private:
797  friend class MetaAnnotation;
798  friend class MetaMethod;
799  friend class MetaField;
800  friend class MetaEnum;
801 
802 };
803 
804 }
805 
806 #endif // NURIA_METAOBJECT_HPP
The MetaObject class provides access to meta-data of types at run-time.
Definition: metaobject.hpp:560
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
The MetaField class lets you access fields of types.
Definition: metaobject.hpp:296
static MetaObject * of()
Definition: metaobject.hpp:609
Access
Definition: metaobject.hpp:299
Definition: abstractsessionmanager.hpp:24
static MetaObject * byName(const QByteArray &type)
GateMethod
Definition: metaobject.hpp:567
Type
Definition: metaobject.hpp:140
The MetaAnnotation class allows access to annotations.
Definition: metaobject.hpp:57
The MetaMethod class lets you access methods from registered types.
Definition: metaobject.hpp:136
MetaObject()
Definition: metaobject.hpp:658
virtual ~MetaObject()
Definition: metaobject.hpp:661
The MetaEnum class provides access to enum's in a MetaObject.
Definition: metaobject.hpp:371