MessagePack for C++
string_view.hpp
Go to the documentation of this file.
1 //
2 // MessagePack for C++ static resolution routine
3 //
4 // Copyright (C) 2017 KONDO Takatoshi
5 //
6 // Distributed under the Boost Software License, Version 1.0.
7 // (See accompanying file LICENSE_1_0.txt or copy at
8 // http://www.boost.org/LICENSE_1_0.txt)
9 //
10 #ifndef MSGPACK_V1_TYPE_STRING_VIEW_HPP
11 #define MSGPACK_V1_TYPE_STRING_VIEW_HPP
12 
13 #include "msgpack/cpp_version.hpp"
14 
15 #if MSGPACK_CPP_VERSION >= 201703
16 
17 #include "msgpack/versioning.hpp"
20 
21 #include <string_view>
22 
23 namespace msgpack {
24 
28 
29 namespace adaptor {
30 
31 template <>
32 struct convert<std::string_view> {
33  msgpack::object const& operator()(msgpack::object const& o, std::string_view& v) const {
34  switch (o.type) {
35  case msgpack::type::BIN:
36  v = std::string_view(o.via.bin.ptr, o.via.bin.size);
37  break;
38  case msgpack::type::STR:
39  v = std::string_view(o.via.str.ptr, o.via.str.size);
40  break;
41  default:
42  throw msgpack::type_error();
43  break;
44  }
45  return o;
46  }
47 };
48 
49 template <>
50 struct pack<std::string_view> {
51  template <typename Stream>
52  msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const std::string_view& v) const {
53  uint32_t size = checked_get_container_size(v.size());
54  o.pack_str(size);
55  o.pack_str_body(v.data(), size);
56  return o;
57  }
58 };
59 
60 template <>
61 struct object<std::string_view> {
62  void operator()(msgpack::object& o, const std::string_view& v) const {
63  uint32_t size = checked_get_container_size(v.size());
65  o.via.str.ptr = v.data();
66  o.via.str.size = size;
67  }
68 };
69 
70 template <>
71 struct object_with_zone<std::string_view> {
72  void operator()(msgpack::object::with_zone& o, const std::string_view& v) const {
73  static_cast<msgpack::object&>(o) << v;
74  }
75 };
76 
77 
78 } // namespace adaptor
79 
81 } // MSGPACK_API_VERSION_NAMESPACE(v1)
83 
84 } // namespace msgpack
85 
86 #endif // MSGPACK_CPP_VERSION >= 201703
87 
88 #endif // MSGPACK_V1_TYPE_STRING_VIEW_HPP
The class template that supports continuous packing.
Definition: pack.hpp:33
packer< Stream > & pack_str_body(const char *b, uint32_t l)
Packing str body.
Definition: pack.hpp:1255
packer< Stream > & pack_str(uint32_t l)
Packing str header and length.
Definition: pack.hpp:1232
Definition: object_fwd.hpp:231
std::size_t size(T const &t)
Definition: size_equal_only.hpp:24
@ STR
Definition: object_fwd_decl.hpp:38
@ BIN
Definition: object_fwd_decl.hpp:39
Definition: adaptor_base.hpp:15
void pack(msgpack::packer< Stream > &o, const T &v)
Definition: object.hpp:1180
uint32_t checked_get_container_size(T size)
Definition: check_container_size.hpp:55
void convert(T &v, msgpack::object const &o)
Definition: object.hpp:1173
msgpack::object const & operator()(msgpack::object const &o, T &v) const
Definition: object.hpp:641
void operator()(msgpack::object::with_zone &o, T const &v) const
Definition: object.hpp:657
void operator()(msgpack::object &o, T const &v) const
msgpack::packer< Stream > & operator()(msgpack::packer< Stream > &o, T const &v) const
Definition: object.hpp:650
Definition: object.hpp:35
uint32_t size
Definition: object_fwd.hpp:38
const char * ptr
Definition: object_fwd.hpp:39
const char * ptr
Definition: object_fwd.hpp:34
uint32_t size
Definition: object_fwd.hpp:33
Object class that corresponding to MessagePack format object.
Definition: object_fwd.hpp:75
union_type via
Definition: object_fwd.hpp:93
msgpack::type::object_type type
Definition: object_fwd.hpp:92
msgpack::object_str str
Definition: object_fwd.hpp:87
msgpack::object_bin bin
Definition: object_fwd.hpp:88
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition: versioning.hpp:66