| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- # Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
- # For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE
- # Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt
- """
- Astroid hook for the attrs library
- Without this hook pylint reports unsupported-assignment-operation
- for attrs classes
- """
- from astroid import nodes
- from astroid.brain.helpers import is_class_var
- from astroid.manager import AstroidManager
- from astroid.util import safe_infer
- ATTRIB_NAMES = frozenset(
- (
- "attr.Factory",
- "attr.ib",
- "attrib",
- "attr.attrib",
- "attr.field",
- "attrs.field",
- "field",
- )
- )
- NEW_ATTRS_NAMES = frozenset(
- (
- "attrs.define",
- "attrs.mutable",
- "attrs.frozen",
- )
- )
- ATTRS_NAMES = frozenset(
- (
- "attr.s",
- "attrs",
- "attr.attrs",
- "attr.attributes",
- "attr.define",
- "attr.mutable",
- "attr.frozen",
- *NEW_ATTRS_NAMES,
- )
- )
- def is_decorated_with_attrs(node, decorator_names=ATTRS_NAMES) -> bool:
- """Return whether a decorated node has an attr decorator applied."""
- if not node.decorators:
- return False
- for decorator_attribute in node.decorators.nodes:
- if isinstance(decorator_attribute, nodes.Call): # decorator with arguments
- decorator_attribute = decorator_attribute.func
- if decorator_attribute.as_string() in decorator_names:
- return True
- inferred = safe_infer(decorator_attribute)
- if inferred and inferred.root().name == "attr._next_gen":
- return True
- return False
- def attr_attributes_transform(node: nodes.ClassDef) -> None:
- """Given that the ClassNode has an attr decorator,
- rewrite class attributes as instance attributes
- """
- # Astroid can't infer this attribute properly
- # Prevents https://github.com/pylint-dev/pylint/issues/1884
- node.locals["__attrs_attrs__"] = [nodes.Unknown(parent=node)]
- use_bare_annotations = is_decorated_with_attrs(node, NEW_ATTRS_NAMES)
- for cdef_body_node in node.body:
- if not isinstance(cdef_body_node, (nodes.Assign, nodes.AnnAssign)):
- continue
- if isinstance(cdef_body_node.value, nodes.Call):
- if cdef_body_node.value.func.as_string() not in ATTRIB_NAMES:
- continue
- elif not use_bare_annotations:
- continue
- # Skip attributes that are explicitly annotated as class variables
- if isinstance(cdef_body_node, nodes.AnnAssign) and is_class_var(
- cdef_body_node.annotation
- ):
- continue
- targets = (
- cdef_body_node.targets
- if hasattr(cdef_body_node, "targets")
- else [cdef_body_node.target]
- )
- for target in targets:
- rhs_node = nodes.Unknown(
- lineno=cdef_body_node.lineno,
- col_offset=cdef_body_node.col_offset,
- parent=cdef_body_node,
- )
- if isinstance(target, nodes.AssignName):
- # Could be a subscript if the code analysed is
- # i = Optional[str] = ""
- # See https://github.com/pylint-dev/pylint/issues/4439
- node.locals[target.name] = [rhs_node]
- node.instance_attrs[target.name] = [rhs_node]
- def register(manager: AstroidManager) -> None:
- manager.register_transform(
- nodes.ClassDef, attr_attributes_transform, is_decorated_with_attrs
- )
|