// // MessagePack for C++ static resolution routine // // Copyright (C) 2008-2014 FURUHASHI Sadayuki and KONDO Takatoshi // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef MSGPACK_CPP11_MSGPACK_TUPLE_HPP #define MSGPACK_CPP11_MSGPACK_TUPLE_HPP #include "msgpack/versioning.hpp" #include "msgpack/object_fwd.hpp" #include namespace msgpack { MSGPACK_API_VERSION_NAMESPACE(v1) { namespace type { // tuple using std::get; using std::tuple_size; using std::tuple_element; using std::uses_allocator; using std::ignore; using std::make_tuple; using std::tie; using std::forward_as_tuple; using std::swap; template< class... Types > class tuple : public std::tuple { public: using base = std::tuple; using base::base; tuple() = default; tuple(tuple const&) = default; tuple(tuple&&) = default; template tuple(tuple const& other):base(static_cast const&>(other)) {} template tuple(tuple && other):base(static_cast &&>(other)) {} tuple& operator=(tuple const&) = default; tuple& operator=(tuple&&) = default; template tuple& operator=(tuple const& other) { *static_cast(this) = static_cast const&>(other); return *this; } template tuple& operator=(tuple && other) { *static_cast(this) = static_cast &&>(other); return *this; } template< std::size_t I> typename tuple_element::type& get() { return std::get(*this); } template< std::size_t I> typename tuple_element::type const& get() const { return std::get(*this); } template< std::size_t I> typename tuple_element::type&& get() && { return std::get(*this); } }; template< class... Tuples > auto tuple_cat(Tuples&&... args) -> decltype( std::tuple_cat(std::forward::type::base>(args)...) ) { return std::tuple_cat(std::forward::type::base>(args)...); } } // namespace type // --- Pack from tuple to packer stream --- template struct MsgpackTuplePacker { static void pack( msgpack::packer& o, const Tuple& v) { MsgpackTuplePacker::pack(o, v); o.pack(type::get(v)); } }; template struct MsgpackTuplePacker { static void pack ( msgpack::packer& o, const Tuple& v) { o.pack(type::get<0>(v)); } }; template struct MsgpackTuplePacker { static void pack ( msgpack::packer&, const Tuple&) { } }; template const msgpack::packer& operator<< ( msgpack::packer& o, const type::tuple& v) { o.pack_array(sizeof...(Args)); MsgpackTuplePacker::pack(o, v); return o; } // --- Convert from tuple to object --- template struct MsgpackTupleConverter { static void convert( msgpack::object const& o, Tuple& v) { MsgpackTupleConverter::convert(o, v); o.via.array.ptr[N-1].convert(v))>::type>(type::get(v)); } }; template struct MsgpackTupleConverter { static void convert ( msgpack::object const& o, Tuple& v) { o.via.array.ptr[0].convert(v))>::type>(type::get<0>(v)); } }; template struct MsgpackTupleConverter { static void convert ( msgpack::object const&, Tuple&) { } }; template msgpack::object const& operator>> ( msgpack::object const& o, type::tuple& v) { if(o.type != msgpack::type::ARRAY) { throw msgpack::type_error(); } if(o.via.array.size < sizeof...(Args)) { throw msgpack::type_error(); } MsgpackTupleConverter::convert(o, v); return o; } // --- Convert from tuple to object with zone --- template struct MsgpackTupleToObjectWithZone { static void convert( msgpack::object::with_zone& o, const Tuple& v) { MsgpackTupleToObjectWithZone::convert(o, v); o.via.array.ptr[N-1] = msgpack::object(type::get(v), o.zone); } }; template struct MsgpackTupleToObjectWithZone { static void convert ( msgpack::object::with_zone& o, const Tuple& v) { o.via.array.ptr[0] = msgpack::object(type::get<0>(v), o.zone); } }; template struct MsgpackTupleToObjectWithZone { static void convert ( msgpack::object::with_zone&, const Tuple&) { } }; template inline void operator<< ( msgpack::object::with_zone& o, type::tuple const& v) { o.type = msgpack::type::ARRAY; o.via.array.ptr = static_cast(o.zone.allocate_align(sizeof(msgpack::object)*sizeof...(Args))); o.via.array.size = sizeof...(Args); MsgpackTupleToObjectWithZone::convert(o, v); } } // MSGPACK_API_VERSION_NAMESPACE(v1) } // namespace msgpack #endif // MSGPACK_CPP11_MSGPACK_TUPLE_HPP