File: iterator.h

package info (click to toggle)
onetbb 2022.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,440 kB
  • sloc: cpp: 129,228; ansic: 9,745; python: 808; xml: 183; objc: 176; makefile: 66; sh: 66; awk: 41; javascript: 37
file content (255 lines) | stat: -rw-r--r-- 9,249 bytes parent folder | download | duplicates (6)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*
    Copyright (c) 2005-2021 Intel Corporation

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

#ifndef __TBB_test_common_iterator_H
#define __TBB_test_common_iterator_H

#include "config.h"

#include <iterator>
#include <memory>
#include <atomic>
#include "utils_assert.h"

namespace utils {

template <typename T>
class InputIterator {
    typedef std::allocator<T> allocator_type;
    typedef std::allocator_traits<allocator_type> allocator_traits_type;
public:
    typedef std::input_iterator_tag iterator_category;
    typedef T value_type;
    typedef typename allocator_traits_type::difference_type difference_type;
    typedef typename allocator_traits_type::pointer pointer;
    typedef typename allocator_traits_type::value_type& reference;

    InputIterator() : my_ptr(nullptr) {}
    explicit InputIterator ( T * ptr ) : my_ptr(ptr), my_shared_epoch(new Epoch), my_current_epoch(0) {}

    InputIterator( const InputIterator& it ) {
        REQUIRE_MESSAGE(it.my_current_epoch == it.my_shared_epoch->epoch, "Copying an invalidated iterator");
        my_ptr = it.my_ptr;
        my_shared_epoch = it.my_shared_epoch;
        my_current_epoch = it.my_current_epoch;
        ++my_shared_epoch->refcounter;
    }

    InputIterator& operator= ( const InputIterator& it ) {
        REQUIRE_MESSAGE(it.my_current_epoch == it.my_shared_epoch->epoch, "Assigning an invalidated iterator");
        my_ptr = it.my_ptr;
        my_current_epoch = it.my_current_epoch;
        if(my_shared_epoch == it.my_shared_epoch)
            return *this;
        destroy();
        my_shared_epoch = it.my_shared_epoch;
        ++my_shared_epoch->refcounter;
        return *this;
    }

    T& operator* () const {
        REQUIRE_MESSAGE(my_shared_epoch->epoch == my_current_epoch, "Dereferencing an invalidated input iterator");
        return *my_ptr;
    }

    InputIterator& operator++ () {
        REQUIRE_MESSAGE(my_shared_epoch->epoch == my_current_epoch, "Incrementing an invalidated input iterator");
        ++my_ptr;
        ++my_current_epoch;
        ++my_shared_epoch->epoch;
        return *this;
    }

    InputIterator operator++( int ) {
        InputIterator it = *this;
        ++*this;
        return it;
    }

    bool operator== ( const InputIterator& it ) const {
        REQUIRE_MESSAGE(my_shared_epoch->epoch == my_current_epoch, "Comparing an invalidated input iterator");
        REQUIRE_MESSAGE(it.my_shared_epoch->epoch == it.my_current_epoch, "Comparing with an invalidated input iterator");
        return my_ptr == it.my_ptr;
    }

    ~InputIterator() {
        destroy();
    }
private:
    void destroy() {
        if(0 == --my_shared_epoch->refcounter) {
            delete my_shared_epoch;
        }
    }
    struct Epoch {
        typedef std::atomic<size_t> Counter;
        Epoch() { epoch = 0; refcounter = 1; }
        Counter epoch;
        Counter refcounter;
    };

    T * my_ptr;
    Epoch *my_shared_epoch;
    size_t my_current_epoch;
};

template <typename T>
class ForwardIterator {
    T * my_ptr;
    typedef std::allocator<T> allocator_type;
    typedef std::allocator_traits<allocator_type> allocator_traits_type;
public:
    typedef std::forward_iterator_tag iterator_category;
    typedef T value_type;
    typedef typename allocator_traits_type::difference_type difference_type;
    typedef typename allocator_traits_type::pointer pointer;
    typedef typename allocator_traits_type::value_type& reference;

    ForwardIterator() : my_ptr(nullptr) {}
    explicit ForwardIterator ( T * ptr ) : my_ptr(ptr){}

    ForwardIterator ( const ForwardIterator& r ) : my_ptr(r.my_ptr){}
    T& operator* () const { return *my_ptr; }
    ForwardIterator& operator++ () { ++my_ptr; return *this; }
    ForwardIterator operator++(int) {
        ForwardIterator result = *this;
        ++*this;
        return result;
    }

    bool operator== ( const ForwardIterator& r ) const { return my_ptr == r.my_ptr; }
};

template <typename T>
class RandomIterator {
    T * my_ptr;
    typedef std::allocator<T> allocator_type;
    typedef std::allocator_traits<allocator_type> allocator_traits_type;
public:
    typedef std::random_access_iterator_tag iterator_category;
    typedef T value_type;
    typedef typename allocator_traits_type::pointer pointer;
    typedef typename allocator_traits_type::value_type& reference;
    typedef typename allocator_traits_type::difference_type difference_type;

