public class JythonModel extends java.lang.Object implements TemplateBooleanModel, TemplateScalarModel, TemplateHashModel, TemplateMethodModelEx, AdapterTemplateModel, WrapperTemplateModel
Modifier and Type | Field and Description |
---|---|
protected org.python.core.PyObject |
object |
protected JythonWrapper |
wrapper |
FALSE, TRUE
EMPTY_STRING
NOTHING
Constructor and Description |
---|
JythonModel(org.python.core.PyObject object,
JythonWrapper wrapper) |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
exec(java.util.List arguments)
Executes the method call.
|
TemplateModel |
get(java.lang.String key)
Calls
PyObject.__findattr__(java.lang.String) , then if it
returns null calls PyObject.__finditem__(java.lang.String) . |
java.lang.Object |
getAdaptedObject(java.lang.Class hint)
Retrieves the underlying object, or some other object semantically
equivalent to its value narrowed by the class hint.
|
boolean |
getAsBoolean()
Returns the value of
PyObject.__nonzero__() . |
java.lang.String |
getAsString()
Returns the value of
Object.toString() . |
java.lang.Object |
getWrappedObject()
Retrieves the original object wrapped by this model.
|
boolean |
isEmpty()
Returns
PyObject.__len__() == 0 . |
protected final org.python.core.PyObject object
protected final JythonWrapper wrapper
public JythonModel(org.python.core.PyObject object, JythonWrapper wrapper)
public boolean getAsBoolean() throws TemplateModelException
PyObject.__nonzero__()
.getAsBoolean
in interface TemplateBooleanModel
TemplateModelException
public java.lang.String getAsString() throws TemplateModelException
Object.toString()
.getAsString
in interface TemplateScalarModel
TemplateModelException
public TemplateModel get(java.lang.String key) throws TemplateModelException
PyObject.__findattr__(java.lang.String)
, then if it
returns null calls PyObject.__finditem__(java.lang.String)
.
If JythonWrapper.setAttributesShadowItems(boolean)
was called
with false
, the order of calls is reversed (that is, item
lookup takes precedence over attribute lookup).get
in interface TemplateHashModel
key
- the name by which the TemplateModel
is identified in the template.TemplateModelException
public boolean isEmpty() throws TemplateModelException
PyObject.__len__()
== 0
.isEmpty
in interface TemplateHashModel
TemplateModelException
public java.lang.Object exec(java.util.List arguments) throws TemplateModelException
TemplateMethodModelEx
exec
in interface TemplateMethodModel
exec
in interface TemplateMethodModelEx
arguments
- a List
of TemplateModel
-s,
containing the arguments passed to the method. If the implementation absolutely wants
to operate on POJOs, it can use the static utility methods in the DeepUnwrap
class to easily obtain them. However, unwrapping is not always possible (or not perfectly), and isn't always
efficient, so it's recommended to use the original TemplateModel
value as much as possible.null
. If the returned value
does not implement TemplateModel
, it will be automatically
wrapped using the environment's
object wrapper
.TemplateModelException
TemplateMethodModel.exec(List)
public java.lang.Object getAdaptedObject(java.lang.Class hint)
AdapterTemplateModel
getAdaptedObject
in interface AdapterTemplateModel
hint
- the desired class of the returned value. An implementation
should make reasonable effort to retrieve an object of the requested
class, but if that is impossible, it must at least return the underlying
object as-is. As a minimal requirement, an implementation must always
return the exact underlying object when
hint.isInstance(underlyingObject) == true holds. When called
with java.lang.Object.class, it should return a generic Java
object (i.e. if the model is wrapping a scripting language object that is
further wrapping a Java object, the deepest underlying Java object should
be returned).public java.lang.Object getWrappedObject()
WrapperTemplateModel
getWrappedObject
in interface WrapperTemplateModel