Package org.elasticsearch.common.util
Class BigArrays
java.lang.Object
org.elasticsearch.common.util.BigArrays
Utility class to work with arrays.
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionBigArrays(PageCacheRecycler recycler, CircuitBreakerService breakerService, String breakerName)
protected
BigArrays(PageCacheRecycler recycler, CircuitBreakerService breakerService, String breakerName, boolean checkBreaker)
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array.grow(DoubleArray array, long minSize)
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array.grow(FloatArray array, long minSize)
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array.Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array.Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array.<T> ObjectArray<T>
grow(ObjectArray<T> array, long minSize)
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array.int
newByteArray(long size)
Allocate a newByteArray
initialized with zeros.newByteArray(long size, boolean clearOnResize)
Allocate a newByteArray
.newDoubleArray(long size)
Allocate a newDoubleArray
of the given capacity.newDoubleArray(long size, boolean clearOnResize)
Allocate a newDoubleArray
.newFloatArray(long size)
Allocate a newFloatArray
of the given capacity.newFloatArray(long size, boolean clearOnResize)
Allocate a newFloatArray
.newIntArray(long size)
Allocate a newIntArray
.newIntArray(long size, boolean clearOnResize)
Allocate a newIntArray
.newLongArray(long size)
Allocate a newLongArray
.newLongArray(long size, boolean clearOnResize)
Allocate a newLongArray
.<T> ObjectArray<T>
newObjectArray(long size)
Allocate a newObjectArray
.static long
overSize(long minTargetSize)
Returns the next size to grow when working with parallel arrays that may have different page sizes or number of bytes per element.static long
overSize(long minTargetSize, int pageSize, int bytesPerElement)
Return the next size to grow to that is >=minTargetSize
.Resize the array to the exact provided size.resize(DoubleArray array, long size)
Resize the array to the exact provided size.resize(FloatArray array, long size)
Resize the array to the exact provided size.Resize the array to the exact provided size.Resize the array to the exact provided size.<T> ObjectArray<T>
resize(ObjectArray<T> array, long size)
Resize the array to the exact provided size.withBreakerService(CircuitBreakerService breakerService)
Creates a newBigArray
pointing at the specifiedCircuitBreakerService
.Return an instance of this BigArrays class with circuit breaking explicitly enabled, instead of only accounting enabled
-
Field Details
-
NON_RECYCLING_INSTANCE
-
-
Constructor Details
-
BigArrays
public BigArrays(PageCacheRecycler recycler, @Nullable CircuitBreakerService breakerService, String breakerName) -
BigArrays
protected BigArrays(PageCacheRecycler recycler, @Nullable CircuitBreakerService breakerService, String breakerName, boolean checkBreaker)
-
-
Method Details
-
overSize
public static long overSize(long minTargetSize)Returns the next size to grow when working with parallel arrays that may have different page sizes or number of bytes per element. -
overSize
public static long overSize(long minTargetSize, int pageSize, int bytesPerElement)Return the next size to grow to that is >=minTargetSize
. Inspired fromArrayUtil.oversize(int, int)
and adapted to play nicely with paging. -
withCircuitBreaking
Return an instance of this BigArrays class with circuit breaking explicitly enabled, instead of only accounting enabled -
withBreakerService
Creates a newBigArray
pointing at the specifiedCircuitBreakerService
. Use withPreallocatedCircuitBreakerService
. -
breakerService
-
newByteArray
Allocate a newByteArray
.- Parameters:
size
- the initial length of the arrayclearOnResize
- whether values should be set to 0 on initialization and resize
-
newByteArray
Allocate a newByteArray
initialized with zeros.- Parameters:
size
- the initial length of the array
-
resize
Resize the array to the exact provided size. -
grow
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array. -
hashCode
- See Also:
Arrays.hashCode(byte[])
-
equals
- See Also:
Arrays.equals(byte[], byte[])
-
newIntArray
Allocate a newIntArray
.- Parameters:
size
- the initial length of the arrayclearOnResize
- whether values should be set to 0 on initialization and resize
-
newIntArray
Allocate a newIntArray
.- Parameters:
size
- the initial length of the array
-
resize
Resize the array to the exact provided size. -
grow
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array. -
newLongArray
Allocate a newLongArray
.- Parameters:
size
- the initial length of the arrayclearOnResize
- whether values should be set to 0 on initialization and resize
-
newLongArray
Allocate a newLongArray
.- Parameters:
size
- the initial length of the array
-
resize
Resize the array to the exact provided size. -
grow
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array. -
newDoubleArray
Allocate a newDoubleArray
.- Parameters:
size
- the initial length of the arrayclearOnResize
- whether values should be set to 0 on initialization and resize
-
newDoubleArray
Allocate a newDoubleArray
of the given capacity. -
resize
Resize the array to the exact provided size. -
grow
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array. -
newFloatArray
Allocate a newFloatArray
.- Parameters:
size
- the initial length of the arrayclearOnResize
- whether values should be set to 0 on initialization and resize
-
newFloatArray
Allocate a newFloatArray
of the given capacity. -
resize
Resize the array to the exact provided size. -
grow
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array. -
newObjectArray
Allocate a newObjectArray
.- Parameters:
size
- the initial length of the array
-
resize
Resize the array to the exact provided size. -
grow
Grow an array to a size that is larger thanminSize
, preserving content, and potentially reusing part of the provided array.
-