-
Notifications
You must be signed in to change notification settings - Fork 107
/
CompactSet.java
311 lines (288 loc) · 9.83 KB
/
CompactSet.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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
package com.cedarsoftware.util;
import java.lang.reflect.Constructor;
import java.util.AbstractSet;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Objects;
import java.util.Set;
/**
* Often, memory may be consumed by lots of Maps or Sets (HashSet uses a HashMap to implement it's set). HashMaps
* and other similar Maps often have a lot of blank entries in their internal structures. If you have a lot of Maps
* in memory, perhaps representing JSON objects, large amounts of memory can be consumed by these empty Map entries.<p></p>
*
* CompactSet is a Set that strives to reduce memory at all costs while retaining speed that is close to HashSet's speed.
* It does this by using only one (1) member variable (of type Object) and changing it as the Set grows. It goes from
* an Object[] to a Set when the size() of the Set crosses the threshold defined by the method compactSize() (defaults
* to 80). After the Set crosses compactSize() size, then it uses a Set (defined by the user) to hold the items. This
* Set is defined by a method that can be overridden, which returns a new empty Set() for use in the {@literal >} compactSize()
* state.<pre>
*
* Methods you may want to override:
*
* // Map you would like it to use when size() {@literal >} compactSize(). HashSet is default
* protected abstract Map{@literal <}K, V{@literal >} getNewMap();
*
* // If you want case insensitivity, return true and return new CaseInsensitiveSet or TreeSet(String.CASE_INSENSITIVE_PRDER) from getNewSet()
* protected boolean isCaseInsensitive() { return false; }
*
* // When size() {@literal >} than this amount, the Set returned from getNewSet() is used to store elements.
* protected int compactSize() { return 80; }
* </pre>
* This Set supports holding a null element.
*
* @author John DeRegnaucourt (jdereg@gmail.com)
* <br>
* Copyright (c) Cedar Software LLC
* <br><br>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <br><br>
* <a href="http://www.apache.org/licenses/LICENSE-2.0">License</a>
* <br><br>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
public class CompactSet<E> extends AbstractSet<E>
{
private static final String EMPTY_SET = "_︿_ψ_☼";
private static final String NO_ENTRY = EMPTY_SET;
private Object val = EMPTY_SET;
public CompactSet()
{
if (compactSize() < 2)
{
throw new IllegalStateException("compactSize() must be >= 2");
}
}
public CompactSet(Collection<E> other)
{
this();
addAll(other);
}
public int size()
{
if (val instanceof Object[])
{ // 1 to compactSize
return ((Object[])val).length;
}
else if (val instanceof Set)
{ // > compactSize
return ((Set)val).size();
}
// empty
return 0;
}
public boolean isEmpty()
{
return val == EMPTY_SET;
}
private boolean compareItems(Object item, Object anItem)
{
if (item instanceof String)
{
if (anItem instanceof String)
{
if (isCaseInsensitive())
{
return ((String)anItem).equalsIgnoreCase((String) item);
}
else
{
return anItem.equals(item);
}
}
return false;
}
return Objects.equals(item, anItem);
}
@SuppressWarnings("unchecked")
public boolean contains(Object item)
{
if (val instanceof Object[])
{ // 1 to compactSize
Object[] entries = (Object[]) val;
for (Object entry : entries)
{
if (compareItems(item, entry))
{
return true;
}
}
return false;
}
else if (val instanceof Set)
{ // > compactSize
Set<E> set = (Set<E>) val;
return set.contains(item);
}
// empty
return false;
}
@SuppressWarnings("unchecked")
public Iterator<E> iterator()
{
return new Iterator<E>()
{
final Iterator<E> iter = getCopy().iterator();
E currentEntry = (E) NO_ENTRY;
public boolean hasNext() { return iter.hasNext(); }
public E next()
{
currentEntry = iter.next();
return currentEntry;
}
public void remove()
{
if (currentEntry == NO_ENTRY)
{ // remove() called on iterator
throw new IllegalStateException("remove() called on an Iterator before calling next()");
}
CompactSet.this.remove(currentEntry);
currentEntry = (E)NO_ENTRY;
}
};
}
@SuppressWarnings("unchecked")
private Set<E> getCopy()
{
Set<E> copy = getNewSet(size()); // Use their Set (TreeSet, HashSet, LinkedHashSet, etc.)
if (val instanceof Object[])
{ // 1 to compactSize - copy Object[] into Set
Object[] entries = (Object[]) CompactSet.this.val;
for (Object entry : entries)
{
copy.add((E) entry);
}
}
else if (val instanceof Set)
{ // > compactSize - addAll to copy
copy.addAll((Set<E>)CompactSet.this.val);
}
// else
// { // empty - nothing to copy
// }
return copy;
}
@SuppressWarnings("unchecked")
public boolean add(E item)
{
if (val instanceof Object[])
{ // 1 to compactSize
if (contains(item))
{
return false;
}
Object[] entries = (Object[]) val;
if (size() < compactSize())
{ // Grow array
Object[] expand = new Object[entries.length + 1];
System.arraycopy(entries, 0, expand, 0, entries.length);
// Place new entry at end
expand[expand.length - 1] = item;
val = expand;
}
else
{ // Switch to Map - copy entries
Set<E> set = getNewSet(size() + 1);
entries = (Object[]) val;
for (Object anItem : entries)
{
set.add((E) anItem);
}
// Place new entry
set.add(item);
val = set;
}
return true;
}
else if (val instanceof Set)
{ // > compactSize
Set<E> set = (Set<E>) val;
return set.add(item);
}
// empty
val = new Object[] { item };
return true;
}
@SuppressWarnings("unchecked")
public boolean remove(Object item)
{
if (val instanceof Object[])
{
Object[] local = (Object[]) val;
final int len = local.length;
for (int i=0; i < len; i++)
{
if (compareItems(local[i], item))
{
if (len == 1)
{
val = EMPTY_SET;
}
else
{
Object[] newElems = new Object[len - 1];
System.arraycopy(local, i + 1, local, i, len - i - 1);
System.arraycopy(local, 0, newElems, 0, len - 1);
val = newElems;
}
return true;
}
}
return false; // not found
}
else if (val instanceof Set)
{ // > compactSize
Set<E> set = (Set<E>) val;
if (!set.contains(item))
{
return false;
}
boolean removed = set.remove(item);
if (set.size() == compactSize())
{ // Down to compactSize, need to switch to Object[]
Object[] entries = new Object[compactSize()];
Iterator<E> i = set.iterator();
int idx = 0;
while (i.hasNext())
{
entries[idx++] = i.next();
}
val = entries;
}
return removed;
}
// empty
return false;
}
public void clear()
{
val = EMPTY_SET;
}
/**
* @return new empty Set instance to use when size() becomes {@literal >} compactSize().
*/
protected Set<E> getNewSet() { return new HashSet<>(compactSize() + 1); }
@SuppressWarnings("unchecked")
protected Set<E> getNewSet(int size)
{
Set<E> set = getNewSet();
try
{ // Extra step here is to get a Map of the same type as above, with the "size" already established
// which saves the time of growing the internal array dynamically.
Constructor<?> constructor = ReflectionUtils.getConstructor(set.getClass(), Integer.TYPE);
return (Set<E>) constructor.newInstance(size);
}
catch (Exception ignored)
{
return set;
}
}
protected boolean isCaseInsensitive() { return false; }
protected int compactSize() { return 80; }
}