blob: 7b01e93d58d05f4025b14f4395c4d27f8314b9bc (
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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002, 2015 Oracle and/or its affiliates. All rights reserved.
*
*/
package com.sleepycat.persist;
import java.util.Iterator;
import java.util.NoSuchElementException;
import com.sleepycat.db.DatabaseException;
import com.sleepycat.db.LockMode;
import com.sleepycat.util.RuntimeExceptionWrapper;
/**
* Implements Iterator for an arbitrary EntityCursor.
*
* @author Mark Hayes
*/
class BasicIterator<V> implements Iterator<V> {
private EntityCursor<V> entityCursor;
private ForwardCursor<V> forwardCursor;
private LockMode lockMode;
private V nextValue;
/**
* An EntityCursor is given and the remove() method is supported.
*/
BasicIterator(EntityCursor<V> entityCursor, LockMode lockMode) {
this.entityCursor = entityCursor;
this.forwardCursor = entityCursor;
this.lockMode = lockMode;
}
/**
* A ForwardCursor is given and the remove() method is not supported.
*/
BasicIterator(ForwardCursor<V> forwardCursor, LockMode lockMode) {
this.forwardCursor = forwardCursor;
this.lockMode = lockMode;
}
public boolean hasNext() {
if (nextValue == null) {
try {
nextValue = forwardCursor.next(lockMode);
} catch (DatabaseException e) {
throw RuntimeExceptionWrapper.wrapIfNeeded(e);
}
return nextValue != null;
} else {
return true;
}
}
public V next() {
if (hasNext()) {
V v = nextValue;
nextValue = null;
return v;
} else {
throw new NoSuchElementException();
}
}
public void remove() {
if (entityCursor == null) {
throw new UnsupportedOperationException();
}
try {
if (!entityCursor.delete()) {
throw new IllegalStateException
("Record at cursor position is already deleted");
}
} catch (DatabaseException e) {
throw RuntimeExceptionWrapper.wrapIfNeeded(e);
}
}
}
|