use std::fmt::Display;
use std::fmt::Formatter;
use std::hash::Hash;
use std::hash::Hasher;
use std::ops::Range;
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::EqMode;
use vortex_array::ExecutionCtx;
use vortex_array::ExecutionResult;
use vortex_array::IntoArray;
use vortex_array::TypedArrayRef;
use vortex_array::arrays::BoolArray;
use vortex_array::arrays::slice::SliceReduce;
use vortex_array::arrays::slice::SliceReduceAdaptor;
use vortex_array::buffer::BufferHandle;
use vortex_array::dtype::DType;
use vortex_array::dtype::Nullability;
use vortex_array::optimizer::rules::ParentRuleSet;
use vortex_array::scalar::Scalar;
use vortex_array::serde::ArrayChildren;
use vortex_array::smallvec::smallvec;
use vortex_array::validity::Validity;
use vortex_array::vtable::OperationsVTable;
use vortex_array::vtable::VTable;
use vortex_array::vtable::ValidityVTable;
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::FL_CHUNK_SIZE;
use crate::bit_transpose::untranspose_bitbuffer;
use crate::untranspose_idx;
pub type TransposedBoolArray = Array<TransposedBool>;
#[derive(Clone, Debug)]
pub struct TransposedBool;
const TRANSPOSED_SLOT: usize = 0;
#[derive(Clone, Debug)]
pub struct TransposedBoolData {
offset: usize,
}
impl Display for TransposedBoolData {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "offset: {}", self.offset)
}
}
impl ArrayHash for TransposedBoolData {
fn array_hash<H: Hasher>(&self, state: &mut H, _accuracy: EqMode) {
self.offset.hash(state);
}
}
impl ArrayEq for TransposedBoolData {
fn array_eq(&self, other: &Self, _accuracy: EqMode) -> bool {
self.offset == other.offset
}
}
pub trait TransposedBoolArrayExt: TypedArrayRef<TransposedBool> {
fn offset(&self) -> usize {
self.deref().offset
}
fn transposed(&self) -> &ArrayRef {
self.as_ref().slots()[TRANSPOSED_SLOT]
.as_ref()
.vortex_expect("TransposedBoolArray transposed slot")
}
}
impl<T: TypedArrayRef<TransposedBool>> TransposedBoolArrayExt for T {}
impl TransposedBool {
pub fn try_new(transposed: ArrayRef) -> VortexResult<TransposedBoolArray> {
let len = transposed.len();
Self::try_new_view(transposed, 0, len)
}
fn try_new_view(
transposed: ArrayRef,
offset: usize,
len: usize,
) -> VortexResult<TransposedBoolArray> {
Array::try_from_parts(
ArrayParts::new(
TransposedBool,
DType::Bool(Nullability::NonNullable),
len,
TransposedBoolData { offset },
)
.with_slots(smallvec![Some(transposed)]),
)
}
}
impl VTable for TransposedBool {
type TypedArrayData = TransposedBoolData;
type OperationsVTable = Self;
type ValidityVTable = Self;
fn id(&self) -> ArrayId {
static ID: CachedId = CachedId::new("fastlanes.transposed_bool");
*ID
}
fn validate(
&self,
data: &Self::TypedArrayData,
dtype: &DType,
len: usize,
slots: &[Option<ArrayRef>],
) -> VortexResult<()> {
vortex_ensure!(
dtype == &DType::Bool(Nullability::NonNullable),
"TransposedBoolArray must have non-nullable boolean dtype, got {dtype}"
);
vortex_ensure!(
slots.len() == 1,
"TransposedBoolArray expects one slot, got {}",
slots.len()
);
let transposed = slots[TRANSPOSED_SLOT]
.as_ref()
.vortex_expect("TransposedBoolArray transposed slot");
vortex_ensure!(
transposed.dtype() == &DType::Bool(Nullability::NonNullable),
"TransposedBoolArray transposed child must be a non-nullable boolean array, got {}",
transposed.dtype()
);
vortex_ensure!(
transposed.len().is_multiple_of(FL_CHUNK_SIZE),
"TransposedBoolArray transposed child length {} must be a multiple of {FL_CHUNK_SIZE}",
transposed.len()
);
vortex_ensure!(
data.offset < FL_CHUNK_SIZE,
"TransposedBoolArray offset {} must be less than {FL_CHUNK_SIZE}",
data.offset
);
let end = data
.offset
.checked_add(len)
.ok_or_else(|| vortex_error::vortex_err!("TransposedBoolArray range end overflow"))?;
vortex_ensure!(
end <= transposed.len(),
"TransposedBoolArray range {}..{} exceeds transposed child length {}",
data.offset,
end,
transposed.len()
);
Ok(())
}
fn nbuffers(_array: ArrayView<'_, Self>) -> usize {
0
}
fn buffer(_array: ArrayView<'_, Self>, idx: usize) -> BufferHandle {
vortex_panic!("TransposedBoolArray buffer index {idx} out of bounds")
}
fn buffer_name(_array: ArrayView<'_, Self>, _idx: usize) -> Option<String> {
None
}
fn with_buffers(
&self,
array: ArrayView<'_, Self>,
buffers: &[BufferHandle],
) -> VortexResult<ArrayParts<Self>> {
vortex_array::vtable::with_empty_buffers(self, array, buffers)
}
fn serialize(
_array: ArrayView<'_, Self>,
_session: &VortexSession,
) -> VortexResult<Option<Vec<u8>>> {
vortex_bail!("Cannot serialise TransposedBoolArray");
}
fn deserialize(
&self,
_dtype: &DType,
_len: usize,
_metadata: &[u8],
_buffers: &[BufferHandle],
_children: &dyn ArrayChildren,
_session: &VortexSession,
) -> VortexResult<ArrayParts<Self>> {
vortex_bail!("Cannot deserialise TransposedBoolArray");
}
fn slot_name(_array: ArrayView<'_, Self>, idx: usize) -> String {
match idx {
TRANSPOSED_SLOT => "transposed".to_string(),
_ => vortex_panic!("TransposedBoolArray slot index {idx} out of bounds"),
}
}
fn execute(array: Array<Self>, ctx: &mut ExecutionCtx) -> VortexResult<ExecutionResult> {
let len = array.len();
let offset = array.offset();
let bits = array
.transposed()
.clone()
.execute::<BoolArray>(ctx)?
.into_bit_buffer();
let untransposed = BoolArray::new(untranspose_bitbuffer(bits), Validity::NonNullable);
Ok(ExecutionResult::done(
untransposed.slice(offset..offset + len)?,
))
}
fn reduce_parent(
array: ArrayView<'_, Self>,
parent: &ArrayRef,
child_idx: usize,
) -> VortexResult<Option<ArrayRef>> {
RULES.evaluate(array, parent, child_idx)
}
}
impl OperationsVTable<TransposedBool> for TransposedBool {
fn scalar_at(
array: ArrayView<'_, TransposedBool>,
index: usize,
ctx: &mut ExecutionCtx,
) -> VortexResult<Scalar> {
let logical_index = array.offset() + index;
let chunk_start = logical_index / FL_CHUNK_SIZE * FL_CHUNK_SIZE;
let transposed_index = chunk_start + untranspose_idx(logical_index % FL_CHUNK_SIZE);
array.transposed().execute_scalar(transposed_index, ctx)
}
}
impl ValidityVTable<TransposedBool> for TransposedBool {
fn validity(_array: ArrayView<'_, TransposedBool>) -> VortexResult<Validity> {
Ok(Validity::NonNullable)
}
}
impl SliceReduce for TransposedBool {
fn slice(array: ArrayView<'_, Self>, range: Range<usize>) -> VortexResult<Option<ArrayRef>> {
let physical_start = array.offset() + range.start;
let physical_stop = array.offset() + range.end;
let start_chunk = physical_start / FL_CHUNK_SIZE;
let stop_chunk = physical_stop.div_ceil(FL_CHUNK_SIZE);
let transposed = array
.transposed()
.slice(start_chunk * FL_CHUNK_SIZE..stop_chunk * FL_CHUNK_SIZE)?;
Ok(Some(
TransposedBool::try_new_view(transposed, physical_start % FL_CHUNK_SIZE, range.len())?
.into_array(),
))
}
}
static RULES: ParentRuleSet<TransposedBool> =
ParentRuleSet::new(&[ParentRuleSet::lift(&SliceReduceAdaptor(TransposedBool))]);
#[cfg(test)]
mod tests {
use vortex_array::VortexSessionExecute;
use vortex_array::array_session;
use vortex_array::arrays::SliceArray;
use vortex_array::assert_arrays_eq;
use vortex_buffer::BitBuffer;
use vortex_error::VortexResult;
use super::*;
use crate::bit_transpose::transpose_bitbuffer;
fn test_bits() -> BitBuffer {
BitBuffer::from_iter((0..2 * FL_CHUNK_SIZE).map(|i| i % 3 != 0 && i % 11 != 0))
}
fn transposed_bool_array(bits: BitBuffer) -> ArrayRef {
BoolArray::new(transpose_bitbuffer(bits), Validity::NonNullable).into_array()
}
#[test]
fn execute_full_array() -> VortexResult<()> {
let expected = test_bits();
let array = TransposedBool::try_new(transposed_bool_array(expected.clone()))?;
let mut ctx = array_session().create_execution_ctx();
assert_arrays_eq!(array, BoolArray::from(expected), &mut ctx);
Ok(())
}
#[test]
fn slice_stays_lazy_and_translates_scalars() -> VortexResult<()> {
let expected = test_bits();
let array = TransposedBool::try_new(transposed_bool_array(expected.clone()))?;
let sliced = array.slice(1000..1050)?;
assert!(sliced.is::<TransposedBool>());
let mut ctx = array_session().create_execution_ctx();
for index in [0, 23, 49] {
assert_eq!(
sliced.execute_scalar(index, &mut ctx)?.as_bool().value(),
Some(expected.value(1000 + index))
);
}
assert_arrays_eq!(
sliced,
BoolArray::from(expected.slice(1000..1050)),
&mut ctx
);
Ok(())
}
#[test]
fn execute_slice_encoded_child() -> VortexResult<()> {
let expected = test_bits();
let child = transposed_bool_array(expected.clone());
let lazy_slice = SliceArray::try_new(child, FL_CHUNK_SIZE..2 * FL_CHUNK_SIZE)?.into_array();
let array = TransposedBool::try_new(lazy_slice)?;
let mut ctx = array_session().create_execution_ctx();
assert_arrays_eq!(
array,
BoolArray::from(expected.slice(FL_CHUNK_SIZE..2 * FL_CHUNK_SIZE)),
&mut ctx
);
Ok(())
}
}