Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/**
* A library for Qt app
*
* LICENSE: The GNU Lesser General Public License, version 3.0
*
* @author Akira Ohgaki <akiraohgaki@gmail.com>
* @copyright Akira Ohgaki
* @license https://opensource.org/licenses/LGPL-3.0 The GNU Lesser General Public License, version 3.0
* @link https://github.com/akiraohgaki/qtlibs
*/
#include "json.h"
#include <QJsonDocument>
#include <QJsonParseError>
namespace qtlibs {
Json::Json(const QByteArray &json, QObject *parent) :
QObject(parent), json_(json)
{}
Json::Json(const QString &string, QObject *parent) :
QObject(parent)
{
setJson(string.toUtf8());
}
Json::Json(const QJsonObject &object, QObject *parent) :
QObject(parent)
{
QJsonDocument doc(object);
setJson(doc.toJson());
}
Json::Json(const QJsonArray &array, QObject *parent) :
QObject(parent)
{
QJsonDocument doc(array);
setJson(doc.toJson());
}
QByteArray Json::json() const
{
return json_;
}
void Json::setJson(const QByteArray &json)
{
json_ = json;
}
bool Json::isValid()
{
QJsonParseError parseError;
QJsonDocument::fromJson(json(), &parseError);
if (parseError.error == QJsonParseError::NoError) {
return true;
}
return false;
}
bool Json::isObject()
{
QJsonDocument doc = QJsonDocument::fromJson(json());
return doc.isObject();
}
bool Json::isArray()
{
QJsonDocument doc = QJsonDocument::fromJson(json());
return doc.isArray();
}
QByteArray Json::toJson()
{
QJsonDocument doc = QJsonDocument::fromJson(json());
return doc.toJson();
}
QJsonObject Json::toObject()
{
QJsonDocument doc = QJsonDocument::fromJson(json());
return doc.object();
}
QJsonArray Json::toArray()
{
QJsonDocument doc = QJsonDocument::fromJson(json());
return doc.array();
}
} // namespace qtlibs