rars 0.5.2

High-level Rust API for reading, extracting, writing, and repairing RAR archives.
Documentation
use rayon::prelude::*;

pub(crate) fn map_collect<T, O, E, F>(items: Vec<T>, map: F) -> Result<Vec<O>, E>
where
    T: Send,
    O: Send,
    E: Send,
    F: Fn(T) -> Result<O, E> + Sync + Send,
{
    items.into_par_iter().map(map).collect()
}

/// Maps `items` in parallel but keeps only a window of results alive, handing
/// each to `consume` in order before starting the next window.
///
/// Mapping everything up front is simpler, but it holds every result at once;
/// when the results are compressed file payloads that is the difference
/// between one copy of the archive in memory and two.
pub(crate) fn map_slice_windowed<'a, T, O, E, F, C>(
    items: &'a [T],
    window: usize,
    map: F,
    mut consume: C,
) -> Result<(), E>
where
    T: Sync + 'a,
    O: Send,
    E: Send,
    F: Fn(&'a T) -> Result<O, E> + Sync + Send,
    C: FnMut(&'a T, O) -> Result<(), E>,
{
    let window = window.max(1);
    for chunk in items.chunks(window) {
        let mapped: Vec<O> = chunk.par_iter().map(&map).collect::<Result<_, E>>()?;
        for (item, output) in chunk.iter().zip(mapped) {
            consume(item, output)?;
        }
    }
    Ok(())
}

/// How many members to keep in flight at once.
pub(crate) fn default_window() -> usize {
    rayon::current_num_threads().max(1)
}