2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-06-24 14:38:59 +03:00
|
|
|
#include <AK/JsonArray.h>
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonParser.h>
|
2020-03-08 14:34:33 +03:00
|
|
|
#include <AK/Memory.h>
|
2020-09-27 13:44:03 +03:00
|
|
|
#include <ctype.h>
|
2019-06-24 14:38:59 +03:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-08-09 12:34:26 +03:00
|
|
|
String JsonParser::consume_and_unescape_string()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific('"'))
|
|
|
|
return {};
|
2020-06-20 00:46:25 +03:00
|
|
|
StringBuilder final_sb;
|
2019-08-07 12:57:51 +03:00
|
|
|
|
2019-06-25 17:56:33 +03:00
|
|
|
for (;;) {
|
2019-12-09 19:45:40 +03:00
|
|
|
size_t peek_index = m_index;
|
2019-08-07 12:57:51 +03:00
|
|
|
char ch = 0;
|
|
|
|
for (;;) {
|
|
|
|
if (peek_index == m_input.length())
|
|
|
|
break;
|
|
|
|
ch = m_input[peek_index];
|
|
|
|
if (ch == '"' || ch == '\\')
|
|
|
|
break;
|
|
|
|
++peek_index;
|
|
|
|
}
|
|
|
|
|
2020-08-09 12:34:26 +03:00
|
|
|
while (peek_index != m_index) {
|
|
|
|
final_sb.append(m_input[m_index]);
|
|
|
|
m_index++;
|
2019-08-07 12:57:51 +03:00
|
|
|
}
|
|
|
|
|
2020-04-04 10:31:48 +03:00
|
|
|
if (m_index == m_input.length())
|
|
|
|
break;
|
2019-06-25 17:56:33 +03:00
|
|
|
if (ch == '"')
|
|
|
|
break;
|
|
|
|
if (ch != '\\') {
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append(consume());
|
2019-06-25 17:56:33 +03:00
|
|
|
continue;
|
|
|
|
}
|
2020-08-09 12:34:26 +03:00
|
|
|
ignore();
|
2019-06-25 17:56:33 +03:00
|
|
|
char escaped_ch = consume();
|
|
|
|
switch (escaped_ch) {
|
|
|
|
case 'n':
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append('\n');
|
2019-06-25 17:56:33 +03:00
|
|
|
break;
|
2020-03-31 14:30:09 +03:00
|
|
|
case 'r':
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append('\r');
|
2020-03-31 14:30:09 +03:00
|
|
|
break;
|
2019-06-25 17:56:33 +03:00
|
|
|
case 't':
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append('\t');
|
2019-06-25 17:56:33 +03:00
|
|
|
break;
|
|
|
|
case 'b':
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append('\b');
|
2019-06-25 17:56:33 +03:00
|
|
|
break;
|
|
|
|
case 'f':
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append('\f');
|
2019-06-25 17:56:33 +03:00
|
|
|
break;
|
2020-05-31 16:02:40 +03:00
|
|
|
case 'u': {
|
2020-08-09 12:34:26 +03:00
|
|
|
auto code_point = AK::StringUtils::convert_to_uint_from_hex(consume(4));
|
|
|
|
if (code_point.has_value())
|
2020-08-05 23:31:20 +03:00
|
|
|
final_sb.append_code_point(code_point.value());
|
2020-08-09 12:34:26 +03:00
|
|
|
else
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append('?');
|
2020-05-31 16:02:40 +03:00
|
|
|
} break;
|
2019-06-25 17:56:33 +03:00
|
|
|
default:
|
2020-06-20 00:46:25 +03:00
|
|
|
final_sb.append(escaped_ch);
|
2019-06-25 17:56:33 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific('"'))
|
|
|
|
return {};
|
2019-08-04 19:22:41 +03:00
|
|
|
|
2020-06-13 13:54:32 +03:00
|
|
|
return final_sb.to_string();
|
2019-06-24 14:38:59 +03:00
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_object()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
|
|
|
JsonObject object;
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific('{'))
|
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
for (;;) {
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2019-06-24 14:38:59 +03:00
|
|
|
if (peek() == '}')
|
|
|
|
break;
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2020-08-09 12:34:26 +03:00
|
|
|
auto name = consume_and_unescape_string();
|
2020-06-11 07:40:27 +03:00
|
|
|
if (name.is_null())
|
|
|
|
return {};
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific(':'))
|
|
|
|
return {};
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2020-06-11 07:40:27 +03:00
|
|
|
auto value = parse_helper();
|
|
|
|
if (!value.has_value())
|
|
|
|
return {};
|
|
|
|
object.set(name, move(value.value()));
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2019-06-24 14:38:59 +03:00
|
|
|
if (peek() == '}')
|
|
|
|
break;
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific(','))
|
|
|
|
return {};
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2020-06-11 07:40:27 +03:00
|
|
|
if (peek() == '}')
|
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
}
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific('}'))
|
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_array()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
|
|
|
JsonArray array;
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific('['))
|
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
for (;;) {
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2019-06-24 14:38:59 +03:00
|
|
|
if (peek() == ']')
|
|
|
|
break;
|
2020-06-11 07:40:27 +03:00
|
|
|
auto element = parse_helper();
|
|
|
|
if (!element.has_value())
|
|
|
|
return {};
|
|
|
|
array.append(element.value());
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2019-06-24 14:38:59 +03:00
|
|
|
if (peek() == ']')
|
|
|
|
break;
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific(','))
|
|
|
|
return {};
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2020-06-11 07:40:27 +03:00
|
|
|
if (peek() == ']')
|
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
}
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!consume_specific(']'))
|
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
return array;
|
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_string()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
2020-08-09 12:34:26 +03:00
|
|
|
auto result = consume_and_unescape_string();
|
2020-06-11 07:40:27 +03:00
|
|
|
if (result.is_null())
|
|
|
|
return {};
|
|
|
|
return JsonValue(result);
|
2019-06-24 14:38:59 +03:00
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_number()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
2020-03-25 00:37:24 +03:00
|
|
|
JsonValue value;
|
2019-08-04 21:23:03 +03:00
|
|
|
Vector<char, 128> number_buffer;
|
2020-03-24 23:59:22 +03:00
|
|
|
Vector<char, 128> fraction_buffer;
|
|
|
|
|
|
|
|
bool is_double = false;
|
2019-08-04 21:23:03 +03:00
|
|
|
for (;;) {
|
|
|
|
char ch = peek();
|
2020-03-24 23:59:22 +03:00
|
|
|
if (ch == '.') {
|
|
|
|
is_double = true;
|
|
|
|
++m_index;
|
|
|
|
continue;
|
|
|
|
}
|
2019-08-04 21:23:03 +03:00
|
|
|
if (ch == '-' || (ch >= '0' && ch <= '9')) {
|
2020-03-24 23:59:22 +03:00
|
|
|
if (is_double)
|
|
|
|
fraction_buffer.append(ch);
|
|
|
|
else
|
|
|
|
number_buffer.append(ch);
|
2019-08-04 21:23:03 +03:00
|
|
|
++m_index;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-08-04 12:47:21 +03:00
|
|
|
StringView number_string(number_buffer.data(), number_buffer.size());
|
2020-03-24 23:59:22 +03:00
|
|
|
StringView fraction_string(fraction_buffer.data(), fraction_buffer.size());
|
|
|
|
|
2020-03-25 00:37:24 +03:00
|
|
|
#ifndef KERNEL
|
2020-03-24 23:59:22 +03:00
|
|
|
if (is_double) {
|
2020-06-12 22:07:52 +03:00
|
|
|
// FIXME: This logic looks shaky.
|
|
|
|
int whole = 0;
|
|
|
|
auto to_signed_result = number_string.to_uint();
|
|
|
|
if (to_signed_result.has_value()) {
|
|
|
|
whole = to_signed_result.value();
|
|
|
|
} else {
|
2020-06-11 07:40:27 +03:00
|
|
|
auto number = number_string.to_int();
|
|
|
|
if (!number.has_value())
|
|
|
|
return {};
|
|
|
|
whole = number.value();
|
2020-06-12 22:07:52 +03:00
|
|
|
}
|
2020-03-24 23:59:22 +03:00
|
|
|
|
2020-10-05 01:35:11 +03:00
|
|
|
auto fraction_string_uint = fraction_string.to_uint();
|
|
|
|
if (!fraction_string_uint.has_value())
|
|
|
|
return {};
|
|
|
|
int fraction = fraction_string_uint.value();
|
2020-03-31 14:30:09 +03:00
|
|
|
fraction *= (whole < 0) ? -1 : 1;
|
2020-03-24 23:59:22 +03:00
|
|
|
|
|
|
|
auto divider = 1;
|
|
|
|
for (size_t i = 0; i < fraction_buffer.size(); ++i) {
|
|
|
|
divider *= 10;
|
|
|
|
}
|
|
|
|
value = JsonValue((double)whole + ((double)fraction / divider));
|
|
|
|
} else {
|
2020-03-25 00:37:24 +03:00
|
|
|
#endif
|
2020-06-12 22:07:52 +03:00
|
|
|
auto to_unsigned_result = number_string.to_uint();
|
|
|
|
if (to_unsigned_result.has_value()) {
|
|
|
|
value = JsonValue(to_unsigned_result.value());
|
|
|
|
} else {
|
2020-12-20 13:07:11 +03:00
|
|
|
auto number = number_string.to_int<i64>();
|
2020-06-11 07:40:27 +03:00
|
|
|
if (!number.has_value())
|
|
|
|
return {};
|
2020-12-20 13:07:11 +03:00
|
|
|
if (number.value() <= AK::NumericLimits<i32>::max()) {
|
|
|
|
value = JsonValue((i32)number.value());
|
|
|
|
} else {
|
|
|
|
value = JsonValue(number.value());
|
|
|
|
}
|
2020-06-12 22:07:52 +03:00
|
|
|
}
|
2020-03-25 00:37:24 +03:00
|
|
|
#ifndef KERNEL
|
2020-03-24 23:59:22 +03:00
|
|
|
}
|
2020-03-25 00:37:24 +03:00
|
|
|
#endif
|
2020-03-24 23:59:22 +03:00
|
|
|
|
2019-06-24 14:38:59 +03:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_true()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
2020-08-09 12:34:26 +03:00
|
|
|
if (!consume_specific("true"))
|
2020-06-11 07:40:27 +03:00
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
return JsonValue(true);
|
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_false()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
2020-08-09 12:34:26 +03:00
|
|
|
if (!consume_specific("false"))
|
2020-06-11 07:40:27 +03:00
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
return JsonValue(false);
|
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_null()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
2020-08-09 12:34:26 +03:00
|
|
|
if (!consume_specific("null"))
|
2020-06-11 07:40:27 +03:00
|
|
|
return {};
|
2019-06-24 14:38:59 +03:00
|
|
|
return JsonValue(JsonValue::Type::Null);
|
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse_helper()
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2019-06-24 14:38:59 +03:00
|
|
|
auto type_hint = peek();
|
|
|
|
switch (type_hint) {
|
|
|
|
case '{':
|
|
|
|
return parse_object();
|
|
|
|
case '[':
|
|
|
|
return parse_array();
|
|
|
|
case '"':
|
|
|
|
return parse_string();
|
|
|
|
case '-':
|
|
|
|
case '0':
|
|
|
|
case '1':
|
|
|
|
case '2':
|
|
|
|
case '3':
|
|
|
|
case '4':
|
|
|
|
case '5':
|
|
|
|
case '6':
|
|
|
|
case '7':
|
|
|
|
case '8':
|
|
|
|
case '9':
|
|
|
|
return parse_number();
|
|
|
|
case 'f':
|
|
|
|
return parse_false();
|
|
|
|
case 't':
|
|
|
|
return parse_true();
|
|
|
|
case 'n':
|
|
|
|
return parse_null();
|
|
|
|
}
|
|
|
|
|
2020-06-11 07:40:27 +03:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-08-09 12:34:26 +03:00
|
|
|
Optional<JsonValue> JsonParser::parse()
|
|
|
|
{
|
2020-06-11 07:40:27 +03:00
|
|
|
auto result = parse_helper();
|
|
|
|
if (!result.has_value())
|
|
|
|
return {};
|
2020-09-27 13:44:03 +03:00
|
|
|
ignore_while(isspace);
|
2020-08-09 12:34:26 +03:00
|
|
|
if (!is_eof())
|
2020-06-11 07:40:27 +03:00
|
|
|
return {};
|
|
|
|
return result;
|
2019-06-24 14:38:59 +03:00
|
|
|
}
|
2020-06-11 07:40:27 +03:00
|
|
|
|
2019-06-24 14:38:59 +03:00
|
|
|
}
|