summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/bimap/test/test_bimap_serialization.cpp
blob: 189e280c99d3f41058a2c11b6dc204a8fb71cce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Boost.Bimap
//
// Copyright (c) 2006-2007 Matias Capeletto
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

//  VC++ 8.0 warns on usage of certain Standard Library and API functions that
//  can be cause buffer overruns or other possible security issues if misused.
//  See https://web.archive.org/web/20071014014301/http://msdn.microsoft.com/msdnmag/issues/05/05/SafeCandC/default.aspx
//  But the wording of the warning is misleading and unsettling, there are no
//  portable alternative functions, and VC++ 8.0's own libraries use the
//  functions in question. So turn off the warnings.
#define _CRT_SECURE_NO_DEPRECATE
#define _SCL_SECURE_NO_DEPRECATE

#include <boost/config.hpp>

// std
#include <set>
#include <map>
#include <cstddef>
#include <cassert>
#include <algorithm>
#include <sstream>
#include <algorithm>

// Boost.Test
#include <boost/test/minimal.hpp>

// Boost
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>

// Boost.Bimap
#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;

    // Save it
    {
        bm b;

        b.insert(data.begin(),data.end());

        boost::archive::text_oarchive oa(oss);

        save_bimap(b,oa);
    }

    // Reload it
    {
        bm b;

        std::istringstream iss(oss.str());
        boost::archive::text_iarchive ia(iss);

        ia >> b;

        BOOST_CHECK( std::equal( b.begin(), b.end(), data.begin() ) );

        bm::left_const_iterator left_iter;

        ia >> left_iter;

        BOOST_CHECK( left_iter == b.left.begin() );

        bm::const_iterator iter;

        ia >> iter;

        BOOST_CHECK( iter == ++b.begin() );
    }

}


int test_main( int, char* [] )
{
    test_bimap_serialization();
    return 0;
}