2015-05-28 23:08:29 +05:30
|
|
|
// Licensed under the Apache-2.0 license. See README.md for details.
|
|
|
|
|
|
|
|
#include "Json.h"
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
#include "FileSystem.h"
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
namespace Json
|
|
|
|
{
|
|
|
|
void write(const QJsonDocument &doc, const QString &filename)
|
|
|
|
{
|
|
|
|
FS::write(filename, doc.toJson());
|
|
|
|
}
|
|
|
|
void write(const QJsonObject &object, const QString &filename)
|
|
|
|
{
|
|
|
|
write(QJsonDocument(object), filename);
|
|
|
|
}
|
|
|
|
void write(const QJsonArray &array, const QString &filename)
|
|
|
|
{
|
|
|
|
write(QJsonDocument(array), filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray toBinary(const QJsonObject &obj)
|
|
|
|
{
|
|
|
|
return QJsonDocument(obj).toBinaryData();
|
|
|
|
}
|
|
|
|
QByteArray toBinary(const QJsonArray &array)
|
|
|
|
{
|
|
|
|
return QJsonDocument(array).toBinaryData();
|
|
|
|
}
|
|
|
|
QByteArray toText(const QJsonObject &obj)
|
|
|
|
{
|
|
|
|
return QJsonDocument(obj).toJson(QJsonDocument::Compact);
|
|
|
|
}
|
|
|
|
QByteArray toText(const QJsonArray &array)
|
|
|
|
{
|
|
|
|
return QJsonDocument(array).toJson(QJsonDocument::Compact);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isBinaryJson(const QByteArray &data)
|
|
|
|
{
|
|
|
|
decltype(QJsonDocument::BinaryFormatTag) tag = QJsonDocument::BinaryFormatTag;
|
|
|
|
return memcmp(data.constData(), &tag, sizeof(QJsonDocument::BinaryFormatTag)) == 0;
|
|
|
|
}
|
2015-06-04 01:27:22 +05:30
|
|
|
QJsonDocument requireDocument(const QByteArray &data, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (isBinaryJson(data))
|
|
|
|
{
|
|
|
|
QJsonDocument doc = QJsonDocument::fromBinaryData(data);
|
|
|
|
if (doc.isNull())
|
|
|
|
{
|
|
|
|
throw JsonException(what + ": Invalid JSON (binary JSON detected)");
|
|
|
|
}
|
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QJsonParseError error;
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(data, &error);
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
|
|
|
{
|
|
|
|
throw JsonException(what + ": Error parsing JSON: " + error.errorString());
|
|
|
|
}
|
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
}
|
2015-06-04 01:27:22 +05:30
|
|
|
QJsonDocument requireDocument(const QString &filename, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
2015-06-04 01:27:22 +05:30
|
|
|
return requireDocument(FS::read(filename), what);
|
2015-05-28 23:08:29 +05:30
|
|
|
}
|
2015-06-04 01:27:22 +05:30
|
|
|
QJsonObject requireObject(const QJsonDocument &doc, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (!doc.isObject())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not an object");
|
|
|
|
}
|
|
|
|
return doc.object();
|
|
|
|
}
|
2015-06-04 01:27:22 +05:30
|
|
|
QJsonArray requireArray(const QJsonDocument &doc, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (!doc.isArray())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not an array");
|
|
|
|
}
|
|
|
|
return doc.array();
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeString(QJsonObject &to, const QString &key, const QString &value)
|
|
|
|
{
|
|
|
|
if (!value.isEmpty())
|
|
|
|
{
|
|
|
|
to.insert(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeStringList(QJsonObject &to, const QString &key, const QStringList &values)
|
|
|
|
{
|
|
|
|
if (!values.isEmpty())
|
|
|
|
{
|
|
|
|
QJsonArray array;
|
|
|
|
for(auto value: values)
|
|
|
|
{
|
|
|
|
array.append(value);
|
|
|
|
}
|
|
|
|
to.insert(key, array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
|
|
|
QJsonValue toJson<QUrl>(const QUrl &url)
|
|
|
|
{
|
|
|
|
return QJsonValue(url.toString(QUrl::FullyEncoded));
|
|
|
|
}
|
|
|
|
template<>
|
|
|
|
QJsonValue toJson<QByteArray>(const QByteArray &data)
|
|
|
|
{
|
|
|
|
return QJsonValue(QString::fromLatin1(data.toHex()));
|
|
|
|
}
|
|
|
|
template<>
|
|
|
|
QJsonValue toJson<QDateTime>(const QDateTime &datetime)
|
|
|
|
{
|
|
|
|
return QJsonValue(datetime.toString(Qt::ISODate));
|
|
|
|
}
|
|
|
|
template<>
|
|
|
|
QJsonValue toJson<QDir>(const QDir &dir)
|
|
|
|
{
|
|
|
|
return QDir::current().relativeFilePath(dir.absolutePath());
|
|
|
|
}
|
|
|
|
template<>
|
|
|
|
QJsonValue toJson<QUuid>(const QUuid &uuid)
|
|
|
|
{
|
|
|
|
return uuid.toString();
|
|
|
|
}
|
|
|
|
template<>
|
|
|
|
QJsonValue toJson<QVariant>(const QVariant &variant)
|
|
|
|
{
|
|
|
|
return QJsonValue::fromVariant(variant);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QByteArray requireIsType<QByteArray>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
2015-06-04 01:27:22 +05:30
|
|
|
const QString string = ensureIsType<QString>(value, what);
|
2015-05-28 23:08:29 +05:30
|
|
|
// ensure that the string can be safely cast to Latin1
|
|
|
|
if (string != QString::fromLatin1(string.toLatin1()))
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not encodable as Latin1");
|
|
|
|
}
|
|
|
|
return QByteArray::fromHex(string.toLatin1());
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QJsonArray requireIsType<QJsonArray>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (!value.isArray())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not an array");
|
|
|
|
}
|
|
|
|
return value.toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QString requireIsType<QString>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (!value.isString())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not a string");
|
|
|
|
}
|
|
|
|
return value.toString();
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> bool requireIsType<bool>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (!value.isBool())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not a bool");
|
|
|
|
}
|
|
|
|
return value.toBool();
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> double requireIsType<double>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (!value.isDouble())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not a double");
|
|
|
|
}
|
|
|
|
return value.toDouble();
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> int requireIsType<int>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
2015-06-04 01:27:22 +05:30
|
|
|
const double doubl = requireIsType<double>(value, what);
|
2015-05-28 23:08:29 +05:30
|
|
|
if (fmod(doubl, 1) != 0)
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not an integer");
|
|
|
|
}
|
|
|
|
return int(doubl);
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QDateTime requireIsType<QDateTime>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
2015-06-04 01:27:22 +05:30
|
|
|
const QString string = requireIsType<QString>(value, what);
|
2015-05-28 23:08:29 +05:30
|
|
|
const QDateTime datetime = QDateTime::fromString(string, Qt::ISODate);
|
|
|
|
if (!datetime.isValid())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not a ISO formatted date/time value");
|
|
|
|
}
|
|
|
|
return datetime;
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QUrl requireIsType<QUrl>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
2015-06-04 01:27:22 +05:30
|
|
|
const QString string = ensureIsType<QString>(value, what);
|
2015-05-28 23:08:29 +05:30
|
|
|
if (string.isEmpty())
|
|
|
|
{
|
|
|
|
return QUrl();
|
|
|
|
}
|
|
|
|
const QUrl url = QUrl(string, QUrl::StrictMode);
|
|
|
|
if (!url.isValid())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not a correctly formatted URL");
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QDir requireIsType<QDir>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
2015-06-04 01:27:22 +05:30
|
|
|
const QString string = requireIsType<QString>(value, what);
|
|
|
|
// FIXME: does not handle invalid characters!
|
2015-05-28 23:08:29 +05:30
|
|
|
return QDir::current().absoluteFilePath(string);
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QUuid requireIsType<QUuid>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
2015-06-04 01:27:22 +05:30
|
|
|
const QString string = requireIsType<QString>(value, what);
|
2015-05-28 23:08:29 +05:30
|
|
|
const QUuid uuid = QUuid(string);
|
|
|
|
if (uuid.toString() != string) // converts back => valid
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not a valid UUID");
|
|
|
|
}
|
|
|
|
return uuid;
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QJsonObject requireIsType<QJsonObject>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (!value.isObject())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is not an object");
|
|
|
|
}
|
|
|
|
return value.toObject();
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QVariant requireIsType<QVariant>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (value.isNull() || value.isUndefined())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is null or undefined");
|
|
|
|
}
|
|
|
|
return value.toVariant();
|
|
|
|
}
|
|
|
|
|
2015-06-04 01:27:22 +05:30
|
|
|
template<> QJsonValue requireIsType<QJsonValue>(const QJsonValue &value, const QString &what)
|
2015-05-28 23:08:29 +05:30
|
|
|
{
|
|
|
|
if (value.isNull() || value.isUndefined())
|
|
|
|
{
|
|
|
|
throw JsonException(what + " is null or undefined");
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|