1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
/*****************************************************************************
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
See NOTICE file for details.
*****************************************************************************/
#include "jpype.h"
#include "pyjp.h"
#include "jp_stringtype.h"
#ifdef __cplusplus
extern "C"
{
#endif
/**
* Allocate a new Python object with a slot for Java.
*
* We need extra space to store our values, but because there
* is no way to do so without disturbing the object layout.
* Fortunately, Python already handles this for dict and weakref.
* Python aligns the ends of the structure and increases the
* base type size to add additional slots to a standard object.
*
* We will use the same trick to add an additional slot for Java
* after the end of the object outside of where Python is looking.
* As the memory is aligned this is safe to do. We will use
* the alloc and finalize slot to recognize which objects have this
* extra slot appended.
*/
PyObject* PyJPValue_alloc(PyTypeObject* type, Py_ssize_t nitems)
{
JP_PY_TRY("PyJPValue_alloc");
// Modification from Python to add size elements
const size_t size = _PyObject_VAR_SIZE(type, nitems + 1) + sizeof (JPValue);
PyObject *obj = nullptr;
if (PyType_IS_GC(type))
{
// Horrible kludge because python lacks an API for allocating a GC type with extra memory
// The private method _PyObject_GC_Alloc is no longer visible, so we are forced to allocate
// a different type with the extra memory and then hot swap the type to the real one.
PyTypeObject type2;
type2.tp_basicsize = size;
type2.tp_itemsize = 0;
type2.tp_name = nullptr;
type2.tp_flags = type->tp_flags;
type2.tp_traverse = type->tp_traverse;
// Allocate the fake type
obj = PyObject_GC_New(PyObject, &type2);
// Note the object will be inited twice which should not leak. (fingers crossed)
}
else
{
obj = (PyObject*) PyObject_MALLOC(size);
}
if (obj == nullptr)
return PyErr_NoMemory(); // GCOVR_EXCL_LINE
memset(obj, 0, size);
Py_ssize_t refcnt = ((PyObject*) type)->ob_refcnt;
obj->ob_type = type;
if (type->tp_itemsize == 0)
PyObject_Init(obj, type);
else
PyObject_InitVar((PyVarObject *) obj, type, nitems);
// This line is required to deal with Python bug (GH-11661)
// Some versions of Python fail to increment the reference counter of
// heap types properly.
if (refcnt == ((PyObject*) type)->ob_refcnt)
Py_INCREF(type); // GCOVR_EXCL_LINE
if (PyType_IS_GC(type))
{
PyObject_GC_Track(obj);
}
JP_TRACE("alloc", type->tp_name, obj);
return obj;
JP_PY_CATCH(nullptr);
}
bool PyJPValue_hasJavaSlot(PyTypeObject* type)
{
if (type == nullptr
|| type->tp_alloc != (allocfunc) PyJPValue_alloc
|| type->tp_finalize != (destructor) PyJPValue_finalize)
return false; // GCOVR_EXCL_LINE
return true;
}
Py_ssize_t PyJPValue_getJavaSlotOffset(PyObject* self)
{
PyTypeObject *type = Py_TYPE(self);
if (type == nullptr
|| type->tp_alloc != (allocfunc) PyJPValue_alloc
|| type->tp_finalize != (destructor) PyJPValue_finalize)
return 0;
Py_ssize_t offset;
Py_ssize_t sz = 0;
#if PY_VERSION_HEX>=0x030c0000
// starting in 3.12 there is no longer ob_size in PyLong
if (PyType_HasFeature(self->ob_type, Py_TPFLAGS_LONG_SUBCLASS))
sz = (((PyLongObject*)self)->long_value.lv_tag) >> 3; // Private NON_SIZE_BITS
else
#endif
if (type->tp_itemsize != 0)
sz = Py_SIZE(self);
// PyLong abuses ob_size with negative values prior to 3.12
if (sz < 0)
sz = -sz;
if (type->tp_itemsize == 0)
offset = _PyObject_VAR_SIZE(type, 1);
else
offset = _PyObject_VAR_SIZE(type, sz + 1);
return offset;
}
/**
* Get the Java value if attached.
*
* The Java class is guaranteed not to be nullptr on success.
*
* @param obj
* @return the Java value or 0 if not found.
*/
JPValue* PyJPValue_getJavaSlot(PyObject* self)
{
Py_ssize_t offset = PyJPValue_getJavaSlotOffset(self);
if (offset == 0)
return nullptr;
auto value = (JPValue*) (((char*) self) + offset);
if (value->getClass() == nullptr)
return nullptr;
return value;
}
void PyJPValue_free(void* obj)
{
JP_PY_TRY("PyJPValue_free", obj);
// Normally finalize is not run on simple classes.
PyTypeObject *type = Py_TYPE(obj);
if (type->tp_finalize != nullptr)
type->tp_finalize((PyObject*) obj);
if (type->tp_flags & Py_TPFLAGS_HAVE_GC)
PyObject_GC_Del(obj);
else
PyObject_Free(obj); // GCOVR_EXCL_LINE
JP_PY_CATCH_NONE();
}
void PyJPValue_finalize(void* obj)
{
JP_PY_TRY("PyJPValue_finalize", obj);
JP_TRACE("type", Py_TYPE(obj)->tp_name);
JPValue* value = PyJPValue_getJavaSlot((PyObject*) obj);
if (value == nullptr)
return;
JPContext *context = JPContext_global;
if (context == nullptr || !context->isRunning())
return;
JPJavaFrame frame = JPJavaFrame::outer(context);
JPClass* cls = value->getClass();
// This one can't check for initialized because we may need to delete a stale
// resource after shutdown.
if (cls != nullptr && context->isRunning() && !cls->isPrimitive())
{
JP_TRACE("Value", cls->getCanonicalName(), &(value->getValue()));
JP_TRACE("Dereference object");
context->ReleaseGlobalRef(value->getValue().l);
*value = JPValue();
}
JP_PY_CATCH_NONE();
}
/** This is the way to convert an object into a python string. */
PyObject* PyJPValue_str(PyObject* self)
{
JP_PY_TRY("PyJPValue_str", self);
JPContext *context = PyJPModule_getContext();
JPJavaFrame frame = JPJavaFrame::outer(context);
JPValue* value = PyJPValue_getJavaSlot(self);
if (value == nullptr)
{
PyErr_SetString(PyExc_TypeError, "Not a Java value");
return nullptr;
}
JPClass* cls = value->getClass();
if (cls->isPrimitive())
{
PyErr_SetString(PyExc_TypeError, "toString requires a Java object");
return nullptr;
}
if (value->getValue().l == nullptr)
return JPPyString::fromStringUTF8("null").keep();
if (cls == context->_java_lang_String)
{
PyObject *cache;
JPPyObject dict = JPPyObject::accept(PyObject_GenericGetDict(self, nullptr));
if (!dict.isNull())
{
cache = PyDict_GetItemString(dict.get(), "_jstr");
if (cache)
{
Py_INCREF(cache);
return cache;
}
auto jstr = (jstring) value->getValue().l;
string str;
str = frame.toStringUTF8(jstr);
cache = JPPyString::fromStringUTF8(str).keep();
PyDict_SetItemString(dict.get(), "_jstr", cache);
return cache;
}
}
// In general toString is not immutable, so we won't cache it.
return JPPyString::fromStringUTF8(frame.toString(value->getValue().l)).keep();
JP_PY_CATCH(nullptr);
}
PyObject *PyJPValue_getattro(PyObject *obj, PyObject *name)
{
JP_PY_TRY("PyJPObject_getattro");
if (!PyUnicode_Check(name))
{
PyErr_Format(PyExc_TypeError,
"attribute name must be string, not '%.200s'",
Py_TYPE(name)->tp_name);
return nullptr;
}
// Private members are accessed directly
PyObject* pyattr = PyBaseObject_Type.tp_getattro(obj, name);
if (pyattr == nullptr)
return nullptr;
JPPyObject attr = JPPyObject::accept(pyattr);
// Private members go regardless
if (PyUnicode_GetLength(name) && PyUnicode_ReadChar(name, 0) == '_')
return attr.keep();
// Methods
if (Py_TYPE(attr.get()) == (PyTypeObject*) PyJPMethod_Type)
return attr.keep();
// Don't allow properties to be rewritten
if (!PyObject_IsInstance(attr.get(), (PyObject*) & PyProperty_Type))
return attr.keep();
PyErr_Format(PyExc_AttributeError, "Field '%U' is static", name);
return nullptr;
JP_PY_CATCH(nullptr);
}
int PyJPValue_setattro(PyObject *self, PyObject *name, PyObject *value)
{
JP_PY_TRY("PyJPObject_setattro");
// Private members are accessed directly
if (PyUnicode_GetLength(name) && PyUnicode_ReadChar(name, 0) == '_')
return PyObject_GenericSetAttr(self, name, value);
JPPyObject f = JPPyObject::accept(PyJP_GetAttrDescriptor(Py_TYPE(self), name));
if (f.isNull())
{
PyErr_Format(PyExc_AttributeError, "Field '%U' is not found", name);
return -1;
}
descrsetfunc desc = Py_TYPE(f.get())->tp_descr_set;
if (desc != nullptr)
return desc(f.get(), self, value);
// Not a descriptor
PyErr_Format(PyExc_AttributeError,
"Field '%U' is not settable on Java '%s' object", name, Py_TYPE(self)->tp_name);
return -1;
JP_PY_CATCH(-1);
}
#ifdef __cplusplus
}
#endif
// These are from the internal methods when we already have the jvalue
void PyJPValue_assignJavaSlot(JPJavaFrame &frame, PyObject* self, const JPValue& value)
{
Py_ssize_t offset = PyJPValue_getJavaSlotOffset(self);
// GCOVR_EXCL_START
if (offset == 0)
{
std::stringstream ss;
ss << "Missing Java slot on `" << Py_TYPE(self)->tp_name << "`";
JP_RAISE(PyExc_SystemError, ss.str());
}
// GCOVR_EXCL_STOP
auto* slot = (JPValue*) (((char*) self) + offset);
// GCOVR_EXCL_START
// This is a sanity check that should never trigger in normal operations.
if (slot->getClass() != nullptr)
{
JP_RAISE(PyExc_SystemError, "Slot assigned twice");
}
// GCOVR_EXCL_STOP
JPClass* cls = value.getClass();
if (cls != nullptr && !cls->isPrimitive())
{
jvalue q;
q.l = frame.NewGlobalRef(value.getValue().l);
*slot = JPValue(cls, q);
} else
*slot = value;
}
bool PyJPValue_isSetJavaSlot(PyObject* self)
{
Py_ssize_t offset = PyJPValue_getJavaSlotOffset(self);
if (offset == 0)
return false; // GCOVR_EXCL_LINE
auto* slot = (JPValue*) (((char*) self) + offset);
return slot->getClass() != nullptr;
}
|