blob: a47d5a9c2b8531d1070a93afb340f62f93e10d33 (
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
|
#pragma once
#include <AK/AKString.h>
#include <AK/HashMap.h>
#include <AK/JsonValue.h>
namespace AK {
class JsonObject {
public:
JsonObject() { }
~JsonObject() { }
JsonObject(const JsonObject& other)
{
for (auto& it : other.m_members)
m_members.set(it.key, it.value);
}
int size() const { return m_members.size(); }
bool is_empty() const { return m_members.is_empty(); }
JsonValue get(const String& key) const
{
auto it = m_members.find(key);
if (it == m_members.end())
return JsonValue(JsonValue::Type::Undefined);
return (*it).value;
}
void set(const String& key, const JsonValue& value)
{
m_members.set(key, value);
}
template<typename Callback>
void for_each_member(Callback callback) const
{
for (auto& it : m_members)
callback(it.key, it.value);
}
String serialized() const;
void serialize(StringBuilder&) const;
private:
HashMap<String, JsonValue> m_members;
};
}
using AK::JsonObject;
|