Browse Source

Util: Massively speedup serialization, remove all ifs from loop

master
Riyyi 2 years ago
parent
commit
07df4054da
  1. 96
      src/util/json/serializer.cpp

96
src/util/json/serializer.cpp

@ -67,66 +67,88 @@ void Serializer::dumpHelper(const Value& value, const uint32_t indentLevel)
void Serializer::dumpArray(const Value& value, const uint32_t indentLevel) void Serializer::dumpArray(const Value& value, const uint32_t indentLevel)
{ {
// Append [
m_output += "[";
if (m_indent > 0) { if (m_indent > 0) {
m_output += '[';
m_output += '\n'; m_output += '\n';
} }
auto values = value.m_value.array->elements(); // Empty Array early return
auto last = values.end(); if (value.m_value.array->empty()) {
for (auto it = values.begin(); it != last; ++it) { m_output += ']';
m_output += std::string(m_indent * (indentLevel + 1), m_indentCharacter); return;
dumpHelper(*it, indentLevel + 1); }
// Add comma, except after the last element size_t i = 0;
if (std::next(it) != last) { auto it = value.m_value.array->elements().cbegin();
m_output += ","; if (!m_indent) {
} for (; i < value.m_value.array->size() - 1; ++i, ++it) {
if (m_indent > 0) { dumpHelper(*it, indentLevel + 1);
m_output += '\n'; m_output += ',';
} }
dumpHelper(*it, indentLevel + 1);
} }
else {
std::string indentation = std::string(m_indent * (indentLevel + 1), m_indentCharacter);
// Append indentation for (; i < value.m_value.array->size() - 1; ++i, ++it) {
m_output += std::string(m_indent * indentLevel, m_indentCharacter); m_output += indentation;
dumpHelper(*it, indentLevel + 1);
m_output += ",\n";
}
m_output += indentation;
dumpHelper(*it, indentLevel + 1);
m_output += '\n';
// Append indentation
m_output += std::string(m_indent * indentLevel, m_indentCharacter);
}
// Append ]
m_output += "]"; m_output += "]";
} }
void Serializer::dumpObject(const Value& value, const uint32_t indentLevel) void Serializer::dumpObject(const Value& value, const uint32_t indentLevel)
{ {
// Append {
m_output += "{";
if (m_indent > 0) { if (m_indent > 0) {
m_output += '{';
m_output += '\n'; m_output += '\n';
} }
auto members = value.m_value.object->members(); // Empty Object early return
auto last = members.end(); if (value.m_value.object->empty()) {
for (auto it = members.begin(); it != last; ++it) { m_output += '}';
m_output += std::string(m_indent * (indentLevel + 1), m_indentCharacter); return;
m_output += "\"" + it->first + "\":"; }
if (m_indent > 0) {
m_output += ' ';
}
dumpHelper(it->second, indentLevel + 1);
// Add comma, except after the last element size_t i = 0;
if (std::next(it) != last) { auto it = value.m_value.object->members().cbegin();
m_output += ","; if (!m_indent) {
} for (; i < value.m_value.object->size() - 1; ++i, ++it) {
if (m_indent > 0) { m_output += '"' + it->first + "\":";
m_output += '\n'; dumpHelper(it->second, indentLevel + 1);
m_output += ',';
} }
m_output += '"' + it->first + "\":";
dumpHelper(it->second, indentLevel + 1);
} }
else {
std::string indentation = std::string(m_indent * (indentLevel + 1), m_indentCharacter);
for (; i < value.m_value.object->size() - 1; ++i, ++it) {
m_output += indentation;
m_output += '"' + it->first + "\": ";
dumpHelper(it->second, indentLevel + 1);
m_output += ",\n";
}
m_output += indentation;
m_output += '"' + it->first + "\": ";
dumpHelper(it->second, indentLevel + 1);
m_output += '\n';
// Append indentation // Append indentation
m_output += std::string(m_indent * indentLevel, m_indentCharacter); m_output += std::string(m_indent * indentLevel, m_indentCharacter);
}
// Append } m_output += '}';
m_output += "}";
} }
} // namespace Json } // namespace Json

Loading…
Cancel
Save