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, } 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> { let iterators = iterables .into_iter() .map(|iterable| iterator::get_iter(vm, iterable)) .collect::, _>>()?; PyMap { mapper: function, iterators, } .into_ref_with_type(vm, cls) } #[pymethod(name = "__length_hint__")] fn length_hint(&self, vm: &VirtualMachine) -> PyResult { 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, vm: &VirtualMachine) -> PyResult { let next_objs = zelf .iterators .iter() .map(|iterator| iterator::call_next(vm, iterator)) .collect::, _>>()?; // 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); }