#pragma once
-#include <type_traits>
-#include "acconfig.h"
-#include "int_types.h"
-
+#include <boost/endian/conversion.hpp>
-#ifdef __GNUC__
-template<typename T>
-inline typename std::enable_if<sizeof(T) == sizeof(uint16_t), T>::type
-swab(T val) {
- return __builtin_bswap16(val);
-}
-template<typename T>
-inline typename std::enable_if<sizeof(T) == sizeof(uint32_t), T>::type
-swab(T val) {
- return __builtin_bswap32(val);
-}
-template<typename T>
-inline typename std::enable_if<sizeof(T) == sizeof(uint64_t), T>::type
-swab(T val) {
- return __builtin_bswap64(val);
-}
-#else
-template<typename T>
-inline typename std::enable_if<sizeof(T) == sizeof(uint16_t), T>::type
-swab(T val) {
- return (val >> 8) | (val << 8);
-}
-template<typename T>
-inline typename std::enable_if<sizeof(T) == sizeof(uint32_t), T>::type
-swab(T val) {
- return (( val >> 24) |
- ((val >> 8) & 0xff00) |
- ((val << 8) & 0xff0000) |
- ((val << 24)));
-}
-template<typename T>
-inline typename std::enable_if<sizeof(T) == sizeof(uint64_t), T>::type
-swab(T val) {
- return (( val >> 56) |
- ((val >> 40) & 0xff00ull) |
- ((val >> 24) & 0xff0000ull) |
- ((val >> 8) & 0xff000000ull) |
- ((val << 8) & 0xff00000000ull) |
- ((val << 24) & 0xff0000000000ull) |
- ((val << 40) & 0xff000000000000ull) |
- ((val << 56)));
-}
-#endif
+#include "int_types.h"
-// mswab == maybe swab (if not LE)
-#ifdef CEPH_BIG_ENDIAN
-template<typename T>
-inline T mswab(T val) {
- return swab(val);
-}
-#else
template<typename T>
-inline T mswab(T val) {
- return val;
+inline T swab(T val) {
+ return boost::endian::endian_reverse(val);
}
-#endif
template<typename T>
struct ceph_le {
T v;
public:
ceph_le<T>& operator=(T nv) {
- v = mswab(nv);
+ v = boost::endian::native_to_little(nv);
return *this;
}
- operator T() const { return mswab(v); }
+ operator T() const { return boost::endian::little_to_native(v); }
friend inline bool operator==(ceph_le a, ceph_le b) {
return a.v == b.v;
}