summaryrefslogtreecommitdiff
path: root/AK/JsonObject.h
blob: 6e5b2e9a9f87f578998ef68699a3df3143619ea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2021, Max Wipfli <mail@maxwipfli.ch>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/HashMap.h>
#include <AK/JsonArray.h>
#include <AK/JsonObjectSerializer.h>
#include <AK/JsonValue.h>
#include <AK/String.h>

namespace AK {

class JsonObject {
public:
    JsonObject() = default;
    ~JsonObject() = default;

    JsonObject(JsonObject const& other)
        : m_members(other.m_members)
    {
    }

    JsonObject(JsonObject&& other)
        : m_members(move(other.m_members))
    {
    }

    JsonObject& operator=(JsonObject const& other)
    {
        if (this != &other)
            m_members = other.m_members;
        return *this;
    }

    JsonObject& operator=(JsonObject&& other)
    {
        if (this != &other)
            m_members = move(other.m_members);
        return *this;
    }

    [[nodiscard]] size_t size() const { return m_members.size(); }
    [[nodiscard]] bool is_empty() const { return m_members.is_empty(); }

    [[nodiscard]] JsonValue const& get(String const& key) const
    {
        auto* value = get_ptr(key);
        static JsonValue* s_null_value { nullptr };
        if (!value) {
            if (!s_null_value)
                s_null_value = new JsonValue;
            return *s_null_value;
        }
        return *value;
    }

    [[nodiscard]] JsonValue const* get_ptr(String const& key) const
    {
        auto it = m_members.find(key);
        if (it == m_members.end())
            return nullptr;
        return &(*it).value;
    }

    [[nodiscard]] [[nodiscard]] bool has(String const& key) const
    {
        return m_members.contains(key);
    }

    [[nodiscard]] bool has_null(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_null();
    }
    [[nodiscard]] bool has_bool(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_bool();
    }
    [[nodiscard]] bool has_string(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_string();
    }
    [[nodiscard]] bool has_i32(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_i32();
    }
    [[nodiscard]] bool has_u32(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_u32();
    }
    [[nodiscard]] bool has_i64(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_i64();
    }
    [[nodiscard]] bool has_u64(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_u64();
    }
    [[nodiscard]] bool has_number(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_number();
    }
    [[nodiscard]] bool has_array(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_array();
    }
    [[nodiscard]] bool has_object(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_object();
    }
#ifndef KERNEL
    [[nodiscard]] [[nodiscard]] bool has_double(String const& key) const
    {
        auto* value = get_ptr(key);
        return value && value->is_double();
    }
#endif

    void set(String const& key, JsonValue value)
    {
        m_members.set(key, move(value));
    }

    template<typename Callback>
    void for_each_member(Callback callback) const
    {
        for (auto& member : m_members)
            callback(member.key, member.value);
    }

    bool remove(String const& key)
    {
        return m_members.remove(key);
    }

    template<typename Builder>
    typename Builder::OutputType serialized() const;

    template<typename Builder>
    void serialize(Builder&) const;

    [[nodiscard]] String to_string() const { return serialized<StringBuilder>(); }

private:
    OrderedHashMap<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: {
        builder.append("\"");
        builder.append_escaped_for_json({ m_value.as_string->characters(), m_value.as_string->length() });
        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.appendff("{}", m_value.as_double);
        break;
#endif
    case Type::Int32:
        builder.appendff("{}", as_i32());
        break;
    case Type::Int64:
        builder.appendff("{}", as_i64());
        break;
    case Type::UnsignedInt32:
        builder.appendff("{}", as_u32());
        break;
    case Type::UnsignedInt64:
        builder.appendff("{}", as_u64());
        break;
    case Type::Null:
        builder.append("null");
        break;
    default:
        VERIFY_NOT_REACHED();
    }
}

template<typename Builder>
inline typename Builder::OutputType JsonValue::serialized() const
{
    Builder builder;
    serialize(builder);
    return builder.build();
}

}

using AK::JsonObject;