| 
									
										
										
										
											2007-03-21 02:57:17 +00: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-05 01:54:55 +02:00
										 |  |  | #include "pycore_atexit.h"        // export _Py_AtExit()
 | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  | #include "pycore_initconfig.h"    // _PyStatus_NO_MEMORY
 | 
					
						
							|  |  |  | #include "pycore_interp.h"        // PyInterpreterState.atexit
 | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | #include "pycore_pystate.h"       // _PyInterpreterState_GET
 | 
					
						
							| 
									
										
										
										
											2007-03-23 22:46:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | /* ===================================================================== */ | 
					
						
							|  |  |  | /* Callback machinery. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | static inline struct atexit_state* | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  | get_atexit_state(void) | 
					
						
							| 
									
										
										
										
											2020-03-16 21:15:01 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     PyInterpreterState *interp = _PyInterpreterState_GET(); | 
					
						
							|  |  |  |     return &interp->atexit; | 
					
						
							| 
									
										
										
										
											2020-03-16 21:15:01 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-05 18:42:02 -06:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2023-07-27 15:30:16 -06:00
										 |  |  | PyUnstable_AtExit(PyInterpreterState *interp, | 
					
						
							|  |  |  |                   atexit_datacallbackfunc func, void *data) | 
					
						
							| 
									
										
										
										
											2023-04-05 18:42:02 -06:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-12-11 06:14:04 -05:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							|  |  |  |     _Py_EnsureTstateNotNULL(tstate); | 
					
						
							|  |  |  |     assert(tstate->interp == interp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-05 18:42:02 -06:00
										 |  |  |     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; | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     _PyAtExit_LockCallbacks(state); | 
					
						
							| 
									
										
										
										
											2024-12-11 06:14:04 -05:00
										 |  |  |     atexit_callback *top = state->ll_callbacks; | 
					
						
							|  |  |  |     if (top == NULL) { | 
					
						
							| 
									
										
										
										
											2023-04-05 18:42:02 -06:00
										 |  |  |         state->ll_callbacks = callback; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2024-12-11 06:14:04 -05:00
										 |  |  |         callback->next = top; | 
					
						
							|  |  |  |         state->ll_callbacks = callback; | 
					
						
							| 
									
										
										
										
											2023-04-05 18:42:02 -06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     _PyAtExit_UnlockCallbacks(state); | 
					
						
							| 
									
										
										
										
											2023-04-05 18:42:02 -06:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  | /* Clear all callbacks without calling them */ | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | atexit_cleanup(struct atexit_state *state) | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     PyList_Clear(state->callbacks); | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  | PyStatus | 
					
						
							| 
									
										
										
										
											2021-02-19 15:10:45 +01:00
										 |  |  | _PyAtExit_Init(PyInterpreterState *interp) | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-19 15:10:45 +01:00
										 |  |  |     struct atexit_state *state = &interp->atexit; | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     // _PyAtExit_Init() must only be called once
 | 
					
						
							|  |  |  |     assert(state->callbacks == NULL); | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     state->callbacks = PyList_New(0); | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     if (state->callbacks == NULL) { | 
					
						
							|  |  |  |         return _PyStatus_NO_MEMORY(); | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     return _PyStatus_OK(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | _PyAtExit_Fini(PyInterpreterState *interp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     // In theory, there shouldn't be any threads left by now, so we
 | 
					
						
							|  |  |  |     // won't lock this.
 | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     struct atexit_state *state = &interp->atexit; | 
					
						
							|  |  |  |     atexit_cleanup(state); | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     Py_CLEAR(state->callbacks); | 
					
						
							| 
									
										
										
										
											2023-04-05 18:42:02 -06: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 14:34:19 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2020-12-15 17:12:02 +01:00
										 |  |  | atexit_callfuncs(struct atexit_state *state) | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     assert(!PyErr_Occurred()); | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     assert(state->callbacks != NULL); | 
					
						
							|  |  |  |     assert(PyList_CheckExact(state->callbacks)); | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     // Create a copy of the list for thread safety
 | 
					
						
							|  |  |  |     PyObject *copy = PyList_GetSlice(state->callbacks, 0, PyList_GET_SIZE(state->callbacks)); | 
					
						
							|  |  |  |     if (copy == NULL) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2025-01-31 09:45:35 +01:00
										 |  |  |         PyErr_FormatUnraisable("Exception ignored while " | 
					
						
							| 
									
										
										
										
											2025-01-30 16:09:38 +01:00
										 |  |  |                                "copying atexit callbacks"); | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     for (Py_ssize_t i = 0; i < PyList_GET_SIZE(copy); ++i) { | 
					
						
							|  |  |  |         // We don't have to worry about evil borrowed references, because
 | 
					
						
							|  |  |  |         // no other threads can access this list.
 | 
					
						
							|  |  |  |         PyObject *tuple = PyList_GET_ITEM(copy, i); | 
					
						
							|  |  |  |         assert(PyTuple_CheckExact(tuple)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         PyObject *func = PyTuple_GET_ITEM(tuple, 0); | 
					
						
							|  |  |  |         PyObject *args = PyTuple_GET_ITEM(tuple, 1); | 
					
						
							|  |  |  |         PyObject *kwargs = PyTuple_GET_ITEM(tuple, 2); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |         PyObject *res = PyObject_Call(func, | 
					
						
							|  |  |  |                                       args, | 
					
						
							|  |  |  |                                       kwargs == Py_None ? NULL : kwargs); | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |         if (res == NULL) { | 
					
						
							| 
									
										
										
										
											2023-11-03 09:45:53 +02:00
										 |  |  |             PyErr_FormatUnraisable( | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |                 "Exception ignored in atexit callback %R", func); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |         else { | 
					
						
							|  |  |  |             Py_DECREF(res); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     Py_DECREF(copy); | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     atexit_cleanup(state); | 
					
						
							| 
									
										
										
										
											2008-09-23 00:52:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 17:12:02 +01:00
										 |  |  |     assert(!PyErr_Occurred()); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-14 23:07:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2021-02-19 15:10:45 +01:00
										 |  |  | _PyAtExit_Call(PyInterpreterState *interp) | 
					
						
							| 
									
										
										
										
											2020-12-14 23:07:54 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-19 15:10:45 +01:00
										 |  |  |     struct atexit_state *state = &interp->atexit; | 
					
						
							| 
									
										
										
										
											2020-12-15 17:12:02 +01:00
										 |  |  |     atexit_callfuncs(state); | 
					
						
							| 
									
										
										
										
											2020-12-14 23:07:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | /* ===================================================================== */ | 
					
						
							|  |  |  | /* Module methods. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | PyDoc_STRVAR(atexit_register__doc__, | 
					
						
							| 
									
										
										
										
											2024-04-12 12:35:56 +03:00
										 |  |  | "register($module, func, /, *args, **kwargs)\n\
 | 
					
						
							|  |  |  | --\n\ | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00: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 22:40:40 +01:00
										 |  |  | atexit_register(PyObject *module, PyObject *args, PyObject *kwargs) | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (PyTuple_GET_SIZE(args) == 0) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  |                 "register() takes at least 1 argument (0 given)"); | 
					
						
							| 
									
										
										
										
											2015-03-18 21:53:15 +02:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     PyObject *func = PyTuple_GET_ITEM(args, 0); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |     if (!PyCallable_Check(func)) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  |                 "the first argument must be callable"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     PyObject *func_args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); | 
					
						
							|  |  |  |     PyObject *func_kwargs = kwargs; | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     if (func_kwargs == NULL) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         func_kwargs = Py_None; | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     PyObject *callback = PyTuple_Pack(3, func, func_args, func_kwargs); | 
					
						
							|  |  |  |     if (callback == NULL) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     struct atexit_state *state = get_atexit_state(); | 
					
						
							|  |  |  |     // atexit callbacks go in a LIFO order
 | 
					
						
							|  |  |  |     if (PyList_Insert(state->callbacks, 0, callback) < 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Py_DECREF(callback); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     Py_DECREF(callback); | 
					
						
							| 
									
										
										
										
											2008-10-30 21:34:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     return Py_NewRef(func); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | PyDoc_STRVAR(atexit_run_exitfuncs__doc__, | 
					
						
							| 
									
										
										
										
											2024-04-12 12:35:56 +03:00
										 |  |  | "_run_exitfuncs($module, /)\n\
 | 
					
						
							|  |  |  | --\n\ | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2020-12-15 17:12:02 +01:00
										 |  |  | Run all registered exit functions.\n\ | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2022-08-27 10:33:29 +05:00
										 |  |  | If a callback raises an exception, it is logged with sys.unraisablehook."); | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | atexit_run_exitfuncs(PyObject *module, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     struct atexit_state *state = get_atexit_state(); | 
					
						
							| 
									
										
										
										
											2020-12-15 17:12:02 +01:00
										 |  |  |     atexit_callfuncs(state); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |     Py_RETURN_NONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | PyDoc_STRVAR(atexit_clear__doc__, | 
					
						
							| 
									
										
										
										
											2024-04-12 12:35:56 +03:00
										 |  |  | "_clear($module, /)\n\
 | 
					
						
							|  |  |  | --\n\ | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Clear the list of previously registered exit functions."); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | atexit_clear(PyObject *module, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     atexit_cleanup(get_atexit_state()); | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  |     Py_RETURN_NONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(atexit_ncallbacks__doc__, | 
					
						
							| 
									
										
										
										
											2024-04-12 12:35:56 +03:00
										 |  |  | "_ncallbacks($module, /)\n\
 | 
					
						
							|  |  |  | --\n\ | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Return the number of registered exit functions."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | atexit_ncallbacks(PyObject *module, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     struct atexit_state *state = get_atexit_state(); | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     assert(state->callbacks != NULL); | 
					
						
							|  |  |  |     assert(PyList_CheckExact(state->callbacks)); | 
					
						
							|  |  |  |     return PyLong_FromSsize_t(PyList_GET_SIZE(state->callbacks)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | atexit_unregister_locked(PyObject *callbacks, PyObject *func) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     for (Py_ssize_t i = 0; i < PyList_GET_SIZE(callbacks); ++i) { | 
					
						
							|  |  |  |         PyObject *tuple = PyList_GET_ITEM(callbacks, i); | 
					
						
							|  |  |  |         assert(PyTuple_CheckExact(tuple)); | 
					
						
							|  |  |  |         PyObject *to_compare = PyTuple_GET_ITEM(tuple, 0); | 
					
						
							|  |  |  |         int cmp = PyObject_RichCompareBool(func, to_compare, Py_EQ); | 
					
						
							|  |  |  |         if (cmp < 0) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (cmp == 1) { | 
					
						
							|  |  |  |             // We found a callback!
 | 
					
						
							|  |  |  |             if (PyList_SetSlice(callbacks, i, i + 1, NULL) < 0) { | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             --i; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | PyDoc_STRVAR(atexit_unregister__doc__, | 
					
						
							| 
									
										
										
										
											2024-04-12 12:35:56 +03:00
										 |  |  | "unregister($module, func, /)\n\
 | 
					
						
							|  |  |  | --\n\ | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2015-11-02 03:37:02 +00:00
										 |  |  | Unregister an exit function which was previously registered using\n\ | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | atexit.register\n\ | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  |     func - function to be unregistered"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | atexit_unregister(PyObject *module, PyObject *func) | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     struct atexit_state *state = get_atexit_state(); | 
					
						
							| 
									
										
										
										
											2024-12-16 14:31:44 -05:00
										 |  |  |     int result; | 
					
						
							|  |  |  |     Py_BEGIN_CRITICAL_SECTION(state->callbacks); | 
					
						
							|  |  |  |     result = atexit_unregister_locked(state->callbacks, func); | 
					
						
							|  |  |  |     Py_END_CRITICAL_SECTION(); | 
					
						
							|  |  |  |     return result < 0 ? NULL : Py_None; | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | static PyMethodDef atexit_methods[] = { | 
					
						
							| 
									
										
										
										
											2022-05-03 21:42:14 +02:00
										 |  |  |     {"register", _PyCFunction_CAST(atexit_register), METH_VARARGS|METH_KEYWORDS, | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |         atexit_register__doc__}, | 
					
						
							|  |  |  |     {"_clear", (PyCFunction) atexit_clear, METH_NOARGS, | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  |         atexit_clear__doc__}, | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |     {"unregister", (PyCFunction) atexit_unregister, METH_O, | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  |         atexit_unregister__doc__}, | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |     {"_run_exitfuncs", (PyCFunction) atexit_run_exitfuncs, METH_NOARGS, | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  |         atexit_run_exitfuncs__doc__}, | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  |     {"_ncallbacks", (PyCFunction) atexit_ncallbacks, METH_NOARGS, | 
					
						
							|  |  |  |         atexit_ncallbacks__doc__}, | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  |     {NULL, NULL}        /* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | /* ===================================================================== */ | 
					
						
							|  |  |  | /* Initialization function. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(atexit__doc__, | 
					
						
							| 
									
										
										
										
											2020-07-27 07:33:00 +08:00
										 |  |  | "allow programmer to define multiple exit functions to be executed\n\
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | upon normal program termination.\n\ | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2007-08-06 20:59:28 +00:00
										 |  |  | Two public functions, register and unregister, are defined.\n\ | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | "); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-05 15:11:27 -06:00
										 |  |  | static PyModuleDef_Slot atexitmodule_slots[] = { | 
					
						
							|  |  |  |     {Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED}, | 
					
						
							| 
									
										
										
										
											2024-05-03 08:30:55 -07:00
										 |  |  |     {Py_mod_gil, Py_MOD_GIL_NOT_USED}, | 
					
						
							| 
									
										
										
										
											2023-05-05 15:11:27 -06:00
										 |  |  |     {0, NULL} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 05:26:20 +00:00
										 |  |  | static struct PyModuleDef atexitmodule = { | 
					
						
							| 
									
										
										
										
											2013-08-01 20:56:12 +02:00
										 |  |  |     PyModuleDef_HEAD_INIT, | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     .m_name = "atexit", | 
					
						
							|  |  |  |     .m_doc = atexit__doc__, | 
					
						
							| 
									
										
										
										
											2020-12-15 14:34:19 +01:00
										 |  |  |     .m_size = 0, | 
					
						
							| 
									
										
										
										
											2020-12-14 22:40:40 +01:00
										 |  |  |     .m_methods = atexit_methods, | 
					
						
							| 
									
										
										
										
											2023-05-05 15:11:27 -06:00
										 |  |  |     .m_slots = atexitmodule_slots, | 
					
						
							| 
									
										
										
										
											2008-06-11 05:26:20 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2008-06-11 05:26:20 +00:00
										 |  |  | PyInit_atexit(void) | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-20 11:17:58 +01:00
										 |  |  |     return PyModuleDef_Init(&atexitmodule); | 
					
						
							| 
									
										
										
										
											2007-03-21 02:57:17 +00:00
										 |  |  | } |