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
|
// This file is part of CAF, the C++ Actor Framework. See the file LICENSE in
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#pragma once
#include <iterator>
#include "caf/detail/type_traits.hpp"
namespace caf {
template <class T>
class input_range {
public:
virtual ~input_range() {
// nop
}
input_range() = default;
input_range(const input_range&) = default;
input_range& operator=(const input_range&) = default;
class iterator : public std::iterator<std::input_iterator_tag, T> {
public:
iterator(input_range* range) : xs_(range) {
if (xs_)
advance();
else
x_ = nullptr;
}
iterator(const iterator&) = default;
iterator& operator=(const iterator&) = default;
bool operator==(const iterator& other) const {
return xs_ == other.xs_;
}
bool operator!=(const iterator& other) const {
return !(*this == other);
}
T& operator*() {
return *x_;
}
T* operator->() {
return x_;
}
iterator& operator++() {
advance();
return *this;
}
iterator operator++(int) {
iterator copy{xs_};
advance();
return copy;
}
private:
void advance() {
x_ = xs_->next();
if (!x_)
xs_ = nullptr;
}
input_range* xs_;
T* x_;
};
virtual T* next() = 0;
iterator begin() {
return this;
}
iterator end() const {
return nullptr;
}
};
template <class I>
class input_range_impl : public input_range<detail::value_type_of_t<I>> {
public:
using value_type = detail::value_type_of_t<I>;
input_range_impl(I first, I last) : pos_(first), last_(last) {
// nop
}
value_type* next() override {
return (pos_ == last_) ? nullptr : &(*pos_++);
}
private:
I pos_;
I last_;
};
/// @relates input_range
template <class I>
input_range_impl<I> make_input_range(I first, I last) {
return {first, last};
}
} // namespace caf
|