-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSet.java
188 lines (164 loc) · 3.73 KB
/
CSet.java
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
package com.destranix.glslang;
import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Set;
public class CSet<V extends PointerBoundObject> extends PointerBoundObject implements Set<PointerBoundObject> {
private final int constructorIndex;
public CSet() {
this.constructorIndex = 0;
load();
}
protected CSet(PoisonClass p) {
this.constructorIndex = -1;
}
protected CSet(byte[] ptr) {
this.ptr = ptr;
this.constructorIndex = -1;
}
@Override
protected void load_intern() {
if (ptr == null) {
switch (constructorIndex) {
case -1:
throw new IllegalStateException(EXCEPTION_MSG_NOT_LOADABLE);
case 0:
ptr = Main.CSet();
break;
default:
throw new AssertionError("Reached unreachable state!");
}
}
}
@Override
protected void free_intern() {
if (ptr != null) {
switch (constructorIndex) {
case -1:
throw new IllegalStateException(EXCEPTION_MSG_NOT_FREEABLE);
case 0:
Main.delete(ptr);
ptr = null;
break;
default:
throw new AssertionError("Reached unreachable state!");
}
}
}
@Override
public int size() {
return Main.CSet_size(ptr);
}
@Override
public boolean isEmpty() {
return Main.CSet_isEmpty(ptr);
}
@Override
public boolean contains(Object o) {
if (o == null || !(PointerBoundObject.class.isAssignableFrom(o.getClass()))) {
return false;
} else {
return Main.CSet_contains(ptr, ((PointerBoundObject) o).getPtr());
}
}
@Override
public CIterator<PointerBoundObject> iterator() {
@SuppressWarnings("unchecked") // Is checked
CIterator<PointerBoundObject> tmp = (CIterator<PointerBoundObject>) fromPtr(Main.CSet_iterator(ptr),
CIterator.class);
return tmp;
}
@Override
public Object[] toArray() {
Object[] ret = new Object[size()];
int i = 0;
for (PointerBoundObject element : this) {
ret[i] = element;
++i;
}
return ret;
}
@Override
public <T> T[] toArray(T[] a) {
if (PointerBoundObject.class.isAssignableFrom(a.getClass().getComponentType())) {
if (a.length < size()) {
@SuppressWarnings("unchecked") // Is checked
T[] tmp = (T[]) Array.newInstance(a.getClass().getComponentType(), size());
a = tmp;
} else if (a.length > size()) {
a[size()] = null;
}
int i = 0;
for (PointerBoundObject element : this) {
@SuppressWarnings("unchecked") // Is checked
T tmp = (T) element;
a[i] = tmp;
++i;
}
return a;
} else {
throw new ClassCastException("Cannot cast Pointer to given type!");
}
}
public boolean addSafe(V e) {
return add(e);
}
@Override
public boolean add(PointerBoundObject e) {
return Main.CSet_add(ptr, e.getPtr());
}
@Override
public boolean remove(Object o) {
if (o == null || !(PointerBoundObject.class.isAssignableFrom(o.getClass()))) {
return false;
} else {
return Main.CSet_remove(ptr, ((PointerBoundObject) o).getPtr());
}
}
@Override
public boolean containsAll(Collection<?> c) {
for (Object o : c) {
if (!contains(o)) {
return false;
}
}
return true;
}
public boolean addAllSafe(Collection<? extends V> c) {
return addAll(c);
}
@Override
public boolean addAll(Collection<? extends PointerBoundObject> c) {
if (c == null || c.size() == 0) {
return false;
}
for (PointerBoundObject elem : c) {
add(elem);
}
return true;
}
@Override
public boolean removeAll(Collection<?> c) {
boolean changed = false;
for (Object o : c) {
if (remove(o)) {
changed = true;
}
}
return changed;
}
@Override
public boolean retainAll(Collection<?> c) {
boolean changed = false;
for (Object o : this) {
if (!c.contains(o)) {
remove(o);
changed = true;
}
}
return changed;
}
@Override
public void clear() {
Main.CSet_clear(ptr);
}
}