JsonParser: Fold extract_while() into parse_number()

It wasn't unsed anywhere else anyway, and this is actually ~1% faster
on the load_4chan_catalog benchmark.
This commit is contained in:
Andreas Kling 2019-08-04 20:23:03 +02:00
parent a846ee76ea
commit 0d0230ab10
2 changed files with 11 additions and 13 deletions

View file

@ -30,15 +30,6 @@ void JsonParser::consume_while(C condition)
consume();
}
template<typename C>
Vector<char, 128> JsonParser::extract_while(C condition)
{
Vector<char, 128> buffer;
while (condition(peek()))
buffer.append(consume());
return buffer;
};
void JsonParser::consume_whitespace()
{
consume_while([](char ch) { return is_whitespace(ch); });
@ -156,7 +147,17 @@ JsonValue JsonParser::parse_string()
JsonValue JsonParser::parse_number()
{
auto number_buffer = extract_while([](char ch) { return ch == '-' || (ch >= '0' && ch <= '9'); });
Vector<char, 128> number_buffer;
for (;;) {
char ch = peek();
if (ch == '-' || (ch >= '0' && ch <= '9')) {
number_buffer.append(ch);
++m_index;
continue;
}
break;
}
StringView number_string(number_buffer.data(), number_buffer.size());
bool ok;
auto value = JsonValue(number_string.to_uint(ok));

View file

@ -35,9 +35,6 @@ private:
template<typename C>
void consume_while(C);
template<typename C>
Vector<char, 128> extract_while(C);
StringView m_input;
int m_index { 0 };