mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
... you are too slow and QJson API is so ugly. Now using this wonderful json lib: https://github.com/nlohmann/json Results in release mode (QJson tests are not shown but QJson was even slower than string concat). PASS : TestQgsJsonUtils::testExportAttributesJson(Use json) RESULT : TestQgsJsonUtils::testExportAttributesJson():"Use json": 0.0022 msecs per iteration (total: 75, iterations: 32768) PASS : TestQgsJsonUtils::testExportAttributesJson(Use old string concat) RESULT : TestQgsJsonUtils::testExportAttributesJson():"Use old string concat": 0.0032 msecs per iteration (total: 54, iterations: 16384) PASS : TestQgsJsonUtils::testExportFeatureJson(Use json) RESULT : TestQgsJsonUtils::testExportFeatureJson():"Use json": 0.011 msecs per iteration (total: 96, iterations: 8192) PASS : TestQgsJsonUtils::testExportFeatureJson(Use old string concat) RESULT : TestQgsJsonUtils::testExportFeatureJson():"Use old string concat": 0.015 msecs per iteration (total: 64, iterations: 4096) PASS : TestQgsJsonUtils::testExportGeomToJson(Use json) RESULT : TestQgsJsonUtils::testExportGeomToJson():"Use json": 0.76 msecs per iteration (total: 98, iterations: 128) PASS : TestQgsJsonUtils::testExportGeomToJson(Use old string concat) RESULT : TestQgsJsonUtils::testExportGeomToJson():"Use old string concat": 0.85 msecs per iteration (total: 55, iterations: 64) PASS : TestQgsJsonUtils::cleanupTestCase()
28 lines
605 B
C++
28 lines
605 B
C++
#pragma once
|
|
|
|
#include <cstddef> // size_t
|
|
|
|
namespace nlohmann
|
|
{
|
|
namespace detail
|
|
{
|
|
/// struct to capture the start position of the current token
|
|
struct position_t
|
|
{
|
|
/// the total number of characters read
|
|
std::size_t chars_read_total = 0;
|
|
/// the number of characters read in the current line
|
|
std::size_t chars_read_current_line = 0;
|
|
/// the number of lines read
|
|
std::size_t lines_read = 0;
|
|
|
|
/// conversion to size_t to preserve SAX interface
|
|
constexpr operator size_t() const
|
|
{
|
|
return chars_read_total;
|
|
}
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace nlohmann
|