1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
#!/usr/bin/env python3
# --------------------( LICENSE )--------------------
# Copyright (c) 2014-2025 Beartype authors.
# See "LICENSE" for further details.
'''
Project-wide **class testers** (i.e., low-level callables testing and validating
various properties of arbitrary classes).
This private submodule is *not* intended for importation by downstream callers.
'''
# ....................{ IMPORTS }....................
from beartype.roar._roarexc import _BeartypeUtilTypeException
from beartype._cave._cavefast import TestableTypes as TestableTypesTuple
from beartype._data.cls.datacls import TYPES_BUILTIN
from beartype._data.typing.datatyping import (
TypeException,
TypeOrTupleTypes,
)
from beartype._data.api.standard.datapy import BUILTINS_MODULE_NAME
# ....................{ RAISERS }....................
def die_unless_type(
# Mandatory parameters.
cls: object,
# Optional parameters.
exception_cls: TypeException = _BeartypeUtilTypeException,
exception_prefix: str = '',
) -> None:
'''
Raise an exception of the passed type unless the passed object is a class.
Parameters
----------
cls : object
Object to be validated.
exception_cls : Type[Exception]
Type of exception to be raised in the event of a fatal error. Defaults
to :exc:`._BeartypeUtilTypeException`.
exception_prefix : str, optional
Human-readable label prefixing the representation of this object in the
exception message. Defaults to the empty string.
Raises
------
exception_cls
If this object is *not* a class.
'''
# If this object is *NOT* a class, raise an exception.
if not isinstance(cls, type):
assert isinstance(exception_cls, type), (
'f{repr(exception_cls)} not exception class.')
assert isinstance(exception_prefix, str), (
'f{repr(exception_prefix)} not string.')
raise exception_cls(f'{exception_prefix}{repr(cls)} not class.')
# Else, this object is a class.
#FIXME: Unit test us up.
def die_unless_type_or_types(
# Mandatory parameters.
type_or_types: object,
# Optional parameters.
exception_cls: TypeException = _BeartypeUtilTypeException,
exception_prefix: str = '',
) -> None:
'''
Raise an exception of the passed type unless the passed object is either a
class *or* tuple of one or more classes.
Parameters
----------
type_or_types : object
Object to be validated.
exception_cls : Type[Exception]
Type of exception to be raised in the event of a fatal error. Defaults
to :exc:`._BeartypeUtilTypeException`.
exception_prefix : str, optional
Human-readable label prefixing the representation of this object in the
exception message. Defaults to the empty string.
Raises
------
exception_cls
If this object is neither a class *nor* tuple of one or more classes.
'''
# If this object is neither a class *NOR* tuple of one or more classes,
# raise an exception.
if not is_type_or_types(type_or_types):
assert isinstance(exception_cls, type), (
'f{repr(exception_cls)} not exception class.')
assert issubclass(exception_cls, Exception), (
f'{repr(exception_cls)} not exception subclass.')
assert isinstance(exception_prefix, str), (
f'{repr(exception_prefix)} not string.')
# Exception message to be raised below.
exception_message = (
f'{exception_prefix}{repr(type_or_types)} neither '
f'class nor tuple of one or more classes'
)
# If this object is a tuple...
if isinstance(type_or_types, tuple):
# If this tuple is empty, note that.
if not type_or_types:
exception_message += ' (i.e., is empty tuple)'
# Else, this tuple is non-empty. In this case...
else:
# For the 0-based index of each tuple item and that item...
for cls_index, cls in enumerate(type_or_types):
# If this object is *NOT* a class...
if not isinstance(cls, type):
# Note this.
exception_message += (
f' (i.e., tuple item {cls_index} '
f'{repr(cls)} not class)'
)
# Halt iteration.
break
# Else, this object is a class. Continue to the next item.
# Else, this object is a non-tuple. In this case, the general-purpose
# exception message suffices.
# Raise this exception.
raise exception_cls(f'{exception_message}.')
# Else, this object is either a class *OR* tuple of one or more classes.
# ....................{ TESTERS }....................
def is_type_or_types(type_or_types: object) -> bool:
'''
:data:`True` only if the passed object is either a class *or* tuple of one
or more classes.
Parameters
----------
type_or_types : object
Object to be inspected.
Returns
-------
bool
:data:`True` only if this object is either a class *or* tuple of one or
more classes.
'''
# Return true only if either...
return (
# This object is a class *OR*...
isinstance(type_or_types, type) or
(
# This object is a tuple *AND*...
isinstance(type_or_types, tuple) and
# This tuple is non-empty *AND*...
bool(type_or_types) and
# This tuple contains only classes.
all(isinstance(cls, type) for cls in type_or_types)
)
)
# ....................{ TESTERS ~ builtin }....................
def is_type_builtin(cls: type) -> bool:
'''
:data:`True` only if the passed object is a **builtin type** (i.e., globally
accessible C-based type implicitly accessible from all scopes and thus
requiring *no* explicit importation).
Caveats
-------
This tester intentionally ignores **fake builtin types** (i.e., types that
are *not* builtin but nonetheless erroneously masquerade as being builtin,
including the type of the :data:`None` singleton) by returning :data:`False`
when passed a fake builtin type. If this is undesirable, consider calling
the lower-level :func:`.is_type_builtin_or_fake` tester.
Parameters
----------
cls : type
Class to be inspected.
Returns
-------
bool
:data:`True` only if this class is builtin.
'''
# Return true only if this is a builtin type.
return cls in TYPES_BUILTIN
def is_type_builtin_or_fake(cls: type) -> bool:
'''
:data:`True` only if the passed object is a **possibly fake builtin type**
(i.e., type declared by the standard :mod:`builtins` module).
This tester is intentionally *not* memoized (e.g., by the
:func:`callable_cached` decorator), as the implementation trivially reduces
to an efficient one-liner.
Caveats
-------
This tester intentionally accepts **fake builtin types** (i.e., types that
are *not* builtin but nonetheless erroneously masquerade as being builtin,
including the type of the :data:`None` singleton) by returning :data:`True`
when passed a fake builtin type. If this is undesirable, consider calling
the higher-level :func:`.is_type_builtin` tester.
Like all non-builtin types, fake builtin types are globally inaccessible
until explicitly imported into the current lexical variable scope. Unlike
all non-builtin types, however, fake builtin types declare themselves to be
builtin. The standard example is the type of the :data:`None` singleton:
.. code-block:: python
>>> f'{type(None).__module__}.{type(None).__name__}'
'builtins.NoneType'
>>> NoneType
NameError: name 'NoneType' is not defined # <---- this is balls
These inconsistencies almost certainly constitute bugs in the CPython
interpreter itself, but it seems doubtful CPython developers would see it
that way and almost certain everyone else would defend these edge cases.
We're *not* dying on that lonely hill. We obey the Iron Law of Guido.
Parameters
----------
cls : type
Class to be inspected.
Returns
-------
bool
:data:`True` only if this object is a possibly fake builtin type.
'''
# Avoid circular import dependencies.
from beartype._util.module.utilmodget import (
get_object_type_module_name_or_none)
# If this object is *NOT* a type, return false.
if not isinstance(cls, type):
return False
# Else, this object is a type.
# Fully-qualified name of the module defining this type if this type is
# defined by a module *OR* "None" otherwise (i.e., if this type is
# dynamically defined in-memory).
cls_module_name = get_object_type_module_name_or_none(cls)
# This return true only if this name is that of the "builtins" module
# declaring all builtin types.
return cls_module_name == BUILTINS_MODULE_NAME
# ....................{ TESTERS ~ subclass }....................
def is_type_subclass(
cls: object, base_classes: TypeOrTupleTypes) -> bool:
'''
:data:`True` only if the passed object is an inclusive subclass of the
passed superclass(es).
Specifically, this tester returns :data:`True` only if either:
* If ``base_classes`` is a single superclass, the passed class is either:
* That superclass itself *or*...
* A subclass of that superclass.
* Else, ``base_classes`` is a tuple of one or more superclasses. In this
case, the passed class is either:
* One of those superclasses themselves *or*...
* A subclass of one of those superclasses.
Caveats
-------
**This higher-level tester should always be called in lieu of the
lower-level** :func:`issubclass` **builtin,** which raises an undescriptive
exception when the first passed parameter is *not* a class: e.g.,
.. code-block:: pycon
>>> issubclass(object(), type)
TypeError: issubclass() arg 1 must be a class
This tester suffers no such deficits, instead safely returning ``False``
when the first passed parameter is *not* a class.
Parameters
----------
obj : object
Object to be inspected.
base_classes : TestableTypes
Superclass(es) to test whether this object is a subclass of defined as
either:
* A single class.
* A tuple of one or more classes.
Returns
-------
bool
:data:`True` only if this object is an inclusive subclass of these
superclass(es).
'''
assert isinstance(base_classes, TestableTypesTuple), (
f'{repr(base_classes)} neither class nor tuple of classes.')
# Return true only if...
return (
# This object is a class *AND*...
isinstance(cls, type) and
# This class either is this superclass(es) or a subclass of this
# superclass(es).
issubclass(cls, base_classes)
)
#FIXME: Unit test us up, please.
def is_type_subclass_proper(
cls: object, base_classes: TypeOrTupleTypes) -> bool:
'''
:data:`True` only if the passed object is a proper subclass of the passed
superclass(es).
Specifically, this tester returns :data:`True` only if either:
* If ``base_classes`` is a single superclass, the passed class is a subclass
of that superclass (but *not* that superclass itself).
* Else, ``base_classes`` is a tuple of one or more superclasses. In this
case, the passed class is a subclass of one of those superclasses (but
*not* one of those superclasses themselves).
Parameters
----------
obj : object
Object to be inspected.
base_classes : TestableTypes
Superclass(es) to test whether this object is a subclass of defined as
either:
* A single class.
* A tuple of one or more classes.
Returns
-------
bool
:data:`True` only if this object is a proper subclass of these
superclass(es).
'''
assert isinstance(base_classes, TestableTypesTuple), (
f'{repr(base_classes)} neither class nor tuple of classes.')
# Return true only if...
return (
# This object is a class *AND*...
isinstance(cls, type) and
# This class either is this superclass(es) or a subclass of this
# superclass(es) *AND*...
issubclass(cls, base_classes) and
# It is *NOT* the case that...
not (
# If the caller passed a tuple of one or more superclasses, this
# class is one of these superclasses themselves;
cls in base_classes
if isinstance(base_classes, tuple) else
# Else, the caller passed a single superclass. In this case, this
# class is this superclass itself.
cls is base_classes
)
)
|