basic_binary_iarchive.hpp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. #ifndef BOOST_ARCHIVE_BASIC_BINARY_IARCHIVE_HPP
  2. #define BOOST_ARCHIVE_BASIC_BINARY_IARCHIVE_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. // basic_binary_iarchive.hpp
  9. //
  10. // archives stored as native binary - this should be the fastest way
  11. // to archive the state of a group of obects. It makes no attempt to
  12. // convert to any canonical form.
  13. // IN GENERAL, ARCHIVES CREATED WITH THIS CLASS WILL NOT BE READABLE
  14. // ON PLATFORM APART FROM THE ONE THEY ARE CREATED ON
  15. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  16. // Use, modification and distribution is subject to the Boost Software
  17. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  18. // http://www.boost.org/LICENSE_1_0.txt)
  19. // See http://www.boost.org for updates, documentation, and revision history.
  20. #include <boost/config.hpp>
  21. #include <boost/detail/workaround.hpp>
  22. #include <boost/archive/basic_archive.hpp>
  23. #include <boost/archive/detail/common_iarchive.hpp>
  24. #include <boost/serialization/collection_size_type.hpp>
  25. #include <boost/serialization/string.hpp>
  26. #include <boost/serialization/item_version_type.hpp>
  27. #include <boost/integer_traits.hpp>
  28. #ifdef BOOST_MSVC
  29. # pragma warning(push)
  30. # pragma warning(disable : 4511 4512)
  31. #endif
  32. #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
  33. namespace boost {
  34. namespace archive {
  35. namespace detail {
  36. template<class Archive> class interface_iarchive;
  37. } // namespace detail
  38. /////////////////////////////////////////////////////////////////////////
  39. // class basic_binary_iarchive - read serialized objects from a input binary stream
  40. template<class Archive>
  41. class BOOST_SYMBOL_VISIBLE basic_binary_iarchive :
  42. public detail::common_iarchive<Archive>
  43. {
  44. #ifdef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  45. public:
  46. #else
  47. protected:
  48. #if BOOST_WORKAROUND(BOOST_MSVC, < 1500)
  49. // for some inexplicable reason insertion of "class" generates compile erro
  50. // on msvc 7.1
  51. friend detail::interface_iarchive<Archive>;
  52. #else
  53. friend class detail::interface_iarchive<Archive>;
  54. #endif
  55. #endif
  56. // intermediate level to support override of operators
  57. // fot templates in the absence of partial function
  58. // template ordering. If we get here pass to base class
  59. // note extra nonsense to sneak it pass the borland compiers
  60. typedef detail::common_iarchive<Archive> detail_common_iarchive;
  61. template<class T>
  62. void load_override(T & t){
  63. this->detail_common_iarchive::load_override(t);
  64. }
  65. // include these to trap a change in binary format which
  66. // isn't specifically handled
  67. // upto 32K classes
  68. BOOST_STATIC_ASSERT(sizeof(class_id_type) == sizeof(int_least16_t));
  69. BOOST_STATIC_ASSERT(sizeof(class_id_reference_type) == sizeof(int_least16_t));
  70. // upto 2G objects
  71. BOOST_STATIC_ASSERT(sizeof(object_id_type) == sizeof(uint_least32_t));
  72. BOOST_STATIC_ASSERT(sizeof(object_reference_type) == sizeof(uint_least32_t));
  73. // binary files don't include the optional information
  74. void load_override(class_id_optional_type & /* t */){}
  75. void load_override(tracking_type & t, int /*version*/){
  76. library_version_type lvt = this->get_library_version();
  77. if(boost::archive::library_version_type(6) < lvt){
  78. int_least8_t x=0;
  79. * this->This() >> x;
  80. t = boost::archive::tracking_type(x);
  81. }
  82. else{
  83. bool x=0;
  84. * this->This() >> x;
  85. t = boost::archive::tracking_type(x);
  86. }
  87. }
  88. void load_override(class_id_type & t){
  89. library_version_type lvt = this->get_library_version();
  90. if(boost::archive::library_version_type(7) < lvt){
  91. this->detail_common_iarchive::load_override(t);
  92. }
  93. else
  94. if(boost::archive::library_version_type(6) < lvt){
  95. int_least16_t x=0;
  96. * this->This() >> x;
  97. t = boost::archive::class_id_type(x);
  98. }
  99. else{
  100. int x=0;
  101. * this->This() >> x;
  102. t = boost::archive::class_id_type(x);
  103. }
  104. }
  105. void load_override(class_id_reference_type & t){
  106. load_override(static_cast<class_id_type &>(t));
  107. }
  108. void load_override(version_type & t){
  109. library_version_type lvt = this->get_library_version();
  110. if(boost::archive::library_version_type(7) < lvt){
  111. this->detail_common_iarchive::load_override(t);
  112. }
  113. else
  114. if(boost::archive::library_version_type(6) < lvt){
  115. uint_least8_t x=0;
  116. * this->This() >> x;
  117. t = boost::archive::version_type(x);
  118. }
  119. else
  120. if(boost::archive::library_version_type(5) < lvt){
  121. uint_least16_t x=0;
  122. * this->This() >> x;
  123. t = boost::archive::version_type(x);
  124. }
  125. else
  126. if(boost::archive::library_version_type(2) < lvt){
  127. // upto 255 versions
  128. unsigned char x=0;
  129. * this->This() >> x;
  130. t = version_type(x);
  131. }
  132. else{
  133. unsigned int x=0;
  134. * this->This() >> x;
  135. t = boost::archive::version_type(x);
  136. }
  137. }
  138. void load_override(boost::serialization::item_version_type & t){
  139. library_version_type lvt = this->get_library_version();
  140. // if(boost::archive::library_version_type(7) < lvt){
  141. if(boost::archive::library_version_type(6) < lvt){
  142. this->detail_common_iarchive::load_override(t);
  143. }
  144. else
  145. if(boost::archive::library_version_type(6) < lvt){
  146. uint_least16_t x=0;
  147. * this->This() >> x;
  148. t = boost::serialization::item_version_type(x);
  149. }
  150. else{
  151. unsigned int x=0;
  152. * this->This() >> x;
  153. t = boost::serialization::item_version_type(x);
  154. }
  155. }
  156. void load_override(serialization::collection_size_type & t){
  157. if(boost::archive::library_version_type(5) < this->get_library_version()){
  158. this->detail_common_iarchive::load_override(t);
  159. }
  160. else{
  161. unsigned int x=0;
  162. * this->This() >> x;
  163. t = serialization::collection_size_type(x);
  164. }
  165. }
  166. BOOST_ARCHIVE_OR_WARCHIVE_DECL void
  167. load_override(class_name_type & t);
  168. BOOST_ARCHIVE_OR_WARCHIVE_DECL void
  169. init();
  170. basic_binary_iarchive(unsigned int flags) :
  171. detail::common_iarchive<Archive>(flags)
  172. {}
  173. };
  174. } // namespace archive
  175. } // namespace boost
  176. #ifdef BOOST_MSVC
  177. #pragma warning(pop)
  178. #endif
  179. #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
  180. #endif // BOOST_ARCHIVE_BASIC_BINARY_IARCHIVE_HPP