123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- #ifndef BOOST_ENDIAN_DETAIL_ENDIAN_STORE_HPP_INCLUDED
- #define BOOST_ENDIAN_DETAIL_ENDIAN_STORE_HPP_INCLUDED
- // Copyright 2019 Peter Dimov
- //
- // Distributed under the Boost Software License, Version 1.0.
- // http://www.boost.org/LICENSE_1_0.txt
- #include <boost/endian/detail/endian_reverse.hpp>
- #include <boost/endian/detail/order.hpp>
- #include <boost/endian/detail/integral_by_size.hpp>
- #include <boost/endian/detail/is_trivially_copyable.hpp>
- #include <boost/endian/detail/static_assert.hpp>
- #include <type_traits>
- #include <cstddef>
- #include <cstring>
- namespace boost
- {
- namespace endian
- {
- namespace detail
- {
- template<class T, std::size_t N1, order O1, std::size_t N2, order O2> struct endian_store_impl
- {
- };
- } // namespace detail
- // Requires:
- //
- // sizeof(T) must be 1, 2, 4, or 8
- // 1 <= N <= sizeof(T)
- // T is TriviallyCopyable
- // if N < sizeof(T), T is integral or enum
- template<class T, std::size_t N, order Order>
- inline void endian_store( unsigned char * p, T const & v ) BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( sizeof(T) == 1 || sizeof(T) == 2 || sizeof(T) == 4 || sizeof(T) == 8 );
- BOOST_ENDIAN_STATIC_ASSERT( N >= 1 && N <= sizeof(T) );
- return detail::endian_store_impl<T, sizeof(T), order::native, N, Order>()( p, v );
- }
- namespace detail
- {
- // same endianness, same size
- template<class T, std::size_t N, order O> struct endian_store_impl<T, N, O, N, O>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( is_trivially_copyable<T>::value );
- std::memcpy( p, &v, N );
- }
- };
- // same size, reverse endianness
- template<class T, std::size_t N, order O1, order O2> struct endian_store_impl<T, N, O1, N, O2>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( is_trivially_copyable<T>::value );
- typename integral_by_size<N>::type tmp;
- std::memcpy( &tmp, &v, N );
- endian_reverse_inplace( tmp );
- std::memcpy( p, &tmp, N );
- }
- };
- // truncating store 2 -> 1
- template<class T, order Order> struct endian_store_impl<T, 2, Order, 1, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 2 ];
- boost::endian::endian_store<T, 2, order::little>( tmp, v );
- p[0] = tmp[0];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 2, Order, 1, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 2 ];
- boost::endian::endian_store<T, 2, order::big>( tmp, v );
- p[0] = tmp[1];
- }
- };
- // truncating store 4 -> 1
- template<class T, order Order> struct endian_store_impl<T, 4, Order, 1, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 4 ];
- boost::endian::endian_store<T, 4, order::little>( tmp, v );
- p[0] = tmp[0];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 4, Order, 1, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 4 ];
- boost::endian::endian_store<T, 4, order::big>( tmp, v );
- p[0] = tmp[3];
- }
- };
- // truncating store 4 -> 2
- template<class T, order Order> struct endian_store_impl<T, 4, Order, 2, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 4 ];
- boost::endian::endian_store<T, 4, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 4, Order, 2, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 4 ];
- boost::endian::endian_store<T, 4, order::big>( tmp, v );
- p[0] = tmp[2];
- p[1] = tmp[3];
- }
- };
- // truncating store 4 -> 3
- template<class T, order Order> struct endian_store_impl<T, 4, Order, 3, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 4 ];
- boost::endian::endian_store<T, 4, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- p[2] = tmp[2];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 4, Order, 3, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 4 ];
- boost::endian::endian_store<T, 4, order::big>( tmp, v );
- p[0] = tmp[1];
- p[1] = tmp[2];
- p[2] = tmp[3];
- }
- };
- // truncating store 8 -> 1
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 1, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::little>( tmp, v );
- p[0] = tmp[0];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 1, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::big>( tmp, v );
- p[0] = tmp[7];
- }
- };
- // truncating store 8 -> 2
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 2, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 2, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::big>( tmp, v );
- p[0] = tmp[6];
- p[1] = tmp[7];
- }
- };
- // truncating store 8 -> 3
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 3, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- p[2] = tmp[2];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 3, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::big>( tmp, v );
- p[0] = tmp[5];
- p[1] = tmp[6];
- p[2] = tmp[7];
- }
- };
- // truncating store 8 -> 4
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 4, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- p[2] = tmp[2];
- p[3] = tmp[3];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 4, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::big>( tmp, v );
- p[0] = tmp[4];
- p[1] = tmp[5];
- p[2] = tmp[6];
- p[3] = tmp[7];
- }
- };
- // truncating store 8 -> 5
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 5, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- p[2] = tmp[2];
- p[3] = tmp[3];
- p[4] = tmp[4];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 5, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::big>( tmp, v );
- p[0] = tmp[3];
- p[1] = tmp[4];
- p[2] = tmp[5];
- p[3] = tmp[6];
- p[4] = tmp[7];
- }
- };
- // truncating store 8 -> 6
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 6, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- p[2] = tmp[2];
- p[3] = tmp[3];
- p[4] = tmp[4];
- p[5] = tmp[5];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 6, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::big>( tmp, v );
- p[0] = tmp[2];
- p[1] = tmp[3];
- p[2] = tmp[4];
- p[3] = tmp[5];
- p[4] = tmp[6];
- p[5] = tmp[7];
- }
- };
- // truncating store 8 -> 7
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 7, order::little>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::little>( tmp, v );
- p[0] = tmp[0];
- p[1] = tmp[1];
- p[2] = tmp[2];
- p[3] = tmp[3];
- p[4] = tmp[4];
- p[5] = tmp[5];
- p[6] = tmp[6];
- }
- };
- template<class T, order Order> struct endian_store_impl<T, 8, Order, 7, order::big>
- {
- inline void operator()( unsigned char * p, T const & v ) const BOOST_NOEXCEPT
- {
- BOOST_ENDIAN_STATIC_ASSERT( std::is_integral<T>::value || std::is_enum<T>::value );
- unsigned char tmp[ 8 ];
- boost::endian::endian_store<T, 8, order::big>( tmp, v );
- p[0] = tmp[1];
- p[1] = tmp[2];
- p[2] = tmp[3];
- p[3] = tmp[4];
- p[4] = tmp[5];
- p[5] = tmp[6];
- p[6] = tmp[7];
- }
- };
- } // namespace detail
- } // namespace endian
- } // namespace boost
- #endif // BOOST_ENDIAN_DETAIL_ENDIAN_STORE_HPP_INCLUDED
|