nvp.hpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. #ifndef BOOST_SERIALIZATION_NVP_HPP
  2. #define BOOST_SERIALIZATION_NVP_HPP
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER)
  5. # pragma once
  6. #endif
  7. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  8. // nvp.hpp: interface for serialization system.
  9. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  10. // Use, modification and distribution is subject to the Boost Software
  11. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  12. // http://www.boost.org/LICENSE_1_0.txt)
  13. // See http://www.boost.org for updates, documentation, and revision history.
  14. #include <utility>
  15. #include <boost/config.hpp>
  16. #include <boost/detail/workaround.hpp>
  17. #include <boost/serialization/level.hpp>
  18. #include <boost/serialization/tracking.hpp>
  19. #include <boost/serialization/split_member.hpp>
  20. #include <boost/serialization/base_object.hpp>
  21. #include <boost/serialization/traits.hpp>
  22. #include <boost/serialization/wrapper.hpp>
  23. namespace boost {
  24. namespace serialization {
  25. template<class T>
  26. struct nvp :
  27. public std::pair<const char *, T *>,
  28. public wrapper_traits<const nvp< T > >
  29. {
  30. //private:
  31. nvp(const nvp & rhs) :
  32. std::pair<const char *, T *>(rhs.first, rhs.second)
  33. {}
  34. public:
  35. explicit nvp(const char * name_, T & t) :
  36. // note: added _ to suppress useless gcc warning
  37. std::pair<const char *, T *>(name_, & t)
  38. {}
  39. const char * name() const {
  40. return this->first;
  41. }
  42. T & value() const {
  43. return *(this->second);
  44. }
  45. const T & const_value() const {
  46. return *(this->second);
  47. }
  48. template<class Archive>
  49. void save(
  50. Archive & ar,
  51. const unsigned int /* file_version */
  52. ) const {
  53. ar.operator<<(const_value());
  54. }
  55. template<class Archive>
  56. void load(
  57. Archive & ar,
  58. const unsigned int /* file_version */
  59. ){
  60. ar.operator>>(value());
  61. }
  62. BOOST_SERIALIZATION_SPLIT_MEMBER()
  63. };
  64. template<class T>
  65. inline
  66. const nvp< T > make_nvp(const char * name, T & t){
  67. return nvp< T >(name, t);
  68. }
  69. // to maintain efficiency and portability, we want to assign
  70. // specific serialization traits to all instances of this wrappers.
  71. // we can't strait forward method below as it depends upon
  72. // Partial Template Specialization and doing so would mean that wrappers
  73. // wouldn't be treated the same on different platforms. This would
  74. // break archive portability. Leave this here as reminder not to use it !!!
  75. template <class T>
  76. struct implementation_level<nvp< T > >
  77. {
  78. typedef mpl::integral_c_tag tag;
  79. typedef mpl::int_<object_serializable> type;
  80. BOOST_STATIC_CONSTANT(int, value = implementation_level::type::value);
  81. };
  82. // nvp objects are generally created on the stack and are never tracked
  83. template<class T>
  84. struct tracking_level<nvp< T > >
  85. {
  86. typedef mpl::integral_c_tag tag;
  87. typedef mpl::int_<track_never> type;
  88. BOOST_STATIC_CONSTANT(int, value = tracking_level::type::value);
  89. };
  90. } // seralization
  91. } // boost
  92. #include <boost/preprocessor/stringize.hpp>
  93. #define BOOST_SERIALIZATION_NVP(name) \
  94. boost::serialization::make_nvp(BOOST_PP_STRINGIZE(name), name)
  95. /**/
  96. #define BOOST_SERIALIZATION_BASE_OBJECT_NVP(name) \
  97. boost::serialization::make_nvp( \
  98. BOOST_PP_STRINGIZE(name), \
  99. boost::serialization::base_object<name >(*this) \
  100. )
  101. /**/
  102. #endif // BOOST_SERIALIZATION_NVP_HPP