src.org.python.modules.itertools.repeat 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) 2012 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.core.Visitproc;
import org.python.expose.ExposedMethod;
import org.python.expose.ExposedNew;
import org.python.expose.ExposedType;
@ExposedType(name = "itertools.repeat", base = PyObject.class, doc = repeat.repeat_doc)
public class repeat extends PyIterator {
public static final PyType TYPE = PyType.fromClass(repeat.class);
private PyIterator iter;
private PyObject object;
private int counter;
public static final String repeat_doc =
"'repeat(element [,times]) -> create an iterator which returns the element\n" +
"for the specified number of times. If not specified, returns the element\n" +
"endlessly.";
public repeat() {
super();
}
public repeat(PyType subType) {
super(subType);
}
public repeat(PyObject object) {
super();
repeat___init__(object);
}
public repeat(PyObject object, int times) {
super();
repeat___init__(object, times);
}
@ExposedNew
@ExposedMethod
final void repeat___init__(final PyObject[] args, String[] kwds) {
ArgParser ap = new ArgParser("repeat", args, kwds, new String[] {"object", "times"}, 1);
PyObject object = ap.getPyObject(0);
if (args.length == 1) {
repeat___init__(object);
}
else {
int times = ap.getInt(1);
repeat___init__(object, times);
}
}
/**
* Creates an iterator that returns the same object the number of times given by
* times
.
*/
private void repeat___init__(final PyObject object, final int times) {
this.object = object;
if (times < 0) {
counter = 0;
}
else {
counter = times;
}
iter = new PyIterator() {
public PyObject __iternext__() {
if (counter > 0) {
counter--;
return object;
}
return null;
}
};
}
/**
* Creates an iterator that returns the same object over and over again.
*/
private void repeat___init__(final PyObject object) {
this.object = object;
counter = -1;
iter = new PyIterator() {
public PyObject __iternext__() {
return object;
}
};
}
@ExposedMethod
final PyObject __copy__() {
return new repeat(object, counter);
}
@ExposedMethod
public int __len__() {
if (counter < 0) {
throw Py.TypeError("object of type 'itertools.repeat' has no len()");
}
return counter;
}
@ExposedMethod
public PyString __repr__() {
if (counter >= 0) {
return (PyString)(Py.newString("repeat(%r, %d)").
__mod__(new PyTuple(object, Py.newInteger(counter))));
}
else {
return (PyString)(Py.newString("repeat(%r)").
__mod__(new PyTuple(object)));
}
}
public PyObject __iternext__() {
return iter.__iternext__();
}
@ExposedMethod
@Override
public PyObject next() {
return doNext(__iternext__());
}
/* Traverseproc implementation */
@Override
public int traverse(Visitproc visit, Object arg) {
int retVal = super.traverse(visit, arg);
if (retVal != 0) {
return retVal;
}
if (object != null) {
retVal = visit.visit(object, arg);
if (retVal != 0) {
return retVal;
}
}
return iter != null ? visit.visit(iter, arg) : 0;
}
@Override
public boolean refersDirectlyTo(PyObject ob) {
return ob != null && (iter == ob || object == ob || super.refersDirectlyTo(ob));
}
}