mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00:00
cc02da0ccf
Added C-Style array support.
Existing mapping:
convert:
pack:
char[N] => STR
const char[N] => STR
object:
char[N] => STR (v1 only)
const char[N] => STR (v1 only)
object_with_zone:
char[N] => STR
const char[N] => STR
Additional mapping:
convert:
STR => char[N]
ARRAY => T[N]
pack:
T[N] => ARRAY
const T[N] => ARRAY
object:
object_with_zone:
T[N] => ARRAY
const T[N] => ARRAY
87 lines
2.0 KiB
C++
87 lines
2.0 KiB
C++
//
|
|
// MessagePack for C++ static resolution routine
|
|
//
|
|
// Copyright (C) 2016 KONDO Takatoshi
|
|
//
|
|
// 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_ADAPTOR_BASE_DECL_HPP
|
|
#define MSGPACK_V1_ADAPTOR_BASE_DECL_HPP
|
|
|
|
#include "msgpack/versioning.hpp"
|
|
#include "msgpack/object_fwd.hpp"
|
|
#include "msgpack/pack.hpp"
|
|
|
|
namespace msgpack {
|
|
|
|
/// @cond
|
|
MSGPACK_API_VERSION_NAMESPACE(v1) {
|
|
/// @endcond
|
|
|
|
template <typename Stream>
|
|
class packer;
|
|
|
|
namespace adaptor {
|
|
|
|
// Adaptor functors
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct convert;
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct pack;
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct object;
|
|
|
|
template <typename T, typename Enabler = void>
|
|
struct object_with_zone;
|
|
|
|
} // namespace adaptor
|
|
|
|
// operators
|
|
|
|
template <typename T>
|
|
typename msgpack::enable_if<
|
|
!is_array<T>::value,
|
|
msgpack::object const&
|
|
>::type
|
|
operator>> (msgpack::object const& o, T& v);
|
|
template <typename T, std::size_t N>
|
|
msgpack::object const& operator>> (msgpack::object const& o, T(&v)[N]);
|
|
|
|
template <typename Stream, typename T>
|
|
typename msgpack::enable_if<
|
|
!is_array<T>::value,
|
|
msgpack::packer<Stream>&
|
|
>::type
|
|
operator<< (msgpack::packer<Stream>& o, T const& v);
|
|
template <typename Stream, typename T, std::size_t N>
|
|
msgpack::packer<Stream>& operator<< (msgpack::packer<Stream>& o, const T(&v)[N]);
|
|
|
|
template <typename T>
|
|
typename msgpack::enable_if<
|
|
!is_array<T>::value
|
|
>::type
|
|
operator<< (msgpack::object& o, T const& v);
|
|
template <typename T, std::size_t N>
|
|
void operator<< (msgpack::object& o, const T(&v)[N]);
|
|
|
|
template <typename T>
|
|
typename msgpack::enable_if<
|
|
!is_array<T>::value
|
|
>::type
|
|
operator<< (msgpack::object::with_zone& o, T const& v);
|
|
template <typename T, std::size_t N>
|
|
void operator<< (msgpack::object::with_zone& o, const T(&v)[N]);
|
|
|
|
/// @cond
|
|
} // MSGPACK_API_VERSION_NAMESPACE(v1)
|
|
/// @endcond
|
|
|
|
} // namespace msgpack
|
|
|
|
#endif // MSGPACK_V1_ADAPTOR_BASE_DECL_HPP
|