    RandomIterator() : my_ptr(nullptr) {}
    explicit RandomIterator ( T * ptr ) : my_ptr(ptr){}
    RandomIterator ( const RandomIterator& r ) : my_ptr(r.my_ptr){}
    T& operator* () const { return *my_ptr; }
    RandomIterator& operator++ () { ++my_ptr; return *this; }
    RandomIterator operator++(int) {
        RandomIterator result = *this;
        ++*this;
        return result;
    }
    RandomIterator& operator--() { --my_ptr; return *this; }
    RandomIterator operator--(int) {
        RandomIterator result = *this;
        --*this;
        return result;
    }

    bool operator== ( const RandomIterator& r ) const { return my_ptr == r.my_ptr; }
    bool operator!= ( const RandomIterator& r ) const { return my_ptr != r.my_ptr; }
    difference_type operator- (const RandomIterator &r) const {return my_ptr - r.my_ptr;}
    RandomIterator operator+ (difference_type n) const {return RandomIterator(my_ptr + n);}
    bool operator< (const RandomIterator &r) const {return my_ptr < r.my_ptr;}
    bool operator> (const RandomIterator &r) const {return my_ptr > r.my_ptr;}
    bool operator<=(const RandomIterator &r) const {return my_ptr <= r.my_ptr;}
    bool operator>=(const RandomIterator &r) const {return my_ptr >= r.my_ptr;}

    RandomIterator& operator+=( difference_type n ) {
        my_ptr += n;
        return *this;
    }
    RandomIterator& operator-=( difference_type n ) {
        my_ptr -= n;
        return *this;
    }

    friend RandomIterator operator+( difference_type n, RandomIterator it ) {
        return RandomIterator(it.my_ptr + n);
    }
    RandomIterator operator-( difference_type n ) const {
        return RandomIterator(my_ptr - n);
    }
    reference operator[]( difference_type n ) const {
        return my_ptr[n];
    }
};

template <typename T>
class ConstRandomIterator {
    const T * my_ptr;
    typedef std::allocator<T> allocator_type;
    typedef std::allocator_traits<allocator_type> allocator_traits_type;
public:
    typedef std::random_access_iterator_tag iterator_category;
    typedef const T value_type;
    typedef typename allocator_traits_type::const_pointer pointer;
    typedef const typename allocator_traits_type::value_type& reference;
    typedef typename allocator_traits_type::difference_type difference_type;

    ConstRandomIterator() : my_ptr(nullptr) {}
    explicit ConstRandomIterator ( const T * ptr ) : my_ptr(ptr){}
    ConstRandomIterator ( const ConstRandomIterator& r ) : my_ptr(r.my_ptr){}
    const T& operator* () const { return *my_ptr; }
    ConstRandomIterator& operator++ () { ++my_ptr; return *this; }
    ConstRandomIterator operator++(int) {
        ConstRandomIterator result = *this;
        ++*this;
        return result;
    }
    ConstRandomIterator& operator--() { --my_ptr; return *this; }
    ConstRandomIterator operator--(int) {
        ConstRandomIterator result = *this;
        --*this;
        return result;
    }

    bool operator== ( const ConstRandomIterator& r ) const { return my_ptr == r.my_ptr; }
    bool operator!= ( const ConstRandomIterator& r ) const { return my_ptr != r.my_ptr; }
    difference_type operator- (const ConstRandomIterator &r) const {return my_ptr - r.my_ptr;}
    ConstRandomIterator operator+ (difference_type n) const {return ConstRandomIterator(my_ptr + n);}
    bool operator< (const ConstRandomIterator &r) const {return my_ptr < r.my_ptr;}
    bool operator> (const ConstRandomIterator &r) const {return my_ptr > r.my_ptr;}
    bool operator<=(const ConstRandomIterator &r) const {return my_ptr <= r.my_ptr;}
    bool operator>=(const ConstRandomIterator &r) const {return my_ptr >= r.my_ptr;}


    ConstRandomIterator& operator+=( difference_type n ) {
        my_ptr += n;
        return *this;
    }
    ConstRandomIterator& operator-=( difference_type n ) {
        my_ptr -= n;
        return *this;
    }

    friend ConstRandomIterator operator+( difference_type n, ConstRandomIterator it ) {
        return ConstRandomIterator(it.my_ptr + n);
    }
    ConstRandomIterator operator-( difference_type n ) const {
        return ConstRandomIterator(my_ptr - n);
    }
    reference operator[]( difference_type n ) const {
        return my_ptr[n];
    }
};

} // namespace utils

#endif // __TBB_test_common_iterator_H