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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
// This file is part of CAF, the C++ Actor Framework. See the file LICENSE in
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#pragma once
#include <cstddef>
#include <string>
#include <tuple>
#include <type_traits>
#include <utility>
#include "caf/detail/core_export.hpp"
#include "caf/detail/squashed_int.hpp"
#include "caf/error_code.hpp"
#include "caf/fwd.hpp"
#include "caf/load_inspector_base.hpp"
#include "caf/sec.hpp"
#include "caf/span.hpp"
#include "caf/string_view.hpp"
namespace caf {
/// Deserializes C++ objects from sequence of bytes. Does not perform run-time
/// type checks.
class CAF_CORE_EXPORT binary_deserializer
: public load_inspector_base<binary_deserializer> {
public:
// -- member types -----------------------------------------------------------
using super = load_inspector_base<binary_deserializer>;
// -- constructors, destructors, and assignment operators --------------------
template <class Container>
binary_deserializer(actor_system& sys, const Container& input) noexcept
: binary_deserializer(sys) {
reset(as_bytes(make_span(input)));
}
template <class Container>
binary_deserializer(execution_unit* ctx, const Container& input) noexcept
: context_(ctx) {
reset(as_bytes(make_span(input)));
}
binary_deserializer(execution_unit* ctx, const void* buf,
size_t size) noexcept
: binary_deserializer(ctx,
make_span(reinterpret_cast<const byte*>(buf), size)) {
// nop
}
binary_deserializer(actor_system& sys, const void* buf, size_t size) noexcept
: binary_deserializer(sys,
make_span(reinterpret_cast<const byte*>(buf), size)) {
// nop
}
// -- properties -------------------------------------------------------------
/// Returns how many bytes are still available to read.
size_t remaining() const noexcept {
return static_cast<size_t>(end_ - current_);
}
/// Returns the remaining bytes.
span<const byte> remainder() const noexcept {
return make_span(current_, end_);
}
/// Returns the current execution unit.
execution_unit* context() const noexcept {
return context_;
}
/// Jumps `num_bytes` forward.
/// @pre `num_bytes <= remaining()`
void skip(size_t num_bytes);
/// Assigns a new input.
void reset(span<const byte> bytes) noexcept;
/// Returns the current read position.
const byte* current() const noexcept {
return current_;
}
/// Returns the end of the assigned memory block.
const byte* end() const noexcept {
return end_;
}
static constexpr bool has_human_readable_format() noexcept {
return false;
}
// -- overridden member functions --------------------------------------------
bool fetch_next_object_type(type_id_t& type) noexcept;
constexpr bool begin_object(type_id_t, string_view) noexcept {
return true;
}
constexpr bool end_object() noexcept {
return true;
}
constexpr bool begin_field(string_view) noexcept {
return true;
}
bool begin_field(string_view name, bool& is_present) noexcept;
bool begin_field(string_view name, span<const type_id_t> types,
size_t& index) noexcept;
bool begin_field(string_view name, bool& is_present,
span<const type_id_t> types, size_t& index) noexcept;
constexpr bool end_field() {
return true;
}
constexpr bool begin_tuple(size_t) noexcept {
return true;
}
constexpr bool end_tuple() noexcept {
return true;
}
constexpr bool begin_key_value_pair() noexcept {
return true;
}
constexpr bool end_key_value_pair() noexcept {
return true;
}
bool begin_sequence(size_t& list_size) noexcept;
constexpr bool end_sequence() noexcept {
return true;
}
bool begin_associative_array(size_t& size) noexcept {
return begin_sequence(size);
}
bool end_associative_array() noexcept {
return end_sequence();
}
bool value(bool& x) noexcept;
bool value(byte& x) noexcept;
bool value(uint8_t& x) noexcept;
bool value(int8_t& x) noexcept;
bool value(int16_t& x) noexcept;
bool value(uint16_t& x) noexcept;
bool value(int32_t& x) noexcept;
bool value(uint32_t& x) noexcept;
bool value(int64_t& x) noexcept;
bool value(uint64_t& x) noexcept;
template <class T>
std::enable_if_t<std::is_integral<T>::value, bool> value(T& x) noexcept {
auto tmp = detail::squashed_int_t<T>{0};
if (value(tmp)) {
x = static_cast<T>(tmp);
return true;
} else {
return false;
}
}
bool value(float& x) noexcept;
bool value(double& x) noexcept;
bool value(long double& x);
bool value(std::string& x);
bool value(std::u16string& x);
bool value(std::u32string& x);
bool value(span<byte> x) noexcept;
bool value(std::vector<bool>& x);
private:
explicit binary_deserializer(actor_system& sys) noexcept;
/// Checks whether we can read `read_size` more bytes.
bool range_check(size_t read_size) const noexcept {
return current_ + read_size <= end_;
}
/// Points to the current read position.
const byte* current_;
/// Points to the end of the assigned memory block.
const byte* end_;
/// Provides access to the ::proxy_registry and to the ::actor_system.
execution_unit* context_;
};
} // namespace caf
|