-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiterator.hpp
345 lines (262 loc) · 7.79 KB
/
miterator.hpp
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
// MITERATOR
//
// Copyright Claas Bontus
//
// Use, modification and distribution is subject to the
// Boost Software License, Version 1.0. (See accompanying
// file LICENSE.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Project home: https://github.com/ClaasBontus/miterator
//
#pragma once
#ifndef MITERATORHPP
#define MITERATORHPP
#include <iterator>
#include <utility>
#include <functional>
#include <type_traits>
#include <tuple>
namespace miterator
{
namespace detail
{
/// Select iterator or const_iterator depending on boolean
template<class Cont,bool isconst>
struct cc_it
{ using type= typename Cont::const_iterator; };
template<class Cont>
struct cc_it<Cont,false>
{ using type= typename Cont::iterator; };
/// Traits for choosing correct iterator
template<class Cont>
struct it_h_t
{
using iterator= typename cc_it<Cont,std::is_const<Cont>::value>::type;
using const_iterator= typename Cont::const_iterator;
};
template<class T>
struct it_h_t<T*>
{
using iterator= T *;
using const_iterator= T const *;
};
template<class T,size_t N>
struct it_h_t<T[N]>
{
using iterator= T*;
using const_iterator= T const *;
};
template<typename Tup, size_t... index>
inline
void
incr_helper(Tup& tup, std::index_sequence<index...>)
{
(void)std::initializer_list<int>{(++(std::get<index>(tup)), 0)...};
}
/// Increment each member of the tuple
template<typename Tup>
inline
void
incr_tuple( Tup & tup )
{
constexpr auto s= std::tuple_size<typename std::decay<Tup>::type>::value;
incr_helper( tup, std::make_index_sequence<s>{} );
}
template <class T>
constexpr std::add_const_t<T>& asconst(T& t) noexcept { return t; }
/// Derived from
/// http://www.cppsamples.com/common-tasks/apply-tuple-to-function.html
template<typename F, typename Tup, size_t ...S >
inline
decltype(auto)
apply_tuple_impl( F && fn, Tup & t, std::index_sequence<S...> )
{
return std::forward<F>(fn)( *( std::get<S>(t) )... );
}
template<typename F, typename Tup, size_t ...S >
inline
decltype(auto)
apply_tuple_impl( F && fn, Tup const & t, std::index_sequence<S...> )
{
return std::forward<F>(fn)( asconst(*( std::get<S>(t) ))... );
}
template<typename F, typename Tup>
inline
decltype(auto)
apply_from_tuple( F && fn, Tup & t )
{
constexpr auto s= std::tuple_size<typename std::decay<Tup>::type>::value;
return apply_tuple_impl( std::forward<F>( fn ), t,
std::make_index_sequence<s>() );
}
/// \brief Wraps a tuple with iterators and provides functions for
/// increment. it_wrapper is returned when an miterator_proxy
/// gets dereferenced.
template<class ... Cont>
struct it_wrapper
{
using it_tuple_t= std::tuple<typename it_h_t<Cont>::iterator...>;
using c_it_tuple_t= std::tuple<typename it_h_t<Cont>::const_iterator...>;
explicit
it_wrapper( it_tuple_t its )
: m_iterators( its )
{}
it_wrapper &
operator++()
{
incr_tuple( m_iterators );
return *this;
}
it_wrapper
operator++(int)
{
it_wrapper tmp(*this);
operator++();
return tmp;
}
it_tuple_t &
get_iterators()
{ return m_iterators; }
it_tuple_t const &
get_iterators() const
{ return m_iterators; }
private:
it_tuple_t m_iterators;
}; // struct it_wrapper
/// \brief miterator_proxy is the struct that is used as a
/// surrogate iterator within range based for loops.
/// It provides functions for dereferencing and increment.
template<class ... Cont>
struct miterator_proxy
{
using wrapper_t= it_wrapper<Cont...>;
using it_tuple_t= typename wrapper_t::it_tuple_t;
wrapper_t iterators;
explicit
miterator_proxy( it_tuple_t its )
: iterators( its )
{}
wrapper_t const &
operator*() const { return iterators; }
wrapper_t &
operator*() { return iterators; }
miterator_proxy &
operator++()
{
++iterators;
return *this;
}
miterator_proxy
operator++(int)
{
miterator_proxy tmp(*this);
operator++();
return tmp;
}
}; // struct miterator_proxy
/// \brief miterator internally stores the various begin and end
/// iterators. It provides functions begin and end which return
/// objects of struct miterator_proxy.
template<class ... Cont>
struct miterator
{
using proxy_t= miterator_proxy<Cont...>;
explicit
miterator( Cont& ... containers )
: b_it( std::make_tuple( std::begin(containers)... ) )
, e_it( std::make_tuple( std::end( containers)... ) )
{}
proxy_t
begin() const { return b_it; }
proxy_t
end() const { return e_it; }
proxy_t b_it;
proxy_t e_it;
}; // struct miterator
/// Helper struct used when evaluating operator!= on tuples of iterators.
template<size_t I,class T1, class T2>
struct compare_tuples_h
{
inline
bool
operator()( const T1 &t1, const T2 &t2 )
{
return ( std::get<I>( t1 ) != std::get<I>( t2 ) )
&& compare_tuples_h<I-1,T1,T2>{}( t1, t2 );
}
};
template<class T1, class T2>
struct compare_tuples_h<0,T1,T2>
{
inline
bool
operator()( const T1 &t1, const T2 &t2 )
{
return ( std::get<0>( t1 ) != std::get<0>( t2 ) );
}
};
/// Helper function used when evaluating operator!= on tuples of iterators.
template<class T1, class T2>
inline
bool
compare_tuples( const T1 &t1, const T2 &t2 )
{
constexpr auto s= std::tuple_size<typename std::decay<T1>::type>::value;
return compare_tuples_h<s-1,T1,T2>{}( t1, t2 );
}
} // namespace detail
/// Returns the I'th iterator within an it_wrapper.
template<size_t I,class ... T>
inline
decltype(auto)
get( detail::it_wrapper<T...> & mit )
{
return std::get<I>( mit.get_iterators() );
}
/// Returns the I'th iterator within an it_wrapper. Ensures const correctness.
template<size_t I,class ... T>
inline
decltype(auto)
get( detail::it_wrapper<T...> const & mit )
{
using type= typename std::tuple_element<I,typename detail::it_wrapper<T...>
::c_it_tuple_t>::type;
return type( std::get<I>( mit.get_iterators() ) );
}
template<typename F, typename ... T>
inline
decltype(auto)
apply( detail::it_wrapper<T...> & mit, F && fn )
{
return detail::apply_from_tuple( std::forward<F>( fn ),
mit.get_iterators() );
}
template<typename F, typename ... T>
inline
decltype(auto)
apply( detail::it_wrapper<T...> const & mit, F && fn )
{
return detail::apply_from_tuple( std::forward<F>( fn ),
mit.get_iterators() );
}
/// \brief Helper function which relieves the user from specifying the
/// template parameters.
template<class ... Cont>
inline
detail::miterator<Cont...>
make_miterator( Cont& ... containers )
{ return detail::miterator<Cont...>( containers... ); }
} // namespace miterator
/// Compare two surrogate iterators of type miterator_proxy.
template<class ... T>
inline
bool
operator!=( const miterator::detail::miterator_proxy<T...> &p1,
const miterator::detail::miterator_proxy<T...> &p2 )
{
auto &t1= p1.iterators.get_iterators();
auto &t2= p2.iterators.get_iterators();
return miterator::detail::compare_tuples( t1, t2 );
}
#endif // MITERATORHPP