"README.textile" did not exist on "fe3387017216a0429297d917b1a59fbea4839ba7"
Newer
Older
/**
* 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 QJsonObject &object, QObject *parent)
: QObject(parent)
Json::Json(const QJsonArray &array, QObject *parent)
: QObject(parent)
Json::Json(const Json &other, QObject *parent)
: QObject(parent)
setJson(other.json());
}
Json &Json::operator =(const Json &other)
{
setJson(other.json());
return *this;
}
QByteArray Json::json() const
{
return json_;
}
void Json::setJson(const QByteArray &json)
{
json_ = json;
}
}
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();
}
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();
}