NuriaProject Framework  0.1
The NuriaProject Framework
jsonmetaobjectreader.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_JSONMETAOBJECTREADER_HPP
18 #define NURIA_JSONMETAOBJECTREADER_HPP
19 
20 #include <QSharedData>
21 #include <QStringList>
22 #include <QString>
23 
24 #include "essentials.hpp"
25 #include "metaobject.hpp"
26 
27 namespace Nuria {
28 
29 class JsonMetaObjectReaderPrivate;
30 
55 class NURIA_CORE_EXPORT JsonMetaObjectReader : public QObject {
56  Q_OBJECT
57  Q_ENUMS(Error)
58 public:
59 
63  enum Error {
64  NoError = 0,
66 
69 
72  TypeIsNotAnObject,
73 
78  AnnotationsIsNotAnArray,
79  BasesIsNotAnArray,
80  ConstructorsIsNotAnArray,
81  MemberMethodsIsNotAnArray,
82  StaticMethodsIsNotAnArray,
83  EnumsIsNotAnObject,
84  FieldsIsNotAnObject,
85  BasesContainsNonString,
92  AnnotationIsNotAnObject,
93  AnnotationNameIsNotAString,
94 
107  MethodIsNotAnObject,
108  MethodNameIsNotAString,
109  MethodResultTypeIsNotAString,
110 
113  MethodArgumentNamesIsNotAnArray,
114  MethodArgumentNamesContainsNonString,
115  MethodArgumentTypesIsNotAnArray,
116  MethodArgumentTypesContainsNonString,
123  EnumIsNotAnObject,
124  EnumValuesIsNotAnObject,
125  EnumValueObjectValueIsNotAnInteger,
132  FieldIsNotAnObject,
133  FieldTypeIsNotAString,
134  FieldReadOnlyIsNotABoolean
137  };
138 
140  explicit JsonMetaObjectReader (QObject *parent = 0);
141 
144 
150  Error parse (const QJsonDocument &jsonDocument);
151 
153  Error parse (const QJsonObject &root);
154 
156  Error parse (const QByteArray &jsonData);
157 
162  QStringList sourceFiles ();
163 
168  MetaObjectMap metaObjects (const QString &sourceFile);
169 
170 private:
171  JsonMetaObjectReaderPrivate *d_ptr;
172 };
173 
174 }
175 
176 #endif // NURIA_JSONMETAOBJECTREADER_HPP
Error
Definition: jsonmetaobjectreader.hpp:63
Definition: abstractsessionmanager.hpp:24
Definition: jsonmetaobjectreader.hpp:100
JsonMetaObjectReader is a parser for MetaObject data stored in JSON format as generated by Tria...
Definition: jsonmetaobjectreader.hpp:55
Definition: jsonmetaobjectreader.hpp:71
Definition: jsonmetaobjectreader.hpp:68
The raw JSON data failed to parse.
Definition: jsonmetaobjectreader.hpp:65