mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
serialization: use internal endian conversion functions
These replace our platform-specific mess in favor of c++20 endian detection via std::endian and internal byteswap functions when necessary. They no longer rely on autoconf detection.
This commit is contained in:
parent
432b18ca8d
commit
86b7f28d6c
5 changed files with 64 additions and 238 deletions
|
@ -975,7 +975,7 @@ if test "$TARGET_OS" = "darwin"; then
|
||||||
AX_CHECK_LINK_FLAG([-Wl,-fixup_chains], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-fixup_chains"], [], [$LDFLAG_WERROR])
|
AX_CHECK_LINK_FLAG([-Wl,-fixup_chains], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-fixup_chains"], [], [$LDFLAG_WERROR])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CHECK_HEADERS([endian.h sys/endian.h sys/select.h sys/prctl.h sys/sysctl.h vm/vm_param.h sys/vmmeter.h sys/resources.h])
|
AC_CHECK_HEADERS([sys/select.h sys/prctl.h sys/sysctl.h vm/vm_param.h sys/vmmeter.h sys/resources.h])
|
||||||
|
|
||||||
AC_CHECK_DECLS([getifaddrs, freeifaddrs],[CHECK_SOCKET],,
|
AC_CHECK_DECLS([getifaddrs, freeifaddrs],[CHECK_SOCKET],,
|
||||||
[#include <sys/types.h>
|
[#include <sys/types.h>
|
||||||
|
@ -990,13 +990,6 @@ AC_CHECK_DECLS([pipe2])
|
||||||
|
|
||||||
AC_CHECK_FUNCS([timingsafe_bcmp])
|
AC_CHECK_FUNCS([timingsafe_bcmp])
|
||||||
|
|
||||||
AC_CHECK_DECLS([le16toh, le32toh, le64toh, htole16, htole32, htole64, be16toh, be32toh, be64toh, htobe16, htobe32, htobe64],,,
|
|
||||||
[#if HAVE_ENDIAN_H
|
|
||||||
#include <endian.h>
|
|
||||||
#elif HAVE_SYS_ENDIAN_H
|
|
||||||
#include <sys/endian.h>
|
|
||||||
#endif])
|
|
||||||
|
|
||||||
AC_MSG_CHECKING([for __builtin_clzl])
|
AC_MSG_CHECKING([for __builtin_clzl])
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ ]], [[
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ ]], [[
|
||||||
(void) __builtin_clzl(0);
|
(void) __builtin_clzl(0);
|
||||||
|
|
|
@ -5,237 +5,70 @@
|
||||||
#ifndef BITCOIN_COMPAT_ENDIAN_H
|
#ifndef BITCOIN_COMPAT_ENDIAN_H
|
||||||
#define BITCOIN_COMPAT_ENDIAN_H
|
#define BITCOIN_COMPAT_ENDIAN_H
|
||||||
|
|
||||||
#if defined(HAVE_CONFIG_H)
|
|
||||||
#include <config/bitcoin-config.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <compat/byteswap.h>
|
#include <compat/byteswap.h>
|
||||||
|
|
||||||
|
#include <bit>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
#if defined(HAVE_ENDIAN_H)
|
inline BSWAP_CONSTEXPR uint16_t htobe16_internal(uint16_t host_16bits)
|
||||||
#include <endian.h>
|
|
||||||
#elif defined(HAVE_SYS_ENDIAN_H)
|
|
||||||
#include <sys/endian.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef HAVE_CONFIG_H
|
|
||||||
// While not technically a supported configuration, defaulting to defining these
|
|
||||||
// DECLs when we were compiled without autotools makes it easier for other build
|
|
||||||
// systems to build things like libbitcoinconsensus for strange targets.
|
|
||||||
#ifdef htobe16
|
|
||||||
#define HAVE_DECL_HTOBE16 1
|
|
||||||
#endif
|
|
||||||
#ifdef htole16
|
|
||||||
#define HAVE_DECL_HTOLE16 1
|
|
||||||
#endif
|
|
||||||
#ifdef be16toh
|
|
||||||
#define HAVE_DECL_BE16TOH 1
|
|
||||||
#endif
|
|
||||||
#ifdef le16toh
|
|
||||||
#define HAVE_DECL_LE16TOH 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef htobe32
|
|
||||||
#define HAVE_DECL_HTOBE32 1
|
|
||||||
#endif
|
|
||||||
#ifdef htole32
|
|
||||||
#define HAVE_DECL_HTOLE32 1
|
|
||||||
#endif
|
|
||||||
#ifdef be32toh
|
|
||||||
#define HAVE_DECL_BE32TOH 1
|
|
||||||
#endif
|
|
||||||
#ifdef le32toh
|
|
||||||
#define HAVE_DECL_LE32TOH 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef htobe64
|
|
||||||
#define HAVE_DECL_HTOBE64 1
|
|
||||||
#endif
|
|
||||||
#ifdef htole64
|
|
||||||
#define HAVE_DECL_HTOLE64 1
|
|
||||||
#endif
|
|
||||||
#ifdef be64toh
|
|
||||||
#define HAVE_DECL_BE64TOH 1
|
|
||||||
#endif
|
|
||||||
#ifdef le64toh
|
|
||||||
#define HAVE_DECL_LE64TOH 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // HAVE_CONFIG_H
|
|
||||||
|
|
||||||
#if defined(WORDS_BIGENDIAN)
|
|
||||||
|
|
||||||
#if HAVE_DECL_HTOBE16 == 0
|
|
||||||
inline uint16_t htobe16(uint16_t host_16bits)
|
|
||||||
{
|
{
|
||||||
return host_16bits;
|
if constexpr (std::endian::native == std::endian::little) return internal_bswap_16(host_16bits);
|
||||||
|
else return host_16bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_HTOBE16
|
inline BSWAP_CONSTEXPR uint16_t htole16_internal(uint16_t host_16bits)
|
||||||
|
|
||||||
#if HAVE_DECL_HTOLE16 == 0
|
|
||||||
inline uint16_t htole16(uint16_t host_16bits)
|
|
||||||
{
|
{
|
||||||
return internal_bswap_16(host_16bits);
|
if constexpr (std::endian::native == std::endian::big) return internal_bswap_16(host_16bits);
|
||||||
|
else return host_16bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_HTOLE16
|
inline BSWAP_CONSTEXPR uint16_t be16toh_internal(uint16_t big_endian_16bits)
|
||||||
|
|
||||||
#if HAVE_DECL_BE16TOH == 0
|
|
||||||
inline uint16_t be16toh(uint16_t big_endian_16bits)
|
|
||||||
{
|
{
|
||||||
return big_endian_16bits;
|
if constexpr (std::endian::native == std::endian::little) return internal_bswap_16(big_endian_16bits);
|
||||||
|
else return big_endian_16bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_BE16TOH
|
inline BSWAP_CONSTEXPR uint16_t le16toh_internal(uint16_t little_endian_16bits)
|
||||||
|
|
||||||
#if HAVE_DECL_LE16TOH == 0
|
|
||||||
inline uint16_t le16toh(uint16_t little_endian_16bits)
|
|
||||||
{
|
{
|
||||||
return internal_bswap_16(little_endian_16bits);
|
if constexpr (std::endian::native == std::endian::big) return internal_bswap_16(little_endian_16bits);
|
||||||
|
else return little_endian_16bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_LE16TOH
|
inline BSWAP_CONSTEXPR uint32_t htobe32_internal(uint32_t host_32bits)
|
||||||
|
|
||||||
#if HAVE_DECL_HTOBE32 == 0
|
|
||||||
inline uint32_t htobe32(uint32_t host_32bits)
|
|
||||||
{
|
{
|
||||||
return host_32bits;
|
if constexpr (std::endian::native == std::endian::little) return internal_bswap_32(host_32bits);
|
||||||
|
else return host_32bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_HTOBE32
|
inline BSWAP_CONSTEXPR uint32_t htole32_internal(uint32_t host_32bits)
|
||||||
|
|
||||||
#if HAVE_DECL_HTOLE32 == 0
|
|
||||||
inline uint32_t htole32(uint32_t host_32bits)
|
|
||||||
{
|
{
|
||||||
return internal_bswap_32(host_32bits);
|
if constexpr (std::endian::native == std::endian::big) return internal_bswap_32(host_32bits);
|
||||||
|
else return host_32bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_HTOLE32
|
inline BSWAP_CONSTEXPR uint32_t be32toh_internal(uint32_t big_endian_32bits)
|
||||||
|
|
||||||
#if HAVE_DECL_BE32TOH == 0
|
|
||||||
inline uint32_t be32toh(uint32_t big_endian_32bits)
|
|
||||||
{
|
{
|
||||||
return big_endian_32bits;
|
if constexpr (std::endian::native == std::endian::little) return internal_bswap_32(big_endian_32bits);
|
||||||
|
else return big_endian_32bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_BE32TOH
|
inline BSWAP_CONSTEXPR uint32_t le32toh_internal(uint32_t little_endian_32bits)
|
||||||
|
|
||||||
#if HAVE_DECL_LE32TOH == 0
|
|
||||||
inline uint32_t le32toh(uint32_t little_endian_32bits)
|
|
||||||
{
|
{
|
||||||
return internal_bswap_32(little_endian_32bits);
|
if constexpr (std::endian::native == std::endian::big) return internal_bswap_32(little_endian_32bits);
|
||||||
|
else return little_endian_32bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_LE32TOH
|
inline BSWAP_CONSTEXPR uint64_t htobe64_internal(uint64_t host_64bits)
|
||||||
|
|
||||||
#if HAVE_DECL_HTOBE64 == 0
|
|
||||||
inline uint64_t htobe64(uint64_t host_64bits)
|
|
||||||
{
|
{
|
||||||
return host_64bits;
|
if constexpr (std::endian::native == std::endian::little) return internal_bswap_64(host_64bits);
|
||||||
|
else return host_64bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_HTOBE64
|
inline BSWAP_CONSTEXPR uint64_t htole64_internal(uint64_t host_64bits)
|
||||||
|
|
||||||
#if HAVE_DECL_HTOLE64 == 0
|
|
||||||
inline uint64_t htole64(uint64_t host_64bits)
|
|
||||||
{
|
{
|
||||||
return internal_bswap_64(host_64bits);
|
if constexpr (std::endian::native == std::endian::big) return internal_bswap_64(host_64bits);
|
||||||
|
else return host_64bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_HTOLE64
|
inline BSWAP_CONSTEXPR uint64_t be64toh_internal(uint64_t big_endian_64bits)
|
||||||
|
|
||||||
#if HAVE_DECL_BE64TOH == 0
|
|
||||||
inline uint64_t be64toh(uint64_t big_endian_64bits)
|
|
||||||
{
|
{
|
||||||
return big_endian_64bits;
|
if constexpr (std::endian::native == std::endian::little) return internal_bswap_64(big_endian_64bits);
|
||||||
|
else return big_endian_64bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_BE64TOH
|
inline BSWAP_CONSTEXPR uint64_t le64toh_internal(uint64_t little_endian_64bits)
|
||||||
|
|
||||||
#if HAVE_DECL_LE64TOH == 0
|
|
||||||
inline uint64_t le64toh(uint64_t little_endian_64bits)
|
|
||||||
{
|
{
|
||||||
return internal_bswap_64(little_endian_64bits);
|
if constexpr (std::endian::native == std::endian::big) return internal_bswap_64(little_endian_64bits);
|
||||||
|
else return little_endian_64bits;
|
||||||
}
|
}
|
||||||
#endif // HAVE_DECL_LE64TOH
|
|
||||||
|
|
||||||
#else // WORDS_BIGENDIAN
|
|
||||||
|
|
||||||
#if HAVE_DECL_HTOBE16 == 0
|
|
||||||
inline uint16_t htobe16(uint16_t host_16bits)
|
|
||||||
{
|
|
||||||
return internal_bswap_16(host_16bits);
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_HTOBE16
|
|
||||||
|
|
||||||
#if HAVE_DECL_HTOLE16 == 0
|
|
||||||
inline uint16_t htole16(uint16_t host_16bits)
|
|
||||||
{
|
|
||||||
return host_16bits;
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_HTOLE16
|
|
||||||
|
|
||||||
#if HAVE_DECL_BE16TOH == 0
|
|
||||||
inline uint16_t be16toh(uint16_t big_endian_16bits)
|
|
||||||
{
|
|
||||||
return internal_bswap_16(big_endian_16bits);
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_BE16TOH
|
|
||||||
|
|
||||||
#if HAVE_DECL_LE16TOH == 0
|
|
||||||
inline uint16_t le16toh(uint16_t little_endian_16bits)
|
|
||||||
{
|
|
||||||
return little_endian_16bits;
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_LE16TOH
|
|
||||||
|
|
||||||
#if HAVE_DECL_HTOBE32 == 0
|
|
||||||
inline uint32_t htobe32(uint32_t host_32bits)
|
|
||||||
{
|
|
||||||
return internal_bswap_32(host_32bits);
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_HTOBE32
|
|
||||||
|
|
||||||
#if HAVE_DECL_HTOLE32 == 0
|
|
||||||
inline uint32_t htole32(uint32_t host_32bits)
|
|
||||||
{
|
|
||||||
return host_32bits;
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_HTOLE32
|
|
||||||
|
|
||||||
#if HAVE_DECL_BE32TOH == 0
|
|
||||||
inline uint32_t be32toh(uint32_t big_endian_32bits)
|
|
||||||
{
|
|
||||||
return internal_bswap_32(big_endian_32bits);
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_BE32TOH
|
|
||||||
|
|
||||||
#if HAVE_DECL_LE32TOH == 0
|
|
||||||
inline uint32_t le32toh(uint32_t little_endian_32bits)
|
|
||||||
{
|
|
||||||
return little_endian_32bits;
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_LE32TOH
|
|
||||||
|
|
||||||
#if HAVE_DECL_HTOBE64 == 0
|
|
||||||
inline uint64_t htobe64(uint64_t host_64bits)
|
|
||||||
{
|
|
||||||
return internal_bswap_64(host_64bits);
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_HTOBE64
|
|
||||||
|
|
||||||
#if HAVE_DECL_HTOLE64 == 0
|
|
||||||
inline uint64_t htole64(uint64_t host_64bits)
|
|
||||||
{
|
|
||||||
return host_64bits;
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_HTOLE64
|
|
||||||
|
|
||||||
#if HAVE_DECL_BE64TOH == 0
|
|
||||||
inline uint64_t be64toh(uint64_t big_endian_64bits)
|
|
||||||
{
|
|
||||||
return internal_bswap_64(big_endian_64bits);
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_BE64TOH
|
|
||||||
|
|
||||||
#if HAVE_DECL_LE64TOH == 0
|
|
||||||
inline uint64_t le64toh(uint64_t little_endian_64bits)
|
|
||||||
{
|
|
||||||
return little_endian_64bits;
|
|
||||||
}
|
|
||||||
#endif // HAVE_DECL_LE64TOH
|
|
||||||
|
|
||||||
#endif // WORDS_BIGENDIAN
|
|
||||||
|
|
||||||
#endif // BITCOIN_COMPAT_ENDIAN_H
|
#endif // BITCOIN_COMPAT_ENDIAN_H
|
||||||
|
|
|
@ -14,38 +14,38 @@ uint16_t static inline ReadLE16(const unsigned char* ptr)
|
||||||
{
|
{
|
||||||
uint16_t x;
|
uint16_t x;
|
||||||
memcpy(&x, ptr, 2);
|
memcpy(&x, ptr, 2);
|
||||||
return le16toh(x);
|
return le16toh_internal(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t static inline ReadLE32(const unsigned char* ptr)
|
uint32_t static inline ReadLE32(const unsigned char* ptr)
|
||||||
{
|
{
|
||||||
uint32_t x;
|
uint32_t x;
|
||||||
memcpy(&x, ptr, 4);
|
memcpy(&x, ptr, 4);
|
||||||
return le32toh(x);
|
return le32toh_internal(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t static inline ReadLE64(const unsigned char* ptr)
|
uint64_t static inline ReadLE64(const unsigned char* ptr)
|
||||||
{
|
{
|
||||||
uint64_t x;
|
uint64_t x;
|
||||||
memcpy(&x, ptr, 8);
|
memcpy(&x, ptr, 8);
|
||||||
return le64toh(x);
|
return le64toh_internal(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
void static inline WriteLE16(unsigned char* ptr, uint16_t x)
|
void static inline WriteLE16(unsigned char* ptr, uint16_t x)
|
||||||
{
|
{
|
||||||
uint16_t v = htole16(x);
|
uint16_t v = htole16_internal(x);
|
||||||
memcpy(ptr, &v, 2);
|
memcpy(ptr, &v, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void static inline WriteLE32(unsigned char* ptr, uint32_t x)
|
void static inline WriteLE32(unsigned char* ptr, uint32_t x)
|
||||||
{
|
{
|
||||||
uint32_t v = htole32(x);
|
uint32_t v = htole32_internal(x);
|
||||||
memcpy(ptr, &v, 4);
|
memcpy(ptr, &v, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
void static inline WriteLE64(unsigned char* ptr, uint64_t x)
|
void static inline WriteLE64(unsigned char* ptr, uint64_t x)
|
||||||
{
|
{
|
||||||
uint64_t v = htole64(x);
|
uint64_t v = htole64_internal(x);
|
||||||
memcpy(ptr, &v, 8);
|
memcpy(ptr, &v, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,32 +53,32 @@ uint16_t static inline ReadBE16(const unsigned char* ptr)
|
||||||
{
|
{
|
||||||
uint16_t x;
|
uint16_t x;
|
||||||
memcpy(&x, ptr, 2);
|
memcpy(&x, ptr, 2);
|
||||||
return be16toh(x);
|
return be16toh_internal(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t static inline ReadBE32(const unsigned char* ptr)
|
uint32_t static inline ReadBE32(const unsigned char* ptr)
|
||||||
{
|
{
|
||||||
uint32_t x;
|
uint32_t x;
|
||||||
memcpy(&x, ptr, 4);
|
memcpy(&x, ptr, 4);
|
||||||
return be32toh(x);
|
return be32toh_internal(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t static inline ReadBE64(const unsigned char* ptr)
|
uint64_t static inline ReadBE64(const unsigned char* ptr)
|
||||||
{
|
{
|
||||||
uint64_t x;
|
uint64_t x;
|
||||||
memcpy(&x, ptr, 8);
|
memcpy(&x, ptr, 8);
|
||||||
return be64toh(x);
|
return be64toh_internal(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
void static inline WriteBE32(unsigned char* ptr, uint32_t x)
|
void static inline WriteBE32(unsigned char* ptr, uint32_t x)
|
||||||
{
|
{
|
||||||
uint32_t v = htobe32(x);
|
uint32_t v = htobe32_internal(x);
|
||||||
memcpy(ptr, &v, 4);
|
memcpy(ptr, &v, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
void static inline WriteBE64(unsigned char* ptr, uint64_t x)
|
void static inline WriteBE64(unsigned char* ptr, uint64_t x)
|
||||||
{
|
{
|
||||||
uint64_t v = htobe64(x);
|
uint64_t v = htobe64_internal(x);
|
||||||
memcpy(ptr, &v, 8);
|
memcpy(ptr, &v, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -392,7 +392,7 @@ Binary Session::MyDestination() const
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(&cert_len, &m_private_key.at(CERT_LEN_POS), sizeof(cert_len));
|
memcpy(&cert_len, &m_private_key.at(CERT_LEN_POS), sizeof(cert_len));
|
||||||
cert_len = be16toh(cert_len);
|
cert_len = be16toh_internal(cert_len);
|
||||||
|
|
||||||
const size_t dest_len = DEST_LEN_BASE + cert_len;
|
const size_t dest_len = DEST_LEN_BASE + cert_len;
|
||||||
|
|
||||||
|
|
|
@ -60,27 +60,27 @@ template<typename Stream> inline void ser_writedata8(Stream &s, uint8_t obj)
|
||||||
}
|
}
|
||||||
template<typename Stream> inline void ser_writedata16(Stream &s, uint16_t obj)
|
template<typename Stream> inline void ser_writedata16(Stream &s, uint16_t obj)
|
||||||
{
|
{
|
||||||
obj = htole16(obj);
|
obj = htole16_internal(obj);
|
||||||
s.write(AsBytes(Span{&obj, 1}));
|
s.write(AsBytes(Span{&obj, 1}));
|
||||||
}
|
}
|
||||||
template<typename Stream> inline void ser_writedata16be(Stream &s, uint16_t obj)
|
template<typename Stream> inline void ser_writedata16be(Stream &s, uint16_t obj)
|
||||||
{
|
{
|
||||||
obj = htobe16(obj);
|
obj = htobe16_internal(obj);
|
||||||
s.write(AsBytes(Span{&obj, 1}));
|
s.write(AsBytes(Span{&obj, 1}));
|
||||||
}
|
}
|
||||||
template<typename Stream> inline void ser_writedata32(Stream &s, uint32_t obj)
|
template<typename Stream> inline void ser_writedata32(Stream &s, uint32_t obj)
|
||||||
{
|
{
|
||||||
obj = htole32(obj);
|
obj = htole32_internal(obj);
|
||||||
s.write(AsBytes(Span{&obj, 1}));
|
s.write(AsBytes(Span{&obj, 1}));
|
||||||
}
|
}
|
||||||
template<typename Stream> inline void ser_writedata32be(Stream &s, uint32_t obj)
|
template<typename Stream> inline void ser_writedata32be(Stream &s, uint32_t obj)
|
||||||
{
|
{
|
||||||
obj = htobe32(obj);
|
obj = htobe32_internal(obj);
|
||||||
s.write(AsBytes(Span{&obj, 1}));
|
s.write(AsBytes(Span{&obj, 1}));
|
||||||
}
|
}
|
||||||
template<typename Stream> inline void ser_writedata64(Stream &s, uint64_t obj)
|
template<typename Stream> inline void ser_writedata64(Stream &s, uint64_t obj)
|
||||||
{
|
{
|
||||||
obj = htole64(obj);
|
obj = htole64_internal(obj);
|
||||||
s.write(AsBytes(Span{&obj, 1}));
|
s.write(AsBytes(Span{&obj, 1}));
|
||||||
}
|
}
|
||||||
template<typename Stream> inline uint8_t ser_readdata8(Stream &s)
|
template<typename Stream> inline uint8_t ser_readdata8(Stream &s)
|
||||||
|
@ -93,31 +93,31 @@ template<typename Stream> inline uint16_t ser_readdata16(Stream &s)
|
||||||
{
|
{
|
||||||
uint16_t obj;
|
uint16_t obj;
|
||||||
s.read(AsWritableBytes(Span{&obj, 1}));
|
s.read(AsWritableBytes(Span{&obj, 1}));
|
||||||
return le16toh(obj);
|
return le16toh_internal(obj);
|
||||||
}
|
}
|
||||||
template<typename Stream> inline uint16_t ser_readdata16be(Stream &s)
|
template<typename Stream> inline uint16_t ser_readdata16be(Stream &s)
|
||||||
{
|
{
|
||||||
uint16_t obj;
|
uint16_t obj;
|
||||||
s.read(AsWritableBytes(Span{&obj, 1}));
|
s.read(AsWritableBytes(Span{&obj, 1}));
|
||||||
return be16toh(obj);
|
return be16toh_internal(obj);
|
||||||
}
|
}
|
||||||
template<typename Stream> inline uint32_t ser_readdata32(Stream &s)
|
template<typename Stream> inline uint32_t ser_readdata32(Stream &s)
|
||||||
{
|
{
|
||||||
uint32_t obj;
|
uint32_t obj;
|
||||||
s.read(AsWritableBytes(Span{&obj, 1}));
|
s.read(AsWritableBytes(Span{&obj, 1}));
|
||||||
return le32toh(obj);
|
return le32toh_internal(obj);
|
||||||
}
|
}
|
||||||
template<typename Stream> inline uint32_t ser_readdata32be(Stream &s)
|
template<typename Stream> inline uint32_t ser_readdata32be(Stream &s)
|
||||||
{
|
{
|
||||||
uint32_t obj;
|
uint32_t obj;
|
||||||
s.read(AsWritableBytes(Span{&obj, 1}));
|
s.read(AsWritableBytes(Span{&obj, 1}));
|
||||||
return be32toh(obj);
|
return be32toh_internal(obj);
|
||||||
}
|
}
|
||||||
template<typename Stream> inline uint64_t ser_readdata64(Stream &s)
|
template<typename Stream> inline uint64_t ser_readdata64(Stream &s)
|
||||||
{
|
{
|
||||||
uint64_t obj;
|
uint64_t obj;
|
||||||
s.read(AsWritableBytes(Span{&obj, 1}));
|
s.read(AsWritableBytes(Span{&obj, 1}));
|
||||||
return le64toh(obj);
|
return le64toh_internal(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -548,10 +548,10 @@ struct CustomUintFormatter
|
||||||
{
|
{
|
||||||
if (v < 0 || v > MAX) throw std::ios_base::failure("CustomUintFormatter value out of range");
|
if (v < 0 || v > MAX) throw std::ios_base::failure("CustomUintFormatter value out of range");
|
||||||
if (BigEndian) {
|
if (BigEndian) {
|
||||||
uint64_t raw = htobe64(v);
|
uint64_t raw = htobe64_internal(v);
|
||||||
s.write(AsBytes(Span{&raw, 1}).last(Bytes));
|
s.write(AsBytes(Span{&raw, 1}).last(Bytes));
|
||||||
} else {
|
} else {
|
||||||
uint64_t raw = htole64(v);
|
uint64_t raw = htole64_internal(v);
|
||||||
s.write(AsBytes(Span{&raw, 1}).first(Bytes));
|
s.write(AsBytes(Span{&raw, 1}).first(Bytes));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -563,10 +563,10 @@ struct CustomUintFormatter
|
||||||
uint64_t raw = 0;
|
uint64_t raw = 0;
|
||||||
if (BigEndian) {
|
if (BigEndian) {
|
||||||
s.read(AsWritableBytes(Span{&raw, 1}).last(Bytes));
|
s.read(AsWritableBytes(Span{&raw, 1}).last(Bytes));
|
||||||
v = static_cast<I>(be64toh(raw));
|
v = static_cast<I>(be64toh_internal(raw));
|
||||||
} else {
|
} else {
|
||||||
s.read(AsWritableBytes(Span{&raw, 1}).first(Bytes));
|
s.read(AsWritableBytes(Span{&raw, 1}).first(Bytes));
|
||||||
v = static_cast<I>(le64toh(raw));
|
v = static_cast<I>(le64toh_internal(raw));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue