// // MessagePack for C++ static resolution routine // // Copyright (C) 2008-2015 FURUHASHI Sadayuki and 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_TYPE_CPP11_TUPLE_HPP #define MSGPACK_V1_TYPE_CPP11_TUPLE_HPP #include "rpc/msgpack/versioning.hpp" #include "rpc/msgpack/adaptor/adaptor_base.hpp" #include "rpc/msgpack/adaptor/check_container_size.hpp" #include "rpc/msgpack/meta.hpp" #include namespace clmdep_msgpack { /// @cond MSGPACK_API_VERSION_NAMESPACE(v1) { /// @endcond // --- Pack from tuple to packer stream --- template struct StdTuplePacker { static void pack( clmdep_msgpack::packer& o, const Tuple& v) { StdTuplePacker::pack(o, v); o.pack(std::get(v)); } }; template struct StdTuplePacker { static void pack ( clmdep_msgpack::packer&, const Tuple&) { } }; namespace adaptor { template struct pack> { template clmdep_msgpack::packer& operator()( clmdep_msgpack::packer& o, const std::tuple& v) const { uint32_t size = checked_get_container_size(sizeof...(Args)); o.pack_array(size); StdTuplePacker::pack(o, v); return o; } }; } // namespace adaptor // --- Convert from tuple to object --- template struct StdTupleAs; template struct StdTupleAsImpl { static std::tuple as(clmdep_msgpack::object const& o) { return std::tuple_cat( std::make_tuple(o.via.array.ptr[o.via.array.size - sizeof...(Args) - 1].as()), StdTupleAs::as(o)); } }; template struct StdTupleAs { static std::tuple as(clmdep_msgpack::object const& o) { return StdTupleAsImpl::as(o); } }; template <> struct StdTupleAs<> { static std::tuple<> as (clmdep_msgpack::object const&) { return std::tuple<>(); } }; template struct StdTupleConverter { static void convert( clmdep_msgpack::object const& o, Tuple& v) { StdTupleConverter::convert(o, v); if (o.via.array.size >= N) o.via.array.ptr[N-1].convert(v))>::type>(std::get(v)); } }; template struct StdTupleConverter { static void convert ( clmdep_msgpack::object const&, Tuple&) { } }; namespace adaptor { template struct as, typename std::enable_if::value>::type> { std::tuple operator()( clmdep_msgpack::object const& o) const { if (o.type != clmdep_msgpack::type::ARRAY) { throw clmdep_msgpack::type_error(); } return StdTupleAs::as(o); } }; template struct convert> { clmdep_msgpack::object const& operator()( clmdep_msgpack::object const& o, std::tuple& v) const { if(o.type != clmdep_msgpack::type::ARRAY) { throw clmdep_msgpack::type_error(); } StdTupleConverter::convert(o, v); return o; } }; } // namespace adaptor // --- Convert from tuple to object with zone --- template struct StdTupleToObjectWithZone { static void convert( clmdep_msgpack::object::with_zone& o, const Tuple& v) { StdTupleToObjectWithZone::convert(o, v); o.via.array.ptr[N-1] = clmdep_msgpack::object(std::get(v), o.zone); } }; template struct StdTupleToObjectWithZone { static void convert ( clmdep_msgpack::object::with_zone&, const Tuple&) { } }; namespace adaptor { template struct object_with_zone> { void operator()( clmdep_msgpack::object::with_zone& o, std::tuple const& v) const { uint32_t size = checked_get_container_size(sizeof...(Args)); o.type = clmdep_msgpack::type::ARRAY; o.via.array.ptr = static_cast(o.zone.allocate_align(sizeof(clmdep_msgpack::object)*size, MSGPACK_ZONE_ALIGNOF(clmdep_msgpack::object))); o.via.array.size = size; StdTupleToObjectWithZone::convert(o, v); } }; } // namespace adaptor /// @cond } // MSGPACK_API_VERSION_NAMESPACE(v1) /// @endcond } // namespace clmdep_msgpack #endif // MSGPACK_V1_TYPE_CPP11_TUPLE_HPP