2020-01-04 14:21:38 +00:00
|
|
|
#pragma once
|
|
|
|
#include "toml_node.h"
|
|
|
|
|
2020-01-07 15:52:50 +00:00
|
|
|
namespace toml::impl
|
|
|
|
{
|
|
|
|
template <bool is_const>
|
|
|
|
class array_iterator final
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
friend class toml::array;
|
|
|
|
|
|
|
|
using raw_iterator = std::conditional_t<
|
|
|
|
is_const,
|
|
|
|
std::vector<std::unique_ptr<node>>::const_iterator,
|
|
|
|
std::vector<std::unique_ptr<node>>::iterator
|
|
|
|
>;
|
|
|
|
|
|
|
|
mutable raw_iterator raw_;
|
|
|
|
|
|
|
|
array_iterator(const raw_iterator& raw) noexcept
|
|
|
|
: raw_{ raw }
|
|
|
|
{}
|
|
|
|
|
|
|
|
array_iterator(raw_iterator&& raw) noexcept
|
|
|
|
: raw_{ std::move(raw) }
|
|
|
|
{}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
using reference = std::conditional_t<is_const, const node&, node&>;
|
|
|
|
|
2020-01-11 21:15:24 +00:00
|
|
|
array_iterator() noexcept = default;
|
|
|
|
|
2020-01-07 15:52:50 +00:00
|
|
|
array_iterator& operator++() noexcept // ++pre
|
|
|
|
{
|
|
|
|
++raw_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
array_iterator operator++(int) noexcept // post++
|
|
|
|
{
|
|
|
|
array_iterator out{ raw_ };
|
|
|
|
++raw_;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
array_iterator& operator--() noexcept // --pre
|
|
|
|
{
|
|
|
|
--raw_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
array_iterator operator--(int) noexcept // post--
|
|
|
|
{
|
|
|
|
array_iterator out{ raw_ };
|
|
|
|
--raw_;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]]
|
|
|
|
reference operator* () const noexcept
|
|
|
|
{
|
|
|
|
return *raw_->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]]
|
|
|
|
friend constexpr bool operator == (const array_iterator& lhs, const array_iterator& rhs) noexcept
|
|
|
|
{
|
|
|
|
return lhs.raw_ == rhs.raw_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]]
|
|
|
|
friend constexpr bool operator != (const array_iterator& lhs, const array_iterator& rhs) noexcept
|
|
|
|
{
|
|
|
|
return lhs.raw_ != rhs.raw_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-01-04 14:21:38 +00:00
|
|
|
namespace toml
|
|
|
|
{
|
|
|
|
class array final
|
|
|
|
: public node
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
friend class impl::parser;
|
|
|
|
std::vector<std::unique_ptr<node>> values;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2020-01-07 15:52:50 +00:00
|
|
|
using iterator = impl::array_iterator<false>;
|
|
|
|
using const_iterator = impl::array_iterator<true>;
|
|
|
|
|
2020-01-04 14:21:38 +00:00
|
|
|
TOML_NODISCARD_CTOR
|
|
|
|
array() noexcept = default;
|
|
|
|
|
|
|
|
TOML_NODISCARD_CTOR
|
|
|
|
array(array&& other) noexcept
|
|
|
|
: node{ std::move(other) },
|
|
|
|
values{ std::move(other.values) }
|
|
|
|
{}
|
|
|
|
|
|
|
|
array& operator= (array&& rhs) noexcept
|
|
|
|
{
|
|
|
|
node::operator=(std::move(rhs));
|
|
|
|
values = std::move(rhs.values);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-01-07 15:52:50 +00:00
|
|
|
|
|
|
|
[[nodiscard]] node_type type() const noexcept override { return node_type::array; }
|
2020-01-04 14:21:38 +00:00
|
|
|
|
2020-01-07 15:52:50 +00:00
|
|
|
[[nodiscard]] bool is_table() const noexcept override { return false; }
|
2020-01-04 14:21:38 +00:00
|
|
|
[[nodiscard]] bool is_array() const noexcept override { return true; }
|
2020-01-07 15:52:50 +00:00
|
|
|
[[nodiscard]] bool is_value() const noexcept override { return false; }
|
2020-01-04 14:21:38 +00:00
|
|
|
|
|
|
|
[[nodiscard]] bool is_array_of_tables() const noexcept override
|
|
|
|
{
|
|
|
|
if (values.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (auto& val : values)
|
|
|
|
if (!val->is_table())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-07 15:52:50 +00:00
|
|
|
template <typename T = void>
|
2020-01-06 18:21:16 +00:00
|
|
|
[[nodiscard]] bool is_homogeneous() const noexcept
|
2020-01-04 14:21:38 +00:00
|
|
|
{
|
2020-01-07 15:52:50 +00:00
|
|
|
if (values.empty())
|
|
|
|
return false;
|
2020-01-04 14:21:38 +00:00
|
|
|
|
2020-01-07 15:52:50 +00:00
|
|
|
if constexpr (std::is_same_v<T, void>)
|
|
|
|
{
|
|
|
|
const auto type = values[0]->type();
|
|
|
|
for (size_t i = 1; i < values.size(); i++)
|
|
|
|
if (values[i]->type() != type)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto& v : values)
|
|
|
|
if (!v->is<T>())
|
|
|
|
return false;
|
|
|
|
}
|
2020-01-04 14:21:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] array* as_array() noexcept override { return this; }
|
|
|
|
[[nodiscard]] const array* as_array() const noexcept override { return this; }
|
|
|
|
|
2020-01-06 18:21:16 +00:00
|
|
|
[[nodiscard]] bool empty() const noexcept { return values.empty(); }
|
2020-01-04 14:21:38 +00:00
|
|
|
[[nodiscard]] size_t size() const noexcept { return values.size(); }
|
|
|
|
|
2020-01-07 15:52:50 +00:00
|
|
|
[[nodiscard]] node& operator[] (size_t index) & noexcept { return *values[index].get(); }
|
|
|
|
[[nodiscard]] node&& operator[] (size_t index) && noexcept { return std::move(*values[index].get()); }
|
|
|
|
[[nodiscard]] const node& operator[] (size_t index) const& noexcept { return *values[index].get(); }
|
2020-01-04 14:21:38 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2020-01-06 18:21:16 +00:00
|
|
|
[[nodiscard]] node_of<T>* get_as(size_t index) noexcept
|
2020-01-04 14:21:38 +00:00
|
|
|
{
|
2020-01-07 15:52:50 +00:00
|
|
|
return values[index]->as<T>();
|
2020-01-04 14:21:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2020-01-06 18:21:16 +00:00
|
|
|
[[nodiscard]] const node_of<T>* get_as(size_t index) const noexcept
|
2020-01-04 14:21:38 +00:00
|
|
|
{
|
2020-01-07 15:52:50 +00:00
|
|
|
return values[index]->as<T>();
|
2020-01-04 14:21:38 +00:00
|
|
|
}
|
2020-01-07 15:52:50 +00:00
|
|
|
|
|
|
|
[[nodiscard]] iterator begin() noexcept { return { values.begin() }; }
|
|
|
|
[[nodiscard]] const_iterator begin() const noexcept { return { values.begin() }; }
|
|
|
|
[[nodiscard]] const_iterator cbegin() const noexcept { return { values.cbegin() }; }
|
|
|
|
|
|
|
|
[[nodiscard]] iterator end() noexcept { return { values.end() }; }
|
|
|
|
[[nodiscard]] const_iterator end() const noexcept { return { values.end() }; }
|
|
|
|
[[nodiscard]] const_iterator cend() const noexcept { return { values.cend() }; }
|
2020-01-04 14:21:38 +00:00
|
|
|
};
|
|
|
|
}
|