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
|
/**
* Copyright 2015 JogAmp Community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of JogAmp Community.
*/
package com.jogamp.common.util;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
/**
* {@link HashMap} implementation backed by an {@link ArrayList} to preserve order of values.
*
* Implementation properties are:
* <ul>
* <li> Unique elements utilizing {@link java.lang.Object#hashCode()} for O(1) operations, see below.</li>
* <li> Java 1.5 compatible</li>
* </ul>
*
* O(1) operations:
* <ul>
* <li> put new key-value-pair(s) </li>
* <li> test for containment </li>
* <li> trying to remove non existent elements </li>
* </ul>
*
* O(n) operations:
* <ul>
* <li> put existing key-value-pair(s) </li>
* <li> removing existing elements</li>
* </ul>
*
* For thread safety, the application shall decorate access to instances via
* {@link com.jogamp.common.util.locks.RecursiveLock}.
*
*/
public class ArrayHashMap<K, V>
implements Cloneable, Map<K, V>
{
/**
* Default load factor: {@value}
*/
public static final float DEFAULT_LOAD_FACTOR = 0.75f;
/**
* The default initial capacity: {@value}
*/
public static final int DEFAULT_INITIAL_CAPACITY = 16;
private final HashMap<K,V> map; // key -> object
private final ArrayList<V> data; // list of objects
private final boolean supportNullValue;
/**
*
* @param supportNullValue Use {@code true} for default behavior, i.e. {@code null} can be a valid value.
* Use {@code false} if {@code null} is not a valid value,
* here {@link #put(Object, Object)} and {@link #remove(Object)} will be optimized.
* @param initialCapacity use {@link #DEFAULT_INITIAL_CAPACITY} for default
* @param loadFactor use {@link #DEFAULT_LOAD_FACTOR} for default
* @see #supportsNullValue()
*/
public ArrayHashMap(final boolean supportNullValue, final int initialCapacity, final float loadFactor) {
this.map = new HashMap<K,V>(initialCapacity, loadFactor);
this.data = new ArrayList<V>(initialCapacity);
this.supportNullValue = supportNullValue;
}
/**
* @return a shallow copy of this ArrayHashMap, elements are not copied.
*/
public ArrayHashMap(final ArrayHashMap<K, V> o) {
map = new HashMap<K, V>(o.map);
data = new ArrayList<V>(o.data);
supportNullValue = o.supportNullValue;
}
/**
* Returns {@code true} for default behavior, i.e. {@code null} can be a valid value.
* <p>
* Returns {@code false} if {@code null} is not a valid value,
* here {@link #put(Object, Object)} and {@link #remove(Object)} are optimized operations.
* </p>
* @see #ArrayHashMap(boolean, int, float)
*/
public final boolean supportsNullValue() { return supportNullValue; }
//
// Cloneable
//
/**
* Implementation uses {@link #ArrayHashMap(ArrayHashMap)}.
* @return a shallow copy of this ArrayHashMap, elements are not copied.
*/
@Override
public final Object clone() {
return new ArrayHashMap<K, V>(this);
}
/**
* Returns this object ordered ArrayList. Use w/ care, it's not a copy.
* @see #toArrayList()
*/
public final ArrayList<V> getData() { return data; }
/**
* @return a shallow copy of this ArrayHashMap's ArrayList, elements are not copied.
* @see #getData()
*/
public final ArrayList<V> toArrayList() {
return new ArrayList<V>(data);
}
/** Returns this object hash map. Use w/ care, it's not a copy. */
public final HashMap<K,V> getMap() { return map; }
@Override
public final String toString() { return data.toString(); }
//
// Map
//
@Override
public final void clear() {
data.clear();
map.clear();
}
@Override
public Set<K> keySet() {
return map.keySet();
}
/**
* {@inheritDoc}
* <p>
* See {@link #getData()} and {@link #toArrayList()}.
* </p>
* @see #getData()
* @see #toArrayList()
*/
@Override
public Collection<V> values() {
return map.values();
}
@Override
public Set<java.util.Map.Entry<K, V>> entrySet() {
return map.entrySet();
}
@Override
public final V get(final Object key) {
return map.get(key);
}
/**
* {@inheritDoc}
* <p>
* This is an O(1) operation, in case the key does not exist,
* otherwise O(n).
* </p>
* @throws NullPointerException if {@code value} is {@code null} but {@link #supportsNullValue()} == {@code false}
*/
@Override
public final V put(final K key, final V value) throws NullPointerException {
final V oldValue;
if( supportNullValue ) {
// slow path
final boolean exists = map.containsKey(key);
if(!exists) {
// !exists
if( null != ( oldValue = map.put(key, value) ) ) {
// slips a valid null ..
throw new InternalError("Already existing, but checked before: "+key+" -> "+oldValue);
}
} else {
// exists
oldValue = map.put(key, value);
if( !data.remove(oldValue) ) {
throw new InternalError("Already existing, but not in list: "+oldValue);
}
}
} else {
checkNullValue(value);
// fast path
if( null != ( oldValue = map.put(key, value) ) ) {
// exists
if( !data.remove(oldValue) ) {
throw new InternalError("Already existing, but not in list: "+oldValue);
}
}
}
if(!data.add(value)) {
throw new InternalError("Couldn't add value to list: "+value);
}
return oldValue;
}
@Override
public void putAll(final Map<? extends K, ? extends V> m) {
for (final Iterator<? extends Map.Entry<? extends K, ? extends V>> i = m.entrySet().iterator(); i.hasNext(); ) {
final Map.Entry<? extends K, ? extends V> e = i.next();
put(e.getKey(), e.getValue());
}
}
/**
* {@inheritDoc}
* <p>
* This is an O(1) operation, in case the key does not exist,
* otherwise O(n).
* </p>
*/
@Override
public final V remove(final Object key) {
if( supportNullValue ) {
if( map.containsKey(key) ) {
// exists
final V oldValue = map.remove(key);
if ( !data.remove(oldValue) ) {
throw new InternalError("Couldn't remove prev mapped pair: "+key+" -> "+oldValue);
}
return oldValue;
}
} else {
final V oldValue;
if ( null != (oldValue = map.remove(key) ) ) {
// exists
if ( !data.remove(oldValue) ) {
throw new InternalError("Couldn't remove prev mapped pair: "+key+" -> "+oldValue);
}
}
return oldValue;
}
return null;
}
@Override
public final boolean containsKey(final Object key) {
return map.containsKey(key);
}
@Override
public boolean containsValue(final Object value) {
return map.containsValue(value);
}
@Override
public final boolean equals(final Object arrayHashMap) {
if ( !(arrayHashMap instanceof ArrayHashMap) ) {
return false;
}
return map.equals(((ArrayHashMap<?,?>)arrayHashMap).map);
}
@Override
public final int hashCode() {
return map.hashCode();
}
@Override
public final boolean isEmpty() {
return data.isEmpty();
}
@Override
public final int size() {
return data.size();
}
private static final void checkNullValue(final Object value) throws NullPointerException {
if( null == value ) {
throw new NullPointerException("Null value not supported");
}
}
}
|