msgpack11.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <vector>
5 #include <map>
6 #include <memory>
7 #include <initializer_list>
8 #include <istream>
9 #include <ostream>
10 #include <sstream>
11 
12 
13 #ifdef _MSC_VER
14  #if _MSC_VER <= 1800 // VS 2013
15  #ifndef noexcept
16  #define noexcept throw()
17  #endif
18 
19  #ifndef snprintf
20  #define snprintf _snprintf_s
21  #endif
22  #endif
23 #endif
24 
25 namespace msgpack11 {
26 
27 class MsgPackValue;
28 
29 class MsgPack final {
30 public:
31  // Types
32  // NB: all ints are numbers but not all numbers are ints.
33  enum Type {
34  NUMBER = 1,
35  INT = 2 | NUMBER,
36  NUL = 1 << 2,
37  FLOAT32 = 2 << 2 | NUMBER,
38  FLOAT64 = 3 << 2 | NUMBER,
39  INT8 = 4 << 2 | INT,
40  INT16 = 5 << 2 | INT,
41  INT32 = 6 << 2 | INT,
42  INT64 = 7 << 2 | INT,
43  UINT8 = 8 << 2 | INT,
44  UINT16 = 9 << 2 | INT,
45  UINT32 = 10 << 2 | INT,
46  UINT64 = 11 << 2 | INT,
47  BOOL = 12 << 2,
48  STRING = 13 << 2,
49  BINARY = 14 << 2,
50  ARRAY = 15 << 2,
51  OBJECT = 16 << 2,
52  EXTENSION = 17 << 2
53  };
54 
55  // Array and object typedefs
56  typedef std::vector<MsgPack> array;
57  typedef std::map<MsgPack, MsgPack> object;
58 
59  // Binary and extension typedefs
60  typedef std::vector<uint8_t> binary;
61  typedef std::tuple<int8_t, binary> extension;
62 
63  // Constructors for the various types of JSON value.
64  MsgPack() noexcept; // NUL
65  MsgPack(std::nullptr_t) noexcept; // NUL
66  MsgPack(float value); // FLOAT32
67  MsgPack(double value); // FLOAT64
68  MsgPack(int8_t value); // INT8
69  MsgPack(int16_t value); // INT16
70  MsgPack(int32_t value); // INT32
71  MsgPack(int64_t value); // INT64
72  MsgPack(uint8_t value); // UINT8
73  MsgPack(uint16_t value); // UINT16
74  MsgPack(uint32_t value); // UINT32
75  MsgPack(uint64_t value); // UINT64
76  MsgPack(bool value); // BOOL
77  MsgPack(const std::string &value); // STRING
78  MsgPack(std::string &&value); // STRING
79  MsgPack(const char * value); // STRING
80  MsgPack(const array &values); // ARRAY
81  MsgPack(array &&values); // ARRAY
82  MsgPack(const object &values); // OBJECT
83  MsgPack(object &&values); // OBJECT
84  MsgPack(const binary &values); // BINARY
85  MsgPack(binary &&values); // BINARY
86  MsgPack(const extension &values); // EXTENSION
87  MsgPack(extension &&values); // EXTENSION
88 
89  // Implicit constructor: anything with a to_msgpack() function.
90  template <class T, class = decltype(&T::to_msgpack)>
91  MsgPack(const T & t) : MsgPack(t.to_msgpack()) {}
92 
93  // Implicit constructor: map-like objects (std::map, std::unordered_map, etc)
94  template <class M, typename std::enable_if<
95  std::is_constructible<MsgPack, typename M::key_type>::value
96  && std::is_constructible<MsgPack, typename M::mapped_type>::value,
97  int>::type = 0>
98  MsgPack(const M & m) : MsgPack(object(m.begin(), m.end())) {}
99 
100  // Implicit constructor: vector-like objects (std::list, std::vector, std::set, etc)
101  template <class V, typename std::enable_if<
102  std::is_constructible<MsgPack, typename V::value_type>::value &&
103  !std::is_same<typename binary::value_type, typename V::value_type>::value,
104  int>::type = 0>
105  MsgPack(const V & v) : MsgPack(array(v.begin(), v.end())) {}
106 
107  template <class V, typename std::enable_if<
108  std::is_constructible<MsgPack, typename V::value_type>::value &&
109  std::is_same<typename binary::value_type, typename V::value_type>::value,
110  int>::type = 0>
111  MsgPack(const V & v) : MsgPack(binary(v.begin(), v.end())) {}
112 
113  // This prevents MsgPack(some_pointer) from accidentally producing a bool. Use
114  // MsgPack(bool(some_pointer)) if that behavior is desired.
115  MsgPack(void *) = delete;
116 
117  // Accessors
118  Type type() const;
119 
120  bool is_null() const { return type() == NUL; }
121  bool is_bool() const { return type() == BOOL; }
122  bool is_number() const { return type() & NUMBER; }
123  bool is_float32() const { return type() == FLOAT32; }
124  bool is_float64() const { return type() == FLOAT64; }
125  bool is_int() const { return (type() & INT) == INT; }
126  bool is_int8() const { return type() == INT8; }
127  bool is_int16() const { return type() == INT16; }
128  bool is_int32() const { return type() == INT32; }
129  bool is_int64() const { return type() == INT64; }
130  bool is_uint8() const { return type() == UINT8; }
131  bool is_uint16() const { return type() == UINT16; }
132  bool is_uint32() const { return type() == UINT32; }
133  bool is_uint64() const { return type() == UINT64; }
134  bool is_string() const { return type() == STRING; }
135  bool is_array() const { return type() == ARRAY; }
136  bool is_binary() const { return type() == BINARY; }
137  bool is_object() const { return type() == OBJECT; }
138  bool is_extension() const { return type() == EXTENSION; }
139 
140  // Return the enclosed value if this is a number, 0 otherwise. Note that msgpack11 does not
141  // distinguish between integer and non-integer numbers - number_value() and int_value()
142  // can both be applied to a NUMBER-typed object.
143  double number_value() const;
144  float float32_value() const;
145  double float64_value() const;
146  int32_t int_value() const;
147  int8_t int8_value() const;
148  int16_t int16_value() const;
149  int32_t int32_value() const;
150  int64_t int64_value() const;
151  uint8_t uint8_value() const;
152  uint16_t uint16_value() const;
153  uint32_t uint32_value() const;
154  uint64_t uint64_value() const;
155 
156  // Return the enclosed value if this is a boolean, false otherwise.
157  bool bool_value() const;
158  // Return the enclosed string if this is a string, "" otherwise.
159  const std::string &string_value() const;
160  // Return the enclosed std::vector if this is an array, or an empty vector otherwise.
161  const array &array_items() const;
162  // Return the enclosed std::map if this is an object, or an empty map otherwise.
163  const object &object_items() const;
164  // Return the enclosed std::vector if this is an binary, or an empty map otherwise.
165  const binary &binary_items() const;
166  // Return the enclosed std::tuple if this is an extension, or an empty map otherwise.
167  const extension &extension_items() const;
168 
169  // Return a reference to arr[i] if this is an array, MsgPack() otherwise.
170  const MsgPack & operator[](size_t i) const;
171  // Return a reference to obj[key] if this is an object, MsgPack() otherwise.
172  const MsgPack & operator[](const std::string &key) const;
173 
174  // Serialize.
175  void dump(std::string &out) const {
176  std::stringstream ss;
177  ss << *this;
178  out = ss.str();
179  }
180 
181  std::string dump() const {
182  std::stringstream ss;
183  ss << *this;
184  return ss.str();
185  }
186 
187  friend std::ostream& operator<<(std::ostream& os, const MsgPack& msgpack);
188  // Parse. If parse fails, set msgpack to MsgPack() and
189  // sets failbit on stream.
190  friend std::istream& operator>>(std::istream& is, MsgPack& msgpack);
191 
192  // Parse. If parse fails, return MsgPack() and assign
193  // an error message to err.
194  static MsgPack parse(const std::string & in, std::string & err);
195  // Parse. If parse fails, return MsgPack(), sets failbit on stream and and
196  // assign an error message to err.
197  static MsgPack parse(std::istream& is, std::string &err);
198  // Parse (without the need to default initialise object first).
199  // If parse fails, return MsgPack() and sets failbit on stream.
200  static MsgPack parse(std::istream& is);
201  static MsgPack parse(const char * in, size_t len, std::string & err) {
202  if (in) {
203  return parse(std::string(in,in+len), err);
204  } else {
205  err = "null input";
206  return nullptr;
207  }
208  }
209  // Parse multiple objects, concatenated or separated by whitespace
210  static std::vector<MsgPack> parse_multi(
211  const std::string & in,
212  std::string::size_type & parser_stop_pos,
213  std::string & err);
214 
215  static inline std::vector<MsgPack> parse_multi(
216  const std::string & in,
217  std::string & err) {
218  std::string::size_type parser_stop_pos;
219  return parse_multi(in, parser_stop_pos, err);
220  }
221 
222  bool operator== (const MsgPack &rhs) const;
223  bool operator< (const MsgPack &rhs) const;
224  bool operator!= (const MsgPack &rhs) const { return !(*this == rhs); }
225  bool operator<= (const MsgPack &rhs) const { return !(rhs < *this); }
226  bool operator> (const MsgPack &rhs) const { return (rhs < *this); }
227  bool operator>= (const MsgPack &rhs) const { return !(*this < rhs); }
228 
229  /* has_shape(types, err)
230  *
231  * Return true if this is a JSON object and, for each item in types, has a field of
232  * the given type. If not, return false and set err to a descriptive message.
233  */
234  typedef std::initializer_list<std::pair<std::string, Type>> shape;
235  bool has_shape(const shape & types, std::string & err) const;
236 
237 private:
238  std::shared_ptr<MsgPackValue> m_ptr;
239 };
240 
241 } // namespace msgpack11
msgpack11::MsgPack::int64_value
int64_t int64_value() const
Definition: msgpack11.cpp:736
msgpack11::MsgPack::shape
std::initializer_list< std::pair< std::string, Type > > shape
Definition: msgpack11.hpp:234
msgpack11::MsgPack::is_number
bool is_number() const
Definition: msgpack11.hpp:122
UINT16
uint16_t UINT16
Definition: BasicDatatypes.hpp:73
msgpack11::MsgPack::string_value
const std::string & string_value() const
Definition: msgpack11.cpp:742
msgpack11
Definition: msgpack11.cpp:16
UINT8
uint8_t UINT8
Definition: BasicDatatypes.hpp:75
msgpack11::MsgPack::UINT16
@ UINT16
Definition: msgpack11.hpp:44
msgpack11::MsgPack::dump
std::string dump() const
Definition: msgpack11.hpp:181
msgpack11::MsgPack::uint16_value
uint16_t uint16_value() const
Definition: msgpack11.cpp:738
msgpack11::MsgPack::Type
Type
Definition: msgpack11.hpp:33
msgpack11::MsgPack::int8_value
int8_t int8_value() const
Definition: msgpack11.cpp:733
msgpack11::MsgPack::STRING
@ STRING
Definition: msgpack11.hpp:48
const
#define const
Definition: getopt.c:38
INT16
int16_t INT16
Definition: BasicDatatypes.hpp:74
msgpack11::MsgPack::parse_multi
static std::vector< MsgPack > parse_multi(const std::string &in, std::string &err)
Definition: msgpack11.hpp:215
msgpack11::MsgPack::UINT64
@ UINT64
Definition: msgpack11.hpp:46
msgpack11::MsgPack::operator==
bool operator==(const MsgPack &rhs) const
Definition: msgpack11.cpp:784
msgpack11::MsgPack::MsgPack
MsgPack(const V &v)
Definition: msgpack11.hpp:105
msgpack11::MsgPack::INT32
@ INT32
Definition: msgpack11.hpp:41
msgpack11::MsgPack::extension
std::tuple< int8_t, binary > extension
Definition: msgpack11.hpp:61
msgpack11::MsgPack::uint32_value
uint32_t uint32_value() const
Definition: msgpack11.cpp:739
msgpack11::MsgPack::float32_value
float float32_value() const
Definition: msgpack11.cpp:730
msgpack11::MsgPack::operator>
bool operator>(const MsgPack &rhs) const
Definition: msgpack11.hpp:226
msgpack11::MsgPack::int16_value
int16_t int16_value() const
Definition: msgpack11.cpp:734
msgpack11::MsgPack::BINARY
@ BINARY
Definition: msgpack11.hpp:49
msgpack11::MsgPack::number_value
double number_value() const
Definition: msgpack11.cpp:729
msgpack11::MsgPack::int_value
int32_t int_value() const
Definition: msgpack11.cpp:732
msgpack11::MsgPack::is_array
bool is_array() const
Definition: msgpack11.hpp:135
msgpack11::MsgPack::parse
static MsgPack parse(const std::string &in, std::string &err)
msgpack11::MsgPack::float64_value
double float64_value() const
Definition: msgpack11.cpp:731
INT8
int8_t INT8
Definition: BasicDatatypes.hpp:76
msgpack11::MsgPack::UINT8
@ UINT8
Definition: msgpack11.hpp:43
msgpack11::MsgPack::is_binary
bool is_binary() const
Definition: msgpack11.hpp:136
msgpack11::MsgPack::is_uint8
bool is_uint8() const
Definition: msgpack11.hpp:130
msgpack11::MsgPack::operator<=
bool operator<=(const MsgPack &rhs) const
Definition: msgpack11.hpp:225
msgpack11::MsgPack::UINT32
@ UINT32
Definition: msgpack11.hpp:45
INT32
int32_t INT32
Definition: BasicDatatypes.hpp:71
msgpack11::MsgPack::dump
void dump(std::string &out) const
Definition: msgpack11.hpp:175
msgpack11::MsgPack::binary
std::vector< uint8_t > binary
Definition: msgpack11.hpp:60
msgpack11::MsgPack::uint8_value
uint8_t uint8_value() const
Definition: msgpack11.cpp:737
msgpack11::MsgPack::is_object
bool is_object() const
Definition: msgpack11.hpp:137
msgpack11::MsgPack::is_float32
bool is_float32() const
Definition: msgpack11.hpp:123
msgpack11::MsgPack::INT
@ INT
Definition: msgpack11.hpp:35
msgpack11::MsgPack::bool_value
bool bool_value() const
Definition: msgpack11.cpp:741
msgpack11::MsgPack::is_int16
bool is_int16() const
Definition: msgpack11.hpp:127
msgpack11::MsgPack::is_float64
bool is_float64() const
Definition: msgpack11.hpp:124
UINT64
uint64_t UINT64
Definition: BasicDatatypes.hpp:70
msgpack11::MsgPack::INT8
@ INT8
Definition: msgpack11.hpp:39
msgpack11::MsgPack::BOOL
@ BOOL
Definition: msgpack11.hpp:47
msgpack11::MsgPack::parse
static MsgPack parse(const char *in, size_t len, std::string &err)
Definition: msgpack11.hpp:201
msgpack11::MsgPack::parse_multi
static std::vector< MsgPack > parse_multi(const std::string &in, std::string::size_type &parser_stop_pos, std::string &err)
msgpack11::MsgPack::extension_items
const extension & extension_items() const
Definition: msgpack11.cpp:745
msgpack11::MsgPack::array
std::vector< MsgPack > array
Definition: msgpack11.hpp:56
msgpack11::MsgPack::MsgPack
MsgPack() noexcept
Definition: msgpack11.cpp:699
msgpack11::MsgPack::type
Type type() const
Definition: msgpack11.cpp:728
msgpack11::MsgPack::MsgPack
MsgPack(const M &m)
Definition: msgpack11.hpp:98
msgpack11::MsgPack::EXTENSION
@ EXTENSION
Definition: msgpack11.hpp:52
msgpack11::MsgPack::INT64
@ INT64
Definition: msgpack11.hpp:42
msgpack11::MsgPack::FLOAT32
@ FLOAT32
Definition: msgpack11.hpp:37
msgpack11::MsgPack::is_int
bool is_int() const
Definition: msgpack11.hpp:125
msgpack11::MsgPack::is_uint64
bool is_uint64() const
Definition: msgpack11.hpp:133
msgpack11::MsgPack::int32_value
int32_t int32_value() const
Definition: msgpack11.cpp:735
msgpack11::MsgPack::has_shape
bool has_shape(const shape &types, std::string &err) const
Definition: msgpack11.cpp:1083
msgpack11::MsgPack::object_items
const object & object_items() const
Definition: msgpack11.cpp:746
msgpack11::MsgPack::INT16
@ INT16
Definition: msgpack11.hpp:40
msgpack11::MsgPack::operator<
bool operator<(const MsgPack &rhs) const
Definition: msgpack11.cpp:788
msgpack11::MsgPack::operator!=
bool operator!=(const MsgPack &rhs) const
Definition: msgpack11.hpp:224
msgpack11::MsgPack::FLOAT64
@ FLOAT64
Definition: msgpack11.hpp:38
std
msgpack11::MsgPack::is_string
bool is_string() const
Definition: msgpack11.hpp:134
msgpack11::MsgPack::is_uint32
bool is_uint32() const
Definition: msgpack11.hpp:132
msgpack11::MsgPack::OBJECT
@ OBJECT
Definition: msgpack11.hpp:51
msgpack11::MsgPack::m_ptr
std::shared_ptr< MsgPackValue > m_ptr
Definition: msgpack11.hpp:238
msgpack11::MsgPack::object
std::map< MsgPack, MsgPack > object
Definition: msgpack11.hpp:57
msgpack11::MsgPack::binary_items
const binary & binary_items() const
Definition: msgpack11.cpp:744
msgpack11::MsgPack::is_extension
bool is_extension() const
Definition: msgpack11.hpp:138
UINT32
uint32_t UINT32
Definition: BasicDatatypes.hpp:72
msgpack11::MsgPack::operator>=
bool operator>=(const MsgPack &rhs) const
Definition: msgpack11.hpp:227
msgpack11::MsgPack::operator[]
const MsgPack & operator[](size_t i) const
Definition: msgpack11.cpp:747
msgpack11::MsgPack::NUMBER
@ NUMBER
Definition: msgpack11.hpp:34
msgpack11::MsgPack::array_items
const array & array_items() const
Definition: msgpack11.cpp:743
msgpack11::MsgPack
Definition: msgpack11.hpp:29
msgpack11::MsgPack::is_int64
bool is_int64() const
Definition: msgpack11.hpp:129
msgpack11::MsgPack::ARRAY
@ ARRAY
Definition: msgpack11.hpp:50
msgpack11::MsgPack::is_bool
bool is_bool() const
Definition: msgpack11.hpp:121
msgpack11::MsgPack::is_int32
bool is_int32() const
Definition: msgpack11.hpp:128
msgpack11::MsgPack::operator>>
friend std::istream & operator>>(std::istream &is, MsgPack &msgpack)
Definition: msgpack11.cpp:1037
msgpack11::MsgPack::uint64_value
uint64_t uint64_value() const
Definition: msgpack11.cpp:740
msgpack11::MsgPack::is_uint16
bool is_uint16() const
Definition: msgpack11.hpp:131
msgpack11::MsgPack::is_null
bool is_null() const
Definition: msgpack11.hpp:120
msgpack11::MsgPack::is_int8
bool is_int8() const
Definition: msgpack11.hpp:126
msgpack11::MsgPack::NUL
@ NUL
Definition: msgpack11.hpp:36
msgpack11::MsgPack::operator<<
friend std::ostream & operator<<(std::ostream &os, const MsgPack &msgpack)
Definition: msgpack11.cpp:371


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:09