Skip to content

Commit

Permalink
refactor: Clio Config (#1593)
Browse files Browse the repository at this point in the history
Add constraint + parse json into Config
Second part of refactoring Clio Config; First PR found
[here](#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
  • Loading branch information
PeterChen13579 authored Sep 19, 2024
1 parent 0282504 commit af4fde9
Show file tree
Hide file tree
Showing 26 changed files with 2,056 additions and 333 deletions.
5 changes: 4 additions & 1 deletion src/util/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ target_sources(
TimeUtils.cpp
TxUtils.cpp
LedgerUtils.cpp
newconfig/Array.cpp
newconfig/ArrayView.cpp
newconfig/ConfigConstraints.cpp
newconfig/ConfigDefinition.cpp
newconfig/ConfigFileJson.cpp
newconfig/ObjectView.cpp
newconfig/ArrayView.cpp
newconfig/ValueView.cpp
)

Expand Down
84 changes: 84 additions & 0 deletions src/util/newconfig/Array.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
//------------------------------------------------------------------------------
/*
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
70 changes: 42 additions & 28 deletions src/util/newconfig/Array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,58 +19,50 @@

#pragma once

#include "util/Assert.hpp"
#include "util/newconfig/ConfigValue.hpp"
#include "util/newconfig/ObjectView.hpp"
#include "util/newconfig/ValueView.hpp"
#include "util/newconfig/Error.hpp"
#include "util/newconfig/Types.hpp"

#include <cstddef>
#include <iterator>
#include <type_traits>
#include <utility>
#include <optional>
#include <string_view>
#include <vector>

namespace util::config {

/**
* @brief Array definition for Json/Yaml config
* @brief Array definition to store multiple values provided by the user from Json/Yaml
*
* Used in ClioConfigDefinition to represent multiple potential values (like whitelist)
* Is constructed with only 1 element which states which type/constraint must every element
* In the array satisfy
*/
class Array {
public:
/**
* @brief Constructs an Array with the provided arguments
* @brief Constructs an Array with provided Arg
*
* @tparam Args Types of the arguments
* @param args Arguments to initialize the elements of the Array
* @param arg Argument to set the type and constraint of ConfigValues in Array
*/
template <typename... Args>
constexpr Array(Args&&... args) : elements_{std::forward<Args>(args)...}
{
}
Array(ConfigValue arg);

/**
* @brief Add ConfigValues to Array class
*
* @param value The ConfigValue to add
* @param key optional string key to include that will show in error message
* @return optional error if adding config value to array fails. nullopt otherwise
*/
void
emplaceBack(ConfigValue value)
{
elements_.push_back(std::move(value));
}
std::optional<Error>
addValue(Value value, std::optional<std::string_view> key = std::nullopt);

/**
* @brief Returns the number of values stored in the Array
*
* @return Number of values stored in the Array
*/
[[nodiscard]] size_t
size() const
{
return elements_.size();
}
size() const;

/**
* @brief Returns the ConfigValue at the specified index
Expand All @@ -79,13 +71,35 @@ class Array {
* @return ConfigValue at the specified index
*/
[[nodiscard]] ConfigValue const&
at(std::size_t idx) const
{
ASSERT(idx < elements_.size(), "index is out of scope");
return elements_[idx];
}
at(std::size_t idx) const;

/**
* @brief Returns the ConfigValue that defines the type/constraint every
* ConfigValue must follow in Array
*
* @return The item_pattern
*/
[[nodiscard]] ConfigValue const&
getArrayPattern() const;

/**
* @brief Returns an iterator to the beginning of the ConfigValue vector.
*
* @return A constant iterator to the beginning of the vector.
*/
[[nodiscard]] std::vector<ConfigValue>::const_iterator
begin() const;

/**
* @brief Returns an iterator to the end of the ConfigValue vector.
*
* @return A constant iterator to the end of the vector.
*/
[[nodiscard]] std::vector<ConfigValue>::const_iterator
end() const;

private:
ConfigValue itemPattern_;
std::vector<ConfigValue> elements_;
};

Expand Down
105 changes: 105 additions & 0 deletions src/util/newconfig/ConfigConstraints.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
//------------------------------------------------------------------------------
/*
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/ConfigConstraints.hpp"

#include "util/newconfig/Error.hpp"
#include "util/newconfig/Types.hpp"

#include <fmt/core.h>

#include <cstdint>
#include <optional>
#include <regex>
#include <stdexcept>
#include <string>
#include <variant>

namespace util::config {

std::optional<Error>
PortConstraint::checkTypeImpl(Value const& port) const
{
if (!(std::holds_alternative<int64_t>(port) || std::holds_alternative<std::string>(port)))
return Error{"Port must be a string or integer"};
return std::nullopt;
}

std::optional<Error>
PortConstraint::checkValueImpl(Value const& port) const
{
uint32_t p = 0;
if (std::holds_alternative<std::string>(port)) {
try {
p = static_cast<uint32_t>(std::stoi(std::get<std::string>(port)));
} catch (std::invalid_argument const& e) {
return Error{"Port string must be an integer."};
}
} else {
p = static_cast<uint32_t>(std::get<int64_t>(port));
}
if (p >= portMin && p <= portMax)
return std::nullopt;
return Error{"Port does not satisfy the constraint bounds"};
}

std::optional<Error>
ValidIPConstraint::checkTypeImpl(Value const& ip) const
{
if (!std::holds_alternative<std::string>(ip))
return Error{"Ip value must be a string"};
return std::nullopt;
}

std::optional<Error>
ValidIPConstraint::checkValueImpl(Value const& ip) const
{
if (std::get<std::string>(ip) == "localhost")
return std::nullopt;

static std::regex const ipv4(
R"(^((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])$)"
);

static std::regex const ip_url(
R"(^((http|https):\/\/)?((([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6})|(((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])))(:\d{1,5})?(\/[^\s]*)?$)"
);
if (std::regex_match(std::get<std::string>(ip), ipv4) || std::regex_match(std::get<std::string>(ip), ip_url))
return std::nullopt;

return Error{"Ip is not a valid ip address"};
}

std::optional<Error>
PositiveDouble::checkTypeImpl(Value const& num) const
{
if (!(std::holds_alternative<double>(num) || std::holds_alternative<int64_t>(num)))
return Error{"Double number must be of type int or double"};
return std::nullopt;
}

std::optional<Error>
PositiveDouble::checkValueImpl(Value const& num) const
{
if (std::get<double>(num) >= 0)
return std::nullopt;
return Error{"Double number must be greater than 0"};
}

} // namespace util::config
Loading

0 comments on commit af4fde9

Please sign in to comment.