Files
qt-creator/tests/benchmarks/json/tst_bench_json.cpp
Kai Köhne 1be357f4be Remove GPL-3.0+ from license identifiers, part II
The original text before the SPDX change did not include a potential
GPL-4.0, but GPL-2.0.

While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only

Change was done by running

  find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR LGPL-3.0/LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only/g" {} ;

Change-Id: Id5e40d3e174ecea660a09e88a02bd57505f1875d
Reviewed-by: Lucie Gerard <lucie.gerard@qt.io>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2023-01-06 10:27:36 +00:00

240 lines
6.8 KiB
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include <QtTest>
#include <qjsondocument.h>
#include <qjsonobject.h>
#include <json.h>
using namespace Json;
class BenchmarkJson: public QObject
{
Q_OBJECT
public:
BenchmarkJson() {}
private Q_SLOTS:
void jsonObjectInsertQt();
void jsonObjectInsertStd();
void createBinaryMessageQt();
void createBinaryMessageStd();
void readBinaryMessageQt();
void readBinaryMessageStd();
void createTextMessageQt();
void createTextMessageStd();
void readTextMessageQt();
void readTextMessageStd();
void parseJsonQt();
void parseJsonStd();
void parseNumbersQt();
void parseNumbersStd();
};
void BenchmarkJson::parseNumbersQt()
{
QString testFile = QFINDTESTDATA("numbers.json");
QVERIFY2(!testFile.isEmpty(), "cannot find test file numbers.json!");
QFile file(testFile);
file.open(QFile::ReadOnly);
QByteArray testJson = file.readAll();
QBENCHMARK {
QJsonDocument doc = QJsonDocument::fromJson(testJson);
doc.object();
}
}
void BenchmarkJson::parseNumbersStd()
{
QString testFile = QFINDTESTDATA("numbers.json");
QVERIFY2(!testFile.isEmpty(), "cannot find test file numbers.json!");
QFile file(testFile);
file.open(QFile::ReadOnly);
std::string testJson = file.readAll().toStdString();
QBENCHMARK {
JsonDocument doc = JsonDocument::fromJson(testJson);
doc.object();
}
}
void BenchmarkJson::parseJsonQt()
{
QString testFile = QFINDTESTDATA("test.json");
QVERIFY2(!testFile.isEmpty(), "cannot find test file test.json!");
QFile file(testFile);
file.open(QFile::ReadOnly);
QByteArray testJson = file.readAll();
QBENCHMARK {
QJsonDocument doc = QJsonDocument::fromJson(testJson);
doc.object();
}
}
void BenchmarkJson::parseJsonStd()
{
QString testFile = QFINDTESTDATA("test.json");
QVERIFY2(!testFile.isEmpty(), "cannot find test file test.json!");
QFile file(testFile);
file.open(QFile::ReadOnly);
std::string testJson = file.readAll().toStdString();
QBENCHMARK {
JsonDocument doc = JsonDocument::fromJson(testJson);
doc.object();
}
}
void BenchmarkJson::createBinaryMessageQt()
{
// Example: send information over a datastream to another process
// Measure performance of creating and processing data into bytearray
QBENCHMARK {
QJsonObject ob;
ob.insert(QStringLiteral("command"), 1);
ob.insert(QStringLiteral("key"), "some information");
ob.insert(QStringLiteral("env"), "some environment variables");
QJsonDocument(ob).toBinaryData();
}
}
void BenchmarkJson::createBinaryMessageStd()
{
// Example: send information over a datastream to another process
// Measure performance of creating and processing data into bytearray
QBENCHMARK {
JsonObject ob;
ob.insert("command", 1);
ob.insert("key", "some information");
ob.insert("env", "some environment variables");
JsonDocument(ob).toBinaryData();
}
}
void BenchmarkJson::readBinaryMessageQt()
{
// Example: receive information over a datastream from another process
// Measure performance of converting content back to QVariantMap
// We need to recreate the bytearray but here we only want to measure the latter
QJsonObject ob;
ob.insert(QStringLiteral("command"), 1);
ob.insert(QStringLiteral("key"), "some information");
ob.insert(QStringLiteral("env"), "some environment variables");
QByteArray msg = QJsonDocument(ob).toBinaryData();
QBENCHMARK {
QJsonDocument::fromBinaryData(msg, QJsonDocument::Validate).object();
}
}
void BenchmarkJson::readBinaryMessageStd()
{
// Example: receive information over a datastream from another process
// Measure performance of converting content back to QVariantMap
// We need to recreate the bytearray but here we only want to measure the latter
JsonObject ob;
ob.insert("command", 1);
ob.insert("key", "some information");
ob.insert("env", "some environment variables");
std::string msg = JsonDocument(ob).toBinaryData();
QBENCHMARK {
JsonDocument::fromBinaryData(msg, JsonDocument::Validate).object();
}
}
void BenchmarkJson::createTextMessageQt()
{
// Example: send information over a datastream to another process
// Measure performance of creating and processing data into bytearray
QBENCHMARK {
QJsonObject ob;
ob.insert(QStringLiteral("command"), 1);
ob.insert(QStringLiteral("key"), "some information");
ob.insert(QStringLiteral("env"), "some environment variables");
QByteArray msg = QJsonDocument(ob).toJson();
}
}
void BenchmarkJson::createTextMessageStd()
{
// Example: send information over a datastream to another process
// Measure performance of creating and processing data into bytearray
QBENCHMARK {
JsonObject ob;
ob.insert("command", 1);
ob.insert("key", "some information");
ob.insert("env", "some environment variables");
std::string msg = JsonDocument(ob).toJson();
}
}
void BenchmarkJson::readTextMessageQt()
{
// Example: receive information over a datastream from another process
// Measure performance of converting content back to QVariantMap
// We need to recreate the bytearray but here we only want to measure the latter
QJsonObject ob;
ob.insert(QStringLiteral("command"), 1);
ob.insert(QStringLiteral("key"), "some information");
ob.insert(QStringLiteral("env"), "some environment variables");
QByteArray msg = QJsonDocument(ob).toJson();
QBENCHMARK {
QJsonDocument::fromJson(msg).object();
}
}
void BenchmarkJson::readTextMessageStd()
{
// Example: receive information over a datastream from another process
// Measure performance of converting content back to QVariantMap
// We need to recreate the bytearray but here we only want to measure the latter
JsonObject ob;
ob.insert("command", 1);
ob.insert("key", "some information");
ob.insert("env", "some environment variables");
std::string msg = JsonDocument(ob).toJson();
QBENCHMARK {
JsonDocument::fromJson(msg).object();
}
}
void BenchmarkJson::jsonObjectInsertQt()
{
QJsonObject object;
QJsonValue value(1.5);
QBENCHMARK {
for (int i = 0; i < 1000; i++)
object.insert("testkey_" + QString::number(i), value);
}
}
void BenchmarkJson::jsonObjectInsertStd()
{
JsonObject object;
JsonValue value(1.5);
QBENCHMARK {
for (int i = 0; i < 1000; i++)
object.insert("testkey_" + std::to_string(i), value);
}
}
QTEST_MAIN(BenchmarkJson)
#include "tst_bench_json.moc"