c++ の独創的なバイト エンコーディング変換設計

空き時間にいくつかのプログラムを作成します。ホスト バイト オーダーとネットワーク バイト オーダーの間の変換など、いくつかのバイト変換関数を c++ を使用して設計したいと考えています。 envoy の設計を参照してください。

Envoy のデザインは本当に独創的であることがわかりました。ここに記録します。

envoy でのバイト変換は、主に Linux のヘッダー ファイルに依存します。

#include <endian.h>

このヘッダーファイルは Mac には存在しません、envoy は巧妙に互換性を作りました

#ifdef __APPLE__

#include <libkern/OSByteOrder.h>

#define htole16(x) OSSwapHostToLittleInt16((x))
#define htole32(x) OSSwapHostToLittleInt32((x))
#define htole64(x) OSSwapHostToLittleInt64((x))
#define le16toh(x) OSSwapLittleToHostInt16((x))
#define le32toh(x) OSSwapLittleToHostInt32((x))
#define le64toh(x) OSSwapLittleToHostInt64((x))

#define htobe16(x) OSSwapHostToBigInt16((x))
#define htobe32(x) OSSwapHostToBigInt32((x))
#define htobe64(x) OSSwapHostToBigInt64((x))
#define be16toh(x) OSSwapBigToHostInt16((x))
#define be32toh(x) OSSwapBigToHostInt32((x))
#define be64toh(x) OSSwapBigToHostInt64((x))

#else

#include <endian.h>

#endif

エンコード タイプを定義します。

ビッグ エンディアン、リトル エンディアン、ホスト バイト順

enum class ByteOrder { Host, LittleEndian, BigEndian };

変換関数を定義する

// convenience function that converts an integer from host byte-order to a specified endianness
template <ByteOrder Endianness, typename T> inline T toEndianness(T value) {
return EndiannessConverter<Endianness, T>::to(value);
}


// convenience function that converts an integer from a specified endianness to host byte-order
template <ByteOrder Endianness, typename T> inline T fromEndianness(T value) {
return EndiannessConverter<Endianness, T>::from(value);
}
toEndianness は、ホストのバイト オーダーを対応するエンコーディングに変換することです。
fromEndianness は、異なるエンコーディングをホスト バイト オーダーに変換することです。

::from ::to はさまざまなタイプの変数を渡すため、次のテンプレートがトリガーされます


// Implementation details below

// implementation details of EndiannessConverter for 8-bit host endianness integers
template <typename T> struct EndiannessConverter<ByteOrder::Host, T, sizeof(uint8_t)> {
    static_assert(sizeof(T) == sizeof(uint8_t), "incorrect type width");

    static T to(T value) { return value; }

    static T from(T value) { return value; }
};

// implementation details of EndiannessConverter for 16-bit host endianness integers
template <typename T> struct EndiannessConverter<ByteOrder::Host, T, sizeof(uint16_t)> {
    static_assert(sizeof(T) == sizeof(uint16_t), "incorrect type width");

    static T to(T value) { return value; }

    static T from(T value) { return value; }
};

// implementation details of EndiannessConverter for 32-bit host endianness integers
template <typename T> struct EndiannessConverter<ByteOrder::Host, T, sizeof(uint32_t)> {
    static_assert(sizeof(T) == sizeof(uint32_t), "incorrect type width");

    static T to(T value) { return value; }

    static T from(T value) { return value; }
};

// implementation details of EndiannessConverter for 64-bit host endianness integers
template <typename T> struct EndiannessConverter<ByteOrder::Host, T, sizeof(uint64_t)> {
    static_assert(sizeof(T) == sizeof(uint64_t), "incorrect type width");

    static T to(T value) { return value; }

    static T from(T value) { return value; }
};

// implementation details of EndiannessConverter for 8-bit little endian integers
template <typename T> struct EndiannessConverter<ByteOrder::LittleEndian, T, sizeof(uint8_t)> {
    static_assert(sizeof(T) == sizeof(uint8_t), "incorrect type width");

    static T to(T value) { return value; }

    static T from(T value) { return value; }
};

// implementation details of EndiannessConverter for 16-bit little endian integers
template <typename T> struct EndiannessConverter<ByteOrder::LittleEndian, T, sizeof(uint16_t)> {
    static_assert(sizeof(T) == sizeof(uint16_t), "incorrect type width");

    static T to(T value) { return static_cast<T>(htole16(static_cast<uint16_t>(value))); }

    static T from(T value) { return static_cast<T>(le16toh(static_cast<uint16_t>(value))); }
};

// implementation details of EndiannessConverter for 32-bit little endian integers
template <typename T> struct EndiannessConverter<ByteOrder::LittleEndian, T, sizeof(uint32_t)> {
    static_assert(sizeof(T) == sizeof(uint32_t), "incorrect type width");

    static T to(T value) { return static_cast<T>(htole32(static_cast<uint32_t>(value))); }

    static T from(T value) { return static_cast<T>(le32toh(static_cast<uint32_t>(value))); }
};

// implementation details of EndiannessConverter for 64-bit little endian integers
template <typename T> struct EndiannessConverter<ByteOrder::LittleEndian, T, sizeof(uint64_t)> {
    static_assert(sizeof(T) == sizeof(uint64_t), "incorrect type width");

    static T to(T value) { return static_cast<T>(htole64(static_cast<uint64_t>(value))); }

    static T from(T value) { return static_cast<T>(le64toh(static_cast<uint64_t>(value))); }
};

// implementation details of EndiannessConverter for 8-bit big endian integers
template <typename T> struct EndiannessConverter<ByteOrder::BigEndian, T, sizeof(uint8_t)> {
    static_assert(sizeof(T) == sizeof(uint8_t), "incorrect type width");

    static T to(T value) { return value; }

    static T from(T value) { return value; }
};

// implementation details of EndiannessConverter for 16-bit big endian integers
template <typename T> struct EndiannessConverter<ByteOrder::BigEndian, T, sizeof(uint16_t)> {
    static_assert(sizeof(T) == sizeof(uint16_t), "incorrect type width");

    static T to(T value) { return static_cast<T>(htobe16(static_cast<uint16_t>(value))); }

    static T from(T value) { return static_cast<T>(be16toh(static_cast<uint16_t>(value))); }
};

// implementation details of EndiannessConverter for 32-bit big endian integers
template <typename T> struct EndiannessConverter<ByteOrder::BigEndian, T, sizeof(uint32_t)> {
    static_assert(sizeof(T) == sizeof(uint32_t), "incorrect type width");

    static T to(T value) { return static_cast<T>(htobe32(static_cast<uint32_t>(value))); }

    static T from(T value) { return static_cast<T>(be32toh(static_cast<uint32_t>(value))); }
};

// implementation details of EndiannessConverter for 64-bit big endian integers
template <typename T> struct EndiannessConverter<ByteOrder::BigEndian, T, sizeof(uint64_t)> {
    static_assert(sizeof(T) == sizeof(uint64_t), "incorrect type width");

    static T to(T value) { return static_cast<T>(htobe64(static_cast<uint64_t>(value))); }

    static T from(T value) { return static_cast<T>(be64toh(static_cast<uint64_t>(value))); }
};

設計は非常に独創的で、大きなエンディアンと小さなエンディアンの変換を簡単に行うことができます。これは、c でマクロ定義を記述するよりもはるかに簡単です。

おすすめ

転載: blog.csdn.net/qq_32783703/article/details/127505403