common.hpp 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. // Boost.Range library
  2. //
  3. // Copyright Thorsten Ottosen 2003-2004. Use, modification and
  4. // distribution is subject to the Boost Software License, Version
  5. // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // For more information, see http://www.boost.org/libs/range/
  9. //
  10. #ifndef BOOST_RANGE_DETAIL_COMMON_HPP
  11. #define BOOST_RANGE_DETAIL_COMMON_HPP
  12. #if defined(_MSC_VER)
  13. # pragma once
  14. #endif
  15. #include <boost/range/config.hpp>
  16. #include <boost/range/detail/sfinae.hpp>
  17. #include <boost/type_traits/is_void.hpp>
  18. #include <boost/mpl/bool.hpp>
  19. #include <boost/mpl/if.hpp>
  20. #include <boost/mpl/int.hpp>
  21. #include <boost/mpl/or.hpp>
  22. #include <cstddef>
  23. //////////////////////////////////////////////////////////////////////////////
  24. // missing partial specialization workaround.
  25. //////////////////////////////////////////////////////////////////////////////
  26. namespace boost
  27. {
  28. namespace range_detail
  29. {
  30. // 1 = std containers
  31. // 2 = std::pair
  32. // 3 = const std::pair
  33. // 4 = array
  34. // 5 = const array
  35. // 6 = char array
  36. // 7 = wchar_t array
  37. // 8 = char*
  38. // 9 = const char*
  39. // 10 = whar_t*
  40. // 11 = const wchar_t*
  41. // 12 = string
  42. typedef mpl::int_<1>::type std_container_;
  43. typedef mpl::int_<2>::type std_pair_;
  44. typedef mpl::int_<3>::type const_std_pair_;
  45. typedef mpl::int_<4>::type array_;
  46. typedef mpl::int_<5>::type const_array_;
  47. typedef mpl::int_<6>::type char_array_;
  48. typedef mpl::int_<7>::type wchar_t_array_;
  49. typedef mpl::int_<8>::type char_ptr_;
  50. typedef mpl::int_<9>::type const_char_ptr_;
  51. typedef mpl::int_<10>::type wchar_t_ptr_;
  52. typedef mpl::int_<11>::type const_wchar_t_ptr_;
  53. typedef mpl::int_<12>::type string_;
  54. template< typename C >
  55. struct range_helper
  56. {
  57. static C* c;
  58. static C ptr;
  59. BOOST_STATIC_CONSTANT( bool, is_pair_ = sizeof( boost::range_detail::is_pair_impl( c ) ) == sizeof( yes_type ) );
  60. BOOST_STATIC_CONSTANT( bool, is_char_ptr_ = sizeof( boost::range_detail::is_char_ptr_impl( ptr ) ) == sizeof( yes_type ) );
  61. BOOST_STATIC_CONSTANT( bool, is_const_char_ptr_ = sizeof( boost::range_detail::is_const_char_ptr_impl( ptr ) ) == sizeof( yes_type ) );
  62. BOOST_STATIC_CONSTANT( bool, is_wchar_t_ptr_ = sizeof( boost::range_detail::is_wchar_t_ptr_impl( ptr ) ) == sizeof( yes_type ) );
  63. BOOST_STATIC_CONSTANT( bool, is_const_wchar_t_ptr_ = sizeof( boost::range_detail::is_const_wchar_t_ptr_impl( ptr ) ) == sizeof( yes_type ) );
  64. BOOST_STATIC_CONSTANT( bool, is_char_array_ = sizeof( boost::range_detail::is_char_array_impl( ptr ) ) == sizeof( yes_type ) );
  65. BOOST_STATIC_CONSTANT( bool, is_wchar_t_array_ = sizeof( boost::range_detail::is_wchar_t_array_impl( ptr ) ) == sizeof( yes_type ) );
  66. BOOST_STATIC_CONSTANT( bool, is_string_ = (boost::mpl::or_<boost::mpl::bool_<is_const_char_ptr_>, boost::mpl::bool_<is_const_wchar_t_ptr_> >::value ));
  67. BOOST_STATIC_CONSTANT( bool, is_array_ = boost::is_array<C>::value );
  68. };
  69. template< typename C >
  70. class range
  71. {
  72. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_pair_,
  73. boost::range_detail::std_pair_,
  74. void >::type pair_t;
  75. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_array_,
  76. boost::range_detail::array_,
  77. pair_t >::type array_t;
  78. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_string_,
  79. boost::range_detail::string_,
  80. array_t >::type string_t;
  81. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_const_char_ptr_,
  82. boost::range_detail::const_char_ptr_,
  83. string_t >::type const_char_ptr_t;
  84. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_char_ptr_,
  85. boost::range_detail::char_ptr_,
  86. const_char_ptr_t >::type char_ptr_t;
  87. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_const_wchar_t_ptr_,
  88. boost::range_detail::const_wchar_t_ptr_,
  89. char_ptr_t >::type const_wchar_ptr_t;
  90. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_wchar_t_ptr_,
  91. boost::range_detail::wchar_t_ptr_,
  92. const_wchar_ptr_t >::type wchar_ptr_t;
  93. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_wchar_t_array_,
  94. boost::range_detail::wchar_t_array_,
  95. wchar_ptr_t >::type wchar_array_t;
  96. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::range_detail::range_helper<C>::is_char_array_,
  97. boost::range_detail::char_array_,
  98. wchar_array_t >::type char_array_t;
  99. public:
  100. typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< ::boost::is_void<char_array_t>::value,
  101. boost::range_detail::std_container_,
  102. char_array_t >::type type;
  103. }; // class 'range'
  104. }
  105. }
  106. #endif