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 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
|
/*
* 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.
*/
#include <jni.h>
#include <Python.h>
#include "structmember.h"
#include "java/lang/Object.h"
#include "java/lang/Class.h"
#include "functions.h"
using namespace java::lang;
/* FinalizerProxy */
static PyObject *t_fc_call(PyObject *self, PyObject *args, PyObject *kwds);
static void t_fp_dealloc(t_fp *self);
static PyObject *t_fp_getattro(t_fp *self, PyObject *name);
static int t_fp_setattro(t_fp *self, PyObject *name, PyObject *value);
static int t_fp_traverse(t_fp *self, visitproc visit, void *arg);
static int t_fp_clear(t_fp *self);
static PyObject *t_fp_repr(t_fp *self);
static PyObject *t_fp_iter(t_fp *self);
static Py_ssize_t t_fp_map_length(t_fp *self);
static PyObject *t_fp_map_get(t_fp *self, PyObject *key);
static int t_fp_map_set(t_fp *self, PyObject *key, PyObject *value);
static Py_ssize_t t_fp_seq_length(t_fp *self);
static PyObject *t_fp_seq_get(t_fp *self, Py_ssize_t n);
static int t_fp_seq_contains(t_fp *self, PyObject *value);
static PyObject *t_fp_seq_concat(t_fp *self, PyObject *arg);
static PyObject *t_fp_seq_repeat(t_fp *self, Py_ssize_t n);
static PyObject *t_fp_seq_getslice(t_fp *self, Py_ssize_t low, Py_ssize_t high);
static int t_fp_seq_set(t_fp *self, Py_ssize_t i, PyObject *value);
static int t_fp_seq_setslice(t_fp *self, Py_ssize_t low,
Py_ssize_t high, PyObject *arg);
static PyObject *t_fp_seq_inplace_concat(t_fp *self, PyObject *arg);
static PyObject *t_fp_seq_inplace_repeat(t_fp *self, Py_ssize_t n);
PyTypeObject PY_TYPE(FinalizerClass) = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
"jcc.FinalizerClass", /* tp_name */
PyType_Type.tp_basicsize, /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
(ternaryfunc) t_fc_call, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
"FinalizerClass", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
&PyType_Type, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
static PyMappingMethods t_fp_as_mapping = {
(lenfunc)t_fp_map_length, /* mp_length */
(binaryfunc)t_fp_map_get, /* mp_subscript */
(objobjargproc)t_fp_map_set, /* mp_ass_subscript */
};
static PySequenceMethods t_fp_as_sequence = {
(lenfunc)t_fp_seq_length, /* sq_length */
(binaryfunc)t_fp_seq_concat, /* sq_concat */
(ssizeargfunc)t_fp_seq_repeat, /* sq_repeat */
(ssizeargfunc)t_fp_seq_get, /* sq_item */
(ssizessizeargfunc)t_fp_seq_getslice, /* sq_slice */
(ssizeobjargproc)t_fp_seq_set, /* sq_ass_item */
(ssizessizeobjargproc)t_fp_seq_setslice, /* sq_ass_slice */
(objobjproc)t_fp_seq_contains, /* sq_contains */
(binaryfunc)t_fp_seq_inplace_concat, /* sq_inplace_concat */
(ssizeargfunc)t_fp_seq_inplace_repeat, /* sq_inplace_repeat */
};
PyTypeObject PY_TYPE(FinalizerProxy) = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
"jcc.FinalizerProxy", /* tp_name */
sizeof(t_fp), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)t_fp_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
(reprfunc)t_fp_repr, /* tp_repr */
0, /* tp_as_number */
&t_fp_as_sequence, /* tp_as_sequence */
&t_fp_as_mapping, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
(getattrofunc)t_fp_getattro, /* tp_getattro */
(setattrofunc)t_fp_setattro, /* tp_setattro */
0, /* tp_as_buffer */
(Py_TPFLAGS_DEFAULT |
Py_TPFLAGS_HAVE_GC), /* tp_flags */
"FinalizerProxy", /* tp_doc */
(traverseproc)t_fp_traverse, /* tp_traverse */
(inquiry)t_fp_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
(getiterfunc)t_fp_iter, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
static PyObject *t_fc_call(PyObject *self, PyObject *args, PyObject *kwds)
{
PyObject *obj = PyType_Type.tp_call(self, args, kwds);
if (obj)
{
t_fp *fp = (t_fp *) PY_TYPE(FinalizerProxy).tp_alloc(&PY_TYPE(FinalizerProxy), 0);
fp->object = obj; /* released by t_fp_clear() */
obj = (PyObject *) fp;
}
return obj;
}
static void t_fp_dealloc(t_fp *self)
{
if (self->object)
((t_JObject *) self->object)->object.weaken$();
t_fp_clear(self);
self->ob_type->tp_free((PyObject *) self);
}
static int t_fp_traverse(t_fp *self, visitproc visit, void *arg)
{
Py_VISIT(self->object);
return 0;
}
static int t_fp_clear(t_fp *self)
{
Py_CLEAR(self->object);
return 0;
}
static PyObject *t_fp_repr(t_fp *self)
{
return PyObject_Repr(self->object);
}
static PyObject *t_fp_iter(t_fp *self)
{
return PyObject_GetIter(self->object);
}
static PyObject *t_fp_getattro(t_fp *self, PyObject *name)
{
return PyObject_GetAttr(self->object, name);
}
static int t_fp_setattro(t_fp *self, PyObject *name, PyObject *value)
{
return PyObject_SetAttr(self->object, name, value);
}
static Py_ssize_t t_fp_map_length(t_fp *self)
{
return PyMapping_Size(self->object);
}
static PyObject *t_fp_map_get(t_fp *self, PyObject *key)
{
return PyObject_GetItem(self->object, key);
}
static int t_fp_map_set(t_fp *self, PyObject *key, PyObject *value)
{
if (value == NULL)
return PyObject_DelItem(self->object, key);
return PyObject_SetItem(self->object, key, value);
}
static Py_ssize_t t_fp_seq_length(t_fp *self)
{
return PySequence_Length(self->object);
}
static PyObject *t_fp_seq_get(t_fp *self, Py_ssize_t n)
{
return PySequence_GetItem(self->object, n);
}
static int t_fp_seq_contains(t_fp *self, PyObject *value)
{
return PySequence_Contains(self->object, value);
}
static PyObject *t_fp_seq_concat(t_fp *self, PyObject *arg)
{
return PySequence_Concat(self->object, arg);
}
static PyObject *t_fp_seq_repeat(t_fp *self, Py_ssize_t n)
{
return PySequence_Repeat(self->object, n);
}
static PyObject *t_fp_seq_getslice(t_fp *self, Py_ssize_t low, Py_ssize_t high)
{
return PySequence_GetSlice(self->object, low, high);
}
static int t_fp_seq_set(t_fp *self, Py_ssize_t i, PyObject *value)
{
return PySequence_SetItem(self->object, i, value);
}
static int t_fp_seq_setslice(t_fp *self, Py_ssize_t low,
Py_ssize_t high, PyObject *arg)
{
return PySequence_SetSlice(self->object, low, high, arg);
}
static PyObject *t_fp_seq_inplace_concat(t_fp *self, PyObject *arg)
{
return PySequence_InPlaceConcat(self->object, arg);
}
static PyObject *t_fp_seq_inplace_repeat(t_fp *self, Py_ssize_t n)
{
return PySequence_InPlaceRepeat(self->object, n);
}
/* const variable descriptor */
class t_descriptor {
public:
PyObject_HEAD
int flags;
union {
PyObject *value;
getclassfn initializeClass;
} access;
};
#define DESCRIPTOR_VALUE 0x0001
#define DESCRIPTOR_CLASS 0x0002
#define DESCRIPTOR_GETFN 0x0004
#define DESCRIPTOR_GENERIC 0x0008
static void t_descriptor_dealloc(t_descriptor *self);
static PyObject *t_descriptor___get__(t_descriptor *self,
PyObject *obj, PyObject *type);
static PyMethodDef t_descriptor_methods[] = {
{ NULL, NULL, 0, NULL }
};
PyTypeObject PY_TYPE(ConstVariableDescriptor) = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
"jcc.ConstVariableDescriptor", /* tp_name */
sizeof(t_descriptor), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)t_descriptor_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
"const variable descriptor", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
t_descriptor_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
(descrgetfunc)t_descriptor___get__, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
static void t_descriptor_dealloc(t_descriptor *self)
{
if (self->flags & DESCRIPTOR_VALUE)
{
Py_DECREF(self->access.value);
}
self->ob_type->tp_free((PyObject *) self);
}
PyObject *make_descriptor(PyTypeObject *value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
Py_INCREF(value);
self->access.value = (PyObject *) value;
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(getclassfn initializeClass)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.initializeClass = initializeClass;
self->flags = DESCRIPTOR_CLASS;
}
return (PyObject *) self;
}
PyObject *make_descriptor(getclassfn initializeClass, int generics)
{
t_descriptor *self = (t_descriptor *) make_descriptor(initializeClass);
if (self && generics)
self->flags |= DESCRIPTOR_GENERIC;
return (PyObject *) self;
}
PyObject *make_descriptor(PyObject *value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.value = value;
self->flags = DESCRIPTOR_VALUE;
}
else
Py_DECREF(value);
return (PyObject *) self;
}
PyObject *make_descriptor(PyObject *(*wrapfn)(const jobject &))
{
return make_descriptor(PyCObject_FromVoidPtr((void *) wrapfn, NULL));
}
PyObject *make_descriptor(boxfn fn)
{
return make_descriptor(PyCObject_FromVoidPtr((void *) fn, NULL));
}
PyObject *make_descriptor(jboolean b)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
PyObject *value = b ? Py_True : Py_False;
self->access.value = (PyObject *) value; Py_INCREF(value);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(jbyte value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.value = PyInt_FromLong(value);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(jchar value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
Py_UNICODE pchar = (Py_UNICODE) value;
self->access.value = PyUnicode_FromUnicode(&pchar, 1);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(jdouble value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.value = PyFloat_FromDouble(value);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(jfloat value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.value = PyFloat_FromDouble((double) value);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(jint value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.value = PyInt_FromLong(value);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(jlong value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.value = PyLong_FromLongLong((long long) value);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
PyObject *make_descriptor(jshort value)
{
t_descriptor *self = (t_descriptor *)
PY_TYPE(ConstVariableDescriptor).tp_alloc(&PY_TYPE(ConstVariableDescriptor), 0);
if (self)
{
self->access.value = PyInt_FromLong((short) value);
self->flags = DESCRIPTOR_VALUE;
}
return (PyObject *) self;
}
static PyObject *t_descriptor___get__(t_descriptor *self,
PyObject *obj, PyObject *type)
{
if (self->flags & DESCRIPTOR_VALUE)
{
Py_INCREF(self->access.value);
return self->access.value;
}
if (self->flags & DESCRIPTOR_CLASS)
{
#ifdef _java_generics
if (self->flags & DESCRIPTOR_GENERIC)
return t_Class::wrap_Object(Class(env->getClass(self->access.initializeClass)), (PyTypeObject *) type);
else
#endif
return t_Class::wrap_Object(Class(env->getClass(self->access.initializeClass)));
}
Py_RETURN_NONE;
}
|