mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
e8e728454c
- Parsing invalid JSON no longer asserts Instead of asserting when coming across malformed JSON, JsonParser::parse now returns an Optional<JsonValue>. - Disallow trailing commas in JSON objects and arrays - No longer parse 'undefined', as that is a purely JS thing - No longer allow non-whitespace after anything consumed by the initial parse() call. Examples of things that were valid and no longer are: - undefineddfz - {"foo": 1}abcd - [1,2,3]4 - JsonObject.for_each_member now iterates in original insertion order
225 lines
6.0 KiB
C++
225 lines
6.0 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <AK/JsonArray.h>
|
|
#include <AK/JsonObjectSerializer.h>
|
|
#include <AK/JsonValue.h>
|
|
#include <AK/String.h>
|
|
#include <AK/StringImpl.h>
|
|
|
|
namespace AK {
|
|
|
|
class JsonObject {
|
|
public:
|
|
JsonObject() {}
|
|
~JsonObject() {}
|
|
|
|
JsonObject(const JsonObject& other)
|
|
: m_order(other.m_order)
|
|
, m_members(other.m_members)
|
|
{
|
|
}
|
|
|
|
JsonObject(JsonObject&& other)
|
|
: m_order(move(other.m_order))
|
|
, m_members(move(other.m_members))
|
|
{
|
|
}
|
|
|
|
JsonObject& operator=(const JsonObject& other)
|
|
{
|
|
if (this != &other) {
|
|
m_members = other.m_members;
|
|
m_order = other.m_order;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
JsonObject& operator=(JsonObject&& other)
|
|
{
|
|
if (this != &other) {
|
|
m_members = move(other.m_members);
|
|
m_order = move(other.m_order);
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
int size() const { return m_members.size(); }
|
|
bool is_empty() const { return m_members.is_empty(); }
|
|
|
|
JsonValue get(const String& key) const
|
|
{
|
|
auto* value = get_ptr(key);
|
|
return value ? *value : JsonValue(JsonValue::Type::Null);
|
|
}
|
|
|
|
JsonValue get_or(const String& key, JsonValue alternative) const
|
|
{
|
|
auto* value = get_ptr(key);
|
|
return value ? *value : alternative;
|
|
}
|
|
|
|
const JsonValue* get_ptr(const String& key) const
|
|
{
|
|
auto it = m_members.find(key);
|
|
if (it == m_members.end())
|
|
return nullptr;
|
|
return &(*it).value;
|
|
}
|
|
|
|
bool has(const String& key) const
|
|
{
|
|
return m_members.contains(key);
|
|
}
|
|
|
|
void set(const String& key, JsonValue value)
|
|
{
|
|
m_order.append(key);
|
|
m_members.set(key, move(value));
|
|
}
|
|
|
|
template<typename Callback>
|
|
void for_each_member(Callback callback) const
|
|
{
|
|
for (size_t i = 0; i < m_order.size(); ++i) {
|
|
auto property = m_order[i];
|
|
callback(property, m_members.get(property).value());
|
|
}
|
|
}
|
|
|
|
template<typename Builder>
|
|
typename Builder::OutputType serialized() const;
|
|
|
|
template<typename Builder>
|
|
void serialize(Builder&) const;
|
|
|
|
String to_string() const { return serialized<StringBuilder>(); }
|
|
|
|
private:
|
|
Vector<String> m_order;
|
|
HashMap<String, JsonValue> m_members;
|
|
};
|
|
|
|
template<typename Builder>
|
|
inline void JsonObject::serialize(Builder& builder) const
|
|
{
|
|
JsonObjectSerializer serializer { builder };
|
|
for_each_member([&](auto& key, auto& value) {
|
|
serializer.add(key, value);
|
|
});
|
|
}
|
|
|
|
template<typename Builder>
|
|
inline typename Builder::OutputType JsonObject::serialized() const
|
|
{
|
|
Builder builder;
|
|
serialize(builder);
|
|
return builder.build();
|
|
}
|
|
|
|
template<typename Builder>
|
|
inline void JsonValue::serialize(Builder& builder) const
|
|
{
|
|
switch (m_type) {
|
|
case Type::String: {
|
|
auto size = m_value.as_string->length();
|
|
builder.append("\"");
|
|
for (size_t i = 0; i < size; i++) {
|
|
char ch = m_value.as_string->characters()[i];
|
|
switch (ch) {
|
|
case '\e':
|
|
builder.append("\\u001B");
|
|
break;
|
|
case '\b':
|
|
builder.append("\\b");
|
|
break;
|
|
case '\n':
|
|
builder.append("\\n");
|
|
break;
|
|
case '\t':
|
|
builder.append("\\t");
|
|
break;
|
|
case '\"':
|
|
builder.append("\\\"");
|
|
break;
|
|
case '\\':
|
|
builder.append("\\\\");
|
|
break;
|
|
default:
|
|
builder.appendf("%c", ch);
|
|
}
|
|
}
|
|
builder.append("\"");
|
|
} break;
|
|
case Type::Array:
|
|
m_value.as_array->serialize(builder);
|
|
break;
|
|
case Type::Object:
|
|
m_value.as_object->serialize(builder);
|
|
break;
|
|
case Type::Bool:
|
|
builder.append(m_value.as_bool ? "true" : "false");
|
|
break;
|
|
#if !defined(KERNEL)
|
|
case Type::Double:
|
|
builder.appendf("%g", m_value.as_double);
|
|
break;
|
|
#endif
|
|
case Type::Int32:
|
|
builder.appendf("%d", as_i32());
|
|
break;
|
|
case Type::Int64:
|
|
builder.appendf("%lld", as_i64());
|
|
break;
|
|
case Type::UnsignedInt32:
|
|
builder.appendf("%u", as_u32());
|
|
break;
|
|
case Type::UnsignedInt64:
|
|
builder.appendf("%llu", as_u64());
|
|
break;
|
|
case Type::Null:
|
|
builder.append("null");
|
|
break;
|
|
default:
|
|
ASSERT_NOT_REACHED();
|
|
}
|
|
}
|
|
|
|
template<typename Builder>
|
|
inline typename Builder::OutputType JsonValue::serialized() const
|
|
{
|
|
Builder builder;
|
|
serialize(builder);
|
|
return builder.build();
|
|
}
|
|
|
|
}
|
|
|
|
using AK::JsonObject;
|