dxx-rebirth/common/include/serial.h
Kp d269c878b3 Add operator++,operator-- to base_bytebuffer_t
gcc-8 has special cases in its std::advance that require the target to
support `operator++` and `operator--`.  These are easy to support, so
add them.

References: <https://github.com/dxx-rebirth/dxx-rebirth/issues/388>
2018-05-05 22:33:55 +00:00

762 lines
24 KiB
C++

/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
#pragma once
#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <functional>
#include <initializer_list>
#include <tuple>
#include <type_traits>
#include "dxxsconf.h"
#include "compiler-addressof.h"
#include "compiler-array.h"
#include "compiler-integer_sequence.h"
#include "compiler-range_for.h"
#include "compiler-static_assert.h"
namespace serial {
template <typename A1, typename... Args>
class message;
template <typename>
class message_type;
/* Classifiers to identify whether a type is a message<...> */
template <typename>
class is_message : public std::false_type
{
};
template <typename A1, typename... Args>
class is_message<message<A1, Args...>> : public std::true_type
{
};
namespace detail {
template <std::size_t maximum, std::size_t minimum = maximum>
struct size_base
{
static constexpr std::integral_constant<std::size_t, maximum> maximum_size = {};
static constexpr std::integral_constant<std::size_t, minimum> minimum_size = {};
};
template <std::size_t maximum, std::size_t minimum>
constexpr std::integral_constant<std::size_t, maximum> size_base<maximum, minimum>::maximum_size;
template <std::size_t maximum, std::size_t minimum>
constexpr std::integral_constant<std::size_t, minimum> size_base<maximum, minimum>::minimum_size;
}
template <typename>
class is_cxx_array : public std::false_type
{
};
template <typename T, std::size_t N>
class is_cxx_array<array<T, N>> : public std::true_type
{
};
template <typename T>
class is_cxx_array<const T> : public is_cxx_array<T>
{
};
template <typename T>
using is_generic_class = typename std::conditional<is_cxx_array<T>::value, std::false_type, std::is_class<T>>::type;
template <typename Accessor, typename A1>
static inline typename std::enable_if<std::is_integral<typename std::remove_reference<A1>::type>::value, void>::type process_buffer(Accessor &&accessor, A1 &&a1)
{
process_integer(std::forward<Accessor &&>(accessor), a1);
}
template <typename Accessor, typename A1, typename A1rr = typename std::remove_reference<A1>::type>
static inline typename std::enable_if<std::is_enum<A1rr>::value, void>::type process_buffer(Accessor &, A1 &&);
template <typename Accessor, typename A1, typename A1rr = typename std::remove_reference<A1>::type>
static inline typename std::enable_if<is_generic_class<A1rr>::value, void>::type process_buffer(Accessor &, A1 &&);
template <typename Accessor, typename A1>
static typename std::enable_if<is_cxx_array<A1>::value, void>::type process_buffer(Accessor &&, A1 &);
template <typename Accessor, typename A1, typename... Args>
static void process_buffer(Accessor &, const message<A1, Args...> &);
class endian_access
{
public:
/*
* Endian access modes:
* - foreign_endian: assume buffered data is foreign endian
* Byte swap regardless of host byte order
* - little_endian: assume buffered data is little endian
* Copy on little endian host, byte swap on big endian host
* - big_endian: assume buffered data is big endian
* Copy on big endian host, byte swap on little endian host
* - native_endian: assume buffered data is native endian
* Copy regardless of host byte order
*/
typedef std::integral_constant<uint16_t, 0> foreign_endian_type;
typedef std::integral_constant<uint16_t, 255> little_endian_type;
typedef std::integral_constant<uint16_t, 256> big_endian_type;
typedef std::integral_constant<uint16_t, 257> native_endian_type;
static constexpr auto foreign_endian = foreign_endian_type{};
static constexpr auto little_endian = little_endian_type{};
static constexpr auto big_endian = big_endian_type{};
static constexpr auto native_endian = native_endian_type{};
};
/* Implementation details - avoid namespace pollution */
namespace detail {
/*
* gcc before 4.8 chokes on tuple<tuple<struct {}>> due to ambiguous
* base class after applying EBO
*/
template <typename T>
class wrapped_empty_value : T
{
public:
wrapped_empty_value() = default;
wrapped_empty_value(T &&t) : T(std::forward<T>(t)) {}
T &get() { return *this; }
const T &get() const { return *this; }
};
template <typename T>
static inline T &extract_value(wrapped_empty_value<T> &t)
{
return t.get();
}
template <typename T>
static inline const T &extract_value(const wrapped_empty_value<T> &t)
{
return t.get();
}
template <typename T, typename Trr = typename std::remove_reference<T>::type>
using capture_type = typename std::conditional<std::is_lvalue_reference<T>::value,
std::reference_wrapper<Trr>,
typename std::conditional<std::is_empty<Trr>::value,
wrapped_empty_value<Trr>,
std::tuple<Trr>
>::type
>;
template <typename T, typename Trr = typename std::remove_reference<T>::type>
static inline auto capture_value(Trr &t) -> decltype(std::ref(t))
{
return std::ref(t);
}
template <typename T, typename Trr = typename std::remove_reference<T>::type>
static inline typename std::enable_if<std::is_empty<Trr>::value, detail::wrapped_empty_value<Trr>>::type capture_value(Trr &&t)
{
return std::forward<Trr>(t);
}
template <typename T, typename Trr = typename std::remove_reference<T>::type>
static inline typename std::enable_if<!std::is_empty<Trr>::value && std::is_rvalue_reference<T>::value, std::tuple<Trr>>::type capture_value(Trr &&t)
{
return std::tuple<Trr>{std::forward<T>(t)};
}
template <typename extended_signed_type, typename wrapped_type>
class sign_extend_type : std::reference_wrapper<wrapped_type>
{
static_assert(sizeof(extended_signed_type) > sizeof(wrapped_type), "cannot sign-extend into a type of equal or smaller size");
static_assert(std::is_signed<extended_signed_type>::value, "cannot sign-extend into an unsigned type");
using base_type = std::reference_wrapper<wrapped_type>;
public:
using base_type::base_type;
using base_type::get;
};
template <typename extended_signed_type, typename wrapped_type>
message<array<uint8_t, sizeof(extended_signed_type)>> udt_to_message(const sign_extend_type<extended_signed_type, wrapped_type> &);
template <std::size_t amount, uint8_t value>
class pad_type
{
};
template <std::size_t amount, uint8_t value>
message<array<uint8_t, amount>> udt_to_message(const pad_type<amount, value> &);
/*
* This can never be instantiated, but will be requested if a UDT
* specialization is missing.
*/
template <typename T>
class missing_udt_specialization
{
public:
missing_udt_specialization() = delete;
};
template <typename T>
void udt_to_message(T &, missing_udt_specialization<T> = missing_udt_specialization<T>());
template <typename Accessor, typename UDT>
void preprocess_udt(Accessor &, UDT &) {}
template <typename Accessor, typename UDT>
void postprocess_udt(Accessor &, UDT &) {}
template <typename Accessor, typename UDT>
static inline void process_udt(Accessor &&accessor, UDT &udt)
{
process_buffer(std::forward<Accessor &&>(accessor), udt_to_message(udt));
}
template <typename Accessor, typename E>
void check_enum(Accessor &, E) {}
template <typename T, typename D>
struct base_bytebuffer_t : std::iterator<std::random_access_iterator_tag, T>, endian_access
{
public:
// Default bytebuffer_t usage to little endian
static uint16_t endian() { return little_endian; }
using typename std::iterator<std::random_access_iterator_tag, T>::pointer;
using typename std::iterator<std::random_access_iterator_tag, T>::difference_type;
base_bytebuffer_t(pointer u) : p(u) {}
operator pointer() const { return p; }
D &operator++()
{
++p;
return *static_cast<D *>(this);
}
D &operator--()
{
--p;
return *static_cast<D *>(this);
}
D &operator+=(const difference_type d)
{
p += d;
return *static_cast<D *>(this);
}
operator const void *() const = delete;
protected:
pointer p;
};
#define SERIAL_UDT_ROUND_UP(X,M) (((X) + (M) - 1) & ~((M) - 1))
template <std::size_t amount,
std::size_t SERIAL_UDT_ROUND_MULTIPLIER = sizeof(void *),
std::size_t SERIAL_UDT_ROUND_UP_AMOUNT = SERIAL_UDT_ROUND_UP(amount, SERIAL_UDT_ROUND_MULTIPLIER),
std::size_t FULL_SIZE = amount / 64 ? 64 : SERIAL_UDT_ROUND_UP_AMOUNT,
std::size_t REMAINDER_SIZE = amount % 64>
union pad_storage
{
static_assert(amount % SERIAL_UDT_ROUND_MULTIPLIER ? SERIAL_UDT_ROUND_UP_AMOUNT > amount && SERIAL_UDT_ROUND_UP_AMOUNT < amount + SERIAL_UDT_ROUND_MULTIPLIER : SERIAL_UDT_ROUND_UP_AMOUNT == amount, "round up error");
static_assert(SERIAL_UDT_ROUND_UP_AMOUNT % SERIAL_UDT_ROUND_MULTIPLIER == 0, "round modulus error");
static_assert(amount % FULL_SIZE == REMAINDER_SIZE || FULL_SIZE == REMAINDER_SIZE, "padding alignment error");
array<uint8_t, FULL_SIZE> f;
array<uint8_t, REMAINDER_SIZE> p;
pad_storage(std::false_type, uint8_t value)
{
f.fill(value);
}
pad_storage(std::true_type, uint8_t)
{
}
#undef SERIAL_UDT_ROUND_UP
};
template <typename Accessor, std::size_t amount, uint8_t value>
static inline void process_udt(Accessor &&accessor, const pad_type<amount, value> &)
{
/* If reading from accessor, accessor data is const and buffer is
* overwritten by read.
* If writing to accessor, accessor data is non-const, so initialize
* buffer to be written.
*/
pad_storage<amount> s(std::is_const<
typename std::remove_pointer<
/* rvalue reference `Accessor &&` causes `Accessor` to be `T &`
* for some type T. Use std::remove_reference to get T. Then
* take the type `pointer` from type T to use as input to
* std::remove_pointer.
*/
typename std::remove_reference<Accessor>::type
::pointer
>::type
>(), value);
for (std::size_t count = amount; count; count -= s.f.size())
{
if (count < s.f.size())
{
assert(count == s.p.size());
process_buffer(accessor, s.p);
break;
}
process_buffer(accessor, s.f);
}
}
static inline void sequence(std::initializer_list<uint8_t>) {}
template <typename T>
static inline T &extract_value(std::reference_wrapper<T> t)
{
return t;
}
template <typename T>
static inline T &extract_value(std::tuple<T> &t)
{
return std::get<0>(t);
}
template <typename T>
static inline const T &extract_value(const std::tuple<T> &t)
{
return std::get<0>(t);
}
template <typename T>
struct message_dispatch_base
{
using effective_type = T;
};
}
template <std::size_t amount, uint8_t value = 0xcc>
using pad = detail::pad_type<amount, value>;
template <typename extended_signed_type, typename wrapped_type>
static inline detail::sign_extend_type<extended_signed_type, wrapped_type> sign_extend(wrapped_type &t)
{
return {t};
}
#define DEFINE_SERIAL_UDT_TO_MESSAGE(TYPE, NAME, MEMBERLIST) \
DEFINE_SERIAL_CONST_UDT_TO_MESSAGE(TYPE, NAME, MEMBERLIST) \
DEFINE_SERIAL_MUTABLE_UDT_TO_MESSAGE(TYPE, NAME, MEMBERLIST) \
#define _DEFINE_SERIAL_UDT_TO_MESSAGE(TYPE, NAME, MEMBERLIST) \
template <typename Accessor> \
static inline void process_udt(Accessor &&accessor, TYPE &NAME) \
{ \
using serial::process_buffer; \
process_buffer(std::forward<Accessor &&>(accessor), _SERIAL_UDT_UNWRAP_LIST MEMBERLIST); \
} \
\
__attribute_unused \
static inline auto udt_to_message(TYPE &NAME) -> decltype(serial::make_message MEMBERLIST) { \
return serial::make_message MEMBERLIST; \
}
#define DEFINE_SERIAL_CONST_UDT_TO_MESSAGE(TYPE, NAME, MEMBERLIST) \
_DEFINE_SERIAL_UDT_TO_MESSAGE(const TYPE, NAME, MEMBERLIST)
#define DEFINE_SERIAL_MUTABLE_UDT_TO_MESSAGE(TYPE, NAME, MEMBERLIST) \
_DEFINE_SERIAL_UDT_TO_MESSAGE(TYPE, NAME, MEMBERLIST)
#define ASSERT_SERIAL_UDT_MESSAGE_SIZE(T, SIZE) \
assert_equal(serial::class_type<T>::maximum_size, SIZE, "sizeof(" #T ") is not " #SIZE)
template <typename M1, typename T1, typename M1rcv_rr = typename std::remove_cv<typename std::remove_reference<M1>::type>::type>
struct udt_message_compatible_same_type : std::is_same<M1rcv_rr, T1>
{
static_assert((std::is_same<M1rcv_rr, T1>::value), "parameter type mismatch");
};
template <bool, typename M, typename T>
class assert_udt_message_compatible2;
template <typename M, typename T>
class assert_udt_message_compatible2<false, M, T> : public std::false_type
{
};
template <typename M1, typename T1>
class assert_udt_message_compatible2<true, message<M1>, std::tuple<T1>> : public udt_message_compatible_same_type<M1, T1>
{
};
template <typename M1, typename M2, typename... Mn, typename T1, typename T2, typename... Tn>
class assert_udt_message_compatible2<true, message<M1, M2, Mn...>, std::tuple<T1, T2, Tn...>> :
public assert_udt_message_compatible2<udt_message_compatible_same_type<M1, T1>::value, message<M2, Mn...>, std::tuple<T2, Tn...>>
{
};
template <typename M, typename T>
class assert_udt_message_compatible1;
template <typename M1, typename... Mn, typename T1, typename... Tn>
class assert_udt_message_compatible1<message<M1, Mn...>, std::tuple<T1, Tn...>> : public assert_udt_message_compatible2<sizeof...(Mn) == sizeof...(Tn), message<M1, Mn...>, std::tuple<T1, Tn...>>
{
static_assert(sizeof...(Mn) <= sizeof...(Tn), "too few types in tuple");
static_assert(sizeof...(Mn) >= sizeof...(Tn), "too few types in message");
};
template <typename, typename>
class assert_udt_message_compatible;
template <typename T>
using class_type = message_type<decltype(udt_to_message(std::declval<T>()))>;
template <typename C, typename T1, typename... Tn>
class assert_udt_message_compatible<C, std::tuple<T1, Tn...>> : public assert_udt_message_compatible1<typename class_type<C>::as_message, std::tuple<T1, Tn...>>
{
};
#define _SERIAL_UDT_UNWRAP_LIST(A1,...) A1, ## __VA_ARGS__
#define ASSERT_SERIAL_UDT_MESSAGE_TYPE(T, TYPELIST) \
ASSERT_SERIAL_UDT_MESSAGE_CONST_TYPE(T, TYPELIST); \
ASSERT_SERIAL_UDT_MESSAGE_MUTABLE_TYPE(T, TYPELIST); \
#define _ASSERT_SERIAL_UDT_MESSAGE_TYPE(T, TYPELIST) \
static_assert((serial::assert_udt_message_compatible<T, std::tuple<_SERIAL_UDT_UNWRAP_LIST TYPELIST>>::value), "udt/message mismatch")
#define ASSERT_SERIAL_UDT_MESSAGE_CONST_TYPE(T, TYPELIST) \
_ASSERT_SERIAL_UDT_MESSAGE_TYPE(const T, TYPELIST)
#define ASSERT_SERIAL_UDT_MESSAGE_MUTABLE_TYPE(T, TYPELIST) \
_ASSERT_SERIAL_UDT_MESSAGE_TYPE(T, TYPELIST)
union endian_skip_byteswap_u
{
uint8_t c[2];
uint16_t s;
constexpr endian_skip_byteswap_u(const uint16_t &u) : s(u)
{
static_assert((offsetof(endian_skip_byteswap_u, c) == offsetof(endian_skip_byteswap_u, s)), "union layout error");
}
};
static inline constexpr uint8_t endian_skip_byteswap(const uint16_t &endian)
{
return endian_skip_byteswap_u{endian}.c[0];
}
template <typename T, std::size_t N>
union unaligned_storage
{
T a;
typename std::conditional<N < 4,
typename std::conditional<N == 1, uint8_t, uint16_t>,
typename std::conditional<N == 4, uint32_t, uint64_t>>::type::type i;
uint8_t u[N];
assert_equal(sizeof(i), N, "sizeof(i) is not N");
assert_equal(sizeof(a), sizeof(u), "sizeof(T) is not N");
};
template <typename T, typename = void>
class message_dispatch_type;
template <typename T>
class message_dispatch_type<T, typename std::enable_if<std::is_integral<T>::value or std::is_enum<T>::value, void>::type> :
public detail::message_dispatch_base<detail::size_base<sizeof(T)>>
{
};
template <typename T>
class message_dispatch_type<T, typename std::enable_if<is_cxx_array<T>::value, void>::type> :
public detail::message_dispatch_base<
detail::size_base<
message_type<typename T::value_type>::maximum_size * std::tuple_size<T>::value,
message_type<typename T::value_type>::minimum_size * std::tuple_size<T>::value
>
>
{
};
template <typename T>
class message_dispatch_type<T, typename std::enable_if<is_generic_class<T>::value && !is_message<T>::value, void>::type> :
public detail::message_dispatch_base<class_type<T>>
{
};
template <typename T>
class message_type :
message_dispatch_type<typename std::remove_reference<T>::type>::effective_type
{
using effective_type = typename message_dispatch_type<typename std::remove_reference<T>::type>::effective_type;
public:
using effective_type::maximum_size;
using effective_type::minimum_size;
};
template <typename A1>
class message_dispatch_type<message<A1>, void> :
public detail::message_dispatch_base<message_type<A1>>
{
public:
typedef message<A1> as_message;
};
template <typename A1, typename A2, typename... Args>
class message_type<message<A1, A2, Args...>> :
public detail::size_base<
message_type<A1>::maximum_size + message_type<message<A2, Args...>>::maximum_size,
message_type<A1>::minimum_size + message_type<message<A2, Args...>>::minimum_size
>
{
public:
typedef message<A1, A2, Args...> as_message;
};
template <typename A1, typename... Args>
class message
{
typedef std::tuple<typename detail::capture_type<A1 &&>::type, typename detail::capture_type<Args &&>::type...> tuple_type;
template <typename T1>
static void check_type()
{
static_assert(message_type<T1>::maximum_size > 0, "empty field in message");
}
static void check_types()
{
check_type<A1>();
detail::sequence({(check_type<Args>(), static_cast<uint8_t>(0))...});
}
tuple_type t;
public:
message(A1 &&a1, Args &&... args) :
t(detail::capture_value<A1>(std::forward<A1>(a1)), detail::capture_value<Args>(std::forward<Args>(args))...)
{
check_types();
}
const tuple_type &get_tuple() const
{
return t;
}
};
template <typename A1, typename... Args>
static inline message<A1 &&, Args &&...> make_message(A1 &&a1, Args &&... args)
{
return {std::forward<A1>(a1), std::forward<Args>(args)...};
}
#define SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_BUILTIN(HBITS,BITS) \
static inline constexpr uint##BITS##_t bswap(const uint##BITS##_t &u) \
{ \
return __builtin_bswap##BITS(u); \
}
#define SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_EXPLICIT(HBITS,BITS) \
static inline constexpr uint##BITS##_t bswap(const uint##BITS##_t &u) \
{ \
return (static_cast<uint##BITS##_t>(bswap(static_cast<uint##HBITS##_t>(u))) << HBITS) | \
static_cast<uint##BITS##_t>(bswap(static_cast<uint##HBITS##_t>(u >> HBITS))); \
}
#define SERIAL_DEFINE_SIZE_SPECIFIC_BSWAP(HBITS,BITS) \
SERIAL_DEFINE_SIZE_SPECIFIC_USWAP(HBITS,BITS); \
static inline constexpr int##BITS##_t bswap(const int##BITS##_t &i) \
{ \
return bswap(static_cast<uint##BITS##_t>(i)); \
}
static inline constexpr uint8_t bswap(const uint8_t &u)
{
return u;
}
static inline constexpr int8_t bswap(const int8_t &u)
{
return u;
}
#ifdef DXX_HAVE_BUILTIN_BSWAP16
#define SERIAL_DEFINE_SIZE_SPECIFIC_USWAP SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_BUILTIN
#else
#define SERIAL_DEFINE_SIZE_SPECIFIC_USWAP SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_EXPLICIT
#endif
SERIAL_DEFINE_SIZE_SPECIFIC_BSWAP(8, 16);
#undef SERIAL_DEFINE_SIZE_SPECIFIC_USWAP
#ifdef DXX_HAVE_BUILTIN_BSWAP
#define SERIAL_DEFINE_SIZE_SPECIFIC_USWAP SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_BUILTIN
#else
#define SERIAL_DEFINE_SIZE_SPECIFIC_USWAP SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_EXPLICIT
#endif
SERIAL_DEFINE_SIZE_SPECIFIC_BSWAP(16, 32);
SERIAL_DEFINE_SIZE_SPECIFIC_BSWAP(32, 64);
#undef SERIAL_DEFINE_SIZE_SPECIFIC_BSWAP
#undef SERIAL_DEFINE_SIZE_SPECIFIC_USWAP
#undef SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_BUILTIN
#undef SERIAL_DEFINE_SIZE_SPECIFIC_USWAP_EXPLICIT
namespace reader {
class bytebuffer_t : public detail::base_bytebuffer_t<const uint8_t, bytebuffer_t>
{
public:
bytebuffer_t(pointer u) : base_bytebuffer_t(u) {}
explicit bytebuffer_t(const bytebuffer_t &) = default;
bytebuffer_t(bytebuffer_t &&) = default;
};
template <typename A1>
static inline void unaligned_copy(const uint8_t *src, unaligned_storage<A1, 1> &dst)
{
dst.u[0] = *src;
}
template <typename A1, std::size_t BYTES>
static inline void unaligned_copy(const uint8_t *src, unaligned_storage<A1, BYTES> &dst)
{
std::copy_n(src, sizeof(dst.u), dst.u);
}
template <typename Accessor, typename A1>
static inline void process_integer(Accessor &buffer, A1 &a1)
{
using std::advance;
unaligned_storage<A1, message_type<A1>::maximum_size> u;
unaligned_copy(buffer, u);
if (!endian_skip_byteswap(buffer.endian()))
u.i = bswap(u.i);
a1 = u.a;
advance(buffer, sizeof(u.u));
}
template <typename Accessor, typename A, typename T = typename A::value_type>
static inline typename std::enable_if<sizeof(T) == 1 && std::is_integral<T>::value, void>::type process_array(Accessor &accessor, A &a)
{
std::copy_n(static_cast<typename Accessor::pointer>(accessor), a.size(), &a[0]);
advance(accessor, a.size());
}
template <typename Accessor, typename extended_signed_type, typename wrapped_type>
static inline void process_udt(Accessor &&accessor, const detail::sign_extend_type<extended_signed_type, wrapped_type> &v)
{
extended_signed_type est;
process_integer<Accessor, extended_signed_type>(static_cast<Accessor &&>(accessor), est);
v.get() = static_cast<wrapped_type>(est);
}
}
namespace writer {
class bytebuffer_t : public detail::base_bytebuffer_t<uint8_t, bytebuffer_t>
{
public:
bytebuffer_t(pointer u) : base_bytebuffer_t(u) {}
explicit bytebuffer_t(const bytebuffer_t &) = default;
bytebuffer_t(bytebuffer_t &&) = default;
};
template <typename A1>
static inline void unaligned_copy(const unaligned_storage<A1, 1> &src, uint8_t *dst)
{
*dst = src.u[0];
}
/* If inline unaligned_copy, gcc inlining of copy_n creates a loop instead
* of a store.
*/
template <typename A1, std::size_t BYTES>
static inline void unaligned_copy(const unaligned_storage<A1, BYTES> &src, uint8_t *dst)
{
std::copy_n(src.u, sizeof(src.u), dst);
}
template <typename Accessor, typename A1>
static inline void process_integer(Accessor &buffer, const A1 &a1)
{
using std::advance;
unaligned_storage<A1, message_type<A1>::maximum_size> u{a1};
if (!endian_skip_byteswap(buffer.endian()))
u.i = bswap(u.i);
unaligned_copy(u, buffer);
advance(buffer, sizeof(u.u));
}
template <typename Accessor, typename A, typename T = typename A::value_type>
static inline typename std::enable_if<sizeof(T) == 1 && std::is_integral<T>::value, void>::type process_array(Accessor &accessor, const A &a)
{
std::copy_n(&a[0], a.size(), static_cast<typename Accessor::pointer>(accessor));
advance(accessor, a.size());
}
template <typename Accessor, typename extended_signed_type, typename wrapped_type>
static inline void process_udt(Accessor &&accessor, const detail::sign_extend_type<extended_signed_type, const wrapped_type> &v)
{
const typename std::make_signed<wrapped_type>::type swt = v.get();
const extended_signed_type est = swt;
process_integer<Accessor, extended_signed_type>(static_cast<Accessor &&>(accessor), est);
}
}
template <typename Accessor, typename A1, typename A1rr>
static inline typename std::enable_if<std::is_enum<A1rr>::value, void>::type process_buffer(Accessor &accessor, A1 &&a1)
{
using detail::check_enum;
process_integer(accessor, a1);
/* Hook for enum types to check that the given value is legal */
check_enum(accessor, a1);
}
template <typename Accessor, typename A1, typename A1rr>
static inline typename std::enable_if<is_generic_class<A1rr>::value, void>::type process_buffer(Accessor &accessor, A1 &&a1)
{
using detail::preprocess_udt;
using detail::process_udt;
using detail::postprocess_udt;
preprocess_udt(accessor, a1);
process_udt(accessor, std::forward<A1>(a1));
postprocess_udt(accessor, a1);
}
template <typename Accessor, typename A, typename T = typename A::value_type>
static typename std::enable_if<!(sizeof(T) == 1 && std::is_integral<T>::value), void>::type process_array(Accessor &accessor, A &a)
{
range_for (auto &i, a)
process_buffer(accessor, i);
}
template <typename Accessor, typename A1>
static typename std::enable_if<is_cxx_array<A1>::value, void>::type process_buffer(Accessor &&accessor, A1 &a1)
{
process_array(std::forward<Accessor &&>(accessor), a1);
}
template <typename Accessor, typename... Args, std::size_t... N>
static inline void process_message_tuple(Accessor &&accessor, const std::tuple<Args...> &t, index_sequence<N...>)
{
detail::sequence({(process_buffer(accessor, detail::extract_value(std::get<N>(t))), static_cast<uint8_t>(0))...});
}
template <typename Accessor, typename A1, typename... Args>
static void process_buffer(Accessor &&accessor, const message<A1, Args...> &m)
{
process_message_tuple(std::forward<Accessor &&>(accessor), m.get_tuple(), make_tree_index_sequence<1 + sizeof...(Args)>());
}
/* Require at least two arguments to prevent self-selection */
template <typename Accessor, typename A1, typename A2, typename... An>
static void process_buffer(Accessor &&accessor, A1 &&a1, A2 &&a2, An &&... an)
{
detail::sequence({
(process_buffer(accessor, std::forward<A1>(a1)),
process_buffer(accessor, std::forward<A2>(a2)), static_cast<uint8_t>(0)),
(process_buffer(accessor, std::forward<An>(an)), static_cast<uint8_t>(0))...
});
}
}