Files
RustPython/vm/src/builtins/map.rs

71 lines
2.0 KiB
Rust

use super::pytype::PyTypeRef;
use crate::function::Args;
use crate::iterator;
use crate::pyobject::{PyClassImpl, PyContext, PyObjectRef, PyRef, PyResult, PyValue};
use crate::slots::PyIter;
use crate::vm::VirtualMachine;
/// map(func, *iterables) --> map object
///
/// Make an iterator that computes the function using arguments from
/// each of the iterables. Stops when the shortest iterable is exhausted.
#[pyclass(module = false, name = "map")]
#[derive(Debug)]
pub struct PyMap {
mapper: PyObjectRef,
iterators: Vec<PyObjectRef>,
}
impl PyValue for PyMap {
fn class(vm: &VirtualMachine) -> &PyTypeRef {
&vm.ctx.types.map_type
}
}
#[pyimpl(with(PyIter), flags(BASETYPE))]
impl PyMap {
#[pyslot]
fn tp_new(
cls: PyTypeRef,
function: PyObjectRef,
iterables: Args,
vm: &VirtualMachine,
) -> PyResult<PyRef<Self>> {
let iterators = iterables
.into_iter()
.map(|iterable| iterator::get_iter(vm, iterable))
.collect::<Result<Vec<_>, _>>()?;
PyMap {
mapper: function,
iterators,
}
.into_ref_with_type(vm, cls)
}
#[pymethod(name = "__length_hint__")]
fn length_hint(&self, vm: &VirtualMachine) -> PyResult<usize> {
self.iterators.iter().try_fold(0, |prev, cur| {
let cur = iterator::length_hint(vm, cur.clone())?.unwrap_or(0);
let max = std::cmp::max(prev, cur);
Ok(max)
})
}
}
impl PyIter for PyMap {
fn next(zelf: &PyRef<Self>, vm: &VirtualMachine) -> PyResult {
let next_objs = zelf
.iterators
.iter()
.map(|iterator| iterator::call_next(vm, iterator))
.collect::<Result<Vec<_>, _>>()?;
// the mapper itself can raise StopIteration which does stop the map iteration
vm.invoke(&zelf.mapper, next_objs)
}
}
pub fn init(context: &PyContext) {
PyMap::extend_class(context, &context.types.map_type);
}