optional.hpp 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  2. // (C) Copyright 2002-4 Pavel Vozenilek .
  3. // Use, modification and distribution is subject to the Boost Software
  4. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // Provides non-intrusive serialization for boost::optional.
  7. #ifndef BOOST_SERIALIZATION_OPTIONAL_HPP_
  8. #define BOOST_SERIALIZATION_OPTIONAL_HPP_
  9. #if defined(_MSC_VER)
  10. # pragma once
  11. #endif
  12. #include <boost/config.hpp>
  13. #include <boost/archive/detail/basic_iarchive.hpp>
  14. #include <boost/optional.hpp>
  15. #include <boost/serialization/item_version_type.hpp>
  16. #include <boost/serialization/split_free.hpp>
  17. #include <boost/serialization/level.hpp>
  18. #include <boost/serialization/nvp.hpp>
  19. #include <boost/serialization/version.hpp>
  20. #include <boost/serialization/detail/stack_constructor.hpp>
  21. // function specializations must be defined in the appropriate
  22. // namespace - boost::serialization
  23. namespace boost {
  24. namespace serialization {
  25. template<class Archive, class T>
  26. void save(
  27. Archive & ar,
  28. const boost::optional< T > & t,
  29. const unsigned int /*version*/
  30. ){
  31. const bool tflag = t.is_initialized();
  32. ar << boost::serialization::make_nvp("initialized", tflag);
  33. if (tflag){
  34. const boost::serialization::item_version_type item_version(version< T >::value);
  35. #if 0
  36. const boost::archive::library_version_type library_version(
  37. ar.get_library_version()
  38. };
  39. if(boost::archive::library_version_type(3) < library_version){
  40. ar << BOOST_SERIALIZATION_NVP(item_version);
  41. }
  42. #else
  43. ar << BOOST_SERIALIZATION_NVP(item_version);
  44. #endif
  45. ar << boost::serialization::make_nvp("value", *t);
  46. }
  47. }
  48. template<class Archive, class T>
  49. void load(
  50. Archive & ar,
  51. boost::optional< T > & t,
  52. const unsigned int /*version*/
  53. ){
  54. bool tflag;
  55. ar >> boost::serialization::make_nvp("initialized", tflag);
  56. if (tflag){
  57. boost::serialization::item_version_type item_version(0);
  58. boost::archive::library_version_type library_version(
  59. ar.get_library_version()
  60. );
  61. if(boost::archive::library_version_type(3) < library_version){
  62. // item_version is handled as an attribute so it doesnt need an NVP
  63. ar >> BOOST_SERIALIZATION_NVP(item_version);
  64. }
  65. detail::stack_construct<Archive, T> aux(ar, item_version);
  66. ar >> boost::serialization::make_nvp("value", aux.reference());
  67. t.reset(aux.reference());
  68. }
  69. else {
  70. t.reset();
  71. }
  72. }
  73. template<class Archive, class T>
  74. void serialize(
  75. Archive & ar,
  76. boost::optional< T > & t,
  77. const unsigned int version
  78. ){
  79. boost::serialization::split_free(ar, t, version);
  80. }
  81. } // serialization
  82. } // namespace boost
  83. #endif // BOOST_SERIALIZATION_OPTIONAL_HPP_