123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590 |
- #ifndef BOOST_ENDIAN_CONVERSION_HPP
- #define BOOST_ENDIAN_CONVERSION_HPP
- #include <boost/endian/detail/endian_reverse.hpp>
- #include <boost/endian/detail/endian_load.hpp>
- #include <boost/endian/detail/endian_store.hpp>
- #include <boost/endian/detail/order.hpp>
- #include <boost/type_traits/is_class.hpp>
- #include <boost/type_traits/is_array.hpp>
- #include <boost/type_traits/integral_constant.hpp>
- #include <boost/static_assert.hpp>
- #include <boost/cstdint.hpp>
- #include <boost/config.hpp>
- namespace boost
- {
- namespace endian
- {
-
-
-
-
-
-
- template <class EndianReversible >
- inline BOOST_CONSTEXPR EndianReversible big_to_native(EndianReversible x) BOOST_NOEXCEPT;
-
- template <class EndianReversible >
- inline BOOST_CONSTEXPR EndianReversible native_to_big(EndianReversible x) BOOST_NOEXCEPT;
-
-
- template <class EndianReversible >
- inline BOOST_CONSTEXPR EndianReversible little_to_native(EndianReversible x) BOOST_NOEXCEPT;
-
- template <class EndianReversible >
- inline BOOST_CONSTEXPR EndianReversible native_to_little(EndianReversible x) BOOST_NOEXCEPT;
-
-
- template <BOOST_SCOPED_ENUM(order) From, BOOST_SCOPED_ENUM(order) To,
- class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible conditional_reverse(EndianReversible from) BOOST_NOEXCEPT;
-
-
-
-
-
- template <class EndianReversible >
- inline BOOST_CONSTEXPR EndianReversible conditional_reverse(EndianReversible from,
- BOOST_SCOPED_ENUM(order) from_order, BOOST_SCOPED_ENUM(order) to_order)
- BOOST_NOEXCEPT;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <class EndianReversibleInplace>
- inline void big_to_native_inplace(EndianReversibleInplace& x) BOOST_NOEXCEPT;
-
- template <class EndianReversibleInplace>
- inline void native_to_big_inplace(EndianReversibleInplace& x) BOOST_NOEXCEPT;
-
-
- template <class EndianReversibleInplace>
- inline void little_to_native_inplace(EndianReversibleInplace& x) BOOST_NOEXCEPT;
-
- template <class EndianReversibleInplace>
- inline void native_to_little_inplace(EndianReversibleInplace& x) BOOST_NOEXCEPT;
-
-
- template <BOOST_SCOPED_ENUM(order) From, BOOST_SCOPED_ENUM(order) To,
- class EndianReversibleInplace>
- inline void conditional_reverse_inplace(EndianReversibleInplace& x) BOOST_NOEXCEPT;
-
- template <class EndianReversibleInplace>
- inline void conditional_reverse_inplace(EndianReversibleInplace& x,
- BOOST_SCOPED_ENUM(order) from_order, BOOST_SCOPED_ENUM(order) to_order)
- BOOST_NOEXCEPT;
- template <class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible big_to_native( EndianReversible x ) BOOST_NOEXCEPT
- {
- return boost::endian::conditional_reverse<order::big, order::native>( x );
- }
- template <class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible native_to_big( EndianReversible x ) BOOST_NOEXCEPT
- {
- return boost::endian::conditional_reverse<order::native, order::big>( x );
- }
- template <class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible little_to_native( EndianReversible x ) BOOST_NOEXCEPT
- {
- return boost::endian::conditional_reverse<order::little, order::native>( x );
- }
- template <class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible native_to_little( EndianReversible x ) BOOST_NOEXCEPT
- {
- return boost::endian::conditional_reverse<order::native, order::little>( x );
- }
- namespace detail
- {
- template<class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible conditional_reverse_impl( EndianReversible x, boost::true_type ) BOOST_NOEXCEPT
- {
- return x;
- }
- template<class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible conditional_reverse_impl( EndianReversible x, boost::false_type ) BOOST_NOEXCEPT
- {
- return endian_reverse( x );
- }
- }
- template <BOOST_SCOPED_ENUM(order) From, BOOST_SCOPED_ENUM(order) To, class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible conditional_reverse( EndianReversible x ) BOOST_NOEXCEPT
- {
- BOOST_STATIC_ASSERT( boost::is_class<EndianReversible>::value || detail::is_endian_reversible<EndianReversible>::value );
- return detail::conditional_reverse_impl( x, boost::integral_constant<bool, From == To>() );
- }
- template <class EndianReversible>
- inline BOOST_CONSTEXPR EndianReversible conditional_reverse( EndianReversible x,
- BOOST_SCOPED_ENUM(order) from_order, BOOST_SCOPED_ENUM(order) to_order ) BOOST_NOEXCEPT
- {
- BOOST_STATIC_ASSERT( boost::is_class<EndianReversible>::value || detail::is_endian_reversible<EndianReversible>::value );
- return from_order == to_order? x: endian_reverse( x );
- }
- template <class EndianReversibleInplace>
- inline void big_to_native_inplace( EndianReversibleInplace& x ) BOOST_NOEXCEPT
- {
- boost::endian::conditional_reverse_inplace<order::big, order::native>( x );
- }
- template <class EndianReversibleInplace>
- inline void native_to_big_inplace( EndianReversibleInplace& x ) BOOST_NOEXCEPT
- {
- boost::endian::conditional_reverse_inplace<order::native, order::big>( x );
- }
- template <class EndianReversibleInplace>
- inline void little_to_native_inplace( EndianReversibleInplace& x ) BOOST_NOEXCEPT
- {
- boost::endian::conditional_reverse_inplace<order::little, order::native>( x );
- }
- template <class EndianReversibleInplace>
- inline void native_to_little_inplace( EndianReversibleInplace& x ) BOOST_NOEXCEPT
- {
- boost::endian::conditional_reverse_inplace<order::native, order::little>( x );
- }
- namespace detail
- {
- template<class EndianReversibleInplace>
- inline void conditional_reverse_inplace_impl( EndianReversibleInplace&, boost::true_type ) BOOST_NOEXCEPT
- {
- }
- template<class EndianReversibleInplace>
- inline void conditional_reverse_inplace_impl( EndianReversibleInplace& x, boost::false_type ) BOOST_NOEXCEPT
- {
- endian_reverse_inplace( x );
- }
- }
- template <BOOST_SCOPED_ENUM(order) From, BOOST_SCOPED_ENUM(order) To, class EndianReversibleInplace>
- inline void conditional_reverse_inplace( EndianReversibleInplace& x ) BOOST_NOEXCEPT
- {
- BOOST_STATIC_ASSERT(
- boost::is_class<EndianReversibleInplace>::value ||
- boost::is_array<EndianReversibleInplace>::value ||
- detail::is_endian_reversible_inplace<EndianReversibleInplace>::value );
- detail::conditional_reverse_inplace_impl( x, boost::integral_constant<bool, From == To>() );
- }
- template <class EndianReversibleInplace>
- inline void conditional_reverse_inplace( EndianReversibleInplace& x,
- BOOST_SCOPED_ENUM(order) from_order, BOOST_SCOPED_ENUM(order) to_order ) BOOST_NOEXCEPT
- {
- BOOST_STATIC_ASSERT(
- boost::is_class<EndianReversibleInplace>::value ||
- boost::is_array<EndianReversibleInplace>::value ||
- detail::is_endian_reversible_inplace<EndianReversibleInplace>::value );
- if( from_order != to_order )
- {
- endian_reverse_inplace( x );
- }
- }
- inline boost::int16_t load_little_s16( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int16_t, 2, order::little>( p );
- }
- inline boost::uint16_t load_little_u16( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint16_t, 2, order::little>( p );
- }
- inline boost::int16_t load_big_s16( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int16_t, 2, order::big>( p );
- }
- inline boost::uint16_t load_big_u16( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint16_t, 2, order::big>( p );
- }
- inline boost::int32_t load_little_s24( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int32_t, 3, order::little>( p );
- }
- inline boost::uint32_t load_little_u24( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint32_t, 3, order::little>( p );
- }
- inline boost::int32_t load_big_s24( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int32_t, 3, order::big>( p );
- }
- inline boost::uint32_t load_big_u24( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint32_t, 3, order::big>( p );
- }
- inline boost::int32_t load_little_s32( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int32_t, 4, order::little>( p );
- }
- inline boost::uint32_t load_little_u32( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint32_t, 4, order::little>( p );
- }
- inline boost::int32_t load_big_s32( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int32_t, 4, order::big>( p );
- }
- inline boost::uint32_t load_big_u32( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint32_t, 4, order::big>( p );
- }
- inline boost::int64_t load_little_s40( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 5, order::little>( p );
- }
- inline boost::uint64_t load_little_u40( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 5, order::little>( p );
- }
- inline boost::int64_t load_big_s40( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 5, order::big>( p );
- }
- inline boost::uint64_t load_big_u40( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 5, order::big>( p );
- }
- inline boost::int64_t load_little_s48( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 6, order::little>( p );
- }
- inline boost::uint64_t load_little_u48( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 6, order::little>( p );
- }
- inline boost::int64_t load_big_s48( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 6, order::big>( p );
- }
- inline boost::uint64_t load_big_u48( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 6, order::big>( p );
- }
- inline boost::int64_t load_little_s56( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 7, order::little>( p );
- }
- inline boost::uint64_t load_little_u56( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 7, order::little>( p );
- }
- inline boost::int64_t load_big_s56( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 7, order::big>( p );
- }
- inline boost::uint64_t load_big_u56( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 7, order::big>( p );
- }
- inline boost::int64_t load_little_s64( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 8, order::little>( p );
- }
- inline boost::uint64_t load_little_u64( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 8, order::little>( p );
- }
- inline boost::int64_t load_big_s64( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::int64_t, 8, order::big>( p );
- }
- inline boost::uint64_t load_big_u64( unsigned char const * p ) BOOST_NOEXCEPT
- {
- return boost::endian::endian_load<boost::uint64_t, 8, order::big>( p );
- }
- inline void store_little_s16( unsigned char * p, boost::int16_t v )
- {
- boost::endian::endian_store<boost::int16_t, 2, order::little>( p, v );
- }
- inline void store_little_u16( unsigned char * p, boost::uint16_t v )
- {
- boost::endian::endian_store<boost::uint16_t, 2, order::little>( p, v );
- }
- inline void store_big_s16( unsigned char * p, boost::int16_t v )
- {
- boost::endian::endian_store<boost::int16_t, 2, order::big>( p, v );
- }
- inline void store_big_u16( unsigned char * p, boost::uint16_t v )
- {
- boost::endian::endian_store<boost::uint16_t, 2, order::big>( p, v );
- }
- inline void store_little_s24( unsigned char * p, boost::int32_t v )
- {
- boost::endian::endian_store<boost::int32_t, 3, order::little>( p, v );
- }
- inline void store_little_u24( unsigned char * p, boost::uint32_t v )
- {
- boost::endian::endian_store<boost::uint32_t, 3, order::little>( p, v );
- }
- inline void store_big_s24( unsigned char * p, boost::int32_t v )
- {
- boost::endian::endian_store<boost::int32_t, 3, order::big>( p, v );
- }
- inline void store_big_u24( unsigned char * p, boost::uint32_t v )
- {
- boost::endian::endian_store<boost::uint32_t, 3, order::big>( p, v );
- }
- inline void store_little_s32( unsigned char * p, boost::int32_t v )
- {
- boost::endian::endian_store<boost::int32_t, 4, order::little>( p, v );
- }
- inline void store_little_u32( unsigned char * p, boost::uint32_t v )
- {
- boost::endian::endian_store<boost::uint32_t, 4, order::little>( p, v );
- }
- inline void store_big_s32( unsigned char * p, boost::int32_t v )
- {
- boost::endian::endian_store<boost::int32_t, 4, order::big>( p, v );
- }
- inline void store_big_u32( unsigned char * p, boost::uint32_t v )
- {
- boost::endian::endian_store<boost::uint32_t, 4, order::big>( p, v );
- }
- inline void store_little_s40( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 5, order::little>( p, v );
- }
- inline void store_little_u40( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 5, order::little>( p, v );
- }
- inline void store_big_s40( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 5, order::big>( p, v );
- }
- inline void store_big_u40( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 5, order::big>( p, v );
- }
- inline void store_little_s48( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 6, order::little>( p, v );
- }
- inline void store_little_u48( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 6, order::little>( p, v );
- }
- inline void store_big_s48( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 6, order::big>( p, v );
- }
- inline void store_big_u48( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 6, order::big>( p, v );
- }
- inline void store_little_s56( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 7, order::little>( p, v );
- }
- inline void store_little_u56( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 7, order::little>( p, v );
- }
- inline void store_big_s56( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 7, order::big>( p, v );
- }
- inline void store_big_u56( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 7, order::big>( p, v );
- }
- inline void store_little_s64( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 8, order::little>( p, v );
- }
- inline void store_little_u64( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 8, order::little>( p, v );
- }
- inline void store_big_s64( unsigned char * p, boost::int64_t v )
- {
- boost::endian::endian_store<boost::int64_t, 8, order::big>( p, v );
- }
- inline void store_big_u64( unsigned char * p, boost::uint64_t v )
- {
- boost::endian::endian_store<boost::uint64_t, 8, order::big>( p, v );
- }
- }
- }
- #endif
|