![JAR search and dependency download from the Maven repository](/logo.png)
pabeles.concurrency.GrowArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ejml-core Show documentation
Show all versions of ejml-core Show documentation
A fast and easy to use dense and sparse matrix linear algebra library written in Java.
/*
* Copyright (c) 2021, Peter Abeles. All Rights Reserved.
*
* This file is part of Efficient Java Matrix Library (EJML).
*
* 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
*
* 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 pabeles.concurrency;
import org.jetbrains.annotations.NotNull;
import java.lang.reflect.Array;
/**
* An array of objects which grows and recycles its elements automatically.
*
* @author Peter Abeles
*/
public class GrowArray {
ConcurrencyOps.NewInstance factory;
ConcurrencyOps.Reset reset;
Class elementType;
D[] array;
int size;
public GrowArray( ConcurrencyOps.NewInstance factory ) {
this(factory, ( o ) -> {});
}
public GrowArray( ConcurrencyOps.NewInstance factory, ConcurrencyOps.Reset reset ) {
this(factory, reset, (Class)factory.newInstance().getClass());
}
/**
* Specifies the internal array type. Negating the need to create an initial instance to determine the type
*/
public GrowArray( ConcurrencyOps.NewInstance factory, ConcurrencyOps.Reset reset, Class type ) {
this.factory = factory;
this.reset = reset;
this.elementType = type;
array = createArray(0);
size = 0;
}
@NotNull
private D[] createArray( int length ) {
return (D[])Array.newInstance(elementType, length);
}
public void reset() {
size = 0;
}
/**
* Increases the size of the array so that it contains the specified number of elements. If the new length
* is bigger than the old size then reset is called on the new elements
*/
public void resize( int length ) {
if (length >= array.length) {
D[] tmp = createArray(length);
System.arraycopy(array, 0, tmp, 0, array.length);
for (int i = array.length; i < tmp.length; i++) {
tmp[i] = factory.newInstance();
}
this.array = tmp;
}
for (int i = size; i < length; i++) {
reset.reset(array[i]);
}
this.size = length;
}
/**
* Add a new element to the array. Reset is called on it and it's then returned.
*/
public D grow() {
if (size == array.length) {
int length = Math.max(10, size < 1000 ? size*2 : size*5/3);
D[] tmp = createArray(length);
System.arraycopy(array, 0, tmp, 0, array.length);
for (int i = array.length; i < tmp.length; i++) {
tmp[i] = factory.newInstance();
}
this.array = tmp;
}
D ret = array[size++];
reset.reset(ret);
return ret;
}
/**
* Replaces the internal array with one of length zero.
*/
public void releaseInternalArray() {
array = createArray(0);
size = 0;
}
public D get( int index ) {
return array[index];
}
public int size() {
return size;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy