/************************************************************************/ /* */ /* Copyright 1998-2002 by Ullrich Koethe */ /* Cognitive Systems Group, University of Hamburg, Germany */ /* */ /* This file is part of the VIGRA computer vision library. */ /* The VIGRA Website is */ /* http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/ */ /* Please direct questions, bug reports, and contributions to */ /* koethe@informatik.uni-hamburg.de or */ /* vigra@kogs1.informatik.uni-hamburg.de */ /* */ /* Permission is hereby granted, free of charge, to any person */ /* obtaining a copy of this software and associated documentation */ /* files (the "Software"), to deal in the Software without */ /* restriction, including without limitation the rights to use, */ /* copy, modify, merge, publish, distribute, sublicense, and/or */ /* sell copies of the Software, and to permit persons to whom the */ /* Software is furnished to do so, subject to the following */ /* conditions: */ /* */ /* The above copyright notice and this permission notice shall be */ /* included in all copies or substantial portions of the */ /* Software. */ /* */ /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND */ /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES */ /* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND */ /* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT */ /* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, */ /* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING */ /* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR */ /* OTHER DEALINGS IN THE SOFTWARE. */ /* */ /************************************************************************/ #ifndef VIGRA_SIZED_INT_HXX #define VIGRA_SIZED_INT_HXX #include "metaprogramming.hxx" namespace vigra { class Int_type_not_supported_on_this_platform {}; #ifndef NO_PARTIAL_TEMPLATE_SPECIALIZATION namespace detail { template struct IntTypeList { enum { size = sizeof(T)*8 }; typedef T type; typedef NEXT next; }; template struct SelectIntegerType { typedef typename IfBool<(SIZE == LIST::size), typename LIST::type, typename SelectIntegerType::type >::type type; }; template struct SelectIntegerType { typedef Int_type_not_supported_on_this_platform type; }; template struct SelectBiggestIntegerType { enum { cursize = LIST::size, nextsize = SelectBiggestIntegerType::size, size = (cursize < nextsize) ? nextsize : cursize }; typedef typename IfBool<(cursize < nextsize), typename SelectBiggestIntegerType::type, typename LIST::type>::type type; }; template<> struct SelectBiggestIntegerType { enum { size = 0 }; typedef Int_type_not_supported_on_this_platform type; }; typedef IntTypeList > > > > SignedIntTypes; typedef IntTypeList > > > > UnsignedIntTypes; } // namespace detail /** \addtogroup FixedSizeInt Fixed Size Integer Types Since the C++ standard does only specify minimal sizes for the built-in integer types, one cannot rely on them to have a specific size. But pixel types with a specific size are often required in image processing, especially when reading or writing binary files. The VIGRA typedefs are guaranteed to have exactly the correct size. If the system does not provide a suitable type, the typedef will evaluate to Int_type_not_supported_on_this_platform. */ //@{ /// 8-bit signed int typedef detail::SelectIntegerType<8, detail::SignedIntTypes>::type Int8; /// 16-bit signed int typedef detail::SelectIntegerType<16, detail::SignedIntTypes>::type Int16; /// 32-bit signed int typedef detail::SelectIntegerType<32, detail::SignedIntTypes>::type Int32; /// 64-bit signed int typedef detail::SelectIntegerType<64, detail::SignedIntTypes>::type Int64; /// 8-bit unsigned int typedef detail::SelectIntegerType<8, detail::UnsignedIntTypes>::type UInt8; /// 16-bit unsigned int typedef detail::SelectIntegerType<16, detail::UnsignedIntTypes>::type UInt16; /// 32-bit unsigned int typedef detail::SelectIntegerType<32, detail::UnsignedIntTypes>::type UInt32; /// 64-bit unsigned int typedef detail::SelectIntegerType<64, detail::UnsignedIntTypes>::type UInt64; /// the biggest signed integer type of the system typedef detail::SelectBiggestIntegerType::type IntBiggest; /// the biggest unsigned integer type of the system typedef detail::SelectBiggestIntegerType::type UIntBiggest; //@} #else // NO_PARTIAL_TEMPLATE_SPECIALIZATION typedef signed char Int8; typedef signed short Int16; typedef signed int Int32; typedef Int_type_not_supported_on_this_platform Int64; typedef unsigned char UInt8; typedef unsigned short UInt16; typedef unsigned int UInt32; typedef Int_type_not_supported_on_this_platform UInt64; typedef Int32 IntBiggest; typedef UInt32 UIntBiggest; #endif // NO_PARTIAL_TEMPLATE_SPECIALIZATION } // namespace vigra #endif /* VIGRA_SIZED_INT_HXX */