- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTupleIterator.java
More file actions
Latest commit
52 lines (42 loc) · 1.11 KB
/
Copy pathTupleIterator.java
File metadata and controls
52 lines (42 loc) · 1.11 KB
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
packagesimpledb;
importjava.util.*;
/**
* Implements a DbIterator by wrapping an Iterable<Tuple>.
*/
publicclassTupleIteratorimplementsDbIterator {
Iterator<Tuple> i = null;
TupleDesctd = null;
Iterable<Tuple> tuples = null;
/**
* Constructs an iterator from the specified Iterable, and the specified descriptor.
* @param tuples The set of tuples to iterate over
*/
publicTupleIterator(TupleDesctd, Iterable<Tuple> tuples) {
this.td = td;
this.tuples = tuples;
// check that all tuples are the right TupleDesc
for (Tuplet : tuples) {
if(!t.getTupleDesc().equals(td))
thrownewIllegalArgumentException("incompatible tuple in tuple set");
}
}
publicvoidopen() {
i = tuples.iterator();
}
publicbooleanhasNext() {
returni.hasNext();
}
publicTuplenext() {
returni.next();
}
publicvoidrewind() {
close();
open();
}
publicTupleDescgetTupleDesc() {
returntd;
}
publicvoidclose() {
i = null;
}
}