Files
typthon/Modules/_abc.c
copilot-swe-agent[bot] 71cf7bf14f Fix more missed Py_ patterns - opcode, thread, exception
Fixed additional patterns:
- _PyOpcode_* → _TyOpcode_* (all opcode metadata)
- _PyUOpName → _TyUOpName
- _PyFunction_* → _TyFunction_*
- _PyListIterObject → _TyListIterObject
- _Py_T_OBJECT → _Ty_T_OBJECT
- Py_BEGIN_ALLOW_THREADS, Py_END_ALLOW_THREADS → Ty_*
- PyDoc_STRVAR, PyDoc_STR → TyDoc_*
- PyInterpreterState, PyThread_*, PyTime_t → Ty*
- PyStructSequence_* → TyStructSequence_*
- PyLockStatus → TyLockStatus
- PyVarObject_HEAD_INIT → TyVarObject_HEAD_INIT
- PyBaseExceptionObject → TyBaseExceptionObject
- Fixed _PyExc_ → _TyExc_ in exception macros

Build is progressing further.

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
2025-12-29 18:27:36 +00:00

998 lines
27 KiB
C

/* ABCMeta implementation */
#ifndef Ty_BUILD_CORE_BUILTIN
# define Ty_BUILD_CORE_MODULE 1
#endif
#include "Python.h"
#include "pycore_moduleobject.h" // _TyModule_GetState()
#include "pycore_object.h" // _TyType_GetSubclasses()
#include "pycore_runtime.h" // _Ty_ID()
#include "pycore_setobject.h" // _TySet_NextEntry()
#include "pycore_weakref.h" // _TyWeakref_GET_REF()
#include "clinic/_abc.c.h"
/*[clinic input]
module _abc
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=964f5328e1aefcda]*/
TyDoc_STRVAR(_abc__doc__,
"Module contains faster C implementation of abc.ABCMeta");
typedef struct {
TyTypeObject *_abc_data_type;
uint64_t abc_invalidation_counter;
} _abcmodule_state;
static inline _abcmodule_state*
get_abc_state(TyObject *module)
{
void *state = _TyModule_GetState(module);
assert(state != NULL);
return (_abcmodule_state *)state;
}
static inline uint64_t
get_invalidation_counter(_abcmodule_state *state)
{
#ifdef Ty_GIL_DISABLED
return _Ty_atomic_load_uint64(&state->abc_invalidation_counter);
#else
return state->abc_invalidation_counter;
#endif
}
static inline void
increment_invalidation_counter(_abcmodule_state *state)
{
#ifdef Ty_GIL_DISABLED
_Ty_atomic_add_uint64(&state->abc_invalidation_counter, 1);
#else
state->abc_invalidation_counter++;
#endif
}
/* This object stores internal state for ABCs.
Note that we can use normal sets for caches,
since they are never iterated over. */
typedef struct {
PyObject_HEAD
/* These sets of weak references are lazily created. Once created, they
will point to the same sets until the ABCMeta object is destroyed or
cleared, both of which will only happen while the object is visible to a
single thread. */
TyObject *_abc_registry;
TyObject *_abc_cache;
TyObject *_abc_negative_cache;
uint64_t _abc_negative_cache_version;
} _abc_data;
#define _abc_data_CAST(op) ((_abc_data *)(op))
static inline uint64_t
get_cache_version(_abc_data *impl)
{
#ifdef Ty_GIL_DISABLED
return _Ty_atomic_load_uint64(&impl->_abc_negative_cache_version);
#else
return impl->_abc_negative_cache_version;
#endif
}
static inline void
set_cache_version(_abc_data *impl, uint64_t version)
{
#ifdef Ty_GIL_DISABLED
_Ty_atomic_store_uint64(&impl->_abc_negative_cache_version, version);
#else
impl->_abc_negative_cache_version = version;
#endif
}
static int
abc_data_traverse(TyObject *op, visitproc visit, void *arg)
{
_abc_data *self = _abc_data_CAST(op);
Ty_VISIT(Ty_TYPE(self));
Ty_VISIT(self->_abc_registry);
Ty_VISIT(self->_abc_cache);
Ty_VISIT(self->_abc_negative_cache);
return 0;
}
static int
abc_data_clear(TyObject *op)
{
_abc_data *self = _abc_data_CAST(op);
Ty_CLEAR(self->_abc_registry);
Ty_CLEAR(self->_abc_cache);
Ty_CLEAR(self->_abc_negative_cache);
return 0;
}
static void
abc_data_dealloc(TyObject *self)
{
PyObject_GC_UnTrack(self);
TyTypeObject *tp = Ty_TYPE(self);
(void)abc_data_clear(self);
tp->tp_free(self);
Ty_DECREF(tp);
}
static TyObject *
abc_data_new(TyTypeObject *type, TyObject *args, TyObject *kwds)
{
_abc_data *self = (_abc_data *) type->tp_alloc(type, 0);
_abcmodule_state *state = NULL;
if (self == NULL) {
return NULL;
}
state = _TyType_GetModuleState(type);
if (state == NULL) {
Ty_DECREF(self);
return NULL;
}
self->_abc_registry = NULL;
self->_abc_cache = NULL;
self->_abc_negative_cache = NULL;
self->_abc_negative_cache_version = get_invalidation_counter(state);
return (TyObject *) self;
}
TyDoc_STRVAR(abc_data_doc,
"Internal state held by ABC machinery.");
static TyType_Slot _abc_data_type_spec_slots[] = {
{Ty_tp_doc, (void *)abc_data_doc},
{Ty_tp_new, abc_data_new},
{Ty_tp_dealloc, abc_data_dealloc},
{Ty_tp_traverse, abc_data_traverse},
{Ty_tp_clear, abc_data_clear},
{0, 0}
};
static TyType_Spec _abc_data_type_spec = {
.name = "_abc._abc_data",
.basicsize = sizeof(_abc_data),
.flags = Ty_TPFLAGS_DEFAULT | Ty_TPFLAGS_HAVE_GC,
.slots = _abc_data_type_spec_slots,
};
static _abc_data *
_get_impl(TyObject *module, TyObject *self)
{
_abcmodule_state *state = get_abc_state(module);
TyObject *impl = PyObject_GetAttr(self, &_Ty_ID(_abc_impl));
if (impl == NULL) {
return NULL;
}
if (!Ty_IS_TYPE(impl, state->_abc_data_type)) {
TyErr_SetString(TyExc_TypeError, "_abc_impl is set to a wrong type");
Ty_DECREF(impl);
return NULL;
}
return (_abc_data *)impl;
}
static int
_in_weak_set(_abc_data *impl, TyObject **pset, TyObject *obj)
{
TyObject *set;
Ty_BEGIN_CRITICAL_SECTION(impl);
set = *pset;
Ty_END_CRITICAL_SECTION();
if (set == NULL || TySet_GET_SIZE(set) == 0) {
return 0;
}
TyObject *ref = PyWeakref_NewRef(obj, NULL);
if (ref == NULL) {
if (TyErr_ExceptionMatches(TyExc_TypeError)) {
TyErr_Clear();
return 0;
}
return -1;
}
int res = TySet_Contains(set, ref);
Ty_DECREF(ref);
return res;
}
static TyObject *
_destroy(TyObject *setweakref, TyObject *objweakref)
{
TyObject *set = _TyWeakref_GET_REF(setweakref);
if (set == NULL) {
Py_RETURN_NONE;
}
if (TySet_Discard(set, objweakref) < 0) {
Ty_DECREF(set);
return NULL;
}
Ty_DECREF(set);
Py_RETURN_NONE;
}
static TyMethodDef _destroy_def = {
"_destroy", _destroy, METH_O
};
static int
_add_to_weak_set(_abc_data *impl, TyObject **pset, TyObject *obj)
{
TyObject *set;
Ty_BEGIN_CRITICAL_SECTION(impl);
set = *pset;
if (set == NULL) {
set = *pset = TySet_New(NULL);
}
Ty_END_CRITICAL_SECTION();
if (set == NULL) {
return -1;
}
TyObject *ref, *wr;
TyObject *destroy_cb;
wr = PyWeakref_NewRef(set, NULL);
if (wr == NULL) {
return -1;
}
destroy_cb = PyCFunction_NewEx(&_destroy_def, wr, NULL);
if (destroy_cb == NULL) {
Ty_DECREF(wr);
return -1;
}
ref = PyWeakref_NewRef(obj, destroy_cb);
Ty_DECREF(destroy_cb);
if (ref == NULL) {
Ty_DECREF(wr);
return -1;
}
int ret = TySet_Add(set, ref);
Ty_DECREF(wr);
Ty_DECREF(ref);
return ret;
}
/*[clinic input]
_abc._reset_registry
self: object
/
Internal ABC helper to reset registry of a given class.
Should be only used by refleak.py
[clinic start generated code]*/
static TyObject *
_abc__reset_registry(TyObject *module, TyObject *self)
/*[clinic end generated code: output=92d591a43566cc10 input=12a0b7eb339ac35c]*/
{
_abc_data *impl = _get_impl(module, self);
if (impl == NULL) {
return NULL;
}
TyObject *registry;
Ty_BEGIN_CRITICAL_SECTION(impl);
registry = impl->_abc_registry;
Ty_END_CRITICAL_SECTION();
if (registry != NULL && TySet_Clear(registry) < 0) {
Ty_DECREF(impl);
return NULL;
}
Ty_DECREF(impl);
Py_RETURN_NONE;
}
/*[clinic input]
_abc._reset_caches
self: object
/
Internal ABC helper to reset both caches of a given class.
Should be only used by refleak.py
[clinic start generated code]*/
static TyObject *
_abc__reset_caches(TyObject *module, TyObject *self)
/*[clinic end generated code: output=f296f0d5c513f80c input=c0ac616fd8acfb6f]*/
{
_abc_data *impl = _get_impl(module, self);
if (impl == NULL) {
return NULL;
}
TyObject *cache, *negative_cache;
Ty_BEGIN_CRITICAL_SECTION(impl);
cache = impl->_abc_cache;
negative_cache = impl->_abc_negative_cache;
Ty_END_CRITICAL_SECTION();
if (cache != NULL && TySet_Clear(cache) < 0) {
Ty_DECREF(impl);
return NULL;
}
/* also the second cache */
if (negative_cache != NULL && TySet_Clear(negative_cache) < 0) {
Ty_DECREF(impl);
return NULL;
}
Ty_DECREF(impl);
Py_RETURN_NONE;
}
/*[clinic input]
_abc._get_dump
self: object
/
Internal ABC helper for cache and registry debugging.
Return shallow copies of registry, of both caches, and
negative cache version. Don't call this function directly,
instead use ABC._dump_registry() for a nice repr.
[clinic start generated code]*/
static TyObject *
_abc__get_dump(TyObject *module, TyObject *self)
/*[clinic end generated code: output=9d9569a8e2c1c443 input=2c5deb1bfe9e3c79]*/
{
_abc_data *impl = _get_impl(module, self);
if (impl == NULL) {
return NULL;
}
TyObject *res;
Ty_BEGIN_CRITICAL_SECTION(impl);
res = Ty_BuildValue("NNNK",
TySet_New(impl->_abc_registry),
TySet_New(impl->_abc_cache),
TySet_New(impl->_abc_negative_cache),
get_cache_version(impl));
Ty_END_CRITICAL_SECTION();
Ty_DECREF(impl);
return res;
}
// Compute set of abstract method names.
static int
compute_abstract_methods(TyObject *self)
{
int ret = -1;
TyObject *abstracts = TyFrozenSet_New(NULL);
if (abstracts == NULL) {
return -1;
}
TyObject *ns = NULL, *items = NULL, *bases = NULL; // Ty_XDECREF()ed on error.
/* Stage 1: direct abstract methods. */
ns = PyObject_GetAttr(self, &_Ty_ID(__dict__));
if (!ns) {
goto error;
}
// We can't use TyDict_Next(ns) even when ns is dict because
// _TyObject_IsAbstract() can mutate ns.
items = PyMapping_Items(ns);
if (!items) {
goto error;
}
assert(TyList_Check(items));
for (Ty_ssize_t pos = 0; pos < TyList_GET_SIZE(items); pos++) {
TyObject *it = PySequence_Fast(
TyList_GET_ITEM(items, pos),
"items() returned non-iterable");
if (!it) {
goto error;
}
if (PySequence_Fast_GET_SIZE(it) != 2) {
TyErr_SetString(TyExc_TypeError,
"items() returned item which size is not 2");
Ty_DECREF(it);
goto error;
}
// borrowed
TyObject *key = PySequence_Fast_GET_ITEM(it, 0);
TyObject *value = PySequence_Fast_GET_ITEM(it, 1);
// items or it may be cleared while accessing __abstractmethod__
// So we need to keep strong reference for key
Ty_INCREF(key);
int is_abstract = _TyObject_IsAbstract(value);
if (is_abstract < 0 ||
(is_abstract && TySet_Add(abstracts, key) < 0)) {
Ty_DECREF(it);
Ty_DECREF(key);
goto error;
}
Ty_DECREF(key);
Ty_DECREF(it);
}
/* Stage 2: inherited abstract methods. */
bases = PyObject_GetAttr(self, &_Ty_ID(__bases__));
if (!bases) {
goto error;
}
if (!TyTuple_Check(bases)) {
TyErr_SetString(TyExc_TypeError, "__bases__ is not tuple");
goto error;
}
for (Ty_ssize_t pos = 0; pos < TyTuple_GET_SIZE(bases); pos++) {
TyObject *item = TyTuple_GET_ITEM(bases, pos); // borrowed
TyObject *base_abstracts, *iter;
if (PyObject_GetOptionalAttr(item, &_Ty_ID(__abstractmethods__),
&base_abstracts) < 0) {
goto error;
}
if (base_abstracts == NULL) {
continue;
}
if (!(iter = PyObject_GetIter(base_abstracts))) {
Ty_DECREF(base_abstracts);
goto error;
}
Ty_DECREF(base_abstracts);
TyObject *key, *value;
while ((key = TyIter_Next(iter))) {
if (PyObject_GetOptionalAttr(self, key, &value) < 0) {
Ty_DECREF(key);
Ty_DECREF(iter);
goto error;
}
if (value == NULL) {
Ty_DECREF(key);
continue;
}
int is_abstract = _TyObject_IsAbstract(value);
Ty_DECREF(value);
if (is_abstract < 0 ||
(is_abstract && TySet_Add(abstracts, key) < 0))
{
Ty_DECREF(key);
Ty_DECREF(iter);
goto error;
}
Ty_DECREF(key);
}
Ty_DECREF(iter);
if (TyErr_Occurred()) {
goto error;
}
}
if (PyObject_SetAttr(self, &_Ty_ID(__abstractmethods__), abstracts) < 0) {
goto error;
}
ret = 0;
error:
Ty_DECREF(abstracts);
Ty_XDECREF(ns);
Ty_XDECREF(items);
Ty_XDECREF(bases);
return ret;
}
#define COLLECTION_FLAGS (Ty_TPFLAGS_SEQUENCE | Ty_TPFLAGS_MAPPING)
/*[clinic input]
_abc._abc_init
self: object
/
Internal ABC helper for class set-up. Should be never used outside abc module.
[clinic start generated code]*/
static TyObject *
_abc__abc_init(TyObject *module, TyObject *self)
/*[clinic end generated code: output=594757375714cda1 input=8d7fe470ff77f029]*/
{
_abcmodule_state *state = get_abc_state(module);
TyObject *data;
if (compute_abstract_methods(self) < 0) {
return NULL;
}
/* Set up inheritance registry. */
data = abc_data_new(state->_abc_data_type, NULL, NULL);
if (data == NULL) {
return NULL;
}
if (PyObject_SetAttr(self, &_Ty_ID(_abc_impl), data) < 0) {
Ty_DECREF(data);
return NULL;
}
Ty_DECREF(data);
/* If __abc_tpflags__ & COLLECTION_FLAGS is set, then set the corresponding bit(s)
* in the new class.
* Used by collections.abc.Sequence and collections.abc.Mapping to indicate
* their special status w.r.t. pattern matching. */
if (TyType_Check(self)) {
TyTypeObject *cls = (TyTypeObject *)self;
TyObject *dict = _TyType_GetDict(cls);
TyObject *flags = NULL;
if (TyDict_Pop(dict, &_Ty_ID(__abc_tpflags__), &flags) < 0) {
return NULL;
}
if (flags == NULL || !TyLong_CheckExact(flags)) {
Ty_XDECREF(flags);
Py_RETURN_NONE;
}
long val = TyLong_AsLong(flags);
Ty_DECREF(flags);
if (val == -1 && TyErr_Occurred()) {
return NULL;
}
if ((val & COLLECTION_FLAGS) == COLLECTION_FLAGS) {
TyErr_SetString(TyExc_TypeError, "__abc_tpflags__ cannot be both Ty_TPFLAGS_SEQUENCE and Ty_TPFLAGS_MAPPING");
return NULL;
}
_TyType_SetFlags((TyTypeObject *)self, 0, val & COLLECTION_FLAGS);
}
Py_RETURN_NONE;
}
/*[clinic input]
_abc._abc_register
self: object
subclass: object
/
Internal ABC helper for subclasss registration. Should be never used outside abc module.
[clinic start generated code]*/
static TyObject *
_abc__abc_register_impl(TyObject *module, TyObject *self, TyObject *subclass)
/*[clinic end generated code: output=7851e7668c963524 input=ca589f8c3080e67f]*/
{
if (!TyType_Check(subclass)) {
TyErr_SetString(TyExc_TypeError, "Can only register classes");
return NULL;
}
int result = PyObject_IsSubclass(subclass, self);
if (result > 0) {
return Ty_NewRef(subclass); /* Already a subclass. */
}
if (result < 0) {
return NULL;
}
/* Subtle: test for cycles *after* testing for "already a subclass";
this means we allow X.register(X) and interpret it as a no-op. */
result = PyObject_IsSubclass(self, subclass);
if (result > 0) {
/* This would create a cycle, which is bad for the algorithm below. */
TyErr_SetString(TyExc_RuntimeError, "Refusing to create an inheritance cycle");
return NULL;
}
if (result < 0) {
return NULL;
}
_abc_data *impl = _get_impl(module, self);
if (impl == NULL) {
return NULL;
}
if (_add_to_weak_set(impl, &impl->_abc_registry, subclass) < 0) {
Ty_DECREF(impl);
return NULL;
}
Ty_DECREF(impl);
/* Invalidate negative cache */
increment_invalidation_counter(get_abc_state(module));
/* Set Ty_TPFLAGS_SEQUENCE or Ty_TPFLAGS_MAPPING flag */
if (TyType_Check(self)) {
unsigned long collection_flag =
TyType_GetFlags((TyTypeObject *)self) & COLLECTION_FLAGS;
if (collection_flag) {
_TyType_SetFlagsRecursive((TyTypeObject *)subclass,
COLLECTION_FLAGS,
collection_flag);
}
}
return Ty_NewRef(subclass);
}
/*[clinic input]
_abc._abc_instancecheck
self: object
instance: object
/
Internal ABC helper for instance checks. Should be never used outside abc module.
[clinic start generated code]*/
static TyObject *
_abc__abc_instancecheck_impl(TyObject *module, TyObject *self,
TyObject *instance)
/*[clinic end generated code: output=b8b5148f63b6b56f input=a4f4525679261084]*/
{
TyObject *subtype, *result = NULL, *subclass = NULL;
_abc_data *impl = _get_impl(module, self);
if (impl == NULL) {
return NULL;
}
subclass = PyObject_GetAttr(instance, &_Ty_ID(__class__));
if (subclass == NULL) {
Ty_DECREF(impl);
return NULL;
}
/* Inline the cache checking. */
int incache = _in_weak_set(impl, &impl->_abc_cache, subclass);
if (incache < 0) {
goto end;
}
if (incache > 0) {
result = Ty_NewRef(Ty_True);
goto end;
}
subtype = (TyObject *)Ty_TYPE(instance);
if (subtype == subclass) {
if (get_cache_version(impl) == get_invalidation_counter(get_abc_state(module))) {
incache = _in_weak_set(impl, &impl->_abc_negative_cache, subclass);
if (incache < 0) {
goto end;
}
if (incache > 0) {
result = Ty_NewRef(Ty_False);
goto end;
}
}
/* Fall back to the subclass check. */
result = PyObject_CallMethodOneArg(self, &_Ty_ID(__subclasscheck__),
subclass);
goto end;
}
result = PyObject_CallMethodOneArg(self, &_Ty_ID(__subclasscheck__),
subclass);
if (result == NULL) {
goto end;
}
switch (PyObject_IsTrue(result)) {
case -1:
Ty_SETREF(result, NULL);
break;
case 0:
Ty_DECREF(result);
result = PyObject_CallMethodOneArg(self, &_Ty_ID(__subclasscheck__),
subtype);
break;
case 1: // Nothing to do.
break;
default:
Ty_UNREACHABLE();
}
end:
Ty_XDECREF(impl);
Ty_XDECREF(subclass);
return result;
}
// Return -1 when exception occurred.
// Return 1 when result is set.
// Return 0 otherwise.
static int subclasscheck_check_registry(_abc_data *impl, TyObject *subclass,
TyObject **result);
/*[clinic input]
_abc._abc_subclasscheck
self: object
subclass: object
/
Internal ABC helper for subclasss checks. Should be never used outside abc module.
[clinic start generated code]*/
static TyObject *
_abc__abc_subclasscheck_impl(TyObject *module, TyObject *self,
TyObject *subclass)
/*[clinic end generated code: output=b56c9e4a530e3894 input=1d947243409d10b8]*/
{
if (!TyType_Check(subclass)) {
TyErr_SetString(TyExc_TypeError, "issubclass() arg 1 must be a class");
return NULL;
}
TyObject *ok, *subclasses = NULL, *result = NULL;
_abcmodule_state *state = NULL;
Ty_ssize_t pos;
int incache;
_abc_data *impl = _get_impl(module, self);
if (impl == NULL) {
return NULL;
}
/* 1. Check cache. */
incache = _in_weak_set(impl, &impl->_abc_cache, subclass);
if (incache < 0) {
goto end;
}
if (incache > 0) {
result = Ty_True;
goto end;
}
state = get_abc_state(module);
/* 2. Check negative cache; may have to invalidate. */
uint64_t invalidation_counter = get_invalidation_counter(state);
if (get_cache_version(impl) < invalidation_counter) {
/* Invalidate the negative cache. */
TyObject *negative_cache;
Ty_BEGIN_CRITICAL_SECTION(impl);
negative_cache = impl->_abc_negative_cache;
Ty_END_CRITICAL_SECTION();
if (negative_cache != NULL && TySet_Clear(negative_cache) < 0) {
goto end;
}
set_cache_version(impl, invalidation_counter);
}
else {
incache = _in_weak_set(impl, &impl->_abc_negative_cache, subclass);
if (incache < 0) {
goto end;
}
if (incache > 0) {
result = Ty_False;
goto end;
}
}
/* 3. Check the subclass hook. */
ok = PyObject_CallMethodOneArg(
(TyObject *)self, &_Ty_ID(__subclasshook__), subclass);
if (ok == NULL) {
goto end;
}
if (ok == Ty_True) {
Ty_DECREF(ok);
if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
goto end;
}
result = Ty_True;
goto end;
}
if (ok == Ty_False) {
Ty_DECREF(ok);
if (_add_to_weak_set(impl, &impl->_abc_negative_cache, subclass) < 0) {
goto end;
}
result = Ty_False;
goto end;
}
if (ok != Ty_NotImplemented) {
Ty_DECREF(ok);
TyErr_SetString(TyExc_AssertionError, "__subclasshook__ must return either"
" False, True, or NotImplemented");
goto end;
}
Ty_DECREF(ok);
/* 4. Check if it's a direct subclass. */
if (TyType_IsSubtype((TyTypeObject *)subclass, (TyTypeObject *)self)) {
if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
goto end;
}
result = Ty_True;
goto end;
}
/* 5. Check if it's a subclass of a registered class (recursive). */
if (subclasscheck_check_registry(impl, subclass, &result)) {
// Exception occurred or result is set.
goto end;
}
/* 6. Check if it's a subclass of a subclass (recursive). */
subclasses = PyObject_CallMethod(self, "__subclasses__", NULL);
if (subclasses == NULL) {
goto end;
}
if (!TyList_Check(subclasses)) {
TyErr_SetString(TyExc_TypeError, "__subclasses__() must return a list");
goto end;
}
for (pos = 0; pos < TyList_GET_SIZE(subclasses); pos++) {
TyObject *scls = TyList_GetItemRef(subclasses, pos);
if (scls == NULL) {
goto end;
}
int r = PyObject_IsSubclass(subclass, scls);
Ty_DECREF(scls);
if (r > 0) {
if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
goto end;
}
result = Ty_True;
goto end;
}
if (r < 0) {
goto end;
}
}
/* No dice; update negative cache. */
if (_add_to_weak_set(impl, &impl->_abc_negative_cache, subclass) < 0) {
goto end;
}
result = Ty_False;
end:
Ty_DECREF(impl);
Ty_XDECREF(subclasses);
return Ty_XNewRef(result);
}
static int
subclasscheck_check_registry(_abc_data *impl, TyObject *subclass,
TyObject **result)
{
// Fast path: check subclass is in weakref directly.
int ret = _in_weak_set(impl, &impl->_abc_registry, subclass);
if (ret < 0) {
*result = NULL;
return -1;
}
if (ret > 0) {
*result = Ty_True;
return 1;
}
TyObject *registry_shared;
Ty_BEGIN_CRITICAL_SECTION(impl);
registry_shared = impl->_abc_registry;
Ty_END_CRITICAL_SECTION();
if (registry_shared == NULL) {
return 0;
}
// Make a local copy of the registry to protect against concurrent
// modifications of _abc_registry.
TyObject *registry = TyFrozenSet_New(registry_shared);
if (registry == NULL) {
return -1;
}
TyObject *key;
Ty_ssize_t pos = 0;
Ty_hash_t hash;
while (_TySet_NextEntry(registry, &pos, &key, &hash)) {
TyObject *rkey;
if (PyWeakref_GetRef(key, &rkey) < 0) {
// Someone inject non-weakref type in the registry.
ret = -1;
break;
}
if (rkey == NULL) {
continue;
}
int r = PyObject_IsSubclass(subclass, rkey);
Ty_DECREF(rkey);
if (r < 0) {
ret = -1;
break;
}
if (r > 0) {
if (_add_to_weak_set(impl, &impl->_abc_cache, subclass) < 0) {
ret = -1;
break;
}
*result = Ty_True;
ret = 1;
break;
}
}
Ty_DECREF(registry);
return ret;
}
/*[clinic input]
_abc.get_cache_token
Returns the current ABC cache token.
The token is an opaque object (supporting equality testing) identifying the
current version of the ABC cache for virtual subclasses. The token changes
with every call to register() on any ABC.
[clinic start generated code]*/
static TyObject *
_abc_get_cache_token_impl(TyObject *module)
/*[clinic end generated code: output=c7d87841e033dacc input=70413d1c423ad9f9]*/
{
_abcmodule_state *state = get_abc_state(module);
return TyLong_FromUnsignedLongLong(get_invalidation_counter(state));
}
static struct TyMethodDef _abcmodule_methods[] = {
_ABC_GET_CACHE_TOKEN_METHODDEF
_ABC__ABC_INIT_METHODDEF
_ABC__RESET_REGISTRY_METHODDEF
_ABC__RESET_CACHES_METHODDEF
_ABC__GET_DUMP_METHODDEF
_ABC__ABC_REGISTER_METHODDEF
_ABC__ABC_INSTANCECHECK_METHODDEF
_ABC__ABC_SUBCLASSCHECK_METHODDEF
{NULL, NULL} /* sentinel */
};
static int
_abcmodule_exec(TyObject *module)
{
_abcmodule_state *state = get_abc_state(module);
state->abc_invalidation_counter = 0;
state->_abc_data_type = (TyTypeObject *)TyType_FromModuleAndSpec(module, &_abc_data_type_spec, NULL);
if (state->_abc_data_type == NULL) {
return -1;
}
return 0;
}
static int
_abcmodule_traverse(TyObject *module, visitproc visit, void *arg)
{
_abcmodule_state *state = get_abc_state(module);
Ty_VISIT(state->_abc_data_type);
return 0;
}
static int
_abcmodule_clear(TyObject *module)
{
_abcmodule_state *state = get_abc_state(module);
Ty_CLEAR(state->_abc_data_type);
return 0;
}
static void
_abcmodule_free(void *module)
{
(void)_abcmodule_clear((TyObject *)module);
}
static PyModuleDef_Slot _abcmodule_slots[] = {
{Ty_mod_exec, _abcmodule_exec},
{Ty_mod_multiple_interpreters, Ty_MOD_PER_INTERPRETER_GIL_SUPPORTED},
{Ty_mod_gil, Ty_MOD_GIL_NOT_USED},
{0, NULL}
};
static struct TyModuleDef _abcmodule = {
PyModuleDef_HEAD_INIT,
.m_name = "_abc",
.m_doc = _abc__doc__,
.m_size = sizeof(_abcmodule_state),
.m_methods = _abcmodule_methods,
.m_slots = _abcmodule_slots,
.m_traverse = _abcmodule_traverse,
.m_clear = _abcmodule_clear,
.m_free = _abcmodule_free,
};
PyMODINIT_FUNC
PyInit__abc(void)
{
return PyModuleDef_Init(&_abcmodule);
}