com.io7m.jtensors.bytebuffered.MatrixByteBufferedM2x2F Maven / Gradle / Ivy
Show all versions of io7m-jtensors-bytebuffered Show documentation
/*
* Copyright © 2015 http://io7m.com
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package com.io7m.jtensors.bytebuffered;
import com.io7m.jintegers.CheckedMath;
import com.io7m.jnull.NullCheck;
import com.io7m.jnull.Nullable;
import com.io7m.jtensors.MatrixM2x2F;
import com.io7m.jtensors.VectorReadable2FType;
import com.io7m.jtensors.VectorWritable2FType;
import java.nio.ByteBuffer;
import java.util.concurrent.atomic.AtomicLong;
/**
* A 2x2 matrix type with {@code float} elements, packed into a {@link
* ByteBuffer}.
*
* Values of this type cannot be accessed safely from multiple threads
* without explicit synchronization.
*/
public final class MatrixByteBufferedM2x2F extends ByteBuffered implements MatrixByteBuffered2x2FType
{
private final ByteBuffer buffer;
private MatrixByteBufferedM2x2F(
final ByteBuffer in_buffer,
final AtomicLong in_base,
final int in_offset)
{
super(in_base, in_offset);
this.buffer = NullCheck.notNull(in_buffer);
}
/**
* Return a new matrix that is backed by whatever data is at byte offset
* {@code byte_offset} in the byte buffer {@code}.
*
* No initialization of the data is performed.
*
* @param b The byte buffer
* @param byte_offset A byte offset
*
* @return A new buffered matrix
*/
public static MatrixByteBuffered2x2FType newMatrixFromByteBuffer(
final ByteBuffer b,
final long byte_offset)
{
return new MatrixByteBufferedM2x2F(b, new AtomicLong(byte_offset), 0);
}
/**
* Return a new matrix that is backed by the given byte buffer {@code b}
*
*
* The data for the instance will be taken from the data at the current
* value of {@code base.get() + offset}, each time a field is requested or
* set.
*
* No initialization of the data is performed.
*
* @param b The byte buffer
* @param base The base address
* @param offset A constant offset
*
* @return A new buffered matrix
*/
public static MatrixByteBuffered2x2FType newMatrixFromByteBufferAndBase(
final ByteBuffer b,
final AtomicLong base,
final int offset)
{
return new MatrixByteBufferedM2x2F(b, base, offset);
}
private static int checkColumn(
final int column)
{
if ((column < 0) || (column >= 2)) {
throw new IndexOutOfBoundsException(
"column must be in the range 0 <= column < 2");
}
return column;
}
/**
* The main function that indexes into the buffer that backs the array.
* The body of this function decides on how elements are stored. This
* implementation chooses to store values in column-major format as this
* allows matrices to be sent directly to OpenGL without conversion.
*
* (row * 2) + column, corresponds to row-major storage. (column * 2) +
* row, corresponds to column-major (OpenGL) storage.
*/
private static int indexUnsafe(
final int row,
final int column)
{
return (column * 2) + row;
}
private static int checkRow(
final int row)
{
if ((row < 0) || (row >= 2)) {
throw new IndexOutOfBoundsException(
"row must be in the range 0 <= row < 2");
}
return row;
}
private static int getByteOffsetForIndex(
final long base,
final int index)
{
final long b = CheckedMath.add(base, (long) (index * 4));
return (int) ByteBufferRanges.checkByteOffset(b);
}
@Override public String toString()
{
final StringBuilder builder = new StringBuilder(512);
MatrixM2x2F.showElements(this, builder);
return builder.toString();
}
private void setAtOffsetAndRowColumn(
final long o,
final int row,
final int col,
final float x)
{
final int i = MatrixByteBufferedM2x2F.getByteOffsetForIndex(
o, MatrixByteBufferedM2x2F.indexUnsafe(row, col));
this.buffer.putFloat(i, x);
}
private float getAtOffsetAndRowColumn(
final long o,
final int row,
final int col)
{
return this.buffer.getFloat(
MatrixByteBufferedM2x2F.getByteOffsetForIndex(
o, MatrixByteBufferedM2x2F.indexUnsafe(row, col)));
}
@Override public int hashCode()
{
return MatrixM2x2F.hashElements(this);
}
@Override public boolean equals(
final @Nullable Object obj)
{
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (this.getClass() != obj.getClass()) {
return false;
}
final MatrixByteBufferedM2x2F other = (MatrixByteBufferedM2x2F) obj;
return MatrixM2x2F.compareElements(this, other);
}
@Override public void getRow2F(
final int row,
final V out)
{
this.getRow2FUnsafe(MatrixByteBufferedM2x2F.checkRow(row), out);
}
@Override public void getRow2FUnsafe(
final int row,
final V out)
{
final long o = super.getIndex();
out.set2F(
this.getAtOffsetAndRowColumn(o, row, 0),
this.getAtOffsetAndRowColumn(o, row, 1));
}
@Override public float getR0C0F()
{
return this.getAtOffsetAndRowColumn(super.getIndex(), 0, 0);
}
@Override public void setR0C0F(final float x)
{
this.setAtOffsetAndRowColumn(super.getIndex(), 0, 0, x);
}
@Override public float getR1C0F()
{
return this.getAtOffsetAndRowColumn(super.getIndex(), 1, 0);
}
@Override public void setR1C0F(final float x)
{
this.setAtOffsetAndRowColumn(super.getIndex(), 1, 0, x);
}
@Override public float getR0C1F()
{
return this.getAtOffsetAndRowColumn(super.getIndex(), 0, 1);
}
@Override public void setR0C1F(final float x)
{
this.setAtOffsetAndRowColumn(super.getIndex(), 0, 1, x);
}
@Override public float getR1C1F()
{
return this.getAtOffsetAndRowColumn(super.getIndex(), 1, 1);
}
@Override public void setR1C1F(final float x)
{
this.setAtOffsetAndRowColumn(super.getIndex(), 1, 1, x);
}
@Override public float getRowColumnF(
final int row,
final int column)
{
MatrixByteBufferedM2x2F.checkRow(row);
MatrixByteBufferedM2x2F.checkColumn(column);
return this.getAtOffsetAndRowColumn(super.getIndex(), row, column);
}
@Override public void setRowWith2F(
final int row,
final VectorReadable2FType v)
{
MatrixByteBufferedM2x2F.checkRow(row);
this.setRowWith2FUnsafe(row, v);
}
@Override public void setRowWith2FUnsafe(
final int row,
final VectorReadable2FType v)
{
final long o = super.getIndex();
this.setAtOffsetAndRowColumn(o, row, 0, v.getXF());
this.setAtOffsetAndRowColumn(o, row, 1, v.getYF());
}
@Override public void setRowColumnF(
final int row,
final int column,
final float value)
{
MatrixByteBufferedM2x2F.checkRow(row);
MatrixByteBufferedM2x2F.checkColumn(column);
this.setAtOffsetAndRowColumn(super.getIndex(), row, column, value);
}
}