tfw.immutable.ilm.doubleilm.ReplicateDoubleIlm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tfw Show documentation
Show all versions of tfw Show documentation
The FrameWork for building highly scalable and maintainable applications
The newest version!
package tfw.immutable.ilm.doubleilm;
import java.io.IOException;
import tfw.check.Argument;
import tfw.immutable.ila.doubleila.DoubleIla;
public class ReplicateDoubleIlm {
private ReplicateDoubleIlm() {}
public static DoubleIlm create(DoubleIla doubleIla, long repetitions) {
Argument.assertNotNull(doubleIla, "doubleIla");
Argument.assertNotLessThan(repetitions, 1, "repetitions");
return new DoubleIlmImpl(doubleIla, repetitions);
}
private static class DoubleIlmImpl extends AbstractDoubleIlm {
private final DoubleIla doubleIla;
private final long repetitions;
private DoubleIlmImpl(DoubleIla doubleIla, long repetitions) {
this.doubleIla = doubleIla;
this.repetitions = repetitions;
}
@Override
protected long widthImpl() throws IOException {
return doubleIla.length();
}
@Override
protected long heightImpl() throws IOException {
return repetitions;
}
@Override
protected void getImpl(double[] array, int offset, long rowStart, long colStart, int rowCount, int colCount)
throws IOException {
doubleIla.get(array, offset, colStart, colCount);
for (int i = 0; i < rowCount; i++) {
System.arraycopy(array, offset, array, offset + (colCount * i), colCount);
}
}
}
}