![]() |
QxOrm
1.4.3
C++ Object Relational Mapping library
|
00001 /**************************************************************************** 00002 ** 00003 ** http://www.qxorm.com/ 00004 ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com) 00005 ** 00006 ** This file is part of the QxOrm library 00007 ** 00008 ** This software is provided 'as-is', without any express or implied 00009 ** warranty. In no event will the authors be held liable for any 00010 ** damages arising from the use of this software 00011 ** 00012 ** Commercial Usage 00013 ** Licensees holding valid commercial QxOrm licenses may use this file in 00014 ** accordance with the commercial license agreement provided with the 00015 ** Software or, alternatively, in accordance with the terms contained in 00016 ** a written agreement between you and Lionel Marty 00017 ** 00018 ** GNU General Public License Usage 00019 ** Alternatively, this file may be used under the terms of the GNU 00020 ** General Public License version 3.0 as published by the Free Software 00021 ** Foundation and appearing in the file 'license.gpl3.txt' included in the 00022 ** packaging of this file. Please review the following information to 00023 ** ensure the GNU General Public License version 3.0 requirements will be 00024 ** met : http://www.gnu.org/copyleft/gpl.html 00025 ** 00026 ** If you are unsure which license is appropriate for your use, or 00027 ** if you have questions regarding the use of this file, please contact : 00028 ** contact@qxorm.com 00029 ** 00030 ****************************************************************************/ 00031 00032 #ifdef _QX_ENABLE_BOOST_SERIALIZATION 00033 #ifndef _QX_SERIALIZATION_BOOST_UNORDERED_SET_H_ 00034 #define _QX_SERIALIZATION_BOOST_UNORDERED_SET_H_ 00035 00036 #ifdef _MSC_VER 00037 #pragma once 00038 #endif 00039 00040 #include <boost/version.hpp> 00041 #include <boost/unordered_set.hpp> 00042 00043 #include <boost/serialization/serialization.hpp> 00044 #include <boost/serialization/collections_save_imp.hpp> 00045 #include <boost/serialization/collections_load_imp.hpp> 00046 #include <boost/serialization/split_free.hpp> 00047 #include <boost/serialization/utility.hpp> 00048 #include <boost/serialization/nvp.hpp> 00049 00050 namespace boost { 00051 namespace serialization { 00052 00053 #if (BOOST_VERSION > 105700) 00054 00055 template <class Archive, class Key> 00056 inline void save(Archive & ar, const boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00057 { 00058 long lSize = static_cast<long>(t.size()); 00059 ar << boost::serialization::make_nvp("size", lSize); 00060 00061 typedef typename boost::unordered_set<Key>::const_iterator type_itr; 00062 for (type_itr itr = t.begin(); itr != t.end(); ++itr) 00063 { ar << boost::serialization::make_nvp("item", (* itr)); } 00064 } 00065 00066 template <class Archive, class Key> 00067 inline void load(Archive & ar, boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00068 { 00069 long lSize = 0; 00070 ar >> boost::serialization::make_nvp("size", lSize); 00071 00072 t.clear(); 00073 t.reserve(lSize); 00074 00075 for (long l = 0; l < lSize; l++) 00076 { 00077 Key item; 00078 ar >> boost::serialization::make_nvp("item", item); 00079 t.insert(item); 00080 } 00081 } 00082 00083 #else // (BOOST_VERSION > 105700) 00084 00085 template <class Archive, class Key> 00086 inline void save(Archive & ar, const boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00087 { 00088 boost::serialization::stl::save_collection< Archive, boost::unordered_set<Key> >(ar, t); 00089 } 00090 00091 template <class Archive, class Key> 00092 inline void load(Archive & ar, boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00093 { 00094 boost::serialization::stl::load_collection< Archive, boost::unordered_set<Key>, 00095 boost::serialization::stl::archive_input_set< Archive, boost::unordered_set<Key> >, 00096 boost::serialization::stl::no_reserve_imp<boost::unordered_set< Key > > >(ar, t); 00097 } 00098 00099 #endif // (BOOST_VERSION > 105700) 00100 00101 template <class Archive, class Key> 00102 inline void serialize(Archive & ar, boost::unordered_set<Key> & t, const unsigned int file_version) 00103 { 00104 boost::serialization::split_free(ar, t, file_version); 00105 } 00106 00107 #if (BOOST_VERSION > 105700) 00108 00109 template <class Archive, class Key> 00110 inline void save(Archive & ar, const boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00111 { 00112 long lSize = static_cast<long>(t.size()); 00113 ar << boost::serialization::make_nvp("size", lSize); 00114 00115 typedef typename boost::unordered_multiset<Key>::const_iterator type_itr; 00116 for (type_itr itr = t.begin(); itr != t.end(); ++itr) 00117 { ar << boost::serialization::make_nvp("item", (* itr)); } 00118 } 00119 00120 template <class Archive, class Key> 00121 inline void load(Archive & ar, boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00122 { 00123 long lSize = 0; 00124 ar >> boost::serialization::make_nvp("size", lSize); 00125 00126 t.clear(); 00127 t.reserve(lSize); 00128 00129 for (long l = 0; l < lSize; l++) 00130 { 00131 Key item; 00132 ar >> boost::serialization::make_nvp("item", item); 00133 t.insert(item); 00134 } 00135 } 00136 00137 #else // (BOOST_VERSION > 105700) 00138 00139 template <class Archive, class Key> 00140 inline void save(Archive & ar, const boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00141 { 00142 boost::serialization::stl::save_collection< Archive, boost::unordered_multiset<Key> >(ar, t); 00143 } 00144 00145 template <class Archive, class Key> 00146 inline void load(Archive & ar, boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00147 { 00148 #if (BOOST_VERSION >= 104200) 00149 boost::serialization::stl::load_collection< Archive, boost::unordered_multiset<Key>, 00150 boost::serialization::stl::archive_input_set< Archive, boost::unordered_multiset<Key> >, 00151 boost::serialization::stl::no_reserve_imp< boost::unordered_multiset<Key> > >(ar, t); 00152 #else // (BOOST_VERSION >= 104200) 00153 boost::serialization::stl::load_collection< Archive, boost::unordered_multiset<Key>, 00154 boost::serialization::stl::archive_input_multiset< Archive, boost::unordered_multiset<Key> >, 00155 boost::serialization::stl::no_reserve_imp< boost::unordered_multiset<Key> > >(ar, t); 00156 #endif // (BOOST_VERSION >= 104200) 00157 } 00158 00159 #endif // (BOOST_VERSION > 105700) 00160 00161 template <class Archive, class Key> 00162 inline void serialize(Archive & ar, boost::unordered_multiset<Key> & t, const unsigned int file_version) 00163 { 00164 boost::serialization::split_free(ar, t, file_version); 00165 } 00166 00167 } // namespace serialization 00168 } // namespace boost 00169 00170 #endif // _QX_SERIALIZATION_BOOST_UNORDERED_SET_H_ 00171 #endif // _QX_ENABLE_BOOST_SERIALIZATION