7 #ifndef CPPWAMP_INTERNAL_RAWSOCKHANDSHAKE_HPP
8 #define CPPWAMP_INTERNAL_RAWSOCKHANDSHAKE_HPP
13 #include "../error.hpp"
14 #include "../rawsockoptions.hpp"
24 class RawsockHandshake
28 {
return 1u << ((int)len + 9);}
30 static RawsockHandshake fromBigEndian(uint32_t big)
31 {
return RawsockHandshake(endian::bigToNative32(big));}
33 static RawsockHandshake eUnsupportedFormat()
34 {
return RawsockHandshake(0x7f100000);}
36 static RawsockHandshake eUnacceptableLength()
37 {
return RawsockHandshake(0x7f200000);}
39 static RawsockHandshake eReservedBitsUsed()
40 {
return RawsockHandshake(0x7f300000);}
42 static RawsockHandshake eMaxConnections()
43 {
return RawsockHandshake(0x7f400000);}
45 RawsockHandshake() : hs_(magicOctet_) {}
47 explicit RawsockHandshake(uint32_t hostOrder) : hs_(hostOrder) {}
49 uint16_t reserved()
const {
return get<uint16_t>(reservedMask_);}
52 {
return get<int>(codecMask_, codecPos_);}
55 {
return get<RawsockMaxLength>(lengthMask_, lengthPos_);}
57 size_t maxLengthInBytes()
const {
return byteLengthOf(maxLength());}
59 bool hasError()
const {
return get<>(codecMask_) == 0;}
63 return get<RawsockErrc>(errorMask_, errorPos_);
66 bool hasMagicOctet()
const {
return get<>(magicMask_) == magicOctet_;}
68 uint32_t toBigEndian()
const {
return endian::nativeToBig32(hs_);}
70 uint32_t toHostOrder()
const {
return hs_;}
72 RawsockHandshake& setCodecId(
int codecId)
73 {
return put(codecId, codecPos_);}
76 {
return put(length, lengthPos_);}
79 static constexpr uint32_t reservedMask_ = 0x0000ffff;
80 static constexpr uint32_t codecMask_ = 0x000f0000;
81 static constexpr uint32_t lengthMask_ = 0x00f00000;
82 static constexpr uint32_t errorMask_ = 0x00f00000;
83 static constexpr uint32_t magicMask_ = 0xff000000;
84 static constexpr uint32_t magicOctet_ = 0x7f000000;
85 static constexpr
int byteLengthPos_ = 9;
86 static constexpr
int codecPos_ = 16;
87 static constexpr
int lengthPos_ = 20;
88 static constexpr
int errorPos_ = 20;
90 template <
typename T = u
int32_t>
91 T get(uint32_t mask,
int pos = 0)
const
92 {
return static_cast<T
>((hs_ & mask) >> pos);}
95 RawsockHandshake& put(T value,
int pos = 0)
96 {hs_ |= (
static_cast<uint32_t
>(value) << pos);
return *
this;}
105 #endif // CPPWAMP_INTERNAL_RAWSOCKHANDSHAKE_HPP