blob: 044bd65f302022d04606a6a7362b553b818d621b (
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
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
|
/*
* esodata - data structures and other things, of varying utility
* Copyright 2022, Ben Culkin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package bjc.data;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.Iterator;
/**
* An iterator that supports queuing elements after/before the current iterator;
*
* @author bjculkin
*
* @param <E> The type of element this iterator iterates over
*/
public class QueuedIterator<E> implements Iterator<E> {
private Iterator<E> cur;
private Deque<Iterator<E>> pending;
/**
* Static method for constructing iterators.
*
* @param <E> The type of element this iterator iterates over
*
* @return A queued iterator.
*/
public static <E> QueuedIterator<E> queued() {
return new QueuedIterator<>();
}
/**
* Static method for constructing iterators.
*
* @param <E> The type of element this iterator iterates over
*
* @param vals The values to iterate over.
*
* @return A queued iterator.
*/
@SafeVarargs
public static <E> QueuedIterator<E> queued(E... vals) {
return new QueuedIterator<>(new ArrayIterator<>(vals));
}
/**
* Static method for constructing iterators.
*
* @param <E> The type of element this iterator iterates over
*
* @param itrs The iterators to use.
*
* @return A queued iterator over the provided iterators.
*/
@SafeVarargs
public static <E> QueuedIterator<E> queued(Iterator<E>... itrs) {
return new QueuedIterator<>(itrs);
}
/**
* Static method for constructing iterators.
*
* @param <E> The type of element this iterator iterates over
*
* @param itrs The iterables to use.
*
* @return A queued iterator over the provided iterables.
*/
@SafeVarargs
public static <E> QueuedIterator<E> queued(Iterable<E>... itrs) {
return new QueuedIterator<>(itrs);
}
/**
* Create a new queued iterator that starts blank.
*/
public QueuedIterator() {
pending = new ArrayDeque<>();
}
/**
* Create a new queued iterator with a set of initial sources.
*
* @param inits
* The set of initial iterators to use.
*/
@SafeVarargs
public QueuedIterator(Iterator<E>... inits) {
this();
for (Iterator<E> init : inits) pending.add(init);
}
/**
* Create a new queued iterator with a set of initial sources.
*
* @param inits
* The set of initial iterables to use.
*/
@SafeVarargs
public QueuedIterator(Iterable<E>... inits) {
this();
for (Iterable<E> init : inits) pending.add(init.iterator());
}
/**
* Create a new queued iterator with a set of initial values.
*
* @param vals
* The set of initial values to use.
*/
@SafeVarargs
public QueuedIterator(E... vals) {
this(new ArrayIterator<>(vals));
}
/**
* Add a new iterator who we will iterate through first.
*
* @param itr
* The iterator to go through first.
*/
public void before(Iterator<E> itr) {
pending.push(cur);
cur = itr;
}
/**
* Add a new iterable who we will iterate through first.
*
* @param itr
* The iterable to go through first.
*/
public void before(Iterable<E> itr) {
before(itr.iterator());
}
/**
* Add a new set of values who we will iterate through first.
*
* @param vals
* Values to iterate over first.
*/
public void before(@SuppressWarnings("unchecked") E... vals) {
before(new ArrayIterator<>(vals));
}
/**
* Add a new iterator who we will iterate through next.
*
* @param itr
* The iterator to go through next.
*/
public void after(Iterator<E> itr) {
pending.push(itr);
}
/**
* Add a new iterable who we will iterate through next.
*
* @param itr
* The iterable to go through next.
*/
public void after(Iterable<E> itr) {
after(itr.iterator());
}
/**
* Add a new set of values who we will iterate through next.
*
* @param vals
* The values to iterate over next.
*/
public void after(@SuppressWarnings("unchecked") E... vals) {
after(new ArrayIterator<>(vals));
}
/**
* Add a new iterator who we will iterate through last.
*
* @param itr
* The iterator to go through last.
*/
public void last(Iterator<E> itr) {
pending.add(itr);
}
/**
* Add a new iterable who we will iterate through last.
*
* @param itr
* The iterable to go through last.
*/
public void last(Iterable<E> itr) {
last(itr.iterator());
}
/**
* Add a new set of values who we will iterate through last.
*
* @param vals
* The values we will iterate over.
*/
public void last(@SuppressWarnings("unchecked") E... vals) {
last(new ArrayIterator<>(vals));
}
@Override
public boolean hasNext() {
while (cur == null || !cur.hasNext()) {
if (pending.isEmpty()) return false;
cur = pending.pop();
}
return cur.hasNext();
}
@Override
public E next() {
while (cur == null || !cur.hasNext()) {
if (pending.isEmpty()) return null;
cur = pending.pop();
}
return cur.next();
}
}
|