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
|
#ifndef RFL_CBOR_READ_HPP_
#define RFL_CBOR_READ_HPP_
#include <bit>
#include <istream>
#include <jsoncons/json.hpp>
#include <jsoncons_ext/cbor/decode_cbor.hpp>
#include <string>
#include "../Processors.hpp"
#include "../internal/wrap_in_rfl_array_t.hpp"
#include "Parser.hpp"
#include "Reader.hpp"
namespace rfl::cbor {
using InputObjectType = typename Reader::InputObjectType;
using InputVarType = typename Reader::InputVarType;
/// Parses an object from CBOR using reflection.
template <class T, class... Ps>
Result<internal::wrap_in_rfl_array_t<T>> read(const std::vector<char>& _bytes) {
auto val = jsoncons::cbor::decode_cbor<jsoncons::json>(_bytes);
auto r = Reader();
return Parser<T, Processors<Ps...>>::read(r, InputVarType{&val});
}
/// Parses an object from a stream.
template <class T, class... Ps>
Result<internal::wrap_in_rfl_array_t<T>> read(std::istream& _stream) {
auto val = jsoncons::cbor::decode_cbor<jsoncons::json>(_stream);
auto r = Reader();
return Parser<T, Processors<Ps...>>::read(r, InputVarType{&val});
}
} // namespace rfl::cbor
#endif
|