#define _CRT_SECURE_NO_DEPRECATE
#define _SCL_SECURE_NO_DEPRECATE
#include <boost/config.hpp>
#include <set>
#include <map>
#include <cstddef>
#include <cassert>
#include <algorithm>
#include <sstream>
#include <algorithm>
#include <boost/core/lightweight_test.hpp>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/bimap/bimap.hpp>
template< class Bimap, class Archive >
void save_bimap(const Bimap & b, Archive & ar)
{
using namespace boost::bimaps;
ar << b;
const typename Bimap::left_const_iterator left_iter = b.left.begin();
ar << left_iter;
const typename Bimap::const_iterator iter = ++b.begin();
ar << iter;
}
void test_bimap_serialization()
{
using namespace boost::bimaps;
typedef bimap<int,double> bm;
std::set< bm::value_type > data;
data.insert( bm::value_type(1,0.1) );
data.insert( bm::value_type(2,0.2) );
data.insert( bm::value_type(3,0.3) );
data.insert( bm::value_type(4,0.4) );
std::ostringstream oss;
{
bm b;
b.insert(data.begin(),data.end());
boost::archive::text_oarchive oa(oss);
save_bimap(b,oa);
}
{
bm b;
std::istringstream iss(oss.str());
boost::archive::text_iarchive ia(iss);
ia >> b;
BOOST_TEST( std::equal( b.begin(), b.end(), data.begin() ) );
bm::left_const_iterator left_iter;
ia >> left_iter;
BOOST_TEST( left_iter == b.left.begin() );
bm::const_iterator iter;
ia >> iter;
BOOST_TEST( iter == ++b.begin() );
}
}
int main()
{
test_bimap_serialization();
return boost::report_errors();
}