mirror of
https://github.com/XRPLF/clio.git
synced 2025-12-06 17:27:58 +00:00
Add constraint + parse json into Config Second part of refactoring Clio Config; First PR found [here](https://github.com/XRPLF/clio/pull/1544) Steps that are left to implement: - Replacing all the places where we fetch config values (by using config.valueOr/MaybeValue) to instead get it from Config Definition - Generate markdown file using Clio Config Description
85 lines
2.4 KiB
C++
85 lines
2.4 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of clio: https://github.com/XRPLF/clio
|
|
Copyright (c) 2024, the clio developers.
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include "util/newconfig/Array.hpp"
|
|
|
|
#include "util/Assert.hpp"
|
|
#include "util/newconfig/ConfigValue.hpp"
|
|
#include "util/newconfig/Error.hpp"
|
|
#include "util/newconfig/Types.hpp"
|
|
|
|
#include <cstddef>
|
|
#include <optional>
|
|
#include <string_view>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace util::config {
|
|
|
|
Array::Array(ConfigValue arg) : itemPattern_{std::move(arg)}
|
|
{
|
|
}
|
|
|
|
std::optional<Error>
|
|
Array::addValue(Value value, std::optional<std::string_view> key)
|
|
{
|
|
auto const& configValPattern = itemPattern_;
|
|
auto const constraint = configValPattern.getConstraint();
|
|
|
|
auto newElem = constraint.has_value() ? ConfigValue{configValPattern.type()}.withConstraint(constraint->get())
|
|
: ConfigValue{configValPattern.type()};
|
|
if (auto const maybeError = newElem.setValue(value, key); maybeError.has_value())
|
|
return maybeError;
|
|
elements_.emplace_back(std::move(newElem));
|
|
return std::nullopt;
|
|
}
|
|
|
|
size_t
|
|
Array::size() const
|
|
{
|
|
return elements_.size();
|
|
}
|
|
|
|
ConfigValue const&
|
|
Array::at(std::size_t idx) const
|
|
{
|
|
ASSERT(idx < elements_.size(), "Index is out of scope");
|
|
return elements_[idx];
|
|
}
|
|
|
|
ConfigValue const&
|
|
Array::getArrayPattern() const
|
|
{
|
|
return itemPattern_;
|
|
}
|
|
|
|
std::vector<ConfigValue>::const_iterator
|
|
Array::begin() const
|
|
{
|
|
return elements_.begin();
|
|
}
|
|
|
|
std::vector<ConfigValue>::const_iterator
|
|
Array::end() const
|
|
{
|
|
return elements_.end();
|
|
}
|
|
|
|
} // namespace util::config
|