2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2019-06-24 14:38:59 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-08-09 12:34:26 +03:00
|
|
|
#include <AK/GenericLexer.h>
|
2020-09-07 14:30:40 +03:00
|
|
|
#include <AK/JsonValue.h>
|
2019-06-24 14:38:59 +03:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-08-09 12:34:26 +03:00
|
|
|
class JsonParser : private GenericLexer {
|
2019-06-24 14:38:59 +03:00
|
|
|
public:
|
2021-11-11 02:55:02 +03:00
|
|
|
explicit JsonParser(StringView input)
|
2020-08-09 12:34:26 +03:00
|
|
|
: GenericLexer(input)
|
2019-06-24 14:38:59 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-11-15 03:46:51 +03:00
|
|
|
ErrorOr<JsonValue> parse();
|
2019-06-24 14:38:59 +03:00
|
|
|
|
|
|
|
private:
|
2021-11-15 03:46:51 +03:00
|
|
|
ErrorOr<JsonValue> parse_helper();
|
|
|
|
|
2023-12-16 17:19:34 +03:00
|
|
|
ErrorOr<ByteString> consume_and_unescape_string();
|
2021-11-15 03:46:51 +03:00
|
|
|
ErrorOr<JsonValue> parse_array();
|
|
|
|
ErrorOr<JsonValue> parse_object();
|
|
|
|
ErrorOr<JsonValue> parse_number();
|
|
|
|
ErrorOr<JsonValue> parse_string();
|
|
|
|
ErrorOr<JsonValue> parse_false();
|
|
|
|
ErrorOr<JsonValue> parse_true();
|
|
|
|
ErrorOr<JsonValue> parse_null();
|
2019-06-24 14:38:59 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-11-26 14:18:30 +03:00
|
|
|
#if USING_AK_GLOBALLY
|
2019-06-24 14:38:59 +03:00
|
|
|
using AK::JsonParser;
|
2022-11-26 14:18:30 +03:00
|
|
|
#endif
|