| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* InterpreterError extends Exception */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject _PyExc_InterpreterError = { | 
					
						
							|  |  |  |     PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							|  |  |  |     .tp_name = "interpreters.InterpreterError", | 
					
						
							|  |  |  |     .tp_doc = PyDoc_STR("A cross-interpreter operation failed"), | 
					
						
							| 
									
										
										
										
											2024-04-03 10:58:39 -06:00
										 |  |  |     .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, | 
					
						
							| 
									
										
										
										
											2024-04-10 18:37:01 -06:00
										 |  |  |     //.tp_traverse = ((PyTypeObject *)PyExc_Exception)->tp_traverse,
 | 
					
						
							|  |  |  |     //.tp_clear = ((PyTypeObject *)PyExc_Exception)->tp_clear,
 | 
					
						
							|  |  |  |     //.tp_base = (PyTypeObject *)PyExc_Exception,
 | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | PyObject *PyExc_InterpreterError = (PyObject *)&_PyExc_InterpreterError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* InterpreterNotFoundError extends InterpreterError */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject _PyExc_InterpreterNotFoundError = { | 
					
						
							|  |  |  |     PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							|  |  |  |     .tp_name = "interpreters.InterpreterNotFoundError", | 
					
						
							|  |  |  |     .tp_doc = PyDoc_STR("An interpreter was not found"), | 
					
						
							| 
									
										
										
										
											2024-04-03 10:58:39 -06:00
										 |  |  |     .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, | 
					
						
							| 
									
										
										
										
											2024-04-10 18:37:01 -06:00
										 |  |  |     //.tp_traverse = ((PyTypeObject *)PyExc_Exception)->tp_traverse,
 | 
					
						
							|  |  |  |     //.tp_clear = ((PyTypeObject *)PyExc_Exception)->tp_clear,
 | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  |     .tp_base = &_PyExc_InterpreterError, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | PyObject *PyExc_InterpreterNotFoundError = (PyObject *)&_PyExc_InterpreterNotFoundError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* lifecycle */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  | init_static_exctypes(exceptions_t *state, PyInterpreterState *interp) | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |     assert(state == &_PyXI_GET_STATE(interp)->exceptions); | 
					
						
							| 
									
										
										
										
											2024-04-10 18:37:01 -06:00
										 |  |  |     PyTypeObject *base = (PyTypeObject *)PyExc_Exception; | 
					
						
							| 
									
										
										
										
											2024-04-03 10:58:39 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |     // PyExc_InterpreterError
 | 
					
						
							| 
									
										
										
										
											2024-04-03 10:58:39 -06:00
										 |  |  |     _PyExc_InterpreterError.tp_base = base; | 
					
						
							|  |  |  |     _PyExc_InterpreterError.tp_traverse = base->tp_traverse; | 
					
						
							|  |  |  |     _PyExc_InterpreterError.tp_clear = base->tp_clear; | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  |     if (_PyStaticType_InitBuiltin(interp, &_PyExc_InterpreterError) < 0) { | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |     state->PyExc_InterpreterError = (PyObject *)&_PyExc_InterpreterError; | 
					
						
							| 
									
										
										
										
											2024-04-03 10:58:39 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |     // PyExc_InterpreterNotFoundError
 | 
					
						
							| 
									
										
										
										
											2024-04-03 10:58:39 -06:00
										 |  |  |     _PyExc_InterpreterNotFoundError.tp_traverse = base->tp_traverse; | 
					
						
							|  |  |  |     _PyExc_InterpreterNotFoundError.tp_clear = base->tp_clear; | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  |     if (_PyStaticType_InitBuiltin(interp, &_PyExc_InterpreterNotFoundError) < 0) { | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |     state->PyExc_InterpreterNotFoundError = | 
					
						
							|  |  |  |             (PyObject *)&_PyExc_InterpreterNotFoundError; | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2024-04-03 10:58:39 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  | error: | 
					
						
							|  |  |  |     fini_static_exctypes(state, interp); | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | fini_static_exctypes(exceptions_t *state, PyInterpreterState *interp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     assert(state == &_PyXI_GET_STATE(interp)->exceptions); | 
					
						
							|  |  |  |     if (state->PyExc_InterpreterNotFoundError != NULL) { | 
					
						
							|  |  |  |         state->PyExc_InterpreterNotFoundError = NULL; | 
					
						
							|  |  |  |         _PyStaticType_FiniBuiltin(interp, &_PyExc_InterpreterNotFoundError); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (state->PyExc_InterpreterError != NULL) { | 
					
						
							|  |  |  |         state->PyExc_InterpreterError = NULL; | 
					
						
							|  |  |  |         _PyStaticType_FiniBuiltin(interp, &_PyExc_InterpreterError); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | init_heap_exctypes(exceptions_t *state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *exctype; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* NotShareableError extends ValueError */ | 
					
						
							|  |  |  |     const char *name = "interpreters.NotShareableError"; | 
					
						
							|  |  |  |     PyObject *base = PyExc_ValueError; | 
					
						
							|  |  |  |     PyObject *ns = NULL; | 
					
						
							|  |  |  |     exctype = PyErr_NewException(name, base, ns); | 
					
						
							|  |  |  |     if (exctype == NULL) { | 
					
						
							|  |  |  |         goto error; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     state->PyExc_NotShareableError = exctype; | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | error: | 
					
						
							|  |  |  |     fini_heap_exctypes(state); | 
					
						
							|  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  | fini_heap_exctypes(exceptions_t *state) | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-11-11 14:49:41 -07:00
										 |  |  |     Py_CLEAR(state->PyExc_NotShareableError); | 
					
						
							| 
									
										
										
										
											2024-02-13 14:56:49 -07:00
										 |  |  | } |