MessagePack for C++
Loading...
Searching...
No Matches
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_BOOST_STRING_VIEW_HPP
11#define MSGPACK_V1_TYPE_BOOST_STRING_VIEW_HPP
12
13#include <boost/version.hpp>
14#if (BOOST_VERSION / 100000) >= 1 && ((BOOST_VERSION / 100) % 1000) >= 61
15
18#include "msgpack/object.hpp"
20
21#include <boost/utility/string_view.hpp>
22
23namespace msgpack {
24
28
29namespace adaptor {
30
31template <>
32struct convert<boost::string_view> {
33 msgpack::object const& operator()(msgpack::object const& o, boost::string_view& v) const {
34 switch (o.type) {
36 v = boost::string_view(o.via.bin.ptr, o.via.bin.size);
37 break;
39 v = boost::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
49template <>
50struct pack<boost::string_view> {
51 template <typename Stream>
52 msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const boost::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
60template <>
61struct object<boost::string_view> {
62 void operator()(msgpack::object& o, const boost::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
70template <>
71struct object_with_zone<boost::string_view> {
72 void operator()(msgpack::object::with_zone& o, const boost::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 // (BOOST_VERSION / 100000) >= 1 && ((BOOST_VERSION / 100) % 1000) >= 53
87
88#endif // MSGPACK_V1_TYPE_BOOST_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:1185
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:1178
msgpack::object const & operator()(msgpack::object const &o, T &v) const
Definition object.hpp:646
void operator()(msgpack::object::with_zone &o, T const &v) const
Definition object.hpp:662
void operator()(msgpack::object &o, T const &v) const
msgpack::packer< Stream > & operator()(msgpack::packer< Stream > &o, T const &v) const
Definition object.hpp:655
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