orx-concurrent-iter 3.3.0

A thread-safe and ergonomic concurrent iterator trait and efficient lock-free implementations.
Documentation
use super::con_iter::ConIterRange;
use crate::pullers::ChunkPuller;
use core::ops::Range;

pub struct ChunkPullerRange<'i, T> {
    con_iter: &'i ConIterRange<T>,
    chunk_size: usize,
}

impl<'i, T> From<(&'i ConIterRange<T>, usize)> for ChunkPullerRange<'i, T>
where
    T: Send + From<usize>,
    Range<T>: Default + Clone + ExactSizeIterator<Item = T>,
{
    fn from((con_iter, chunk_size): (&'i ConIterRange<T>, usize)) -> Self {
        Self {
            con_iter,
            chunk_size,
        }
    }
}

impl<T> ChunkPuller for ChunkPullerRange<'_, T>
where
    T: Send + From<usize> + Into<usize>,
    Range<T>: Default + Clone + ExactSizeIterator<Item = T>,
{
    type ChunkItem = T;

    type Chunk<'c>
        = Range<T>
    where
        Self: 'c;

    fn chunk_size(&self) -> usize {
        self.chunk_size
    }

    fn pull(&mut self) -> Option<Self::Chunk<'_>> {
        self.con_iter
            .progress_and_get_range(self.chunk_size)
            .map(|(_, a, b)| a..b)
    }

    fn pull_with_idx(&mut self) -> Option<(usize, Self::Chunk<'_>)> {
        self.con_iter
            .progress_and_get_range(self.chunk_size)
            .map(|(begin_idx, a, b)| (begin_idx, a..b))
    }
}