use std::fmt::Debug;
use std::hash::Hash;
use std::hash::Hasher;
use vortex_array::Array;
use vortex_array::ArrayEq;
use vortex_array::ArrayHash;
use vortex_array::ArrayId;
use vortex_array::ArrayParts;
use vortex_array::ArrayRef;
use vortex_array::ArrayView;
use vortex_array::ExecutionCtx;
use vortex_array::ExecutionResult;
use vortex_array::IntoArray;
use vortex_array::Precision;
use vortex_array::arrays::PrimitiveArray;
use vortex_array::buffer::BufferHandle;
use vortex_array::dtype::DType;
use vortex_array::scalar::Scalar;
use vortex_array::scalar::ScalarValue;
use vortex_array::serde::ArrayChildren;
use vortex_array::vtable::VTable;
use vortex_array::vtable::ValidityVTableFromChild;
use vortex_error::VortexExpect;
use vortex_error::VortexResult;
use vortex_error::vortex_bail;
use vortex_error::vortex_ensure;
use vortex_error::vortex_panic;
use vortex_session::VortexSession;
use vortex_session::registry::CachedId;
use crate::FoRData;
use crate::r#for::array::FoRArrayExt;
use crate::r#for::array::SLOT_NAMES;
use crate::r#for::array::for_decompress::decompress;
use crate::r#for::vtable::kernels::PARENT_KERNELS;
use crate::r#for::vtable::rules::PARENT_RULES;
mod kernels;
mod operations;
mod rules;
mod slice;
mod validity;
pub type FoRArray = Array<FoR>;
impl ArrayHash for FoRData {
fn array_hash<H: Hasher>(&self, state: &mut H, _precision: Precision) {
self.reference.hash(state);
}
}
impl ArrayEq for FoRData {
fn array_eq(&self, other: &Self, _precision: Precision) -> bool {
self.reference == other.reference
}
}
impl VTable for FoR {
type ArrayData = FoRData;
type OperationsVTable = Self;
type ValidityVTable = ValidityVTableFromChild;
fn id(&self) -> ArrayId {
static ID: CachedId = CachedId::new("fastlanes.for");
*ID
}
fn validate(
&self,
data: &Self::ArrayData,
dtype: &DType,
len: usize,
slots: &[Option<ArrayRef>],
) -> VortexResult<()> {
let encoded = slots[0].as_ref().vortex_expect("FoRArray encoded slot");
validate_parts(encoded.dtype(), encoded.len(), &data.reference, dtype, len)
}
fn nbuffers(_array: ArrayView<'_, Self>) -> usize {
0
}
fn buffer(_array: ArrayView<'_, Self>, idx: usize) -> BufferHandle {
vortex_panic!("FoRArray buffer index {idx} out of bounds")
}
fn buffer_name(_array: ArrayView<'_, Self>, _idx: usize) -> Option<String> {
None
}
fn slot_name(_array: ArrayView<'_, Self>, idx: usize) -> String {
SLOT_NAMES[idx].to_string()
}
fn serialize(
array: ArrayView<'_, Self>,
_session: &VortexSession,
) -> VortexResult<Option<Vec<u8>>> {
Ok(Some(ScalarValue::to_proto_bytes(
array.reference_scalar().value(),
)))
}
fn deserialize(
&self,
dtype: &DType,
len: usize,
metadata: &[u8],
buffers: &[BufferHandle],
children: &dyn ArrayChildren,
session: &VortexSession,
) -> VortexResult<ArrayParts<Self>> {
vortex_ensure!(
buffers.is_empty(),
"FoRArray expects 0 buffers, got {}",
buffers.len()
);
if children.len() != 1 {
vortex_bail!(
"Expected 1 child for FoR encoding, found {}",
children.len()
)
}
let scalar_value = ScalarValue::from_proto_bytes(metadata, dtype, session)?;
let reference = Scalar::try_new(dtype.clone(), scalar_value)?;
let encoded = children.get(0, dtype, len)?;
let slots = vec![Some(encoded)];
let data = FoRData::try_new(reference)?;
Ok(ArrayParts::new(self.clone(), dtype.clone(), len, data).with_slots(slots))
}
fn reduce_parent(
array: ArrayView<'_, Self>,
parent: &ArrayRef,
child_idx: usize,
) -> VortexResult<Option<ArrayRef>> {
PARENT_RULES.evaluate(array, parent, child_idx)
}
fn execute(array: Array<Self>, ctx: &mut ExecutionCtx) -> VortexResult<ExecutionResult> {
Ok(ExecutionResult::done(decompress(&array, ctx)?.into_array()))
}
fn execute_parent(
array: ArrayView<'_, Self>,
parent: &ArrayRef,
child_idx: usize,
ctx: &mut ExecutionCtx,
) -> VortexResult<Option<ArrayRef>> {
PARENT_KERNELS.execute(array, parent, child_idx, ctx)
}
}
#[derive(Clone, Debug)]
pub struct FoR;
impl FoR {
pub fn try_new(encoded: ArrayRef, reference: Scalar) -> VortexResult<FoRArray> {
vortex_ensure!(!reference.is_null(), "Reference value cannot be null");
let dtype = reference
.dtype()
.with_nullability(encoded.dtype().nullability());
let reference = reference.cast(&dtype)?;
let len = encoded.len();
let data = FoRData::try_new(reference)?;
let slots = vec![Some(encoded)];
Array::try_from_parts(ArrayParts::new(FoR, dtype, len, data).with_slots(slots))
}
pub fn encode(array: PrimitiveArray) -> VortexResult<FoRArray> {
FoRData::encode(array)
}
}
fn validate_parts(
encoded_dtype: &DType,
encoded_len: usize,
reference: &Scalar,
dtype: &DType,
len: usize,
) -> VortexResult<()> {
vortex_ensure!(dtype.is_int(), "FoR requires an integer dtype, got {dtype}");
vortex_ensure!(
reference.dtype() == dtype,
"FoR reference dtype mismatch: expected {dtype}, got {}",
reference.dtype()
);
vortex_ensure!(
encoded_dtype == dtype,
"FoR encoded dtype mismatch: expected {dtype}, got {}",
encoded_dtype
);
vortex_ensure!(
encoded_len == len,
"FoR encoded length mismatch: expected {len}, got {}",
encoded_len
);
Ok(())
}
#[cfg(test)]
mod tests {
use vortex_array::scalar::ScalarValue;
use vortex_array::test_harness::check_metadata;
#[cfg_attr(miri, ignore)]
#[test]
fn test_for_metadata() {
let metadata: Vec<u8> = ScalarValue::to_proto_bytes(Some(&ScalarValue::from(i64::MAX)));
check_metadata("for.metadata", &metadata);
}
}