use crate::{
bitmap::Bitmap,
buffer::Buffer,
datatypes::{DataType, Field, UnionMode},
error::Error,
scalar::{new_scalar, Scalar},
};
use super::{new_empty_array, new_null_array, Array};
#[cfg(feature = "arrow")]
mod data;
mod ffi;
pub(super) mod fmt;
mod iterator;
type UnionComponents<'a> = (&'a [Field], Option<&'a [i32]>, UnionMode);
#[derive(Clone)]
pub struct UnionArray {
types: Buffer<i8>,
map: Option<[usize; 127]>,
fields: Vec<Box<dyn Array>>,
offsets: Option<Buffer<i32>>,
data_type: DataType,
offset: usize,
}
impl UnionArray {
pub fn try_new(
data_type: DataType,
types: Buffer<i8>,
fields: Vec<Box<dyn Array>>,
offsets: Option<Buffer<i32>>,
) -> Result<Self, Error> {
let (f, ids, mode) = Self::try_get_all(&data_type)?;
if f.len() != fields.len() {
return Err(Error::oos(
"The number of `fields` must equal the number of children fields in DataType::Union",
));
};
let number_of_fields: i8 = fields
.len()
.try_into()
.map_err(|_| Error::oos("The number of `fields` cannot be larger than i8::MAX"))?;
f
.iter().map(|a| a.data_type())
.zip(fields.iter().map(|a| a.data_type()))
.enumerate()
.try_for_each(|(index, (data_type, child))| {
if data_type != child {
Err(Error::oos(format!(
"The children DataTypes of a UnionArray must equal the children data types.
However, the field {index} has data type {data_type:?} but the value has data type {child:?}"
)))
} else {
Ok(())
}
})?;
if let Some(offsets) = &offsets {
if offsets.len() != types.len() {
return Err(Error::oos(
"In a UnionArray, the offsets' length must be equal to the number of types",
));
}
}
if offsets.is_none() != mode.is_sparse() {
return Err(Error::oos(
"In a sparse UnionArray, the offsets must be set (and vice-versa)",
));
}
let map = if let Some(&ids) = ids.as_ref() {
if ids.len() != fields.len() {
return Err(Error::oos(
"In a union, when the ids are set, their length must be equal to the number of fields",
));
}
let mut hash = [0; 127];
for (pos, &id) in ids.iter().enumerate() {
if !(0..=127).contains(&id) {
return Err(Error::oos(
"In a union, when the ids are set, every id must belong to [0, 128[",
));
}
hash[id as usize] = pos;
}
types.iter().try_for_each(|&type_| {
if type_ < 0 {
return Err(Error::oos("In a union, when the ids are set, every type must be >= 0"));
}
let id = hash[type_ as usize];
if id >= fields.len() {
Err(Error::oos("In a union, when the ids are set, each id must be smaller than the number of fields."))
} else {
Ok(())
}
})?;
Some(hash)
} else {
let mut is_valid = true;
for &type_ in types.iter() {
if type_ < 0 || type_ >= number_of_fields {
is_valid = false
}
}
if !is_valid {
return Err(Error::oos(
"Every type in `types` must be larger than 0 and smaller than the number of fields.",
));
}
None
};
Ok(Self {
data_type,
map,
fields,
offsets,
types,
offset: 0,
})
}
pub fn new(
data_type: DataType,
types: Buffer<i8>,
fields: Vec<Box<dyn Array>>,
offsets: Option<Buffer<i32>>,
) -> Self {
Self::try_new(data_type, types, fields, offsets).unwrap()
}
pub fn new_null(data_type: DataType, length: usize) -> Self {
if let DataType::Union(f, _, mode) = &data_type {
let fields = f
.iter()
.map(|x| new_null_array(x.data_type().clone(), length))
.collect();
let offsets = if mode.is_sparse() {
None
} else {
Some((0..length as i32).collect::<Vec<_>>().into())
};
let types = vec![0i8; length].into();
Self::new(data_type, types, fields, offsets)
} else {
panic!("Union struct must be created with the corresponding Union DataType")
}
}
pub fn new_empty(data_type: DataType) -> Self {
if let DataType::Union(f, _, mode) = data_type.to_logical_type() {
let fields = f
.iter()
.map(|x| new_empty_array(x.data_type().clone()))
.collect();
let offsets = if mode.is_sparse() {
None
} else {
Some(Buffer::default())
};
Self {
data_type,
map: None,
fields,
offsets,
types: Buffer::new(),
offset: 0,
}
} else {
panic!("Union struct must be created with the corresponding Union DataType")
}
}
}
impl UnionArray {
#[inline]
pub fn slice(&mut self, offset: usize, length: usize) {
assert!(
offset + length <= self.len(),
"the offset of the new array cannot exceed the existing length"
);
unsafe { self.slice_unchecked(offset, length) }
}
#[inline]
pub unsafe fn slice_unchecked(&mut self, offset: usize, length: usize) {
debug_assert!(offset + length <= self.len());
self.types.slice_unchecked(offset, length);
if let Some(offsets) = self.offsets.as_mut() {
offsets.slice_unchecked(offset, length)
}
self.offset += offset;
}
impl_sliced!();
impl_into_array!();
}
impl UnionArray {
#[inline]
pub fn len(&self) -> usize {
self.types.len()
}
pub fn offsets(&self) -> Option<&Buffer<i32>> {
self.offsets.as_ref()
}
pub fn fields(&self) -> &Vec<Box<dyn Array>> {
&self.fields
}
pub fn types(&self) -> &Buffer<i8> {
&self.types
}
#[inline]
unsafe fn field_slot_unchecked(&self, index: usize) -> usize {
self.offsets()
.as_ref()
.map(|x| *x.get_unchecked(index) as usize)
.unwrap_or(index + self.offset)
}
#[inline]
pub fn index(&self, index: usize) -> (usize, usize) {
assert!(index < self.len());
unsafe { self.index_unchecked(index) }
}
#[inline]
pub unsafe fn index_unchecked(&self, index: usize) -> (usize, usize) {
debug_assert!(index < self.len());
let type_ = unsafe { *self.types.get_unchecked(index) };
let type_ = self
.map
.as_ref()
.map(|map| unsafe { *map.get_unchecked(type_ as usize) })
.unwrap_or(type_ as usize);
let index = self.field_slot_unchecked(index);
(type_, index)
}
pub fn value(&self, index: usize) -> Box<dyn Scalar> {
assert!(index < self.len());
unsafe { self.value_unchecked(index) }
}
pub unsafe fn value_unchecked(&self, index: usize) -> Box<dyn Scalar> {
debug_assert!(index < self.len());
let (type_, index) = self.index_unchecked(index);
debug_assert!(type_ < self.fields.len());
let field = self.fields.get_unchecked(type_).as_ref();
new_scalar(field, index)
}
}
impl Array for UnionArray {
impl_common_array!();
fn validity(&self) -> Option<&Bitmap> {
None
}
fn with_validity(&self, _: Option<Bitmap>) -> Box<dyn Array> {
panic!("cannot set validity of a union array")
}
}
impl UnionArray {
fn try_get_all(data_type: &DataType) -> Result<UnionComponents, Error> {
match data_type.to_logical_type() {
DataType::Union(fields, ids, mode) => {
Ok((fields, ids.as_ref().map(|x| x.as_ref()), *mode))
}
_ => Err(Error::oos(
"The UnionArray requires a logical type of DataType::Union",
)),
}
}
fn get_all(data_type: &DataType) -> (&[Field], Option<&[i32]>, UnionMode) {
Self::try_get_all(data_type).unwrap()
}
pub fn get_fields(data_type: &DataType) -> &[Field] {
Self::get_all(data_type).0
}
pub fn is_sparse(data_type: &DataType) -> bool {
Self::get_all(data_type).2.is_sparse()
}
}