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