use std::hash::Hash;
use std::hint::unreachable_unchecked;
use crate::{
bitmap::{
utils::{BitmapIter, ZipValidity},
Bitmap,
},
datatypes::{DataType, IntegerType},
error::Error,
scalar::{new_scalar, Scalar},
trusted_len::TrustedLen,
types::NativeType,
};
#[cfg(feature = "arrow")]
mod data;
mod ffi;
pub(super) mod fmt;
mod iterator;
mod mutable;
use crate::array::specification::check_indexes_unchecked;
mod typed_iterator;
mod value_map;
use crate::array::dictionary::typed_iterator::{DictValue, DictionaryValuesIterTyped};
pub use iterator::*;
pub use mutable::*;
use super::{new_empty_array, primitive::PrimitiveArray, Array};
use super::{new_null_array, specification::check_indexes};
pub unsafe trait DictionaryKey: NativeType + TryInto<usize> + TryFrom<usize> + Hash {
const KEY_TYPE: IntegerType;
#[inline]
unsafe fn as_usize(self) -> usize {
match self.try_into() {
Ok(v) => v,
Err(_) => unreachable_unchecked(),
}
}
fn always_fits_usize() -> bool {
false
}
}
unsafe impl DictionaryKey for i8 {
const KEY_TYPE: IntegerType = IntegerType::Int8;
}
unsafe impl DictionaryKey for i16 {
const KEY_TYPE: IntegerType = IntegerType::Int16;
}
unsafe impl DictionaryKey for i32 {
const KEY_TYPE: IntegerType = IntegerType::Int32;
}
unsafe impl DictionaryKey for i64 {
const KEY_TYPE: IntegerType = IntegerType::Int64;
}
unsafe impl DictionaryKey for u8 {
const KEY_TYPE: IntegerType = IntegerType::UInt8;
fn always_fits_usize() -> bool {
true
}
}
unsafe impl DictionaryKey for u16 {
const KEY_TYPE: IntegerType = IntegerType::UInt16;
fn always_fits_usize() -> bool {
true
}
}
unsafe impl DictionaryKey for u32 {
const KEY_TYPE: IntegerType = IntegerType::UInt32;
fn always_fits_usize() -> bool {
true
}
}
unsafe impl DictionaryKey for u64 {
const KEY_TYPE: IntegerType = IntegerType::UInt64;
#[cfg(target_pointer_width = "64")]
fn always_fits_usize() -> bool {
true
}
}
#[derive(Clone)]
pub struct DictionaryArray<K: DictionaryKey> {
data_type: DataType,
keys: PrimitiveArray<K>,
values: Box<dyn Array>,
}
fn check_data_type(
key_type: IntegerType,
data_type: &DataType,
values_data_type: &DataType,
) -> Result<(), Error> {
if let DataType::Dictionary(key, value, _) = data_type.to_logical_type() {
if *key != key_type {
return Err(Error::oos(
"DictionaryArray must be initialized with a DataType::Dictionary whose integer is compatible to its keys",
));
}
if value.as_ref().to_logical_type() != values_data_type.to_logical_type() {
return Err(Error::oos(
"DictionaryArray must be initialized with a DataType::Dictionary whose value is equal to its values",
));
}
} else {
return Err(Error::oos(
"DictionaryArray must be initialized with logical DataType::Dictionary",
));
}
Ok(())
}
impl<K: DictionaryKey> DictionaryArray<K> {
pub fn try_new(
data_type: DataType,
keys: PrimitiveArray<K>,
values: Box<dyn Array>,
) -> Result<Self, Error> {
check_data_type(K::KEY_TYPE, &data_type, values.data_type())?;
if keys.null_count() != keys.len() {
if K::always_fits_usize() {
unsafe { check_indexes_unchecked(keys.values(), values.len()) }?;
} else {
check_indexes(keys.values(), values.len())?;
}
}
Ok(Self {
data_type,
keys,
values,
})
}
pub fn try_from_keys(keys: PrimitiveArray<K>, values: Box<dyn Array>) -> Result<Self, Error> {
let data_type = Self::default_data_type(values.data_type().clone());
Self::try_new(data_type, keys, values)
}
pub unsafe fn try_new_unchecked(
data_type: DataType,
keys: PrimitiveArray<K>,
values: Box<dyn Array>,
) -> Result<Self, Error> {
check_data_type(K::KEY_TYPE, &data_type, values.data_type())?;
Ok(Self {
data_type,
keys,
values,
})
}
pub fn new_empty(data_type: DataType) -> Self {
let values = Self::try_get_child(&data_type).unwrap();
let values = new_empty_array(values.clone());
Self::try_new(
data_type,
PrimitiveArray::<K>::new_empty(K::PRIMITIVE.into()),
values,
)
.unwrap()
}
#[inline]
pub fn new_null(data_type: DataType, length: usize) -> Self {
let values = Self::try_get_child(&data_type).unwrap();
let values = new_null_array(values.clone(), 1);
Self::try_new(
data_type,
PrimitiveArray::<K>::new_null(K::PRIMITIVE.into(), length),
values,
)
.unwrap()
}
pub fn iter(&self) -> ZipValidity<Box<dyn Scalar>, DictionaryValuesIter<K>, BitmapIter> {
ZipValidity::new_with_validity(DictionaryValuesIter::new(self), self.keys.validity())
}
pub fn values_iter(&self) -> DictionaryValuesIter<K> {
DictionaryValuesIter::new(self)
}
pub fn values_iter_typed<V: DictValue>(
&self,
) -> Result<DictionaryValuesIterTyped<K, V>, Error> {
let keys = &self.keys;
assert_eq!(keys.null_count(), 0);
let values = self.values.as_ref();
let values = V::downcast_values(values)?;
Ok(unsafe { DictionaryValuesIterTyped::new(keys, values) })
}
pub fn iter_typed<V: DictValue>(
&self,
) -> Result<ZipValidity<V::IterValue<'_>, DictionaryValuesIterTyped<K, V>, BitmapIter>, Error>
{
let keys = &self.keys;
let values = self.values.as_ref();
let values = V::downcast_values(values)?;
let values_iter = unsafe { DictionaryValuesIterTyped::new(keys, values) };
Ok(ZipValidity::new_with_validity(values_iter, self.validity()))
}
#[inline]
pub fn data_type(&self) -> &DataType {
&self.data_type
}
#[inline]
pub fn is_ordered(&self) -> bool {
match self.data_type.to_logical_type() {
DataType::Dictionary(_, _, is_ordered) => *is_ordered,
_ => unreachable!(),
}
}
pub(crate) fn default_data_type(values_datatype: DataType) -> DataType {
DataType::Dictionary(K::KEY_TYPE, Box::new(values_datatype), false)
}
pub fn slice(&mut self, offset: usize, length: usize) {
self.keys.slice(offset, length);
}
pub unsafe fn slice_unchecked(&mut self, offset: usize, length: usize) {
self.keys.slice_unchecked(offset, length);
}
impl_sliced!();
#[must_use]
pub fn with_validity(mut self, validity: Option<Bitmap>) -> Self {
self.set_validity(validity);
self
}
pub fn set_validity(&mut self, validity: Option<Bitmap>) {
self.keys.set_validity(validity);
}
impl_into_array!();
#[inline]
pub fn len(&self) -> usize {
self.keys.len()
}
#[inline]
pub fn validity(&self) -> Option<&Bitmap> {
self.keys.validity()
}
#[inline]
pub fn keys(&self) -> &PrimitiveArray<K> {
&self.keys
}
#[inline]
pub fn keys_values_iter(&self) -> impl TrustedLen<Item = usize> + Clone + '_ {
self.keys.values_iter().map(|x| unsafe { x.as_usize() })
}
#[inline]
pub fn keys_iter(&self) -> impl TrustedLen<Item = Option<usize>> + Clone + '_ {
self.keys.iter().map(|x| x.map(|x| unsafe { x.as_usize() }))
}
#[inline]
pub fn key_value(&self, index: usize) -> usize {
unsafe { self.keys.values()[index].as_usize() }
}
#[inline]
pub fn values(&self) -> &Box<dyn Array> {
&self.values
}
#[inline]
pub fn value(&self, index: usize) -> Box<dyn Scalar> {
let index = unsafe { self.keys.value(index).as_usize() };
new_scalar(self.values.as_ref(), index)
}
pub(crate) fn try_get_child(data_type: &DataType) -> Result<&DataType, Error> {
Ok(match data_type.to_logical_type() {
DataType::Dictionary(_, values, _) => values.as_ref(),
_ => {
return Err(Error::oos(
"Dictionaries must be initialized with DataType::Dictionary",
))
}
})
}
}
impl<K: DictionaryKey> Array for DictionaryArray<K> {
impl_common_array!();
fn validity(&self) -> Option<&Bitmap> {
self.keys.validity()
}
#[inline]
fn with_validity(&self, validity: Option<Bitmap>) -> Box<dyn Array> {
Box::new(self.clone().with_validity(validity))
}
}