2011-12-16 00:04:31 +05:30
|
|
|
// Copyright (C) 2011 Red Hat, Inc. All rights reserved.
|
2011-12-06 19:23:05 +05:30
|
|
|
//
|
2011-12-06 19:13:56 +05:30
|
|
|
// This file is part of the thin-provisioning-tools source.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is free software: you can redistribute it
|
|
|
|
// and/or modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation, either version 3 of
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is distributed in the hope that it will be
|
|
|
|
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
|
|
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with thin-provisioning-tools. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
|
2011-06-27 15:15:30 +05:30
|
|
|
#ifndef ENDIAN_H
|
|
|
|
#define ENDIAN_H
|
|
|
|
|
2012-03-02 19:35:33 +05:30
|
|
|
#include <endian.h>
|
2011-07-22 20:39:56 +05:30
|
|
|
#include <stdint.h>
|
2011-06-27 15:15:30 +05:30
|
|
|
#include <boost/static_assert.hpp>
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
2011-07-22 20:39:56 +05:30
|
|
|
// FIXME: rename to endian
|
2011-06-27 15:15:30 +05:30
|
|
|
namespace base {
|
|
|
|
|
|
|
|
// These are just little wrapper types to make the compiler
|
|
|
|
// understand that the le types are not assignable to the
|
|
|
|
// corresponding cpu type.
|
|
|
|
struct __le16 {
|
2011-07-15 19:51:28 +05:30
|
|
|
explicit __le16(uint16_t v = 0)
|
2011-06-27 15:15:30 +05:30
|
|
|
: v_(v) {
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t v_;
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct __le32 {
|
2011-07-15 19:51:28 +05:30
|
|
|
explicit __le32(uint32_t v = 0)
|
2011-06-27 15:15:30 +05:30
|
|
|
: v_(v) {
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t v_;
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
struct __le64 {
|
2011-07-15 19:51:28 +05:30
|
|
|
explicit __le64(uint64_t v = 0)
|
2011-06-27 15:15:30 +05:30
|
|
|
: v_(v) {
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t v_;
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
//--------------------------------
|
|
|
|
|
2011-07-22 20:39:56 +05:30
|
|
|
// FIXME: actually do the conversions !
|
2011-06-27 15:15:30 +05:30
|
|
|
template <typename CPUType, typename DiskType>
|
|
|
|
CPUType to_cpu(DiskType const &d) {
|
|
|
|
BOOST_STATIC_ASSERT(sizeof(d) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename DiskType, typename CPUType>
|
|
|
|
DiskType to_disk(CPUType const &v) {
|
|
|
|
BOOST_STATIC_ASSERT(sizeof(v) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2011-07-15 19:51:28 +05:30
|
|
|
inline uint16_t to_cpu<uint16_t, __le16>(__le16 const &d) {
|
2012-03-02 19:35:33 +05:30
|
|
|
return le16toh(d.v_);
|
2011-06-27 15:15:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2011-07-15 19:51:28 +05:30
|
|
|
inline __le16 to_disk<__le16, uint16_t>(uint16_t const &v) {
|
2012-03-02 19:35:33 +05:30
|
|
|
return __le16(htole16(v));
|
2011-06-27 15:15:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2011-07-15 19:51:28 +05:30
|
|
|
inline uint32_t to_cpu<uint32_t, __le32>(__le32 const &d) {
|
2012-03-02 19:35:33 +05:30
|
|
|
return le32toh(d.v_);
|
2011-06-27 15:15:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2011-07-15 19:51:28 +05:30
|
|
|
inline __le32 to_disk<__le32, uint32_t>(uint32_t const &v) {
|
2012-03-02 19:35:33 +05:30
|
|
|
return __le32(htole32(v));
|
2011-06-27 15:15:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2011-07-15 19:51:28 +05:30
|
|
|
inline uint64_t to_cpu<uint64_t, __le64>(__le64 const &d) {
|
2012-03-02 19:35:33 +05:30
|
|
|
return le64toh(d.v_);
|
2011-06-27 15:15:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2011-07-15 19:51:28 +05:30
|
|
|
inline __le64 to_disk<__le64, uint64_t>(uint64_t const &v) {
|
2012-03-02 19:35:33 +05:30
|
|
|
return __le64(htole64(v));
|
2011-06-27 15:15:30 +05:30
|
|
|
}
|
2011-07-22 20:39:56 +05:30
|
|
|
|
|
|
|
//--------------------------------
|
|
|
|
|
|
|
|
bool test_bit_le(void const *bits, unsigned b);
|
|
|
|
void set_bit_le(void *bits, unsigned b);
|
|
|
|
void clear_bit_le(void *bits, unsigned b);
|
2011-06-27 15:15:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|