aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store/src/main/java/tools/refinery/store/map/internal/MapCursor.java
blob: 7e4f82e8597fbda3b013bb6214f753220d70a510 (plain) (blame)
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
package tools.refinery.store.map.internal;

import tools.refinery.store.map.AnyVersionedMap;
import tools.refinery.store.map.ContentHashCode;
import tools.refinery.store.map.Cursor;
import tools.refinery.store.map.VersionedMap;

import java.util.ArrayDeque;
import java.util.ConcurrentModificationException;
import java.util.Set;

public class MapCursor<K, V> implements Cursor<K, V> {
	// Constants
	static final int INDEX_START = -1;
	static final int INDEX_FINISH = -2;

	// Tree stack
	ArrayDeque<Node<K, V>> nodeStack;
	ArrayDeque<Integer> nodeIndexStack;
	int dataIndex;

	// Values
	K key;
	V value;

	// Hash code for checking concurrent modifications
	final VersionedMap<K, V> map;
	final int creationHash;

	public MapCursor(Node<K, V> root, VersionedMap<K, V> map) {
		// Initializing tree stack
		super();
		this.nodeStack = new ArrayDeque<>();
		this.nodeIndexStack = new ArrayDeque<>();
		if (root != null) {
			this.nodeStack.add(root);
			this.nodeIndexStack.push(INDEX_START);
		}

		this.dataIndex = INDEX_START;

		// Initializing cache
		this.key = null;
		this.value = null;

		// Initializing state
		this.map = map;
		this.creationHash = map.contentHashCode(ContentHashCode.APPROXIMATE_FAST);
	}

	public K getKey() {
		return key;
	}

	public V getValue() {
		return value;
	}

	public boolean isTerminated() {
		return this.nodeStack.isEmpty();
	}

	public boolean move() {
		if (isDirty()) {
			throw new ConcurrentModificationException();
		}
		if (!isTerminated()) {
			var node = this.nodeStack.peek();
			if (node == null) {
				throw new IllegalStateException("Cursor is not terminated but the current node is missing");
			}
			boolean result = node.moveToNext(this);
			if (this.nodeIndexStack.size() != this.nodeStack.size()) {
				throw new IllegalArgumentException("Node stack is corrupted by illegal moves!");
			}
			return result;
		}
		return false;
	}

	@Override
	public boolean isDirty() {
		return this.map.contentHashCode(ContentHashCode.APPROXIMATE_FAST) != this.creationHash;
	}

	@Override
	public Set<AnyVersionedMap> getDependingMaps() {
		return Set.of(this.map);
	}
}