ptr_map_inserter.hpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. // Boost.Assign library
  2. //
  3. // Copyright Thorsten Ottosen 2006. 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/assign/
  9. //
  10. #ifndef BOOST_ASSIGN_PTR_CONTAINER_PTR_MAP_INSERTER_HPP
  11. #define BOOST_ASSIGN_PTR_CONTAINER_PTR_MAP_INSERTER_HPP
  12. #if defined(_MSC_VER)
  13. # pragma once
  14. #endif
  15. #include <boost/assign/list_inserter.hpp>
  16. #include <boost/type_traits/remove_reference.hpp>
  17. #include <boost/type_traits/remove_pointer.hpp>
  18. namespace boost
  19. {
  20. namespace assign
  21. {
  22. template< class PtrMap, class Obj >
  23. class ptr_map_inserter
  24. {
  25. typedef BOOST_DEDUCED_TYPENAME
  26. remove_pointer< BOOST_DEDUCED_TYPENAME
  27. remove_reference<Obj>::type >::type
  28. obj_type;
  29. typedef BOOST_DEDUCED_TYPENAME PtrMap::key_type
  30. key_type;
  31. public:
  32. ptr_map_inserter( PtrMap& m ) : m_( m )
  33. {}
  34. template< class Key >
  35. ptr_map_inserter& operator()( const Key& t )
  36. {
  37. key_type k(t);
  38. m_.insert( k, new obj_type );
  39. return *this;
  40. }
  41. #ifndef BOOST_ASSIGN_MAX_PARAMS // use user's value
  42. #define BOOST_ASSIGN_MAX_PARAMS 6
  43. #endif
  44. #define BOOST_ASSIGN_MAX_PARAMETERS (BOOST_ASSIGN_MAX_PARAMS - 1)
  45. #define BOOST_ASSIGN_PARAMS1(n) BOOST_PP_ENUM_PARAMS(n, class T)
  46. #define BOOST_ASSIGN_PARAMS2(n) BOOST_PP_ENUM_BINARY_PARAMS(n, T, const& t)
  47. #define BOOST_ASSIGN_PARAMS3(n) BOOST_PP_ENUM_PARAMS(n, t)
  48. #define BOOST_PP_LOCAL_LIMITS (1, BOOST_ASSIGN_MAX_PARAMETERS)
  49. #define BOOST_PP_LOCAL_MACRO(n) \
  50. template< class T, BOOST_ASSIGN_PARAMS1(n) > \
  51. ptr_map_inserter& operator()( const T& t, BOOST_ASSIGN_PARAMS2(n) ) \
  52. { \
  53. key_type k(t); \
  54. m_.insert( k, new obj_type( BOOST_ASSIGN_PARAMS3(n) ) ); \
  55. return *this; \
  56. } \
  57. /**/
  58. #include BOOST_PP_LOCAL_ITERATE()
  59. private:
  60. ptr_map_inserter& operator=( const ptr_map_inserter& );
  61. PtrMap& m_;
  62. };
  63. template< class PtrMap >
  64. inline ptr_map_inserter< PtrMap, typename PtrMap::mapped_reference >
  65. ptr_map_insert( PtrMap& m )
  66. {
  67. return ptr_map_inserter< PtrMap, typename PtrMap::mapped_reference >( m );
  68. }
  69. #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  70. template< class T, class PtrMap >
  71. inline ptr_map_inserter< PtrMap, T >
  72. ptr_map_insert( PtrMap& m )
  73. {
  74. return ptr_map_inserter< PtrMap, T >( m );
  75. }
  76. #endif
  77. } // namespace 'assign'
  78. } // namespace 'boost'
  79. #undef BOOST_ASSIGN_PARAMS1
  80. #undef BOOST_ASSIGN_PARAMS2
  81. #undef BOOST_ASSIGN_PARAMS3
  82. #undef BOOST_ASSIGN_MAX_PARAMETERS
  83. #endif