File: iterator_ext.cpp

package info (click to toggle)
boost1.74 1.74.0%2Bds1-21
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 463,588 kB
  • sloc: cpp: 3,338,117; xml: 131,293; python: 33,088; ansic: 14,292; asm: 4,038; sh: 3,353; makefile: 1,193; perl: 1,036; yacc: 478; php: 212; ruby: 102; lisp: 24; sql: 13; csh: 6
file content (153 lines) | stat: -rw-r--r-- 3,551 bytes parent folder | download | duplicates (18)
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// Boost.Range library
//
//  Copyright Neil Groves 2014. Use, modification and
//  distribution is subject to 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)
//
// For more information, see http://www.boost.org/libs/range/
//

#include <boost/range/iterator.hpp>
#include <boost/static_assert.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/type_traits/is_base_of.hpp>
#include <boost/type_traits/decay.hpp>

#include <boost/test/test_tools.hpp>
#include <boost/test/unit_test.hpp>

#include <vector>

namespace boost_range_test
{

struct point
{
    int x;
    int y;
};

class shape
{
public:
    virtual ~shape()
    {
    }

    const std::vector<point>& points() const
    {
        return m_points;
    }

private:
    std::vector<point> m_points;
};

class rectangle : public shape
{
};

class circle : public shape
{
};

class container
{
    typedef std::vector<point> impl_t;
};

} // namespace boost_range_test

namespace boost
{
    template<typename T>
    struct range_mutable_iterator<
            T,
            typename boost::enable_if<
                boost::is_base_of<
                    boost_range_test::shape,
                    typename boost::remove_reference<
                        typename boost::remove_cv<T>::type
                    >::type
                >
            >::type
        >
    {
        typedef std::vector<boost_range_test::point>::iterator type;
    };

    template<typename T>
    struct range_const_iterator<
            T,
            typename boost::enable_if<
                boost::is_base_of<
                    boost_range_test::shape,
                    typename boost::remove_reference<
                        typename boost::remove_cv<T>::type
                    >::type
                >
            >::type
        >
    {
        typedef std::vector<boost_range_test::point>::const_iterator type;
    };

    template<>
    struct range_mutable_iterator<boost_range_test::container>
    {
        typedef std::vector<boost_range_test::point>::iterator type;
    };

    template<>
    struct range_const_iterator<boost_range_test::container>
    {
        typedef std::vector<boost_range_test::point>::const_iterator type;
    };
}

namespace boost_range_test
{
    template<typename Shape>
    void test_iterator_impl()
    {
        BOOST_STATIC_ASSERT((
            boost::is_same<
                std::vector<point>::iterator,
                typename boost::range_iterator<Shape>::type
            >::value));

        BOOST_STATIC_ASSERT((
            boost::is_same<
                std::vector<point>::const_iterator,
                typename boost::range_iterator<const Shape>::type
            >::value));

    #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
        BOOST_STATIC_ASSERT((
            boost::is_same<
                std::vector<point>::iterator,
                typename boost::range_iterator<Shape&&>::type
            >::value));
    #endif
    }

    void test_iterator()
    {
        test_iterator_impl<shape>();
        test_iterator_impl<rectangle>();
        test_iterator_impl<circle>();

        test_iterator_impl<container>();
    }
} // namespace boost_range_test

boost::unit_test::test_suite* init_unit_test_suite( int argc, char* argv[] )
{
    boost::unit_test::test_suite* test =
        BOOST_TEST_SUITE("Boost.Range range_iterator meta-function");

    test->add(BOOST_TEST_CASE(&boost_range_test::test_iterator));

    return test;
}