// (C) Copyright Daniel James 2005. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // Based on Peter Dimov's proposal // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf // issue 6.18. #if !defined(BOOST_FUNCTIONAL_HASH_HASH_HPP) #define BOOST_FUNCTIONAL_HASH_HASH_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include #include #include #include #include #include #include #include #include #if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) #include #endif namespace boost { #if defined(__BORLANDC__) // Borland complains about an ambiguous function overload // when compiling boost::hash. std::size_t hash_value(bool); #endif std::size_t hash_value(int); std::size_t hash_value(unsigned int); std::size_t hash_value(long); std::size_t hash_value(unsigned long); template std::size_t hash_value(T* const&); #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) template< class T, unsigned N > std::size_t hash_value(const T (&array)[N]); template< class T, unsigned N > std::size_t hash_value(T (&array)[N]); #endif std::size_t hash_value(float v); std::size_t hash_value(double v); std::size_t hash_value(long double v); #if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) template std::size_t hash_value(std::basic_string, A> const&); #else template std::size_t hash_value(std::basic_string, A> const&); #endif template std::size_t hash_range(It first, It last); template void hash_range(std::size_t&, It first, It last); #if defined(__BORLANDC__) template inline std::size_t hash_range(T*, T*); template inline void hash_range(std::size_t&, T*, T*); #endif #if defined(BOOST_MSVC) && BOOST_MSVC < 1300 template void hash_combine(std::size_t& seed, T& v); #else template void hash_combine(std::size_t& seed, T const& v); #endif // Implementation #if defined(__BORLANDC__) inline std::size_t hash_value(bool v) { return static_cast(v); } #endif inline std::size_t hash_value(int v) { return static_cast(v); } inline std::size_t hash_value(unsigned int v) { return static_cast(v); } inline std::size_t hash_value(long v) { return static_cast(v); } inline std::size_t hash_value(unsigned long v) { return static_cast(v); } // Implementation by Alberto Barbati and Dave Harris. template std::size_t hash_value(T* const& v) { std::size_t x = static_cast( reinterpret_cast(v)); return x + (x >> 3); } namespace hash_detail { #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) // This allows boost::hash to be specialised for classes in the // standard namespace. It appears that a strict two phase template // implementation only finds overloads that are in the current // namespace at the point of definition (at instantiation // it only finds new overloads via. ADL on the dependant paramters or // something like that). template struct call_hash { static std::size_t call(T const& v) { using namespace boost; return hash_value(v); } }; #else // BOOST_NO_FUNCTION_TEMPLATE_ORDERING template struct call_hash_impl { template struct inner { static std::size_t call(T const& v) { using namespace boost; return hash_value(v); } }; }; template <> struct call_hash_impl { template struct inner { #if defined(BOOST_MSVC) && BOOST_MSVC < 1300 static std::size_t call(Array& v) #else static std::size_t call(Array const& v) #endif { const int size = sizeof(v) / sizeof(*v); return boost::hash_range(v, v + size); } }; }; template struct call_hash : public call_hash_impl::value> ::BOOST_NESTED_TEMPLATE inner { }; #endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING } #if defined(BOOST_MSVC) && BOOST_MSVC < 1300 template inline void hash_combine(std::size_t& seed, T& v) #else template inline void hash_combine(std::size_t& seed, T const& v) #endif { seed ^= hash_detail::call_hash::call(v) + 0x9e3779b9 + (seed<<6) + (seed>>2); } template inline std::size_t hash_range(It first, It last) { std::size_t seed = 0; for(; first != last; ++first) { hash_combine(seed, *first); } return seed; } template inline void hash_range(std::size_t& seed, It first, It last) { for(; first != last; ++first) { hash_combine(seed, *first); } } #if defined(__BORLANDC__) template inline std::size_t hash_range(T* first, T* last) { std::size_t seed = 0; for(; first != last; ++first) { seed ^= hash_detail::call_hash::call(*first) + 0x9e3779b9 + (seed<<6) + (seed>>2); } return seed; } template inline void hash_range(std::size_t& seed, T* first, T* last) { for(; first != last; ++first) { seed ^= hash_detail::call_hash::call(*first) + 0x9e3779b9 + (seed<<6) + (seed>>2); } } #endif #if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) template< class T, unsigned N > inline std::size_t hash_value(const T (&array)[N]) { return hash_range(array, array + N); } template< class T, unsigned N > inline std::size_t hash_value(T (&array)[N]) { return hash_range(array, array + N); } #endif #if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) template inline std::size_t hash_value(std::basic_string, A> const& v) #else template inline std::size_t hash_value(std::basic_string, A> const& v) #endif { return hash_range(v.begin(), v.end()); } namespace hash_detail { template inline std::size_t float_hash_value(T v) { int exp = 0; errno = 0; v = boost::hash_detail::call_frexp(v, &exp); if(errno) return 0; std::size_t seed = 0; std::size_t const length = (std::numeric_limits::digits + std::numeric_limits::digits - 1) / std::numeric_limits::digits; for(std::size_t i = 0; i < length; ++i) { v = boost::hash_detail::call_ldexp(v, std::numeric_limits::digits); int const part = static_cast(v); v -= part; boost::hash_combine(seed, part); } boost::hash_combine(seed, exp); return seed; } } inline std::size_t hash_value(float v) { return boost::hash_detail::float_hash_value(v); } inline std::size_t hash_value(double v) { return boost::hash_detail::float_hash_value(v); } inline std::size_t hash_value(long double v) { return boost::hash_detail::float_hash_value(v); } // boost::hash template struct hash : std::unary_function { std::size_t operator()(T const& val) const { return hash_detail::call_hash::call(val); } #if defined(BOOST_MSVC) && BOOST_MSVC < 1300 std::size_t operator()(T& val) const { return hash_detail::call_hash::call(val); } #endif }; } #endif