Dependents: hello_message_pack
msgpack-c & msgpack-c++ https://github.com/msgpack/msgpack-c implementation for embedded systems (mbed / Arduino)
Diff: include/msgpack/adaptor/fixint.hpp
- Revision:
- 0:3f9dbf1e2cb0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/msgpack/adaptor/fixint.hpp Sat Feb 13 01:53:11 2016 +0000 @@ -0,0 +1,298 @@ +// +// MessagePack for C++ static resolution routine +// +// Copyright (C) 2020 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_TYPE_FIXINT_HPP +#define MSGPACK_TYPE_FIXINT_HPP + +#include "msgpack/versioning.hpp" +#include "msgpack/adaptor/adaptor_base.hpp" +#include "msgpack/adaptor/int.hpp" + +namespace msgpack { + +/// @cond +MSGPACK_API_VERSION_NAMESPACE(v1) { +/// @endcond + +namespace type { + + +template <typename T> +struct fix_int { + fix_int() : value(0) { } + fix_int(T value) : value(value) { } + + operator T() const { return value; } + + T get() const { return value; } + +private: + T value; +}; + + +typedef fix_int<uint8_t> fix_uint8; +typedef fix_int<uint16_t> fix_uint16; +typedef fix_int<uint32_t> fix_uint32; +typedef fix_int<uint64_t> fix_uint64; + +typedef fix_int<int8_t> fix_int8; +typedef fix_int<int16_t> fix_int16; +typedef fix_int<int32_t> fix_int32; +typedef fix_int<int64_t> fix_int64; + + +} // namespace type + +namespace adaptor { + +template <> +struct convert<type::fix_int8> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_int8& v) const + { v = type::detail::convert_integer<int8_t>(o); return o; } +}; + +template <> +struct convert<type::fix_int16> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_int16& v) const + { v = type::detail::convert_integer<int16_t>(o); return o; } +}; + +template <> +struct convert<type::fix_int32> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_int32& v) const + { v = type::detail::convert_integer<int32_t>(o); return o; } +}; + +template <> +struct convert<type::fix_int64> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_int64& v) const + { v = type::detail::convert_integer<int64_t>(o); return o; } +}; + + +template <> +struct convert<type::fix_uint8> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_uint8& v) const + { v = type::detail::convert_integer<uint8_t>(o); return o; } +}; + +template <> +struct convert<type::fix_uint16> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_uint16& v) const + { v = type::detail::convert_integer<uint16_t>(o); return o; } +}; + +template <> +struct convert<type::fix_uint32> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_uint32& v) const + { v = type::detail::convert_integer<uint32_t>(o); return o; } +}; + +template <> +struct convert<type::fix_uint64> { + msgpack::object const& operator()(msgpack::object const& o, type::fix_uint64& v) const + { v = type::detail::convert_integer<uint64_t>(o); return o; } +}; + +template <> +struct pack<type::fix_int8> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_int8& v) const + { o.pack_fix_int8(v); return o; } +}; + +template <> +struct pack<type::fix_int16> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_int16& v) const + { o.pack_fix_int16(v); return o; } +}; + +template <> +struct pack<type::fix_int32> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_int32& v) const + { o.pack_fix_int32(v); return o; } +}; + +template <> +struct pack<type::fix_int64> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_int64& v) const + { o.pack_fix_int64(v); return o; } +}; + + +template <> +struct pack<type::fix_uint8> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_uint8& v) const + { o.pack_fix_uint8(v); return o; } +}; + +template <> +struct pack<type::fix_uint16> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_uint16& v) const + { o.pack_fix_uint16(v); return o; } +}; + +template <> +struct pack<type::fix_uint32> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_uint32& v) const + { o.pack_fix_uint32(v); return o; } +}; + +template <> +struct pack<type::fix_uint64> { + template <typename Stream> + msgpack::packer<Stream>& operator()(msgpack::packer<Stream>& o, const type::fix_uint64& v) const + { o.pack_fix_uint64(v); return o; } +}; + +template <> +struct object<type::fix_int8> { + void operator()(msgpack::object& o, type::fix_int8 v) const { + if (v.get() < 0) { + o.type = msgpack::type::NEGATIVE_INTEGER; + o.via.i64 = v.get(); + } + else { + o.type = msgpack::type::POSITIVE_INTEGER; + o.via.u64 = v.get(); + } + } +}; + +template <> +struct object<type::fix_int16> { + void operator()(msgpack::object& o, type::fix_int16 v) const { + if(v.get() < 0) { + o.type = msgpack::type::NEGATIVE_INTEGER; + o.via.i64 = v.get(); + } + else { + o.type = msgpack::type::POSITIVE_INTEGER; + o.via.u64 = v.get(); + } + } +}; + +template <> +struct object<type::fix_int32> { + void operator()(msgpack::object& o, type::fix_int32 v) const { + if (v.get() < 0) { + o.type = msgpack::type::NEGATIVE_INTEGER; + o.via.i64 = v.get(); + } + else { + o.type = msgpack::type::POSITIVE_INTEGER; + o.via.u64 = v.get(); + } + } +}; + +template <> +struct object<type::fix_int64> { + void operator()(msgpack::object& o, type::fix_int64 v) const { + if (v.get() < 0) { + o.type = msgpack::type::NEGATIVE_INTEGER; + o.via.i64 = v.get(); + } + else { + o.type = msgpack::type::POSITIVE_INTEGER; + o.via.u64 = v.get(); + } + } +}; + +template <> +struct object<type::fix_uint8> { + void operator()(msgpack::object& o, type::fix_uint8 v) const + { o.type = msgpack::type::POSITIVE_INTEGER, o.via.u64 = v.get(); } +}; + +template <> +struct object<type::fix_uint16> { + void operator()(msgpack::object& o, type::fix_uint16 v) const + { o.type = msgpack::type::POSITIVE_INTEGER, o.via.u64 = v.get(); } +}; + +template <> +struct object<type::fix_uint32> { + void operator()(msgpack::object& o, type::fix_uint32 v) const + { o.type = msgpack::type::POSITIVE_INTEGER, o.via.u64 = v.get(); } +}; + +template <> +struct object<type::fix_uint64> { + void operator()(msgpack::object& o, type::fix_uint64 v) const + { o.type = msgpack::type::POSITIVE_INTEGER, o.via.u64 = v.get(); } +}; + +template <> +struct object_with_zone<type::fix_int8> { + void operator()(msgpack::object::with_zone& o, type::fix_int8 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + +template <> +struct object_with_zone<type::fix_int16> { + void operator()(msgpack::object::with_zone& o, type::fix_int16 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + +template <> +struct object_with_zone<type::fix_int32> { + void operator()(msgpack::object::with_zone& o, type::fix_int32 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + +template <> +struct object_with_zone<type::fix_int64> { + void operator()(msgpack::object::with_zone& o, type::fix_int64 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + + +template <> +struct object_with_zone<type::fix_uint8> { + void operator()(msgpack::object::with_zone& o, type::fix_uint8 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + +template <> +struct object_with_zone<type::fix_uint16> { + void operator()(msgpack::object::with_zone& o, type::fix_uint16 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + +template <> +struct object_with_zone<type::fix_uint32> { + void operator()(msgpack::object::with_zone& o, type::fix_uint32 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + +template <> +struct object_with_zone<type::fix_uint64> { + void operator()(msgpack::object::with_zone& o, type::fix_uint64 v) const + { static_cast<msgpack::object&>(o) << v; } +}; + +} // namespace adaptor + +/// @cond +} // MSGPACK_API_VERSION_NAMESPACE(v1) +/// @endcond + +} // namespace msgpack + +#endif /* msgpack/type/fixint.hpp */