ladybird/AK/JsonArray.h
Andreas Kling 82826104e0 Json: Add efficient copy and move constructors for Json{Array,Object}
This helps avoid copying JsonValues during parsing.
2019-08-04 11:45:16 +02:00

66 lines
1.4 KiB
C++

#pragma once
#include <AK/JsonValue.h>
#include <AK/Vector.h>
namespace AK {
class JsonArray {
public:
JsonArray() {}
~JsonArray() {}
JsonArray(const JsonArray& other)
: m_values(other.m_values)
{
}
JsonArray(JsonArray&& other)
: m_values(move(other.m_values))
{
}
JsonArray& operator=(const JsonArray& other)
{
if (this != &other)
m_values = other.m_values;
return *this;
}
JsonArray& operator=(JsonArray&& other)
{
if (this != &other)
m_values = move(other.m_values);
return *this;
}
int size() const { return m_values.size(); }
bool is_empty() const { return m_values.is_empty(); }
const JsonValue& at(int index) const { return m_values.at(index); }
const JsonValue& operator[](int index) const { return at(index); }
void clear() { m_values.clear(); }
void append(const JsonValue& value) { m_values.append(value); }
void append(JsonValue&& value) { m_values.append(move(value)); }
String serialized() const;
void serialize(StringBuilder&) const;
template<typename Callback>
void for_each(Callback callback) const
{
for (auto& value : m_values)
callback(value);
}
const Vector<JsonValue>& values() const { return m_values; }
private:
Vector<JsonValue> m_values;
};
}
using AK::JsonArray;