Skip to content

Commit

Permalink
⚡ micro-optimizations for dump()
Browse files Browse the repository at this point in the history
Indentation string is recycled to avoid allocations. Comma-separation
in objects does not need an if any more. Cachegrind measures 1%
performance improvement.
  • Loading branch information
nlohmann committed Feb 26, 2017
1 parent bd0326c commit b1441f3
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 28 deletions.
31 changes: 17 additions & 14 deletions src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8430,34 +8430,36 @@ class basic_json

// variable to hold indentation for recursive calls
const auto new_indent = current_indent + indent_step;
const std::string indent_string = string_t(new_indent, ' ');
string_t indent_string = string_t(new_indent, ' ');

for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i)
auto i = m_value.object->cbegin();
for (size_t cnt = 0; cnt < m_value.object->size() - 1; ++cnt, ++i)
{
if (i != m_value.object->cbegin())
{
o << ",\n";
}
o << indent_string << '\"' << escape_string(i->first) << "\": ";
i->second.dump(o, true, indent_step, new_indent);
o << ",\n";
}

o << '\n' << string_t(current_indent, ' ') + '}';
o << indent_string << '\"' << escape_string(i->first) << "\": ";
i->second.dump(o, true, indent_step, new_indent);

indent_string.resize(current_indent);
o << '\n' << indent_string << '}';
}
else
{
o << '{';

for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i)
auto i = m_value.object->cbegin();
for (size_t cnt = 0; cnt < m_value.object->size() - 1; ++cnt, ++i)
{
if (i != m_value.object->cbegin())
{
o << ',';
}
o << '\"' << escape_string(i->first) << "\":";
i->second.dump(o, false, indent_step, current_indent);
o << ',';
}

o << '\"' << escape_string(i->first) << "\":";
i->second.dump(o, false, indent_step, current_indent);
o << '}';
}

Expand All @@ -8478,7 +8480,7 @@ class basic_json

// variable to hold indentation for recursive calls
const auto new_indent = current_indent + indent_step;
const std::string indent_string = string_t(new_indent, ' ');
string_t indent_string = string_t(new_indent, ' ');

for (auto i = m_value.array->cbegin(); i != m_value.array->cend() - 1; ++i)
{
Expand All @@ -8491,7 +8493,8 @@ class basic_json
assert(not m_value.array->empty());
m_value.array->back().dump(o, true, indent_step, new_indent);

o << '\n' << string_t(current_indent, ' ') << ']';
indent_string.resize(current_indent);
o << '\n' << indent_string << ']';
}
else
{
Expand Down
31 changes: 17 additions & 14 deletions src/json.hpp.re2c
Original file line number Diff line number Diff line change
Expand Up @@ -8430,34 +8430,36 @@ class basic_json

// variable to hold indentation for recursive calls
const auto new_indent = current_indent + indent_step;
const std::string indent_string = string_t(new_indent, ' ');
string_t indent_string = string_t(new_indent, ' ');

for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i)
auto i = m_value.object->cbegin();
for (size_t cnt = 0; cnt < m_value.object->size() - 1; ++cnt, ++i)
{
if (i != m_value.object->cbegin())
{
o << ",\n";
}
o << indent_string << '\"' << escape_string(i->first) << "\": ";
i->second.dump(o, true, indent_step, new_indent);
o << ",\n";
}

o << '\n' << string_t(current_indent, ' ') + '}';
o << indent_string << '\"' << escape_string(i->first) << "\": ";
i->second.dump(o, true, indent_step, new_indent);

indent_string.resize(current_indent);
o << '\n' << indent_string << '}';
}
else
{
o << '{';

for (auto i = m_value.object->cbegin(); i != m_value.object->cend(); ++i)
auto i = m_value.object->cbegin();
for (size_t cnt = 0; cnt < m_value.object->size() - 1; ++cnt, ++i)
{
if (i != m_value.object->cbegin())
{
o << ',';
}
o << '\"' << escape_string(i->first) << "\":";
i->second.dump(o, false, indent_step, current_indent);
o << ',';
}

o << '\"' << escape_string(i->first) << "\":";
i->second.dump(o, false, indent_step, current_indent);
o << '}';
}

Expand All @@ -8478,7 +8480,7 @@ class basic_json

// variable to hold indentation for recursive calls
const auto new_indent = current_indent + indent_step;
const std::string indent_string = string_t(new_indent, ' ');
string_t indent_string = string_t(new_indent, ' ');

for (auto i = m_value.array->cbegin(); i != m_value.array->cend() - 1; ++i)
{
Expand All @@ -8491,7 +8493,8 @@ class basic_json
assert(not m_value.array->empty());
m_value.array->back().dump(o, true, indent_step, new_indent);

o << '\n' << string_t(current_indent, ' ') << ']';
indent_string.resize(current_indent);
o << '\n' << indent_string << ']';
}
else
{
Expand Down

0 comments on commit b1441f3

Please sign in to comment.