use super::*;
fn partition_mask<T: PolarsNumericType, F>(
ca: &ChunkedArray<T>,
lower_part: bool,
is_lower: F,
) -> BooleanChunked
where
F: Fn(&T::Native) -> bool,
{
let chunks = ca.downcast_iter().map(|arr| {
let values = arr.values();
let lower_len = values.partition_point(&is_lower);
let mut mask = MutableBitmap::with_capacity(arr.len());
mask.extend_constant(lower_len, lower_part);
mask.extend_constant(arr.len() - lower_len, !lower_part);
BooleanArray::from_data_default(mask.into(), None)
});
let output_order = if lower_part {
IsSorted::Descending
} else {
IsSorted::Ascending
};
let mut ca = BooleanChunked::from_chunk_iter(ca.name(), chunks);
ca.set_sorted_flag(output_order);
ca
}
impl<T, Rhs> ChunkCompare<Rhs> for ChunkedArray<T>
where
T: PolarsNumericType,
Rhs: ToPrimitive,
T::Array: TotalOrdKernel<Scalar = T::Native>,
{
type Item = BooleanChunked;
fn equal(&self, rhs: Rhs) -> BooleanChunked {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_values(self, |arr| arr.tot_eq_kernel_broadcast(&rhs).into())
}
fn equal_missing(&self, rhs: Rhs) -> BooleanChunked {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_with_options(self, |arr| arr.tot_eq_missing_kernel_broadcast(&rhs).into())
}
fn not_equal(&self, rhs: Rhs) -> BooleanChunked {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_values(self, |arr| arr.tot_ne_kernel_broadcast(&rhs).into())
}
fn not_equal_missing(&self, rhs: Rhs) -> BooleanChunked {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_with_options(self, |arr| arr.tot_ne_missing_kernel_broadcast(&rhs).into())
}
fn gt(&self, rhs: Rhs) -> BooleanChunked {
match (self.is_sorted_flag(), self.null_count()) {
(IsSorted::Ascending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, false, |x| x.tot_le(&rhs))
},
(IsSorted::Descending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, true, |x| x.tot_gt(&rhs))
},
_ => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_values(self, |arr| arr.tot_gt_kernel_broadcast(&rhs).into())
},
}
}
fn gt_eq(&self, rhs: Rhs) -> BooleanChunked {
match (self.is_sorted_flag(), self.null_count()) {
(IsSorted::Ascending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, false, |x| x.tot_lt(&rhs))
},
(IsSorted::Descending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, true, |x| x.tot_ge(&rhs))
},
_ => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_values(self, |arr| arr.tot_ge_kernel_broadcast(&rhs).into())
},
}
}
fn lt(&self, rhs: Rhs) -> BooleanChunked {
match (self.is_sorted_flag(), self.null_count()) {
(IsSorted::Ascending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, true, |x| x.tot_lt(&rhs))
},
(IsSorted::Descending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, false, |x| x.tot_ge(&rhs))
},
_ => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_values(self, |arr| arr.tot_lt_kernel_broadcast(&rhs).into())
},
}
}
fn lt_eq(&self, rhs: Rhs) -> BooleanChunked {
match (self.is_sorted_flag(), self.null_count()) {
(IsSorted::Ascending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, true, |x| x.tot_le(&rhs))
},
(IsSorted::Descending, 0) => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
partition_mask(self, false, |x| x.tot_gt(&rhs))
},
_ => {
let rhs: T::Native = NumCast::from(rhs).unwrap();
arity::unary_mut_values(self, |arr| arr.tot_le_kernel_broadcast(&rhs).into())
},
}
}
}
impl ChunkCompare<&[u8]> for BinaryChunked {
type Item = BooleanChunked;
fn equal(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_eq_kernel_broadcast(rhs).into())
}
fn equal_missing(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_with_options(self, |arr| arr.tot_eq_missing_kernel_broadcast(rhs).into())
}
fn not_equal(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_ne_kernel_broadcast(rhs).into())
}
fn not_equal_missing(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_with_options(self, |arr| arr.tot_ne_missing_kernel_broadcast(rhs).into())
}
fn gt(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_gt_kernel_broadcast(rhs).into())
}
fn gt_eq(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_ge_kernel_broadcast(rhs).into())
}
fn lt(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_lt_kernel_broadcast(rhs).into())
}
fn lt_eq(&self, rhs: &[u8]) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_le_kernel_broadcast(rhs).into())
}
}
impl ChunkCompare<&str> for StringChunked {
type Item = BooleanChunked;
fn equal(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_eq_kernel_broadcast(rhs).into())
}
fn equal_missing(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_with_options(self, |arr| arr.tot_eq_missing_kernel_broadcast(rhs).into())
}
fn not_equal(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_ne_kernel_broadcast(rhs).into())
}
fn not_equal_missing(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_with_options(self, |arr| arr.tot_ne_missing_kernel_broadcast(rhs).into())
}
fn gt(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_gt_kernel_broadcast(rhs).into())
}
fn gt_eq(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_ge_kernel_broadcast(rhs).into())
}
fn lt(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_lt_kernel_broadcast(rhs).into())
}
fn lt_eq(&self, rhs: &str) -> BooleanChunked {
arity::unary_mut_values(self, |arr| arr.tot_le_kernel_broadcast(rhs).into())
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_binary_search_cmp() {
let mut s = Series::new("", &[1, 1, 2, 2, 4, 8]);
s.set_sorted_flag(IsSorted::Ascending);
let out = s.gt(10).unwrap();
assert!(!out.any());
let out = s.gt(0).unwrap();
assert!(out.all());
let out = s.gt(2).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [false, false, false, false, true, true])
);
let out = s.gt(3).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [false, false, false, false, true, true])
);
let out = s.gt_eq(10).unwrap();
assert!(!out.any());
let out = s.gt_eq(0).unwrap();
assert!(out.all());
let out = s.gt_eq(2).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [false, false, true, true, true, true])
);
let out = s.gt_eq(3).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [false, false, false, false, true, true])
);
let out = s.lt(10).unwrap();
assert!(out.all());
let out = s.lt(0).unwrap();
assert!(!out.any());
let out = s.lt(2).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [true, true, false, false, false, false])
);
let out = s.lt(3).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [true, true, true, true, false, false])
);
let out = s.lt_eq(10).unwrap();
assert!(out.all());
let out = s.lt_eq(0).unwrap();
assert!(!out.any());
let out = s.lt_eq(2).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [true, true, true, true, false, false])
);
let out = s.lt(3).unwrap();
assert_eq!(
out.into_series(),
Series::new("", [true, true, true, true, false, false])
);
}
}