[wpimath] Add remaining struct and protobuf implementations (#5953)

This commit is contained in:
Joseph Eng
2024-07-29 07:55:44 -07:00
committed by GitHub
parent 3e1e3fb4ca
commit 073192d513
112 changed files with 3989 additions and 45 deletions

View File

@@ -0,0 +1,61 @@
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package edu.wpi.first.math.struct;
import edu.wpi.first.math.MatBuilder;
import edu.wpi.first.math.Matrix;
import edu.wpi.first.math.Nat;
import edu.wpi.first.math.Num;
import edu.wpi.first.util.struct.Struct;
import java.nio.ByteBuffer;
public final class MatrixStruct<R extends Num, C extends Num> implements Struct<Matrix<R, C>> {
private final Nat<R> m_rows;
private final Nat<C> m_cols;
/**
* Constructs the {@link Struct} implementation.
*
* @param rows The number of rows of the matrices this serializer processes.
* @param cols The number of cols of the matrices this serializer processes.
*/
public MatrixStruct(Nat<R> rows, Nat<C> cols) {
m_rows = rows;
m_cols = cols;
}
@Override
public Class<Matrix<R, C>> getTypeClass() {
@SuppressWarnings("unchecked")
var clazz = (Class<Matrix<R, C>>) (Class<?>) Matrix.class;
return clazz;
}
@Override
public String getTypeName() {
return "Matrix__" + m_rows.getNum() + "_" + m_cols.getNum();
}
@Override
public int getSize() {
return kSizeDouble * m_rows.getNum() * m_cols.getNum();
}
@Override
public String getSchema() {
return "double data[" + (m_rows.getNum() * m_cols.getNum()) + "]";
}
@Override
public Matrix<R, C> unpack(ByteBuffer bb) {
return MatBuilder.fill(
m_rows, m_cols, Struct.unpackDoubleArray(bb, m_rows.getNum() * m_cols.getNum()));
}
@Override
public void pack(ByteBuffer bb, Matrix<R, C> value) {
Struct.packArray(bb, value.getData());
}
}

View File

@@ -0,0 +1,58 @@
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package edu.wpi.first.math.struct;
import edu.wpi.first.math.Nat;
import edu.wpi.first.math.Num;
import edu.wpi.first.math.Vector;
import edu.wpi.first.util.struct.Struct;
import java.nio.ByteBuffer;
import org.ejml.simple.SimpleMatrix;
public final class VectorStruct<R extends Num> implements Struct<Vector<R>> {
private final int m_rows;
/**
* Constructs the {@link Struct} implementation.
*
* @param rows The number of rows of the vectors this serializer processes.
*/
public VectorStruct(Nat<R> rows) {
m_rows = rows.getNum();
}
@Override
public Class<Vector<R>> getTypeClass() {
@SuppressWarnings("unchecked")
var clazz = (Class<Vector<R>>) (Class<?>) Vector.class;
return clazz;
}
@Override
public String getTypeName() {
return "Vector__" + m_rows;
}
@Override
public int getSize() {
return kSizeDouble * m_rows;
}
@Override
public String getSchema() {
return "double data[" + m_rows + "]";
}
@Override
public Vector<R> unpack(ByteBuffer bb) {
var storage = new SimpleMatrix(Struct.unpackDoubleArray(bb, m_rows));
return new Vector<R>(storage);
}
@Override
public void pack(ByteBuffer bb, Vector<R> value) {
Struct.packArray(bb, value.getData());
}
}