CppWAMP
C++11 client library for the WAMP protocol
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
rawsockhandshake.hpp
1 /*------------------------------------------------------------------------------
2  Copyright Butterfly Energy Systems 2014-2015.
3  Distributed under the Boost Software License, Version 1.0.
4  http://www.boost.org/LICENSE_1_0.txt
5 ------------------------------------------------------------------------------*/
6 
7 #ifndef CPPWAMP_INTERNAL_RAWSOCKHANDSHAKE_HPP
8 #define CPPWAMP_INTERNAL_RAWSOCKHANDSHAKE_HPP
9 
10 #include <cassert>
11 #include <cstdint>
12 #include <string>
13 #include "../error.hpp"
14 #include "../rawsockoptions.hpp"
15 #include "endian.hpp"
16 
17 namespace wamp
18 {
19 
20 namespace internal
21 {
22 
23 //------------------------------------------------------------------------------
24 class RawsockHandshake
25 {
26 public:
27  static size_t byteLengthOf(RawsockMaxLength len)
28  {return 1u << ((int)len + 9);}
29 
30  static RawsockHandshake fromBigEndian(uint32_t big)
31  {return RawsockHandshake(endian::bigToNative32(big));}
32 
33  static RawsockHandshake eUnsupportedFormat()
34  {return RawsockHandshake(0x7f100000);}
35 
36  static RawsockHandshake eUnacceptableLength()
37  {return RawsockHandshake(0x7f200000);}
38 
39  static RawsockHandshake eReservedBitsUsed()
40  {return RawsockHandshake(0x7f300000);}
41 
42  static RawsockHandshake eMaxConnections()
43  {return RawsockHandshake(0x7f400000);}
44 
45  RawsockHandshake() : hs_(magicOctet_) {}
46 
47  explicit RawsockHandshake(uint32_t hostOrder) : hs_(hostOrder) {}
48 
49  uint16_t reserved() const {return get<uint16_t>(reservedMask_);}
50 
51  int codecId() const
52  {return get<int>(codecMask_, codecPos_);}
53 
54  RawsockMaxLength maxLength() const
55  {return get<RawsockMaxLength>(lengthMask_, lengthPos_);}
56 
57  size_t maxLengthInBytes() const {return byteLengthOf(maxLength());}
58 
59  bool hasError() const {return get<>(codecMask_) == 0;}
60 
61  RawsockErrc errorCode() const
62  {
63  return get<RawsockErrc>(errorMask_, errorPos_);
64  }
65 
66  bool hasMagicOctet() const {return get<>(magicMask_) == magicOctet_;}
67 
68  uint32_t toBigEndian() const {return endian::nativeToBig32(hs_);}
69 
70  uint32_t toHostOrder() const {return hs_;}
71 
72  RawsockHandshake& setCodecId(int codecId)
73  {return put(codecId, codecPos_);}
74 
75  RawsockHandshake& setMaxLength(RawsockMaxLength length)
76  {return put(length, lengthPos_);}
77 
78 private:
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;
89 
90  template <typename T = uint32_t>
91  T get(uint32_t mask, int pos = 0) const
92  {return static_cast<T>((hs_ & mask) >> pos);}
93 
94  template <typename T>
95  RawsockHandshake& put(T value, int pos = 0)
96  {hs_ |= (static_cast<uint32_t>(value) << pos); return *this;}
97 
98  uint32_t hs_;
99 };
100 
101 } // namespace internal
102 
103 } // namespace wamp
104 
105 #endif // CPPWAMP_INTERNAL_RAWSOCKHANDSHAKE_HPP
wamp
Definition: anyhandler.hpp:36
wamp::RawsockErrc
RawsockErrc
Error code values used with the RawsockCategory error category.
Definition: error.hpp:426
wamp::RawsockMaxLength
RawsockMaxLength
Enumerators used to specify the maximum length of messages that a raw socket transport can receive.
Definition: rawsockoptions.hpp:22