groovy.json.internal.LazyMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-json Show documentation
Show all versions of groovy-json Show documentation
Groovy: A powerful, dynamic language for the JVM
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
package groovy.json.internal;
import java.lang.reflect.Array;
import java.util.AbstractMap;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
/**
* This maps only builds once you ask for a key for the first time.
* It is designed to not incur the overhead of creating a map unless needed.
*
* @author Rick Hightower
*/
public class LazyMap extends AbstractMap {
static final String JDK_MAP_ALTHASHING_SYSPROP = System.getProperty("jdk.map.althashing.threshold");
/* Holds the actual map that will be lazily created. */
private Map map;
/* The size of the map. */
private int size;
/* The keys stored in the map. */
private String[] keys;
/* The values stored in the map. */
private Object[] values;
public LazyMap() {
keys = new String[5];
values = new Object[5];
}
public LazyMap(int initialSize) {
keys = new String[initialSize];
values = new Object[initialSize];
}
public Object put(String key, Object value) {
if (map == null) {
for (int i = 0; i < size; i++) {
String curKey = keys[i];
if ((key == null && curKey == null)
|| (key != null && key.equals(curKey))) {
Object val = values[i];
keys[i] = key;
values[i] = value;
return val;
}
}
keys[size] = key;
values[size] = value;
size++;
if (size == keys.length) {
keys = grow(keys);
values = grow(values);
}
return null;
} else {
return map.put(key, value);
}
}
public Set> entrySet() {
buildIfNeeded();
return map.entrySet();
}
public int size() {
if (map == null) {
return size;
} else {
return map.size();
}
}
public boolean isEmpty() {
if (map == null) {
return size == 0;
} else {
return map.isEmpty();
}
}
public boolean containsValue(Object value) {
buildIfNeeded();
return map.containsValue(value);
}
public boolean containsKey(Object key) {
buildIfNeeded();
return map.containsKey(key);
}
public Object get(Object key) {
buildIfNeeded();
return map.get(key);
}
private void buildIfNeeded() {
if (map == null) {
// added to avoid hash collision attack
if (Sys.is1_8OrLater() || (Sys.is1_7() && JDK_MAP_ALTHASHING_SYSPROP != null)) {
map = new LinkedHashMap(size, 0.01f);
} else {
map = new TreeMap();
}
for (int index = 0; index < size; index++) {
map.put(keys[index], values[index]);
}
this.keys = null;
this.values = null;
}
}
public Object remove(Object key) {
buildIfNeeded();
return map.remove(key);
}
public void putAll(Map m) {
buildIfNeeded();
map.putAll(m);
}
public void clear() {
if (map == null) {
size = 0;
} else {
map.clear();
}
}
public Set keySet() {
buildIfNeeded();
return map.keySet();
}
public Collection