NuriaProject Framework  0.1
The NuriaProject Framework
runtimemetaobject.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_RUNTIMEMETAOBJECT_HPP
18 #define NURIA_RUNTIMEMETAOBJECT_HPP
19 
20 #include "metaobject.hpp"
21 #include <functional>
22 
23 namespace Nuria {
24 
25 class RuntimeMetaObjectPrivate;
26 
56 class NURIA_CORE_EXPORT RuntimeMetaObject : public MetaObject {
57 public:
58 
62  enum class InvokeAction {
63 
65  Invoke,
66 
68  UnsafeInvoke,
69 
71  ArgumentTest
72  };
73 
75  typedef QMultiMap< QByteArray, QVariant > AnnotationMap;
76 
86  typedef std::function< Callback(void *, InvokeAction) > InvokeCreator;
87 
89  typedef std::function< QVariant(void *) > FieldGetter;
90 
92  typedef std::function< bool(void *, const QVariant &) > FieldSetter;
93 
99  typedef std::function< void(void *) > InstanceDeleter;
100 
102  RuntimeMetaObject (const QByteArray &name);
103 
105  ~RuntimeMetaObject ();
106 
114  void setQtMetaTypeId (int valueTypeId);
115 
123  void setQtMetaTypePointerId (int pointerTypeId);
124 
126  void setAnnotations (const AnnotationMap &annotations);
127 
129  void setBaseClasses (const QVector< QByteArray > &bases);
130 
138  void setInstanceDeleter (InstanceDeleter deleter);
139 
151  void addMethod (MetaMethod::Type type, const QByteArray &name, const QByteArray &returnType,
152  const QVector< QByteArray > &argumentNames, const QVector< QByteArray > &argumentTypes,
153  const AnnotationMap &annotations, InvokeCreator invokeCreator);
154 
158  void addEnum (const QByteArray &name, const AnnotationMap &annotations,
159  const QMap< QByteArray, int > &keyValueMap);
160 
166  void addField (const QByteArray &name, const QByteArray &valueType, const AnnotationMap &annotations,
167  FieldGetter getter, FieldSetter setter);
168 
173  void addField (const QByteArray &name, const QByteArray &valueType, const AnnotationMap &annotations,
174  FieldGetter getter);
175 
181  void finalize ();
182 
183 protected:
184  void gateCall (GateMethod method, int category, int index, int nth, void *result, void *additional) override;
185 
186 private:
187  int runtimeAnnotationCount (int category, int index);
188  QByteArray runtimeAnnotationName (int category, int index, int nth);
189  QVariant runtimeAnnotationValue (int category, int index, int nth);
190 
191  QByteArray runtimeMethodName (int index);
192  MetaMethod::Type runtimeMethodType (int index);
193  QByteArray runtimeMethodReturnType (int index);
194  QVector< QByteArray > runtimeMethodArgumentNames (int index);
195  QVector< QByteArray > runtimeMethodArgumentTypes (int index);
196  Callback runtimeMethodCallback (void *instance, int index);
197  Callback runtimeMethodUnsafeCallback (void *instance, int index);
198  Callback runtimeMethodArgumentTest (void *instance, int index);
199 
200  QByteArray runtimeFieldName (int index);
201  QByteArray runtimeFieldType (int index);
202  QVariant runtimeFieldRead (int index, void *instance);
203  bool runtimeFieldWrite (int index, void *instance, const QVariant &value);
204  MetaField::Access runtimeFieldAccess (int index);
205 
206  QByteArray runtimeEnumName (int index);
207  int runtimeEnumElementCount (int index);
208  QByteArray runtimeEnumElementKey (int index, int nth);
209  int runtimeEnumElementValue (int index, int nth);
210 
211  RuntimeMetaObjectPrivate *d;
212 
213 };
214 
215 }
216 
217 #endif // RUNTIMEMETAOBJECT_HPP
The MetaObject class provides access to meta-data of types at run-time.
Definition: metaobject.hpp:560
RuntimeMetaObject lets you easily define types at run-time.
Definition: runtimemetaobject.hpp:56
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
InvokeAction
Definition: runtimemetaobject.hpp:62
Access
Definition: metaobject.hpp:299
Definition: abstractsessionmanager.hpp:24
GateMethod
Definition: metaobject.hpp:567
std::function< bool(void *, const QVariant &) > FieldSetter
Definition: runtimemetaobject.hpp:92
std::function< void(void *) > InstanceDeleter
Definition: runtimemetaobject.hpp:99
QMultiMap< QByteArray, QVariant > AnnotationMap
Definition: runtimemetaobject.hpp:75
Type
Definition: metaobject.hpp:140
std::function< QVariant(void *) > FieldGetter
Definition: runtimemetaobject.hpp:89
std::function< Callback(void *, InvokeAction) > InvokeCreator
Definition: runtimemetaobject.hpp:86