previously my program used to serialize the whole std::multimap<Participant*, Connection*> after it has been completely populated. and that was simple arc & _connections for both save and restore.
but that needs every connection object to stay in memory. but I don't need these objects for anything other that serialization. So to minimize memory consumption its decided to serialize std::make_pair(connection->participant(), connection) as soon as they are created. and delete after serialization is done.
expected size of multimap is known before populate starts.
What I want is to manually serialize these pairs such that I don't need to alter deserialization code which simply arc & _connections;
from boost/serialization/collections_save_imp.hpp I see
boost::serialization::save_construct_data_adl(
ar,
&(*it),
boost::serialization::version<BOOST_DEDUCED_TYPENAME Container::value_type>::value
);
ar << boost::serialization::make_nvp("item", *it++);
So should I need to use something like
typedef std::pair<Participant*, Connection*> PairT;
ar << BOOST_SERIALIZATION_NVP(expected_size);
if(3 < ar.get_library_version()){// I don't really understand this magic number here
const unsigned int item_version = boost::serialization::version<PairT>::value;
ar << BOOST_SERIALIZATION_NVP(item_version);
}
PairT pair = std::make_pair(connection->participant(), connection);
boost::serialization::save_construct_data_adl(
ar,
pair,
boost::serialization::version<PairT>::value
);
ar << boost::serialization::make_nvp("item", pair);
delete connection;
I am not sure exactly how it should be done. just making guesses.