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 53 54 55 56 57 58 59 60 61
|
#ifndef RFL_TOML_READ_HPP_
#define RFL_TOML_READ_HPP_
#include <istream>
#include <string>
#include <string_view>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Warray-bounds"
#include <toml.hpp>
#pragma GCC diagnostic pop
#include "../Processors.hpp"
#include "../internal/wrap_in_rfl_array_t.hpp"
#include "Parser.hpp"
#include "Reader.hpp"
namespace rfl::toml {
using InputVarType = typename Reader::InputVarType;
/// Parses an object from a TOML var.
template <class T, class... Ps>
auto read(InputVarType _var) {
const auto r = Reader();
using ProcessorsType = Processors<Ps...>;
static_assert(!ProcessorsType::no_field_names_,
"The NoFieldNames processor is not supported for BSON, XML, "
"TOML, or YAML.");
return Parser<T, ProcessorsType>::read(r, _var);
}
/// Reads a TOML string.
template <class T, class... Ps>
Result<internal::wrap_in_rfl_array_t<T>> read(const std::string& _toml_str) {
auto res = ::toml::try_parse_str(_toml_str);
if (res.is_ok()) {
return read<T, Ps...>(&res.unwrap());
} else {
return error(::toml::format_error(res.unwrap_err().at(0)));
}
}
/// Reads a TOML string.
template <class T, class... Ps>
Result<internal::wrap_in_rfl_array_t<T>> read(
const std::string_view _toml_str) {
return read<T, Ps...>(std::string(_toml_str));
}
/// Parses an object from a stringstream.
template <class T, class... Ps>
auto read(std::istream& _stream) {
const auto toml_str = std::string(std::istreambuf_iterator<char>(_stream),
std::istreambuf_iterator<char>());
return read<T, Ps...>(toml_str);
}
} // namespace rfl::toml
#endif
|