AttributeAsserts.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef _Attribute_Asserts_
00042 #define _Attribute_Asserts_
00043
00044 #include <stdint.h>
00045
00046 #include "assert/staticerror.h"
00047
00048 #include "config/type_traits/ByteCount.h"
00049
00050 namespace famouso {
00051 namespace mw {
00052 namespace attributes {
00053 namespace detail {
00054
00062 template <typename ValueType>
00063 struct ValueTypeAssert {
00064 typedef uint8_t dummy;
00065
00066 private:
00067 FAMOUSO_STATIC_ASSERT_ERROR(false,
00068 only_primitive_integral_types_allowed,
00069 (ValueType));
00070 };
00071 template <> struct ValueTypeAssert<bool> {
00072 typedef uint8_t dummy;
00073 };
00074 template <> struct ValueTypeAssert<uint8_t> {
00075 typedef uint8_t dummy;
00076 };
00077 template <> struct ValueTypeAssert<int8_t> {
00078 typedef uint8_t dummy;
00079 };
00080 template <> struct ValueTypeAssert<uint16_t> {
00081 typedef uint8_t dummy;
00082 };
00083 template<> struct ValueTypeAssert<int16_t> {
00084 typedef uint8_t dummy;
00085 };
00086 template <> struct ValueTypeAssert<uint32_t> {
00087 typedef uint8_t dummy;
00088 };
00089 template <> struct ValueTypeAssert<int32_t> {
00090 typedef uint8_t dummy;
00091 };
00092 template <> struct ValueTypeAssert<uint64_t> {
00093 typedef uint8_t dummy;
00094 };
00095 template <> struct ValueTypeAssert<int64_t> {
00096 typedef uint8_t dummy;
00097 };
00098
00106 template <bool HighDensity, uint8_t ID>
00107 struct IdBitCountAssert {
00108 typedef uint8_t dummy;
00109
00110 private:
00111 static const uint16_t bitCount = BitCount<uint8_t, ID>::value;
00112
00113 static const bool cond = ((!HighDensity) || (bitCount < 5));
00114
00115 FAMOUSO_STATIC_ASSERT_ERROR(
00116 cond,
00117 high_density_attribute_ID_cannot_have_more_than_4_bits,
00118 (boost::mpl::int_<ID>, boost::mpl::int_<bitCount>));
00119 };
00120 };
00121 }
00122 }
00123 }
00124
00125 #endif // _Attribute_Asserts_