-
Notifications
You must be signed in to change notification settings - Fork 181
/
jp_pythontypes.cpp
492 lines (439 loc) · 12 KB
/
jp_pythontypes.cpp
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/*****************************************************************************
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"
/****************************************************************************
* Base object
***************************************************************************/
static void assertValid(PyObject *obj)
{
if (Py_REFCNT(obj) >= 1)
return;
// GCOVR_EXCL_START
// At this point our car has traveled beyond the end of the
// cliff and it will hit the ground some twenty
// python calls later with a nearly untracable fault, thus
// rather than waiting for the inevitable, we chose to take
// a noble death here.
JP_TRACE_PY("pyref FAULT", obj);
JP_RAISE(PyExc_SystemError, "Deleted reference");
// GCOVR_EXCL_STOP
}
/**
* This policy is used if we need to hold a reference to an existing
* object for some duration. The object may be null.
*
* Increment reference count if not null, and decrement when done.
*/
JPPyObject JPPyObject::use(PyObject* obj)
{
JP_TRACE_PY("pyref use(inc)", obj);
if (obj != nullptr)
{
assertValid(obj);
Py_INCREF(obj);
}
return JPPyObject(obj);
}
/**
* This policy is used when we are given a new reference that we must
* destroy. This will steal a reference.
*
* claim reference, and decremented when done.
*/
JPPyObject JPPyObject::accept(PyObject* obj)
{
JP_TRACE_PY("pyref new(accept)", obj);
if (obj == nullptr)
PyErr_Clear();
return JPPyObject(obj);
}
/**
* This policy is used when we are given a new reference that we must
* destroy. This will steal a reference.
*
* Assert not null, claim reference, and decremented when done.
* Will throw an exception if the object is null.
*/
JPPyObject JPPyObject::claim(PyObject* obj)
{
JP_TRACE_PY("pyref new(claim)", obj);
ASSERT_NOT_NULL(obj);
assertValid(obj);
return JPPyObject(obj);
}
/**
* This policy is used when we are capturing an object returned from a python
* call that we are responsible for. This will steal a reference.
*
* Check for errors, assert not null, then claim.
* Will throw an exception an error occurs.
*/
JPPyObject JPPyObject::call(PyObject* obj)
{
JP_TRACE_PY("pyref new(call)", obj);
JP_PY_CHECK();
ASSERT_NOT_NULL(obj);
assertValid(obj);
return JPPyObject(obj);
}
JPPyObject::JPPyObject(PyObject* obj)
: m_PyObject(obj)
{
}
JPPyObject::JPPyObject(const JPPyObject &self)
: m_PyObject(self.m_PyObject)
{
if (m_PyObject != nullptr)
{
incref();
JP_TRACE_PY("pyref copy ctor(inc)", m_PyObject);
}
}
JPPyObject::~JPPyObject()
{
if (m_PyObject != nullptr)
{
JP_TRACE_PY("pyref dtor(dec)", m_PyObject);
decref();
} else
{
JP_TRACE_PY("pyref dtor(null)", m_PyObject);
}
}
JPPyObject& JPPyObject::operator=(const JPPyObject& self)
{
if (m_PyObject == self.m_PyObject)
return *this;
if (m_PyObject != nullptr)
{
JP_TRACE_PY("pyref op=(dec)", m_PyObject);
decref();
}
m_PyObject = self.m_PyObject;
if (m_PyObject != nullptr)
{
incref();
JP_TRACE_PY("pyref op=(inc)", m_PyObject);
}
return *this;
}
PyObject* JPPyObject::keep()
{
// This can only happen if we have a fatal error in our reference
// management system. It should never be triggered by the user.
if (m_PyObject == nullptr)
{
JP_RAISE(PyExc_SystemError, "Attempt to keep null reference"); // GCOVR_EXCL_LINE
}
JP_TRACE_PY("pyref keep ", m_PyObject);
PyObject *out = m_PyObject;
m_PyObject = nullptr;
return out;
}
void JPPyObject::incref()
{
assertValid(m_PyObject);
Py_INCREF(m_PyObject);
}
void JPPyObject::decref()
{
assertValid(m_PyObject);
Py_DECREF(m_PyObject);
m_PyObject = nullptr;
}
JPPyObject JPPyObject::getNone()
{
return JPPyObject::use(Py_None);
}
/****************************************************************************
* String
***************************************************************************/
JPPyObject JPPyString::fromCharUTF16(jchar c)
{
#if defined(PYPY_VERSION)
wchar_t buf[1];
buf[0] = c;
return JPPyObject::call(PyUnicode_FromWideChar(buf, 1));
#else
if (c < 128)
{
char c1 = (char) c;
return JPPyObject::call(PyUnicode_FromStringAndSize(&c1, 1));
}
JPPyObject buf = JPPyObject::call(PyUnicode_New(1, 65535));
Py_UCS4 c2 = c;
PyUnicode_WriteChar(buf.get(), 0, c2);
JP_PY_CHECK();
PyUnicode_READY(buf.get());
return buf;
#endif
}
bool JPPyString::checkCharUTF16(PyObject* pyobj)
{
JP_TRACE_IN("JPPyString::checkCharUTF16");
if (PyIndex_Check(pyobj))
return true;
if (PyUnicode_Check(pyobj) && PyUnicode_GetLength(pyobj) == 1)
return true;
if (PyBytes_Check(pyobj) && PyBytes_Size(pyobj) == 1)
return true;
return false;
JP_TRACE_OUT; // GCOVR_EXCL_LINE
}
jchar JPPyString::asCharUTF16(PyObject* pyobj)
{
if (PyIndex_Check(pyobj))
{
jlong val = PyLong_AsLongLong(pyobj);
if (val < 0 || val > 65535)
JP_RAISE(PyExc_OverflowError, "Unable to convert int into char range");
return (jchar) val;
}
#if defined(PYPY_VERSION)
if (PyBytes_Check(pyobj))
{
int sz = PyBytes_Size(pyobj);
if (sz != 1)
JP_RAISE(PyExc_ValueError, "Char must be length 1");
jchar c = PyBytes_AsString(pyobj)[0];
if (PyErr_Occurred())
JP_RAISE_PYTHON();
return c;
}
if (PyUnicode_Check(pyobj))
{
if (PyUnicode_GetLength(pyobj) > 1)
JP_RAISE(PyExc_ValueError, "Char must be length 1");
PyUnicode_READY(pyobj);
Py_UCS4 value = PyUnicode_READ_CHAR(pyobj, 0);
if (value > 0xffff)
{
JP_RAISE(PyExc_ValueError, "Unable to pack 4 byte unicode into Java char");
}
return value;
}
#else
if (PyBytes_Check(pyobj))
{
Py_ssize_t sz = PyBytes_Size(pyobj);
if (sz != 1)
JP_RAISE(PyExc_ValueError, "Char must be length 1");
jchar c = PyBytes_AsString(pyobj)[0];
JP_PY_CHECK();
return c;
}
if (PyUnicode_Check(pyobj))
{
if (PyUnicode_GetLength(pyobj) > 1)
JP_RAISE(PyExc_ValueError, "Char must be length 1");
PyUnicode_READY(pyobj);
Py_UCS4 value = PyUnicode_ReadChar(pyobj, 0);
if (value > 0xffff)
{
JP_RAISE(PyExc_ValueError, "Unable to pack 4 byte unicode into Java char");
}
return value;
}
#endif
PyErr_Format(PyExc_TypeError, "Unable to convert '%s' to Java char", Py_TYPE(pyobj)->tp_name);
JP_RAISE_PYTHON();
}
/** Check if the object is a bytes or unicode.
*
* @returns true if the object is bytes or unicode.
*/
bool JPPyString::check(PyObject* obj)
{
return PyUnicode_Check(obj) || PyBytes_Check(obj);
}
/** Create a new string from utf8 encoded string.
* Note: java utf8 is not utf8.
*/
JPPyObject JPPyString::fromStringUTF8(const string& str)
{
auto len = static_cast<Py_ssize_t>(str.size());
// Python 3 is always unicode
JPPyObject bytes = JPPyObject::call(PyBytes_FromStringAndSize(str.c_str(), len));
return JPPyObject::call(PyUnicode_FromEncodedObject(bytes.get(), "UTF-8", "strict"));
}
string JPPyString::asStringUTF8(PyObject* pyobj)
{
JP_TRACE_IN("JPPyUnicode::asStringUTF8");
ASSERT_NOT_NULL(pyobj);
if (PyUnicode_Check(pyobj))
{
Py_ssize_t size = 0;
char *buffer = nullptr;
JPPyObject val = JPPyObject::call(PyUnicode_AsEncodedString(pyobj, "UTF-8", "strict"));
PyBytes_AsStringAndSize(val.get(), &buffer, &size);
JP_PY_CHECK();
if (buffer != nullptr)
return {buffer, static_cast<size_t>(size)};
else
return {};
} else if (PyBytes_Check(pyobj))
{
Py_ssize_t size = 0;
char *buffer = nullptr;
PyBytes_AsStringAndSize(pyobj, &buffer, &size);
JP_PY_CHECK();
return {buffer, static_cast<size_t>(size)};
}
// GCOVR_EXCL_START
JP_RAISE(PyExc_TypeError, "Failed to convert to string.");
return {};
JP_TRACE_OUT;
// GCOVR_EXCL_STOP
}
/****************************************************************************
* Container types
***************************************************************************/
jlong JPPySequence::size()
{
return PySequence_Size(m_Sequence.get());
}
JPPyObject JPPySequence::operator[](jlong i)
{
return JPPyObject::call(PySequence_GetItem(m_Sequence.get(), (Py_ssize_t) i)); // new reference
}
JPPyObjectVector::JPPyObjectVector(PyObject* sequence)
{
m_Sequence = JPPyObject::use(sequence);
auto n = PySequence_Size(m_Sequence.get());
m_Contents.resize(n);
for (decltype(n) i = 0; i < n; ++i)
{
m_Contents[i] = JPPyObject::call(PySequence_GetItem(m_Sequence.get(), i));
}
}
JPPyObjectVector::JPPyObjectVector(PyObject* inst, PyObject* sequence)
{
m_Instance = JPPyObject::use(inst);
m_Sequence = JPPyObject::use(sequence);
Py_ssize_t n = 0;
if (sequence != nullptr)
n = PySequence_Size(m_Sequence.get());
m_Contents.resize(n + 1);
for (decltype(n) i = 0; i < n; ++i)
{
m_Contents[i + 1] = JPPyObject::call(PySequence_GetItem(m_Sequence.get(), i));
}
m_Contents[0] = m_Instance;
}
bool JPPyErr::fetch(JPPyObject& exceptionClass, JPPyObject& exceptionValue, JPPyObject& exceptionTrace)
{
PyObject *v1, *v2, *v3;
PyErr_Fetch(&v1, &v2, &v3);
if (v1 == nullptr && v2 == nullptr && v3 == nullptr)
return false;
exceptionClass = JPPyObject::accept(v1);
exceptionValue = JPPyObject::accept(v2);
exceptionTrace = JPPyObject::accept(v3);
return true;
}
void JPPyErr::restore(JPPyObject& exceptionClass, JPPyObject& exceptionValue, JPPyObject& exceptionTrace)
{
PyErr_Restore(exceptionClass.keepNull(), exceptionValue.keepNull(), exceptionTrace.keepNull());
}
JPPyCallAcquire::JPPyCallAcquire()
{
m_State = (long) PyGILState_Ensure();
}
JPPyCallAcquire::~JPPyCallAcquire()
{
PyGILState_Release((PyGILState_STATE) m_State);
}
// This is used when leaving python from to perform some
JPPyCallRelease::JPPyCallRelease()
{
// Release the lock and set the thread state to NULL
m_State1 = PyEval_SaveThread();
}
JPPyCallRelease::~JPPyCallRelease()
{
// Re-acquire the lock
PyEval_RestoreThread(m_State1);
}
JPPyBuffer::JPPyBuffer(PyObject* obj, int flags)
{
int ret = PyObject_GetBuffer(obj, &m_View, flags);
m_Valid = (ret != -1);
}
JPPyBuffer::~JPPyBuffer()
{
if (m_Valid)
PyBuffer_Release(&m_View);
}
char *JPPyBuffer::getBufferPtr(std::vector<Py_ssize_t>& indices) const
{
char *pointer = (char*) m_View.buf;
// No shape is just a 1D array
if (m_View.shape == nullptr)
{
return pointer;
}
// No strides is C contiguous ND array
if (m_View.strides == nullptr)
{
Py_ssize_t index = 0;
for (int i = 0; i < m_View.ndim; i++)
{
index = index * m_View.shape[i] + indices[i];
}
index *= m_View.itemsize;
return pointer + index;
}
// Otherwise we can be a full array
for (int i = 0; i < m_View.ndim; i++)
{
pointer += m_View.strides[i] * indices[i];
if (m_View.suboffsets != nullptr && m_View.suboffsets[i] >= 0 )
{
pointer = *((char**) pointer) + m_View.suboffsets[i];
}
}
return pointer;
}
JPPyErrFrame::JPPyErrFrame()
{
good = JPPyErr::fetch(m_ExceptionClass, m_ExceptionValue, m_ExceptionTrace);
}
JPPyErrFrame::~JPPyErrFrame()
{
try
{
if (good)
JPPyErr::restore(m_ExceptionClass, m_ExceptionValue, m_ExceptionTrace);
} catch (...) // GCOVR_EXCL_LINE
{
// No throw is allowed in dtor.
}
}
void JPPyErrFrame::clear()
{
good = false;
}
void JPPyErrFrame::normalize()
{
// Python uses lazy evaluation on exceptions thus we can't modify it until
// we have forced it to realize the exception.
if (!PyExceptionInstance_Check(m_ExceptionValue.get()))
{
JPPyObject args = JPPyTuple_Pack(m_ExceptionValue.get());
m_ExceptionValue = JPPyObject::call(PyObject_Call(m_ExceptionClass.get(), args.get(), nullptr));
PyException_SetTraceback(m_ExceptionValue.get(), m_ExceptionTrace.get());
JPPyErr::restore(m_ExceptionClass, m_ExceptionValue, m_ExceptionTrace);
JPPyErr::fetch(m_ExceptionClass, m_ExceptionValue, m_ExceptionTrace);
}
}