2007-03-20 23:57:17 -03:00
|
|
|
/*
|
|
|
|
* atexit - allow programmer to define multiple exit functions to be executed
|
|
|
|
* upon normal program termination.
|
|
|
|
*
|
|
|
|
* Translated from atexit.py by Collin Winter.
|
|
|
|
+ Copyright 2007 Python Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Python.h"
|
2023-09-04 20:54:55 -03:00
|
|
|
#include "pycore_atexit.h" // export _Py_AtExit()
|
2020-12-15 09:34:19 -04:00
|
|
|
#include "pycore_initconfig.h" // _PyStatus_NO_MEMORY
|
|
|
|
#include "pycore_interp.h" // PyInterpreterState.atexit
|
2020-12-14 17:40:40 -04:00
|
|
|
#include "pycore_pystate.h" // _PyInterpreterState_GET
|
2007-03-23 19:46:49 -03:00
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
/* ===================================================================== */
|
|
|
|
/* Callback machinery. */
|
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
static inline struct atexit_state*
|
2020-12-15 09:34:19 -04:00
|
|
|
get_atexit_state(void)
|
2020-03-16 10:15:01 -03:00
|
|
|
{
|
2020-12-15 09:34:19 -04:00
|
|
|
PyInterpreterState *interp = _PyInterpreterState_GET();
|
|
|
|
return &interp->atexit;
|
2020-03-16 10:15:01 -03:00
|
|
|
}
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
|
2023-04-05 21:42:02 -03:00
|
|
|
int
|
2023-07-27 18:30:16 -03:00
|
|
|
PyUnstable_AtExit(PyInterpreterState *interp,
|
|
|
|
atexit_datacallbackfunc func, void *data)
|
2023-04-05 21:42:02 -03:00
|
|
|
{
|
|
|
|
assert(interp == _PyInterpreterState_GET());
|
|
|
|
atexit_callback *callback = PyMem_Malloc(sizeof(atexit_callback));
|
|
|
|
if (callback == NULL) {
|
|
|
|
PyErr_NoMemory();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
callback->func = func;
|
|
|
|
callback->data = data;
|
|
|
|
callback->next = NULL;
|
|
|
|
|
|
|
|
struct atexit_state *state = &interp->atexit;
|
|
|
|
if (state->ll_callbacks == NULL) {
|
|
|
|
state->ll_callbacks = callback;
|
|
|
|
state->last_ll_callback = callback;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
state->last_ll_callback->next = callback;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-01 15:56:12 -03:00
|
|
|
static void
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_delete_cb(struct atexit_state *state, int i)
|
2013-08-01 15:56:12 -03:00
|
|
|
{
|
2023-04-05 21:42:02 -03:00
|
|
|
atexit_py_callback *cb = state->callbacks[i];
|
2020-12-15 09:34:19 -04:00
|
|
|
state->callbacks[i] = NULL;
|
2013-08-01 15:56:12 -03:00
|
|
|
|
|
|
|
Py_DECREF(cb->func);
|
|
|
|
Py_DECREF(cb->args);
|
|
|
|
Py_XDECREF(cb->kwargs);
|
|
|
|
PyMem_Free(cb);
|
|
|
|
}
|
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
|
2013-08-01 15:56:12 -03:00
|
|
|
/* Clear all callbacks without calling them */
|
|
|
|
static void
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_cleanup(struct atexit_state *state)
|
2013-08-01 15:56:12 -03:00
|
|
|
{
|
2023-04-05 21:42:02 -03:00
|
|
|
atexit_py_callback *cb;
|
2020-12-14 17:40:40 -04:00
|
|
|
for (int i = 0; i < state->ncallbacks; i++) {
|
2020-12-15 09:34:19 -04:00
|
|
|
cb = state->callbacks[i];
|
2013-08-01 15:56:12 -03:00
|
|
|
if (cb == NULL)
|
|
|
|
continue;
|
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_delete_cb(state, i);
|
2013-08-01 15:56:12 -03:00
|
|
|
}
|
2020-12-14 17:40:40 -04:00
|
|
|
state->ncallbacks = 0;
|
2013-08-01 15:56:12 -03:00
|
|
|
}
|
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
|
2020-12-15 09:34:19 -04:00
|
|
|
PyStatus
|
2021-02-19 10:10:45 -04:00
|
|
|
_PyAtExit_Init(PyInterpreterState *interp)
|
2007-03-20 23:57:17 -03:00
|
|
|
{
|
2021-02-19 10:10:45 -04:00
|
|
|
struct atexit_state *state = &interp->atexit;
|
2020-12-15 09:34:19 -04:00
|
|
|
// _PyAtExit_Init() must only be called once
|
|
|
|
assert(state->callbacks == NULL);
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-15 09:34:19 -04:00
|
|
|
state->callback_len = 32;
|
|
|
|
state->ncallbacks = 0;
|
2023-04-05 21:42:02 -03:00
|
|
|
state->callbacks = PyMem_New(atexit_py_callback*, state->callback_len);
|
2020-12-15 09:34:19 -04:00
|
|
|
if (state->callbacks == NULL) {
|
|
|
|
return _PyStatus_NO_MEMORY();
|
2020-12-14 17:40:40 -04:00
|
|
|
}
|
2020-12-15 09:34:19 -04:00
|
|
|
return _PyStatus_OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
_PyAtExit_Fini(PyInterpreterState *interp)
|
|
|
|
{
|
|
|
|
struct atexit_state *state = &interp->atexit;
|
|
|
|
atexit_cleanup(state);
|
|
|
|
PyMem_Free(state->callbacks);
|
2020-12-15 12:12:02 -04:00
|
|
|
state->callbacks = NULL;
|
2023-04-05 21:42:02 -03:00
|
|
|
|
|
|
|
atexit_callback *next = state->ll_callbacks;
|
|
|
|
state->ll_callbacks = NULL;
|
|
|
|
while (next != NULL) {
|
|
|
|
atexit_callback *callback = next;
|
|
|
|
next = callback->next;
|
|
|
|
atexit_datacallbackfunc exitfunc = callback->func;
|
|
|
|
void *data = callback->data;
|
|
|
|
// It was allocated in _PyAtExit_AddCallback().
|
|
|
|
PyMem_Free(callback);
|
|
|
|
exitfunc(data);
|
|
|
|
}
|
2020-12-15 09:34:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2020-12-15 12:12:02 -04:00
|
|
|
atexit_callfuncs(struct atexit_state *state)
|
2020-12-15 09:34:19 -04:00
|
|
|
{
|
|
|
|
assert(!PyErr_Occurred());
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
if (state->ncallbacks == 0) {
|
2008-10-30 18:34:02 -03:00
|
|
|
return;
|
2020-12-14 17:40:40 -04:00
|
|
|
}
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
for (int i = state->ncallbacks - 1; i >= 0; i--) {
|
2023-04-05 21:42:02 -03:00
|
|
|
atexit_py_callback *cb = state->callbacks[i];
|
2020-12-14 17:40:40 -04:00
|
|
|
if (cb == NULL) {
|
2007-03-20 23:57:17 -03:00
|
|
|
continue;
|
2020-12-14 17:40:40 -04:00
|
|
|
}
|
2007-03-20 23:57:17 -03:00
|
|
|
|
2021-12-09 09:53:44 -04:00
|
|
|
// bpo-46025: Increment the refcount of cb->func as the call itself may unregister it
|
|
|
|
PyObject* the_func = Py_NewRef(cb->func);
|
2020-12-14 17:40:40 -04:00
|
|
|
PyObject *res = PyObject_Call(cb->func, cb->args, cb->kwargs);
|
|
|
|
if (res == NULL) {
|
2023-11-03 04:45:53 -03:00
|
|
|
PyErr_FormatUnraisable(
|
|
|
|
"Exception ignored in atexit callback %R", the_func);
|
2007-03-20 23:57:17 -03:00
|
|
|
}
|
2020-12-14 17:40:40 -04:00
|
|
|
else {
|
|
|
|
Py_DECREF(res);
|
|
|
|
}
|
2021-12-09 09:53:44 -04:00
|
|
|
Py_DECREF(the_func);
|
2007-03-20 23:57:17 -03:00
|
|
|
}
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_cleanup(state);
|
2008-09-22 21:52:29 -03:00
|
|
|
|
2020-12-15 12:12:02 -04:00
|
|
|
assert(!PyErr_Occurred());
|
2007-03-20 23:57:17 -03:00
|
|
|
}
|
|
|
|
|
2020-12-14 18:07:54 -04:00
|
|
|
|
|
|
|
void
|
2021-02-19 10:10:45 -04:00
|
|
|
_PyAtExit_Call(PyInterpreterState *interp)
|
2020-12-14 18:07:54 -04:00
|
|
|
{
|
2021-02-19 10:10:45 -04:00
|
|
|
struct atexit_state *state = &interp->atexit;
|
2020-12-15 12:12:02 -04:00
|
|
|
atexit_callfuncs(state);
|
2020-12-14 18:07:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
/* ===================================================================== */
|
|
|
|
/* Module methods. */
|
|
|
|
|
2020-12-15 09:34:19 -04:00
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
PyDoc_STRVAR(atexit_register__doc__,
|
2024-04-12 06:35:56 -03:00
|
|
|
"register($module, func, /, *args, **kwargs)\n\
|
|
|
|
--\n\
|
2007-03-20 23:57:17 -03:00
|
|
|
\n\
|
|
|
|
Register a function to be executed upon normal program termination\n\
|
|
|
|
\n\
|
|
|
|
func - function to be called at exit\n\
|
|
|
|
args - optional arguments to pass to func\n\
|
|
|
|
kwargs - optional keyword arguments to pass to func\n\
|
|
|
|
\n\
|
|
|
|
func is returned to facilitate usage as a decorator.");
|
|
|
|
|
|
|
|
static PyObject *
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_register(PyObject *module, PyObject *args, PyObject *kwargs)
|
2007-03-20 23:57:17 -03:00
|
|
|
{
|
|
|
|
if (PyTuple_GET_SIZE(args) == 0) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"register() takes at least 1 argument (0 given)");
|
2015-03-18 16:53:15 -03:00
|
|
|
return NULL;
|
2007-03-20 23:57:17 -03:00
|
|
|
}
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
PyObject *func = PyTuple_GET_ITEM(args, 0);
|
2007-03-20 23:57:17 -03:00
|
|
|
if (!PyCallable_Check(func)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"the first argument must be callable");
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-15 09:34:19 -04:00
|
|
|
struct atexit_state *state = get_atexit_state();
|
2020-12-14 17:40:40 -04:00
|
|
|
if (state->ncallbacks >= state->callback_len) {
|
2023-04-05 21:42:02 -03:00
|
|
|
atexit_py_callback **r;
|
2020-12-14 17:40:40 -04:00
|
|
|
state->callback_len += 16;
|
2023-04-05 21:42:02 -03:00
|
|
|
size_t size = sizeof(atexit_py_callback*) * (size_t)state->callback_len;
|
|
|
|
r = (atexit_py_callback**)PyMem_Realloc(state->callbacks, size);
|
2020-12-15 12:12:02 -04:00
|
|
|
if (r == NULL) {
|
2020-12-14 17:40:40 -04:00
|
|
|
return PyErr_NoMemory();
|
2020-12-15 12:12:02 -04:00
|
|
|
}
|
2020-12-15 09:34:19 -04:00
|
|
|
state->callbacks = r;
|
2020-12-14 17:40:40 -04:00
|
|
|
}
|
|
|
|
|
2023-04-05 21:42:02 -03:00
|
|
|
atexit_py_callback *callback = PyMem_Malloc(sizeof(atexit_py_callback));
|
2020-12-14 17:40:40 -04:00
|
|
|
if (callback == NULL) {
|
2015-03-18 16:53:15 -03:00
|
|
|
return PyErr_NoMemory();
|
2020-12-14 17:40:40 -04:00
|
|
|
}
|
2007-03-20 23:57:17 -03:00
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
callback->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
|
|
|
|
if (callback->args == NULL) {
|
|
|
|
PyMem_Free(callback);
|
2007-03-20 23:57:17 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2020-12-14 17:40:40 -04:00
|
|
|
callback->func = Py_NewRef(func);
|
|
|
|
callback->kwargs = Py_XNewRef(kwargs);
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-15 09:34:19 -04:00
|
|
|
state->callbacks[state->ncallbacks++] = callback;
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
return Py_NewRef(func);
|
2007-03-20 23:57:17 -03:00
|
|
|
}
|
|
|
|
|
2007-08-06 17:59:28 -03:00
|
|
|
PyDoc_STRVAR(atexit_run_exitfuncs__doc__,
|
2024-04-12 06:35:56 -03:00
|
|
|
"_run_exitfuncs($module, /)\n\
|
|
|
|
--\n\
|
2007-08-06 17:59:28 -03:00
|
|
|
\n\
|
2020-12-15 12:12:02 -04:00
|
|
|
Run all registered exit functions.\n\
|
|
|
|
\n\
|
2022-08-27 02:33:29 -03:00
|
|
|
If a callback raises an exception, it is logged with sys.unraisablehook.");
|
2007-08-06 17:59:28 -03:00
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
static PyObject *
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_run_exitfuncs(PyObject *module, PyObject *unused)
|
2007-03-20 23:57:17 -03:00
|
|
|
{
|
2020-12-15 09:34:19 -04:00
|
|
|
struct atexit_state *state = get_atexit_state();
|
2020-12-15 12:12:02 -04:00
|
|
|
atexit_callfuncs(state);
|
2007-03-20 23:57:17 -03:00
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
2007-08-06 17:59:28 -03:00
|
|
|
PyDoc_STRVAR(atexit_clear__doc__,
|
2024-04-12 06:35:56 -03:00
|
|
|
"_clear($module, /)\n\
|
|
|
|
--\n\
|
2007-08-06 17:59:28 -03:00
|
|
|
\n\
|
|
|
|
Clear the list of previously registered exit functions.");
|
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
static PyObject *
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_clear(PyObject *module, PyObject *unused)
|
2013-08-01 15:56:12 -03:00
|
|
|
{
|
2020-12-15 09:34:19 -04:00
|
|
|
atexit_cleanup(get_atexit_state());
|
2013-08-01 15:56:12 -03:00
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(atexit_ncallbacks__doc__,
|
2024-04-12 06:35:56 -03:00
|
|
|
"_ncallbacks($module, /)\n\
|
|
|
|
--\n\
|
2013-08-01 15:56:12 -03:00
|
|
|
\n\
|
|
|
|
Return the number of registered exit functions.");
|
|
|
|
|
|
|
|
static PyObject *
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_ncallbacks(PyObject *module, PyObject *unused)
|
2007-03-20 23:57:17 -03:00
|
|
|
{
|
2020-12-15 09:34:19 -04:00
|
|
|
struct atexit_state *state = get_atexit_state();
|
2020-12-14 17:40:40 -04:00
|
|
|
return PyLong_FromSsize_t(state->ncallbacks);
|
2013-08-01 15:56:12 -03:00
|
|
|
}
|
|
|
|
|
2007-08-06 17:59:28 -03:00
|
|
|
PyDoc_STRVAR(atexit_unregister__doc__,
|
2024-04-12 06:35:56 -03:00
|
|
|
"unregister($module, func, /)\n\
|
|
|
|
--\n\
|
2007-08-06 17:59:28 -03:00
|
|
|
\n\
|
2015-11-01 23:37:02 -04:00
|
|
|
Unregister an exit function which was previously registered using\n\
|
2007-08-06 17:59:28 -03:00
|
|
|
atexit.register\n\
|
|
|
|
\n\
|
|
|
|
func - function to be unregistered");
|
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
static PyObject *
|
2020-12-14 17:40:40 -04:00
|
|
|
atexit_unregister(PyObject *module, PyObject *func)
|
2007-03-20 23:57:17 -03:00
|
|
|
{
|
2020-12-15 09:34:19 -04:00
|
|
|
struct atexit_state *state = get_atexit_state();
|
2020-12-14 17:40:40 -04:00
|
|
|
for (int i = 0; i < state->ncallbacks; i++)
|
2007-03-20 23:57:17 -03:00
|
|
|
{
|
2023-04-05 21:42:02 -03:00
|
|
|
atexit_py_callback *cb = state->callbacks[i];
|
2020-12-14 17:40:40 -04:00
|
|
|
if (cb == NULL) {
|
2007-03-20 23:57:17 -03:00
|
|
|
continue;
|
2020-12-14 17:40:40 -04:00
|
|
|
}
|
2008-10-30 18:34:02 -03:00
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
int eq = PyObject_RichCompareBool(cb->func, func, Py_EQ);
|
|
|
|
if (eq < 0) {
|
2007-03-20 23:57:17 -03:00
|
|
|
return NULL;
|
2020-12-14 17:40:40 -04:00
|
|
|
}
|
|
|
|
if (eq) {
|
|
|
|
atexit_delete_cb(state, i);
|
|
|
|
}
|
2007-03-20 23:57:17 -03:00
|
|
|
}
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
2020-12-14 17:40:40 -04:00
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
static PyMethodDef atexit_methods[] = {
|
2022-05-03 16:42:14 -03:00
|
|
|
{"register", _PyCFunction_CAST(atexit_register), METH_VARARGS|METH_KEYWORDS,
|
2007-03-20 23:57:17 -03:00
|
|
|
atexit_register__doc__},
|
|
|
|
{"_clear", (PyCFunction) atexit_clear, METH_NOARGS,
|
2007-08-06 17:59:28 -03:00
|
|
|
atexit_clear__doc__},
|
2007-03-20 23:57:17 -03:00
|
|
|
{"unregister", (PyCFunction) atexit_unregister, METH_O,
|
2007-08-06 17:59:28 -03:00
|
|
|
atexit_unregister__doc__},
|
2007-03-20 23:57:17 -03:00
|
|
|
{"_run_exitfuncs", (PyCFunction) atexit_run_exitfuncs, METH_NOARGS,
|
2007-08-06 17:59:28 -03:00
|
|
|
atexit_run_exitfuncs__doc__},
|
2013-08-01 15:56:12 -03:00
|
|
|
{"_ncallbacks", (PyCFunction) atexit_ncallbacks, METH_NOARGS,
|
|
|
|
atexit_ncallbacks__doc__},
|
2007-03-20 23:57:17 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
2020-12-15 09:34:19 -04:00
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
/* ===================================================================== */
|
|
|
|
/* Initialization function. */
|
|
|
|
|
|
|
|
PyDoc_STRVAR(atexit__doc__,
|
2020-07-26 20:33:00 -03:00
|
|
|
"allow programmer to define multiple exit functions to be executed\n\
|
2007-03-20 23:57:17 -03:00
|
|
|
upon normal program termination.\n\
|
|
|
|
\n\
|
2007-08-06 17:59:28 -03:00
|
|
|
Two public functions, register and unregister, are defined.\n\
|
2007-03-20 23:57:17 -03:00
|
|
|
");
|
|
|
|
|
2023-05-05 18:11:27 -03:00
|
|
|
static PyModuleDef_Slot atexitmodule_slots[] = {
|
|
|
|
{Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED},
|
2024-05-03 12:30:55 -03:00
|
|
|
{Py_mod_gil, Py_MOD_GIL_NOT_USED},
|
2023-05-05 18:11:27 -03:00
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
|
2008-06-11 02:26:20 -03:00
|
|
|
static struct PyModuleDef atexitmodule = {
|
2013-08-01 15:56:12 -03:00
|
|
|
PyModuleDef_HEAD_INIT,
|
2020-12-14 17:40:40 -04:00
|
|
|
.m_name = "atexit",
|
|
|
|
.m_doc = atexit__doc__,
|
2020-12-15 09:34:19 -04:00
|
|
|
.m_size = 0,
|
2020-12-14 17:40:40 -04:00
|
|
|
.m_methods = atexit_methods,
|
2023-05-05 18:11:27 -03:00
|
|
|
.m_slots = atexitmodule_slots,
|
2008-06-11 02:26:20 -03:00
|
|
|
};
|
|
|
|
|
2007-03-20 23:57:17 -03:00
|
|
|
PyMODINIT_FUNC
|
2008-06-11 02:26:20 -03:00
|
|
|
PyInit_atexit(void)
|
2007-03-20 23:57:17 -03:00
|
|
|
{
|
2017-12-20 06:17:58 -04:00
|
|
|
return PyModuleDef_Init(&atexitmodule);
|
2007-03-20 23:57:17 -03:00
|
|
|
}
|