Interface Interpreter
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
Jep,SharedInterpreter,SubInterpreter
public interface Interpreter extends java.lang.AutoCloseableAn interface for using a Python Interpreter.Embeds CPython in Java. Each Interpreter instance provides access to a Python interpreter and maintains an independent global namespace for Python variables. Values can be passed from Java to Python using the
set(String, Object)method. Various methods, such asexec(String)andinvoke(String, Object...)can be used to execute Python code. Python variables can be accessed usinggetValue(String)andgetValue(String, Class).Methods called on an Interpreter must be called from the same thread that created the instance. To maintain stability, avoid having two Interpreter instances running on the same thread at the same time. Instead provide different threads or close() one before instantiating another on the same thread. Interpreter instances should always be closed when no longer needed to prevent memory leaks.
- Since:
- 3.9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()booleaneval(java.lang.String str)Evaluate Python statements.voidexec(java.lang.String str)Execute an arbitrary number of Python statements in this interpreter.java.lang.ObjectgetValue(java.lang.String str)Retrieves a value from this Python interpreter.<T> TgetValue(java.lang.String str, java.lang.Class<T> clazz)LikegetValue(String)but allows specifying the return type.java.lang.Objectinvoke(java.lang.String name, java.lang.Object... args)Invokes a Python function.java.lang.Objectinvoke(java.lang.String name, java.lang.Object[] args, java.util.Map<java.lang.String,java.lang.Object> kwargs)Invokes a Python function.java.lang.Objectinvoke(java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> kwargs)Invokes a Python function.voidrunScript(java.lang.String script)Runs a Python script.voidset(java.lang.String name, java.lang.Object v)Sets the Java Object into the interpreter's global scope with the specified variable name.
-
-
-
Method Detail
-
invoke
java.lang.Object invoke(java.lang.String name, java.lang.Object... args) throws JepExceptionInvokes a Python function.- Parameters:
name- a Python function name in globals dict or the name of a global object and method using dot notationargs- args to pass to the function in order- Returns:
- an
Objectvalue - Throws:
JepException- if an error occurs
-
invoke
java.lang.Object invoke(java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> kwargs) throws JepExceptionInvokes a Python function.- Parameters:
name- a Python function name in globals dict or the name of a global object and method using dot notationkwargs- a Map of keyword args- Returns:
- an
Objectvalue - Throws:
JepException- if an error occurs
-
invoke
java.lang.Object invoke(java.lang.String name, java.lang.Object[] args, java.util.Map<java.lang.String,java.lang.Object> kwargs) throws JepExceptionInvokes a Python function.- Parameters:
name- a Python function name in globals dict or the name of a global object and method using dot notationargs- args to pass to the function in orderkwargs- a Map of keyword args- Returns:
- an
Objectvalue - Throws:
JepException- if an error occurs
-
eval
boolean eval(java.lang.String str) throws JepExceptionEvaluate Python statements.
In interactive mode, Jep may not immediately execute the given lines of code. In that case, eval() returns false and the statement is stored and is appended to the next incoming string.
If you're running an unknown number of statements, finish with
eval(null)to flush the statement buffer.Interactive mode is slower than a straight eval call since it has to compile the code strings to detect the end of the block. Non-interactive mode is faster, but code blocks must be complete. For example:
interactive mode == false
jep.eval("if(Test):\n print('Hello world')");interactive mode == true
jep.eval("if(Test):"); jep.eval(" print('Hello world')"); jep.eval(null);Also, Python does not readily return object values from eval(). Use
getValue(String)instead.Note: Interactive mode will be removed in a future release. This method may still be used for executing individual statements. See console.py for an example of how to interactively execute Python using the builtin compile() and exec() functions.
- Parameters:
str- aStringstatement to eval- Returns:
- true if statement complete and was executed.
- Throws:
JepException- if an error occurs
-
exec
void exec(java.lang.String str) throws JepException
Execute an arbitrary number of Python statements in this interpreter. Similar to the Python builtin exec function.- Parameters:
str- Python code to exececute- Throws:
JepException- if an error occurs
-
runScript
void runScript(java.lang.String script) throws JepExceptionRuns a Python script.- Parameters:
script- aStringabsolute path to script file.- Throws:
JepException- if an error occurs
-
getValue
java.lang.Object getValue(java.lang.String str) throws JepExceptionRetrieves a value from this Python interpreter. Supports retrieving:
- Java objects
- Python None (null)
- Python strings
- Python True and False
- Python numbers
- Python lists
- Python tuples
- Python dictionaries
For Python containers, such as lists and dictionaries, getValue will recursively move through the container and convert each item. If the type of the value retrieved is not supported, Jep will fall back to returning a String representation of the object. This fallback behavior will probably change in the future and should not be relied upon.
- Parameters:
str- the name of the Python variable to get from the interpreter's global scope- Returns:
- an
Objectvalue - Throws:
JepException- if an error occurs
-
getValue
<T> T getValue(java.lang.String str, java.lang.Class<T> clazz) throws JepExceptionLikegetValue(String)but allows specifying the return type. If Jep cannot convert the variable to the specified type then a JepException is thrown. This can be used to safely ensure that the return value is an expected type. The following table describes what conversions are currently possible.The valid classes for Python to Java conversions Python Class Java Classes Notes str/unicode String,CharacterCharacter conversion will fail if the str is longer than 1. bool Booleanint/long Long,Integer,Short,ByteConversion fails if the number is outside the valid range for the Java type float Double,Floatlist, tuple List, arrayWhen a tuple is converted to a List it is unmodifiable. dict Mapfunction, method Any FunctionalInterface Buffer Protocol array This includes Python classes such as bytes, bytearray and array.array numpy.ndarray NDArrayOnly if Jep was built with numpy support numpy.float64 Double,Floatnumpy.float32 Float,Doublenumpy.int64 Long,Integer,Short,ByteConversion fails if the number is outside the valid range for the Java type numpy.int32 Integer,Long,Short,ByteConversion fails if the number is outside the valid range for the Java type numpy.int16 Short,Integer,Long,ByteConversion fails if the number is outside the valid range for the Java type numpy.int8 Byte.Short,Integer,LongNoneType Any(null) Jep objects such as PyJObjects and jarrays will be returned if the Java type of the wrapped object is compatible. Anything else String,PyObjectString conversion will likely be removed in future versions of Jep so it is unsafe to depend on this behavior. - Type Parameters:
T- the generic type of the return type- Parameters:
str- the name of the Python variable to get from the interpreter's global scopeclazz- the Java class of the return type.- Returns:
- a Java version of the variable
- Throws:
JepException- if an error occurs
-
set
void set(java.lang.String name, java.lang.Object v) throws JepExceptionSets the Java Object into the interpreter's global scope with the specified variable name.- Parameters:
name- the Python name for the variablev- anObjectvalue- Throws:
JepException- if an error occurs
-
close
void close() throws JepException- Specified by:
closein interfacejava.lang.AutoCloseable- Throws:
JepException
-
-