src.org.python.modules.jffi.ScalarCData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython-standalone Show documentation
Show all versions of jython-standalone 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.
package org.python.modules.jffi;
import org.python.core.Py;
import org.python.core.PyFloat;
import org.python.core.PyInteger;
import org.python.core.PyLong;
import org.python.core.PyNewWrapper;
import org.python.core.PyObject;
import org.python.core.PyObject.ConversionException;
import org.python.core.PyType;
import org.python.expose.ExposedClassMethod;
import org.python.expose.ExposedGet;
import org.python.expose.ExposedMethod;
import org.python.expose.ExposedNew;
import org.python.expose.ExposedSet;
import org.python.expose.ExposedType;
@ExposedType(name = "jffi.ScalarCData", base = CData.class)
public class ScalarCData extends CData {
public static final PyType TYPE = PyType.fromClass(ScalarCData.class);
static {
// TYPE.fastGetDict().__setitem__("in_dll", new InDll());
}
private PyObject value;
@ExposedNew
public static PyObject ScalarCData_new(PyNewWrapper new_, boolean init, PyType subtype,
PyObject[] args, String[] keywords) {
ScalarCData cdata = new ScalarCData(subtype, getScalarType(subtype));
// If an initial value was supplied, use it, else default to zero
cdata.setValue(args.length > 0 ? args[0] : Py.newInteger(0));
return cdata;
}
@ExposedClassMethod(names= { "from_address" })
public static final PyObject from_address(PyType subtype, PyObject address) {
return new ScalarCData(subtype, getScalarType(subtype), Util.getMemoryForAddress(address));
}
static final CType.Builtin getScalarType(PyType subtype) {
PyObject jffi_type = subtype.__getattr__("_jffi_type");
if (!(jffi_type instanceof CType.Builtin)) {
throw Py.TypeError("invalid _jffi_type for " + subtype.getName());
}
return (CType.Builtin) jffi_type;
}
ScalarCData(PyType pytype, CType.Builtin ctype) {
super(pytype, ctype);
}
ScalarCData(PyType pytype, CType.Builtin ctype, DirectMemory m) {
super(pytype, ctype, m);
}
protected final void initReferenceMemory(Memory m) {
getMemoryOp().put(m, 0, value);
}
@ExposedGet(name = "value")
public PyObject getValue() {
// If native memory has been allocated, read the value from there
if (hasReferenceMemory()) {
return getMemoryOp().get(getReferenceMemory(), 0);
}
return value != null ? value : Py.None;
}
@ExposedSet(name = "value")
public void setValue(PyObject value) {
this.value = value;
// If native memory has been allocated, sync the value to memory
if (hasReferenceMemory()) {
getMemoryOp().put(getReferenceMemory(), 0, value);
}
}
@Override
public int asInt() {
return getValue().asInt();
}
@Override
public long asLong(int index) throws ConversionException {
return getValue().asLong(index);
}
public long asLong() {
return getValue().asLong();
}
@ExposedMethod
@Override
public PyObject __int__() {
return getValue().__int__();
}
@ExposedMethod
@Override
public PyObject __long__() {
return getValue().__long__();
}
@ExposedMethod
@Override
public PyFloat __float__() {
return getValue().__float__();
}
@Override
public final String toString() {
return getType().getName() + "(" + getValue().toString() + ")";
}
}