QxOrm
1.5.0
C++ Object Relational Mapping library
|
00001 /**************************************************************************** 00002 ** 00003 ** https://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/serialization/serialization.hpp> 00041 #include <boost/serialization/collections_save_imp.hpp> 00042 #include <boost/serialization/collections_load_imp.hpp> 00043 #include <boost/serialization/split_free.hpp> 00044 #include <boost/serialization/utility.hpp> 00045 #include <boost/serialization/nvp.hpp> 00046 00047 namespace boost { 00048 namespace serialization { 00049 00050 #if (BOOST_VERSION > 105700) 00051 00052 template <class Archive, class Key> 00053 inline void save(Archive & ar, const boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00054 { 00055 long lSize = static_cast<long>(t.size()); 00056 ar << boost::serialization::make_nvp("size", lSize); 00057 00058 typedef typename boost::unordered_set<Key>::const_iterator type_itr; 00059 for (type_itr itr = t.begin(); itr != t.end(); ++itr) 00060 { ar << boost::serialization::make_nvp("item", (* itr)); } 00061 } 00062 00063 template <class Archive, class Key> 00064 inline void load(Archive & ar, boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00065 { 00066 long lSize = 0; 00067 ar >> boost::serialization::make_nvp("size", lSize); 00068 00069 t.clear(); 00070 t.reserve(lSize); 00071 00072 for (long l = 0; l < lSize; l++) 00073 { 00074 Key item; 00075 ar >> boost::serialization::make_nvp("item", item); 00076 t.insert(item); 00077 } 00078 } 00079 00080 #else // (BOOST_VERSION > 105700) 00081 00082 template <class Archive, class Key> 00083 inline void save(Archive & ar, const boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00084 { 00085 boost::serialization::stl::save_collection< Archive, boost::unordered_set<Key> >(ar, t); 00086 } 00087 00088 template <class Archive, class Key> 00089 inline void load(Archive & ar, boost::unordered_set<Key> & t, const unsigned int /* file_version */) 00090 { 00091 boost::serialization::stl::load_collection< Archive, boost::unordered_set<Key>, 00092 boost::serialization::stl::archive_input_set< Archive, boost::unordered_set<Key> >, 00093 boost::serialization::stl::no_reserve_imp<boost::unordered_set< Key > > >(ar, t); 00094 } 00095 00096 #endif // (BOOST_VERSION > 105700) 00097 00098 template <class Archive, class Key> 00099 inline void serialize(Archive & ar, boost::unordered_set<Key> & t, const unsigned int file_version) 00100 { 00101 boost::serialization::split_free(ar, t, file_version); 00102 } 00103 00104 #if (BOOST_VERSION > 105700) 00105 00106 template <class Archive, class Key> 00107 inline void save(Archive & ar, const boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00108 { 00109 long lSize = static_cast<long>(t.size()); 00110 ar << boost::serialization::make_nvp("size", lSize); 00111 00112 typedef typename boost::unordered_multiset<Key>::const_iterator type_itr; 00113 for (type_itr itr = t.begin(); itr != t.end(); ++itr) 00114 { ar << boost::serialization::make_nvp("item", (* itr)); } 00115 } 00116 00117 template <class Archive, class Key> 00118 inline void load(Archive & ar, boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00119 { 00120 long lSize = 0; 00121 ar >> boost::serialization::make_nvp("size", lSize); 00122 00123 t.clear(); 00124 t.reserve(lSize); 00125 00126 for (long l = 0; l < lSize; l++) 00127 { 00128 Key item; 00129 ar >> boost::serialization::make_nvp("item", item); 00130 t.insert(item); 00131 } 00132 } 00133 00134 #else // (BOOST_VERSION > 105700) 00135 00136 template <class Archive, class Key> 00137 inline void save(Archive & ar, const boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00138 { 00139 boost::serialization::stl::save_collection< Archive, boost::unordered_multiset<Key> >(ar, t); 00140 } 00141 00142 template <class Archive, class Key> 00143 inline void load(Archive & ar, boost::unordered_multiset<Key> & t, const unsigned int /* file_version */) 00144 { 00145 #if (BOOST_VERSION >= 104200) 00146 boost::serialization::stl::load_collection< Archive, boost::unordered_multiset<Key>, 00147 boost::serialization::stl::archive_input_set< Archive, boost::unordered_multiset<Key> >, 00148 boost::serialization::stl::no_reserve_imp< boost::unordered_multiset<Key> > >(ar, t); 00149 #else // (BOOST_VERSION >= 104200) 00150 boost::serialization::stl::load_collection< Archive, boost::unordered_multiset<Key>, 00151 boost::serialization::stl::archive_input_multiset< Archive, boost::unordered_multiset<Key> >, 00152 boost::serialization::stl::no_reserve_imp< boost::unordered_multiset<Key> > >(ar, t); 00153 #endif // (BOOST_VERSION >= 104200) 00154 } 00155 00156 #endif // (BOOST_VERSION > 105700) 00157 00158 template <class Archive, class Key> 00159 inline void serialize(Archive & ar, boost::unordered_multiset<Key> & t, const unsigned int file_version) 00160 { 00161 boost::serialization::split_free(ar, t, file_version); 00162 } 00163 00164 } // namespace serialization 00165 } // namespace boost 00166 00167 #endif // _QX_SERIALIZATION_BOOST_UNORDERED_SET_H_ 00168 #endif // _QX_ENABLE_BOOST_SERIALIZATION