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 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
|
#!/usr/bin/env python3
# --------------------( LICENSE )--------------------
# Copyright (c) 2014-2025 Beartype authors.
# See "LICENSE" for further details.
'''
Project-wide **object utilities** (i.e., low-level callables handling arbitrary
objects in a general-purpose manner).
This private submodule is *not* intended for importation by downstream callers.
'''
# ....................{ IMPORTS }....................
from beartype.roar._roarexc import _BeartypeUtilObjectNameException
from beartype.typing import (
Any,
Optional,
)
from beartype._data.cls.datacls import TYPES_CONTEXTMANAGER_FAKE
from contextlib import AbstractContextManager
# ....................{ TESTERS }....................
def is_object_context_manager(obj: object) -> bool:
'''
:data:`True` only if the passed object is a **context manager** (i.e.,
object defining both the ``__exit__`` and ``__enter__`` dunder methods
required to satisfy the context manager protocol).
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
bool
:data:`True` only if this object is a context manager.
'''
# Return true only if...
return (
# This object satisfies the context manager protocol (i.e., defines both
# the __enter__() and __exit__() dunder methods) *AND*...
isinstance(obj, AbstractContextManager) and
# This object is *NOT* a "fake" context manager (i.e., defines erroneous
# __enter__() and __exit__() dunder methods trivially reducing to noops
# and also emitting non-fatal deprecation warnings).
not isinstance(obj, TYPES_CONTEXTMANAGER_FAKE)
)
# Note that this tester function *CANNOT* be memoized by the @callable_cached
# decorator, which requires all passed parameters to already be hashable.
def is_object_hashable(obj: object) -> bool:
'''
:data:`True` only if the passed object is **hashable** (i.e., passable to
the builtin :func:`hash` function *without* raising an exception and thus
usable in hash-based containers like dictionaries and sets).
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
bool
:data:`True` only if this object is hashable.
'''
# Attempt to hash this object. If doing so raises *any* exception
# whatsoever, this object is by definition unhashable.
#
# Note that there also exists a "collections.abc.Hashable" superclass.
# Sadly, this superclass is mostly useless for all practical purposes. Why?
# Because user-defined classes are free to subclass that superclass
# despite overriding the __hash__() dunder method implicitly called by the
# builtin hash() function to raise exceptions: e.g.,
#
# from collections.abc import Hashable
# class HashUmUp(Hashable):
# def __hash__(self):
# raise ValueError('uhoh')
#
# Note also that we catch all possible exceptions rather than merely the
# standard "TypeError" exception raised by unhashable builtin types (e.g.,
# dictionaries, lists, sets). Why? For the same exact reason as above.
try:
hash(obj)
# If this object is unhashable, return false.
except Exception:
return False
# Else, this object is hashable. Return true.
return True
# ....................{ GETTERS ~ name }....................
def get_object_name(obj: Any) -> str:
'''
**Fully-qualified name** (i.e., ``.``-delimited string unambiguously
identifying) of the passed object if this object defines either the
``__qualname__`` or ``__name__`` dunder attributes *or* raise an exception
otherwise (i.e., if this object defines *no* such attributes).
Specifically, this name comprises (in order):
#. If this object is transitively declared by a module, the absolute name
of that module.
#. If this object is transitively declared by another object (e.g., class,
callable) and thus nested in that object, the unqualified basenames of
all parent objects transitively declaring this object in that module.
#. Unqualified basename of this object.
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
str
Fully-qualified name of this object.
Raises
------
_BeartypeUtilObjectNameException
If this object defines neither ``__qualname__`` *nor* ``__name__``
dunder attributes.
'''
# Avoid circular import dependencies.
from beartype._cave._cavefast import CallableOrClassTypes
from beartype._util.module.utilmodget import (
get_object_module_name_or_none,
get_object_type_module_name_or_none,
)
# Lexically scoped name of this object excluding this module name if this
# object is named *OR* raise an exception otherwise.
object_scopes_name = get_object_basename_scoped(obj)
# Fully-qualified name of the module declaring this object if this object
# is declared by a module *OR* "None" otherwise, specifically defined as:
# * If this object is either a callable or class, the fully-qualified name
# of the module declaring this object.
# * Else, the fully-qualified name of the module declaring the class of this
# object.
object_module_name = (
get_object_module_name_or_none(obj)
if isinstance(obj, CallableOrClassTypes) else
get_object_type_module_name_or_none(obj)
)
# Return either...
return (
# If this module name exists, "."-delimited concatenation of this module
# and object name;
f'{object_module_name}.{object_scopes_name}'
if object_module_name is not None else
# Else, this object name as is.
object_scopes_name
)
# ....................{ GETTERS ~ basename }....................
def get_object_basename_scoped(obj: Any) -> str:
'''
**Lexically scoped name** (i.e., ``.``-delimited string unambiguously
identifying all lexical scopes encapsulating) the passed object if this
object defines either the ``__qualname__`` or ``__name__`` dunder attributes
*or* raise an exception otherwise (i.e., if this object defines *no* such
attributes).
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
str
Lexically scoped name of this object.
Raises
------
_BeartypeUtilObjectNameException
If this object defines neither ``__qualname__`` *nor* ``__name__``
dunder attributes.
See Also
--------
:func:`.get_object_basename_scoped_or_none`
Further details.
'''
# Fully-qualified name of this object excluding its module name.
object_scoped_name = get_object_basename_scoped_or_none(obj)
# If this object is unnamed, raise a human-readable exception. The default
# "AttributeError" exception raised by attempting to directly access either
# the "obj.__name__" or "obj.__qualname__" attributes is sufficiently
# non-explanatory to warrant replacement by our explanatory exception.
if object_scoped_name is None:
raise _BeartypeUtilObjectNameException(
f'{repr(obj)} unnamed '
f'(i.e., declares neither "__name__" nor "__qualname__" '
f'dunder attributes).'
)
# Else, this object is named.
# Remove all "<locals>" placeholder substrings as discussed above.
return object_scoped_name.replace('<locals>.', '')
#FIXME: Unit test us up, please.
def get_object_basename_scoped_or_none(obj: Any) -> Optional[str]:
'''
**Lexically scoped name** (i.e., ``.``-delimited string unambiguously
identifying all lexical scopes encapsulating) the passed object if this
object defines either the ``__qualname__`` or ``__name__`` dunder attributes
*or* :data:`None` otherwise (i.e., if this object defines *no* such
attributes).
Specifically, this name comprises (in order):
#. If this object is transitively declared by another object (e.g., class,
callable) and thus nested in that object, the unqualified basenames of
all parent objects transitively declaring this object in that module.
For usability, these basenames intentionally omit the meaningless
placeholder ``"<locals>"`` substrings artificially injected by Python
itself into the original ``__qualname__`` instance variable underlying
this getter: e.g.,
.. code-block:: python
>>> from beartype._util.utilobject import get_object_basename_scoped
>>> def muh_func():
... def muh_closure(): pass
... return muh_closure()
>>> muh_func().__qualname__
'muh_func.<locals>.muh_closure' # <-- bad Python
>>> get_object_basename_scoped(muh_func)
'muh_func.muh_closure' # <-- good @beartype
#. Unqualified basename of this object.
Caveats
-------
**The higher-level** :func:`get_object_name` **getter should typically be
called instead of this lower-level getter.** This getter unsafely:
* Requires the passed object to declare dunder attributes *not* generally
declared by arbitrary instances of user-defined classes.
* Omits the fully-qualified name of the module transitively declaring this
object and thus fails to return fully-qualified names.
**This high-level getter should always be called in lieu of directly
accessing the low-level** ``__qualname__`` **dunder attribute on objects.**
That attribute contains one meaningless ``"<locals>"`` placeholder
substring conveying *no* meaningful semantics for each parent callable
lexically nesting this object.
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
Optional[str]
Either:
* If this object defines at least one of the ``__qualname__`` or
``__name__`` dunder attributes, the lexically scoped name of this
object.
* Else, :data:`None`.
Raises
------
_BeartypeUtilObjectNameException
If this object defines neither ``__qualname__`` *nor* ``__name__``
dunder attributes.
'''
# Fully-qualified name of this object excluding its module name as follows:
# * If this object defines the "__qualname__" dunder attribute whose value
# is the "."-delimited concatenation of the unqualified basenames of all
# parent objects transitively declaring this object, that value with all
# meaningless "<locals>" placeholder substrings removed. If this object
# is a nested non-method callable (i.e., pure-Python function nested in
# one or more parent pure-Python callables), that value contains one such
# placeholder for each parent callable containing this callable. Since
# placeholders convey no meaningful semantics, placeholders are removed.
# * Else if this object defines the "__name__" dunder attribute whose value
# is the unqualified basename of this object, that value.
# * Else, "None".
object_scoped_name = getattr(
obj, '__qualname__', getattr(
obj, '__name__', None))
# Return either...
return (
# If this name exists, all "<locals>" placeholder substrings globally
# removed from this name as discussed above;
object_scoped_name.replace('<locals>.', '')
if object_scoped_name else
# Else, either "None" or the empty string.
object_scoped_name
)
# ....................{ GETTERS ~ filename }....................
def get_object_filename_or_none(obj: object) -> Optional[str]:
'''
Filename of the module or script physically declaring the passed object if
this object is either a callable or class physically declared on-disk *or*
:data:`None` otherwise (i.e., if this object is neither a callable nor
class *or* is either a callable or class dynamically declared in-memory).
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
Optional[str]
Either:
* If this object is either a callable or class physically declared
on-disk, the filename of the module or script physically declaring
this object.
* Else, :data:`None`.
'''
# Avoid circular import dependencies.
from beartype._util.cls.utilclsget import get_type_filename_or_none
from beartype._util.func.utilfuncfile import get_func_filename_or_none
from beartype._util.func.utilfunctest import is_func_codeobjable
# Return either...
return (
# If this object is a pure-Python class, the absolute filename of the
# source module file defining that class if that class was defined
# on-disk *OR* "None" otherwise (i.e., if that class was defined
# in-memory);
get_type_filename_or_none(obj)
if isinstance(obj, type) else
# If this object is a pure-Python callable, the absolute filename of the
# absolute filename of the source module file defining that callable if
# that callable was defined on-disk *OR* "None" otherwise (i.e., if that
# callable was defined in-memory);
get_func_filename_or_none(obj)
if is_func_codeobjable(obj) else
# Else, "None".
None
)
# ....................{ GETTERS ~ type }....................
def get_object_type_unless_type(obj: object) -> type:
'''
Either the passed object if this object is a class *or* the class of this
object otherwise (i.e., if this object is *not* a class).
Note that this function *never* raises exceptions on arbitrary objects, as
the :obj:`type` builtin wisely returns itself when passed itself: e.g.,
.. code-block:: python
>>> type(type(type)) is type
True
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
type
Type of this object.
'''
return obj if isinstance(obj, type) else type(obj)
# ....................{ GETTERS ~ type : name }....................
def get_object_type_basename(obj: object) -> str:
'''
**Unqualified name** (i.e., non-``.``-delimited basename) of either the
passed object if this object is a class *or* the class of this object
otherwise (i.e., if this object is *not* a class).
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
str
Unqualified name of this class.
'''
# Elegant simplicity diminishes aggressive tendencies.
return get_object_type_unless_type(obj).__name__
def get_object_type_name(obj: object) -> str:
'''
**Fully-qualified name** (i.e., ``.``-delimited name prefixed by the
declaring module) of either passed object if this object is a class *or*
the class of this object otherwise (i.e., if this object is *not* a class).
Parameters
----------
obj : object
Object to be inspected.
Returns
-------
str
Fully-qualified name of the type of this object.
'''
# Avoid circular import dependencies.
from beartype._util.module.utilmodget import (
get_object_type_module_name_or_none)
# Type of this object.
cls = get_object_type_unless_type(obj)
# Unqualified name of this type.
cls_basename = get_object_type_basename(cls)
# Fully-qualified name of the module defining this class if this class is
# defined by a module *OR* "None" otherwise.
cls_module_name = get_object_type_module_name_or_none(cls)
# Return either...
return (
# The "."-delimited concatenation of this class basename and module
# name if this module name exists.
f'{cls_module_name}.{cls_basename}'
if cls_module_name is not None else
# This class basename as is otherwise.
cls_basename
)
|