libcarla/include/system/rpc/msgpack/v1/adaptor/string.hpp
2024-10-18 13:19:59 +08:00

88 lines
2.3 KiB
C++

//
// MessagePack for C++ static resolution routine
//
// Copyright (C) 2008-2015 FURUHASHI Sadayuki
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef MSGPACK_V1_TYPE_STRING_HPP
#define MSGPACK_V1_TYPE_STRING_HPP
#include "rpc/msgpack/versioning.hpp"
#include "rpc/msgpack/adaptor/adaptor_base.hpp"
#include "rpc/msgpack/adaptor/check_container_size.hpp"
#include <string>
#include <cstring>
namespace clmdep_msgpack {
/// @cond
MSGPACK_API_VERSION_NAMESPACE(v1) {
/// @endcond
namespace adaptor {
template <>
struct convert<std::string> {
clmdep_msgpack::object const& operator()(clmdep_msgpack::object const& o, std::string& v) const {
switch (o.type) {
case clmdep_msgpack::type::BIN:
v.assign(o.via.bin.ptr, o.via.bin.size);
break;
case clmdep_msgpack::type::STR:
v.assign(o.via.str.ptr, o.via.str.size);
break;
default:
throw clmdep_msgpack::type_error();
break;
}
return o;
}
};
template <>
struct pack<std::string> {
template <typename Stream>
clmdep_msgpack::packer<Stream>& operator()(clmdep_msgpack::packer<Stream>& o, const std::string& v) const {
uint32_t size = checked_get_container_size(v.size());
o.pack_str(size);
o.pack_str_body(v.data(), size);
return o;
}
};
template <>
struct object<std::string> {
void operator()(clmdep_msgpack::object& o, const std::string& v) const {
uint32_t size = checked_get_container_size(v.size());
o.type = clmdep_msgpack::type::STR;
o.via.str.ptr = v.data();
o.via.str.size = size;
}
};
template <>
struct object_with_zone<std::string> {
void operator()(clmdep_msgpack::object::with_zone& o, const std::string& v) const {
uint32_t size = checked_get_container_size(v.size());
o.type = clmdep_msgpack::type::STR;
char* ptr = static_cast<char*>(o.zone.allocate_align(size, MSGPACK_ZONE_ALIGNOF(char)));
o.via.str.ptr = ptr;
o.via.str.size = size;
std::memcpy(ptr, v.data(), v.size());
}
};
} // namespace adaptor
/// @cond
} // MSGPACK_API_VERSION_NAMESPACE(v1)
/// @endcond
} // namespace clmdep_msgpack
#endif // MSGPACK_V1_TYPE_STRING_HPP