Package org.apache.groovy.json.internal
Class LazyValueMap
This class is important to the performance of the parser.
It stores Value objects in a map where they are evaluated lazily.
This is great for JSONPath types of application, and Object Serialization but not for maps that are going to be stored in a cache.
This is because the Value construct is a type of index overlay that merely tracks where the token is located in the buffer,
and what if any thing we noted about it (like can be converted to a decimal number, etc.).
To mitigate memory leaks this class along with CharSequenceValue implement two constructs, namely,
chop, and lazyChop.
A chop is when we convert backing buffer of a Value object into a smaller buffer.
A lazyChop is when we do a chop but only when a get operation is called.
The lazyChop is performed on the tree that is touched by the JSONPath expression or its ilk.
The chop operation can be done during parsing or lazily by storing the values in this construct.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Constructor Summary
ConstructorsConstructorDescriptionLazyValueMap(boolean lazyChop) Creates a lazy map with the default item buffer size.LazyValueMap(boolean lazyChop, int initialSize) Creates a lazy map with a caller-supplied item buffer size. -
Method Summary
Modifier and TypeMethodDescriptionfinal voidadd(MapItemValue miv) Adds a new MapItemValue to the mapping.final voidchopMap()Chop this map.entrySet()Returns the hydrated entry set, building the backing map if necessary.final ObjectGets the item by key from the mapping.booleanhydrated()Has the map been hydrated.items()Give me the items in the map without hydrating the map.intlen()Return size w/o hydrating the map.Unsupported because parser-created entries are appended throughadd(MapItemValue).intsize()Returns the hydrated map size, building the backing map if necessary.toString()Returns the hydrated map string form, building the backing map if necessary.values()Returns the hydrated values collection, building the backing map if necessary.Methods inherited from class java.util.AbstractMap
clear, clone, containsKey, containsValue, equals, hashCode, isEmpty, keySet, putAll, removeMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, getOrDefault, hashCode, isEmpty, keySet, merge, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll
-
Constructor Details
-
LazyValueMap
public LazyValueMap(boolean lazyChop) Creates a lazy map with the default item buffer size.- Parameters:
lazyChop- whether touched branches should be chopped on access
-
LazyValueMap
public LazyValueMap(boolean lazyChop, int initialSize) Creates a lazy map with a caller-supplied item buffer size.- Parameters:
lazyChop- whether touched branches should be chopped on accessinitialSize- initial item buffer size
-
-
Method Details
-
add
Adds a new MapItemValue to the mapping. -
get
Gets the item by key from the mapping. -
chopMap
public final void chopMap()Chop this map. -
put
Unsupported because parser-created entries are appended throughadd(MapItemValue). -
entrySet
Returns the hydrated entry set, building the backing map if necessary. -
values
Returns the hydrated values collection, building the backing map if necessary. -
size
public int size()Returns the hydrated map size, building the backing map if necessary. -
toString
Returns the hydrated map string form, building the backing map if necessary.- Overrides:
toStringin classAbstractMap<String,Object> - Returns:
- hydrated map text
-
len
public int len()Return size w/o hydrating the map. -
hydrated
public boolean hydrated()Has the map been hydrated. -
items
Give me the items in the map without hydrating the map. Realize that the array is likely larger than the length so array items can be null.
-