2015-04-03 17:53:51 -03:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2023-11-18 21:43:51 -04:00
|
|
|
#include "pycore_critical_section.h"// Py_BEGIN_CRITICAL_SECTION()
|
2023-10-17 09:30:31 -03:00
|
|
|
#include "pycore_modsupport.h" // _PyArg_CheckPositional()
|
|
|
|
|
2015-04-03 17:53:51 -03:00
|
|
|
PyDoc_STRVAR(_weakref_getweakrefcount__doc__,
|
|
|
|
"getweakrefcount($module, object, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return the number of weak references to \'object\'.");
|
|
|
|
|
|
|
|
#define _WEAKREF_GETWEAKREFCOUNT_METHODDEF \
|
|
|
|
{"getweakrefcount", (PyCFunction)_weakref_getweakrefcount, METH_O, _weakref_getweakrefcount__doc__},
|
|
|
|
|
|
|
|
static Py_ssize_t
|
2016-07-07 11:35:15 -03:00
|
|
|
_weakref_getweakrefcount_impl(PyObject *module, PyObject *object);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
_weakref_getweakrefcount(PyObject *module, PyObject *object)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
Py_ssize_t _return_value;
|
|
|
|
|
2023-11-18 21:43:51 -04:00
|
|
|
Py_BEGIN_CRITICAL_SECTION(object);
|
2015-04-03 17:53:51 -03:00
|
|
|
_return_value = _weakref_getweakrefcount_impl(module, object);
|
2023-11-18 21:43:51 -04:00
|
|
|
Py_END_CRITICAL_SECTION();
|
2016-06-09 10:16:06 -03:00
|
|
|
if ((_return_value == -1) && PyErr_Occurred()) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = PyLong_FromSsize_t(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2016-12-27 09:19:20 -04:00
|
|
|
|
|
|
|
PyDoc_STRVAR(_weakref__remove_dead_weakref__doc__,
|
|
|
|
"_remove_dead_weakref($module, dct, key, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Atomically remove key from dict if it points to a dead weakref.");
|
|
|
|
|
|
|
|
#define _WEAKREF__REMOVE_DEAD_WEAKREF_METHODDEF \
|
2022-05-03 15:25:41 -03:00
|
|
|
{"_remove_dead_weakref", _PyCFunction_CAST(_weakref__remove_dead_weakref), METH_FASTCALL, _weakref__remove_dead_weakref__doc__},
|
2016-12-27 09:19:20 -04:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_weakref__remove_dead_weakref_impl(PyObject *module, PyObject *dct,
|
|
|
|
PyObject *key);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 07:11:11 -04:00
|
|
|
_weakref__remove_dead_weakref(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
2016-12-27 09:19:20 -04:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *dct;
|
|
|
|
PyObject *key;
|
|
|
|
|
2019-01-11 10:01:14 -04:00
|
|
|
if (!_PyArg_CheckPositional("_remove_dead_weakref", nargs, 2, 2)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2019-01-11 10:01:14 -04:00
|
|
|
if (!PyDict_Check(args[0])) {
|
2019-08-29 11:49:08 -03:00
|
|
|
_PyArg_BadArgument("_remove_dead_weakref", "argument 1", "dict", args[0]);
|
2019-01-11 10:01:14 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
dct = args[0];
|
|
|
|
key = args[1];
|
2016-12-27 09:19:20 -04:00
|
|
|
return_value = _weakref__remove_dead_weakref_impl(module, dct, key);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2022-03-07 05:57:45 -04:00
|
|
|
|
|
|
|
PyDoc_STRVAR(_weakref_getweakrefs__doc__,
|
|
|
|
"getweakrefs($module, object, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return a list of all weak reference objects pointing to \'object\'.");
|
|
|
|
|
|
|
|
#define _WEAKREF_GETWEAKREFS_METHODDEF \
|
|
|
|
{"getweakrefs", (PyCFunction)_weakref_getweakrefs, METH_O, _weakref_getweakrefs__doc__},
|
|
|
|
|
2023-11-18 21:43:51 -04:00
|
|
|
static PyObject *
|
|
|
|
_weakref_getweakrefs_impl(PyObject *module, PyObject *object);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_weakref_getweakrefs(PyObject *module, PyObject *object)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
|
|
|
|
Py_BEGIN_CRITICAL_SECTION(object);
|
|
|
|
return_value = _weakref_getweakrefs_impl(module, object);
|
|
|
|
Py_END_CRITICAL_SECTION();
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
2022-03-07 05:57:45 -04:00
|
|
|
PyDoc_STRVAR(_weakref_proxy__doc__,
|
|
|
|
"proxy($module, object, callback=None, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Create a proxy object that weakly references \'object\'.\n"
|
|
|
|
"\n"
|
|
|
|
"\'callback\', if given, is called with a reference to the\n"
|
|
|
|
"proxy when \'object\' is about to be finalized.");
|
|
|
|
|
|
|
|
#define _WEAKREF_PROXY_METHODDEF \
|
2022-05-03 15:25:41 -03:00
|
|
|
{"proxy", _PyCFunction_CAST(_weakref_proxy), METH_FASTCALL, _weakref_proxy__doc__},
|
2022-03-07 05:57:45 -04:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_weakref_proxy_impl(PyObject *module, PyObject *object, PyObject *callback);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_weakref_proxy(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
PyObject *object;
|
|
|
|
PyObject *callback = NULL;
|
|
|
|
|
|
|
|
if (!_PyArg_CheckPositional("proxy", nargs, 1, 2)) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
object = args[0];
|
|
|
|
if (nargs < 2) {
|
|
|
|
goto skip_optional;
|
|
|
|
}
|
|
|
|
callback = args[1];
|
|
|
|
skip_optional:
|
|
|
|
return_value = _weakref_proxy_impl(module, object, callback);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2023-11-18 21:43:51 -04:00
|
|
|
/*[clinic end generated code: output=d5d30707212a9870 input=a9049054013a1b77]*/
|