src.org.python.modules.itertools.imap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython Show documentation
Show all versions of jython Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
/* Copyright (c) Jython Developers */
package org.python.modules.itertools;
import org.python.core.ArgParser;
import org.python.core.Py;
import org.python.core.PyIterator;
import org.python.core.PyObject;
import org.python.core.PyString;
import org.python.core.PyTuple;
import org.python.core.PyType;
import org.python.expose.ExposedClassMethod;
import org.python.expose.ExposedGet;
import org.python.expose.ExposedNew;
import org.python.expose.ExposedMethod;
import org.python.expose.ExposedType;
import java.util.ArrayList;
@ExposedType(name = "itertools.imap", base = PyObject.class)
public class imap extends PyObject {
public static final PyType TYPE = PyType.fromClass(imap.class);
private PyIterator iter;
@ExposedGet
public static PyString __doc__ = new PyString(
"'map(func, *iterables) --> imap object\n\nMake an iterator that computes the "
+ "function using arguments from\neach of the iterables.\tLike map() except that it returns\n"
+ "an iterator instead of a list and that it stops when the shortest\niterable is exhausted "
+ "instead of filling in None for shorter\niterables.");
public imap() {
super();
}
public imap(PyType subType) {
super(subType);
}
public imap(PyObject... args) {
super();
imap___init__(args);
}
/**
* Works as __builtin__.map()
but returns an iterator instead of a list. (Code in
* this method is based on __builtin__.map()).
*/
@ExposedNew
@ExposedMethod
final void imap___init__(PyObject[] args, String[] kwds) {
if (kwds.length > 0) {
throw Py.TypeError(String.format("imap does not take keyword arguments"));
}
imap___init__(args);
}
private void imap___init__(final PyObject[] argstar) {
if (argstar.length < 2) {
throw Py.TypeError("imap requires at least two arguments");
}
final int n = argstar.length - 1;
final PyObject func = argstar[0];
final PyObject[] iterables = new PyObject[n];
for (int j = 0; j < n; j++) {
iterables[j] = Py.iter(argstar[j + 1], "argument " + (j + 1)
+ " to imap() must support iteration");
}
iter = new PyIterator() {
PyObject[] args = new PyObject[n];
PyObject element = null;
public PyObject __iternext__() {
for (int i = 0; i < n; i++) {
if ((element = iterables[i].__iternext__()) != null) {
// collect the arguments for the func
args[i] = element;
} else {
// break iteration
return null;
}
}
if (func == Py.None) {
// if None is supplied as func we just return what's in
// the iterable(s)
if (n == 1) {
return args[0];
} else {
return new PyTuple(args.clone());
}
} else {
return func.__call__(args);
}
}
};
}
@ExposedMethod
public PyObject __iter__() {
return iter;
}
@ExposedMethod
public PyObject next() {
return iter.next();
}
}