polars_core/chunked_array/list/iterator.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
use std::marker::PhantomData;
use std::ptr::NonNull;
use std::rc::Rc;
use crate::chunked_array::flags::StatisticsFlags;
use crate::prelude::*;
use crate::series::amortized_iter::{unstable_series_container_and_ptr, AmortSeries, ArrayBox};
pub struct AmortizedListIter<'a, I: Iterator<Item = Option<ArrayBox>>> {
len: usize,
series_container: Rc<Series>,
inner: NonNull<ArrayRef>,
lifetime: PhantomData<&'a ArrayRef>,
iter: I,
// used only if feature="dtype-struct"
#[allow(dead_code)]
inner_dtype: DataType,
}
impl<I: Iterator<Item = Option<ArrayBox>>> AmortizedListIter<'_, I> {
pub(crate) unsafe fn new(
len: usize,
series_container: Series,
inner: NonNull<ArrayRef>,
iter: I,
inner_dtype: DataType,
) -> Self {
Self {
len,
series_container: Rc::new(series_container),
inner,
lifetime: PhantomData,
iter,
inner_dtype,
}
}
}
impl<I: Iterator<Item = Option<ArrayBox>>> Iterator for AmortizedListIter<'_, I> {
type Item = Option<AmortSeries>;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|opt_val| {
opt_val.map(|array_ref| {
#[cfg(feature = "dtype-struct")]
// structs arrays are bound to the series not to the arrayref
// so we must get a hold to the new array
if matches!(self.inner_dtype, DataType::Struct(_)) {
// SAFETY:
// dtype is known
unsafe {
let s = Series::from_chunks_and_dtype_unchecked(
PlSmallStr::EMPTY,
vec![array_ref],
&self.inner_dtype.to_physical(),
)
.from_physical_unchecked(&self.inner_dtype)
.unwrap();
let inner = Rc::make_mut(&mut self.series_container);
*inner = s;
return AmortSeries::new(self.series_container.clone());
}
}
// The series is cloned, we make a new container.
if Arc::strong_count(&self.series_container.0) > 1
|| Rc::strong_count(&self.series_container) > 1
{
let (s, ptr) = unsafe {
unstable_series_container_and_ptr(
self.series_container.name().clone(),
array_ref,
self.series_container.dtype(),
)
};
self.series_container = Rc::new(s);
self.inner = NonNull::new(ptr).unwrap();
} else {
// SAFETY: we checked the RC above;
let series_mut =
unsafe { Rc::get_mut(&mut self.series_container).unwrap_unchecked() };
// update the inner state
unsafe { *self.inner.as_mut() = array_ref };
// As an optimization, we try to minimize how many calls to
// _get_inner_mut() we do.
let series_mut_inner = series_mut._get_inner_mut();
// last iteration could have set the sorted flag (e.g. in compute_len)
series_mut_inner._set_flags(StatisticsFlags::empty());
// make sure that the length is correct
series_mut_inner.compute_len();
}
// SAFETY:
// inner belongs to Series.
unsafe {
AmortSeries::new_with_chunk(self.series_container.clone(), self.inner.as_ref())
}
})
})
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
}
// # Safety
// we correctly implemented size_hint
unsafe impl<I: Iterator<Item = Option<ArrayBox>>> TrustedLen for AmortizedListIter<'_, I> {}
impl<I: Iterator<Item = Option<ArrayBox>>> ExactSizeIterator for AmortizedListIter<'_, I> {}
impl ListChunked {
/// This is an iterator over a [`ListChunked`] that saves allocations.
/// A Series is:
/// 1. [`Arc<ChunkedArray>`]
/// ChunkedArray is:
/// 2. Vec< 3. ArrayRef>
///
/// The ArrayRef we indicated with 3. will be updated during iteration.
/// The Series will be pinned in memory, saving an allocation for
/// 1. Arc<..>
/// 2. Vec<...>
///
/// If the returned `AmortSeries` is cloned, the local copy will be replaced and a new container
/// will be set.
pub fn amortized_iter(&self) -> AmortizedListIter<impl Iterator<Item = Option<ArrayBox>> + '_> {
self.amortized_iter_with_name(PlSmallStr::EMPTY)
}
/// See `amortized_iter`.
pub fn amortized_iter_with_name(
&self,
name: PlSmallStr,
) -> AmortizedListIter<impl Iterator<Item = Option<ArrayBox>> + '_> {
// we create the series container from the inner array
// so that the container has the proper dtype.
let arr = self.downcast_iter().next().unwrap();
let inner_values = arr.values();
let inner_dtype = self.inner_dtype();
let iter_dtype = match inner_dtype {
#[cfg(feature = "dtype-struct")]
DataType::Struct(_) => inner_dtype.to_physical(),
// TODO: figure out how to deal with physical/logical distinction
// physical primitives like time, date etc. work
// physical nested need more
_ => inner_dtype.clone(),
};
// SAFETY:
// inner type passed as physical type
let (s, ptr) =
unsafe { unstable_series_container_and_ptr(name, inner_values.clone(), &iter_dtype) };
// SAFETY: ptr belongs the Series..
unsafe {
AmortizedListIter::new(
self.len(),
s,
NonNull::new(ptr).unwrap(),
self.downcast_iter().flat_map(|arr| arr.iter()),
inner_dtype.clone(),
)
}
}
/// Apply a closure `F` elementwise.
#[must_use]
pub fn apply_amortized_generic<F, K, V>(&self, f: F) -> ChunkedArray<V>
where
V: PolarsDataType,
F: FnMut(Option<AmortSeries>) -> Option<K> + Copy,
V::Array: ArrayFromIter<Option<K>>,
{
// TODO! make an amortized iter that does not flatten
self.amortized_iter().map(f).collect_ca(self.name().clone())
}
pub fn try_apply_amortized_generic<F, K, V>(&self, f: F) -> PolarsResult<ChunkedArray<V>>
where
V: PolarsDataType,
F: FnMut(Option<AmortSeries>) -> PolarsResult<Option<K>> + Copy,
V::Array: ArrayFromIter<Option<K>>,
{
// TODO! make an amortized iter that does not flatten
self.amortized_iter()
.map(f)
.try_collect_ca(self.name().clone())
}
pub fn for_each_amortized<F>(&self, f: F)
where
F: FnMut(Option<AmortSeries>),
{
self.amortized_iter().for_each(f)
}
/// Zip with a `ChunkedArray` then apply a binary function `F` elementwise.
#[must_use]
pub fn zip_and_apply_amortized<'a, T, I, F>(&'a self, ca: &'a ChunkedArray<T>, mut f: F) -> Self
where
T: PolarsDataType,
&'a ChunkedArray<T>: IntoIterator<IntoIter = I>,
I: TrustedLen<Item = Option<T::Physical<'a>>>,
F: FnMut(Option<AmortSeries>, Option<T::Physical<'a>>) -> Option<Series>,
{
if self.is_empty() {
return self.clone();
}
let mut fast_explode = self.null_count() == 0;
let mut out: ListChunked = {
self.amortized_iter()
.zip(ca)
.map(|(opt_s, opt_v)| {
let out = f(opt_s, opt_v);
match out {
Some(out) => {
fast_explode &= !out.is_empty();
Some(out)
},
None => {
fast_explode = false;
out
},
}
})
.collect_trusted()
};
out.rename(self.name().clone());
if fast_explode {
out.set_fast_explode();
}
out
}
#[must_use]
pub fn binary_zip_and_apply_amortized<'a, T, U, F>(
&'a self,
ca1: &'a ChunkedArray<T>,
ca2: &'a ChunkedArray<U>,
mut f: F,
) -> Self
where
T: PolarsDataType,
U: PolarsDataType,
F: FnMut(
Option<AmortSeries>,
Option<T::Physical<'a>>,
Option<U::Physical<'a>>,
) -> Option<Series>,
{
if self.is_empty() {
return self.clone();
}
let mut fast_explode = self.null_count() == 0;
let mut out: ListChunked = {
self.amortized_iter()
.zip(ca1.iter())
.zip(ca2.iter())
.map(|((opt_s, opt_u), opt_v)| {
let out = f(opt_s, opt_u, opt_v);
match out {
Some(out) => {
fast_explode &= !out.is_empty();
Some(out)
},
None => {
fast_explode = false;
out
},
}
})
.collect_trusted()
};
out.rename(self.name().clone());
if fast_explode {
out.set_fast_explode();
}
out
}
pub fn try_zip_and_apply_amortized<'a, T, I, F>(
&'a self,
ca: &'a ChunkedArray<T>,
mut f: F,
) -> PolarsResult<Self>
where
T: PolarsDataType,
&'a ChunkedArray<T>: IntoIterator<IntoIter = I>,
I: TrustedLen<Item = Option<T::Physical<'a>>>,
F: FnMut(Option<AmortSeries>, Option<T::Physical<'a>>) -> PolarsResult<Option<Series>>,
{
if self.is_empty() {
return Ok(self.clone());
}
let mut fast_explode = self.null_count() == 0;
let mut out: ListChunked = {
self.amortized_iter()
.zip(ca)
.map(|(opt_s, opt_v)| {
let out = f(opt_s, opt_v)?;
match out {
Some(out) => {
fast_explode &= !out.is_empty();
Ok(Some(out))
},
None => {
fast_explode = false;
Ok(out)
},
}
})
.collect::<PolarsResult<_>>()?
};
out.rename(self.name().clone());
if fast_explode {
out.set_fast_explode();
}
Ok(out)
}
/// Apply a closure `F` elementwise.
#[must_use]
pub fn apply_amortized<F>(&self, mut f: F) -> Self
where
F: FnMut(AmortSeries) -> Series,
{
if self.is_empty() {
return self.clone();
}
let mut fast_explode = self.null_count() == 0;
let mut ca: ListChunked = {
self.amortized_iter()
.map(|opt_v| {
opt_v.map(|v| {
let out = f(v);
if out.is_empty() {
fast_explode = false;
}
out
})
})
.collect_trusted()
};
ca.rename(self.name().clone());
if fast_explode {
ca.set_fast_explode();
}
ca
}
pub fn try_apply_amortized<F>(&self, mut f: F) -> PolarsResult<Self>
where
F: FnMut(AmortSeries) -> PolarsResult<Series>,
{
if self.is_empty() {
return Ok(self.clone());
}
let mut fast_explode = self.null_count() == 0;
let mut ca: ListChunked = {
self.amortized_iter()
.map(|opt_v| {
opt_v
.map(|v| {
let out = f(v);
if let Ok(out) = &out {
if out.is_empty() {
fast_explode = false
}
};
out
})
.transpose()
})
.collect::<PolarsResult<_>>()?
};
ca.rename(self.name().clone());
if fast_explode {
ca.set_fast_explode();
}
Ok(ca)
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::chunked_array::builder::get_list_builder;
#[test]
fn test_iter_list() {
let mut builder = get_list_builder(&DataType::Int32, 10, 10, PlSmallStr::EMPTY);
builder
.append_series(&Series::new(PlSmallStr::EMPTY, &[1, 2, 3]))
.unwrap();
builder
.append_series(&Series::new(PlSmallStr::EMPTY, &[3, 2, 1]))
.unwrap();
builder
.append_series(&Series::new(PlSmallStr::EMPTY, &[1, 1]))
.unwrap();
let ca = builder.finish();
ca.amortized_iter().zip(&ca).for_each(|(s1, s2)| {
assert!(s1.unwrap().as_ref().equals(&s2.unwrap()));
})
}
}