MessagePack for C++
string.hpp
Go to the documentation of this file.
1 //
2 // MessagePack for C++ static resolution routine
3 //
4 // Copyright (C) 2008-2015 FURUHASHI Sadayuki
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_HPP
11 #define MSGPACK_V1_TYPE_STRING_HPP
12 
13 #include "msgpack/versioning.hpp"
15 #include "msgpack/object.hpp"
17 
18 #include <string>
19 #include <cstring>
20 
21 namespace msgpack {
22 
26 
27 namespace adaptor {
28 
29 template <>
30 struct convert<std::string> {
31  msgpack::object const& operator()(msgpack::object const& o, std::string& v) const {
32  switch (o.type) {
33  case msgpack::type::BIN:
34  v.assign(o.via.bin.ptr, o.via.bin.size);
35  break;
36  case msgpack::type::STR:
37  v.assign(o.via.str.ptr, o.via.str.size);
38  break;
39  default:
40  throw msgpack::type_error();
41  break;
42  }
43  return o;
44  }
45 };
46 
47 template <>
48 struct pack<std::string> {
49  template <typename Stream>
50  msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const std::string& v) const {
51  uint32_t size = checked_get_container_size(v.size());
52  o.pack_str(size);
53  o.pack_str_body(v.data(), size);
54  return o;
55  }
56 };
57 
58 template <>
59 struct object<std::string> {
60  void operator()(msgpack::object& o, const std::string& v) const {
61  uint32_t size = checked_get_container_size(v.size());
63  o.via.str.ptr = v.data();
64  o.via.str.size = size;
65  }
66 };
67 
68 template <>
69 struct object_with_zone<std::string> {
70  void operator()(msgpack::object::with_zone& o, const std::string& v) const {
71  uint32_t size = checked_get_container_size(v.size());
73  char* ptr = static_cast<char*>(o.zone.allocate_align(size, MSGPACK_ZONE_ALIGNOF(char)));
74  o.via.str.ptr = ptr;
75  o.via.str.size = size;
76  std::memcpy(ptr, v.data(), v.size());
77  }
78 };
79 
80 } // namespace adaptor
81 
83 } // MSGPACK_API_VERSION_NAMESPACE(v1)
85 
86 } // namespace msgpack
87 
88 #endif // MSGPACK_V1_TYPE_STRING_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:1277
packer< Stream > & pack_str(uint32_t l)
Packing str header and length.
Definition: pack.hpp:1254
Definition: object_fwd.hpp:231
void * allocate_align(size_t size, size_t align=MSGPACK_ZONE_ALIGN)
Definition: cpp03_zone.hpp:255
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
uint32_t checked_get_container_size(T size)
Definition: check_container_size.hpp:55
msgpack::object const & operator()(msgpack::object const &o, std::string &v) const
Definition: string.hpp:31
Definition: adaptor_base.hpp:27
void operator()(msgpack::object &o, const std::string &v) const
Definition: string.hpp:60
void operator()(msgpack::object::with_zone &o, const std::string &v) const
Definition: string.hpp:70
Definition: adaptor_base.hpp:43
Definition: adaptor_base.hpp:38
msgpack::packer< Stream > & operator()(msgpack::packer< Stream > &o, const std::string &v) const
Definition: string.hpp:50
Definition: adaptor_base.hpp:32
Definition: object.hpp:35
msgpack::zone & zone
Definition: object.hpp:37
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_ZONE_ALIGNOF(type)
Definition: cpp03_zone_decl.hpp:30
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition: versioning.hpp:66