libcruft-util/types.hpp
Danny Robson 128d46d9ad Use explicit sized integer types for sign_types<T>
When we used size_t/ssize_t they conflicted with the system's word sized
integers. This should work well for all the numeric types we're likely
to see.
2011-07-03 16:08:36 +10:00

147 lines
2.9 KiB
C++

#ifndef __TYPES_HPP
#define __TYPES_HPP
#include <cstdint>
#include <string>
#include <limits>
template <int BITS>
struct bits_type;
template <> struct bits_type< 8> {
static const bool has_floating = false;
typedef uint8_t uint;
typedef int8_t sint;
typedef uint8_t floating;
};
template <> struct bits_type<16> {
static const bool has_floating = false;
typedef uint16_t uint;
typedef int16_t sint;
typedef uint16_t floating;
};
template <> struct bits_type<32> {
static const bool has_floating = true;
typedef uint32_t uint;
typedef int32_t sint;
typedef float floating;
};
template <> struct bits_type<64> {
static const bool has_floating = true;
typedef uint64_t uint;
typedef int64_t sint;
typedef double floating;
};
template <typename T>
struct sized_type : public bits_type<sizeof(T) * 8>
{ };
template <typename T>
std::string type_to_string (void);
template <typename T>
struct sign_types;
template <> struct sign_types <int8_t> {
typedef int8_t with_sign;
typedef uint8_t without_sign;
};
template <> struct sign_types <uint8_t> {
typedef int8_t with_sign;
typedef uint8_t without_sign;
};
template <> struct sign_types <int16_t> {
typedef int16_t with_sign;
typedef uint16_t without_sign;
};
template <> struct sign_types <uint16_t> {
typedef int16_t with_sign;
typedef uint16_t without_sign;
};
template <> struct sign_types <int32_t> {
typedef int32_t with_sign;
typedef uint32_t without_sign;
};
template <> struct sign_types <uint32_t> {
typedef int32_t with_sign;
typedef uint32_t without_sign;
};
template <> struct sign_types <int64_t> {
typedef signed long with_sign;
typedef unsigned long without_sign;
};
template <> struct sign_types <uint64_t> {
typedef signed long with_sign;
typedef unsigned long without_sign;
};
/// Safely cast a numeric type to its signed comparison, aborting if the
/// result is not representable.
template <typename T>
typename sign_types<T>::with_sign
sign_cast (const typename sign_types<T>::without_sign v)
{
check_hard (v <= std::numeric_limits<typename sign_types<T>::without_sign>::max () >> 1);
return static_cast <typename sign_types<T>::with_sign> (v);
}
/// Safely cast a numeric type to its unsigned comparison, aborting if the
/// result is not representable.
template <typename T>
typename sign_types<T>::without_sign
sign_cast (const typename sign_types<T>::with_sign v)
{
check_hard (v >= 0);
return static_cast <typename sign_types<T>::without_sign> (v);
}
/// Returns the number of elements of a statically allocated array
template <typename T, size_t N>
size_t elems(T (&)[N])
{ return N; }
/// Convert a scalar from host byte order to network byte order
template <typename T>
T hton (T);
/// Convert a scalar from network byte order to host byte order
template <typename T>
T ntoh (T);
#endif // __TYPES_HPP