use of org.python.core.PyObject in project oxTrust by GluuFederation.
the class RegistrationInterceptionService method createRegistrationScriptFromStringWithPythonException.
private RegistrationScript createRegistrationScriptFromStringWithPythonException(RegistrationInterceptorScript script) {
String pythonScriptText = script.getCustomScript();
if (pythonScriptText == null) {
return null;
}
RegistrationScript pythonScript = null;
InputStream bis = null;
try {
bis = new ByteArrayInputStream(pythonScriptText.getBytes(Util.UTF8_STRING_ENCODING));
pythonScript = pythonService.loadPythonScript(bis, "RegistrationScriptClass", RegistrationScript.class, new PyObject[] { new PyLong(System.currentTimeMillis()) });
} catch (UnsupportedEncodingException e) {
log.error(e.getMessage(), e);
} catch (PythonException e) {
log.error(e.getMessage(), e);
} finally {
IOUtils.closeQuietly(bis);
}
return pythonScript;
}
use of org.python.core.PyObject in project yamcs-studio by yamcs.
the class ExecutePythonScriptAction method dispose.
@Override
public void dispose() {
if (interpreter != null) {
PyObject o = interpreter.getLocals();
if (o != null && o instanceof PyStringMap) {
((PyStringMap) o).clear();
}
o = state.getDict();
if (o != null && o instanceof PyStringMap) {
((PyStringMap) o).clear();
}
state.close();
state.cleanup();
interpreter.close();
interpreter.cleanup();
interpreter = null;
state = null;
}
super.dispose();
}
use of org.python.core.PyObject in project components by Talend.
the class PythonRowDoFn method flatMap.
private void flatMap(IndexedRecord input, ProcessContext context) throws IOException {
// Prepare Python environment
PyObject outputList = pyFn.__call__(new PyString(input.toString()));
if (outputList instanceof PyList) {
PyList list = (PyList) outputList;
for (Object output : list) {
if (jsonGenericRecordConverter == null) {
JsonSchemaInferrer jsonSchemaInferrer = new JsonSchemaInferrer(new ObjectMapper());
Schema jsonSchema = jsonSchemaInferrer.inferSchema(output.toString());
jsonGenericRecordConverter = new JsonGenericRecordConverter(jsonSchema);
}
GenericRecord outputRecord = jsonGenericRecordConverter.convertToAvro(output.toString());
context.output(outputRecord);
}
}
}
use of org.python.core.PyObject in project components by Talend.
the class PythonRowDoFn method map.
private void map(IndexedRecord input, ProcessContext context) throws IOException {
PyObject output = pyFn.__call__(new PyString(input.toString()));
if (jsonGenericRecordConverter == null) {
JsonSchemaInferrer jsonSchemaInferrer = new JsonSchemaInferrer(new ObjectMapper());
Schema jsonSchema = jsonSchemaInferrer.inferSchema(output.toString());
jsonGenericRecordConverter = new JsonGenericRecordConverter(jsonSchema);
}
GenericRecord outputRecord = jsonGenericRecordConverter.convertToAvro(output.toString());
context.output(outputRecord);
}
use of org.python.core.PyObject in project freemarker by apache.
the class JythonModelCache method create.
@Override
protected TemplateModel create(Object obj) {
boolean asHash = false;
boolean asSequence = false;
JythonVersionAdapter versionAdapter = JythonVersionAdapterHolder.INSTANCE;
if (versionAdapter.isPyInstance(obj)) {
Object jobj = versionAdapter.pyInstanceToJava(obj);
// FreeMarker-aware, Jython-wrapped Java objects are left intact
if (jobj instanceof TemplateModel) {
return (TemplateModel) jobj;
}
if (jobj instanceof Map) {
asHash = true;
}
if (jobj instanceof Date) {
return new DateModel((Date) jobj, BeansWrapper.getDefaultInstance());
} else if (jobj instanceof Collection) {
asSequence = true;
// doesn't support sets.
if (!(jobj instanceof List)) {
obj = new ArrayList((Collection) jobj);
}
}
}
// If it's not a PyObject, first make a PyObject out of it.
if (!(obj instanceof PyObject)) {
obj = Py.java2py(obj);
}
if (asHash || obj instanceof PyDictionary || obj instanceof PyStringMap) {
return JythonHashModel.FACTORY.create(obj, wrapper);
}
if (asSequence || obj instanceof PySequence) {
return JythonSequenceModel.FACTORY.create(obj, wrapper);
}
if (obj instanceof PyInteger || obj instanceof PyLong || obj instanceof PyFloat) {
return JythonNumberModel.FACTORY.create(obj, wrapper);
}
if (obj instanceof PyNone) {
return null;
}
return JythonModel.FACTORY.create(obj, wrapper);
}
Aggregations