Source code for psyclone.psyir.nodes.member
# -----------------------------------------------------------------------------
# BSD 3-Clause License
#
# Copyright (c) 2020-2025, Science and Technology Facilities Council.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
# Author: A. R. Porter, STFC Daresbury Lab
# Modified by: R. W. Ford, A. B. G. Chalk and N. Nobre, STFC Daresbury Lab
# Modified by: J. Henrichs, Bureau of Meteorology
# -----------------------------------------------------------------------------
''' This module contains the implementation of the Member node.'''
from psyclone.core import Signature
from psyclone.psyir.nodes.node import Node
[docs]
class Member(Node):
'''
Node representing a membership expression of a structure.
As such it is a leaf in the PSyIR tree.
:param str member_name: the name of the member of the structure that is \
being referenced.
:param parent: the parent of this node in the PSyIR tree.
:type parent: :py:class:`psyclone.psyir.nodes.StructureReference` or \
:py:class:`psyclone.psyir.nodes.Member`
:raises TypeError: if the supplied parent is of the wrong type.
'''
# Textual description of the node.
_children_valid_format = "<LeafNode>"
_text_name = "Member"
_colour = "yellow"
def __init__(self, member_name, parent=None):
# Avoid circular dependency
# pylint: disable=import-outside-toplevel
from psyclone.psyir.nodes.structure_reference import StructureReference
from psyclone.psyir.nodes.structure_member import StructureMember
# Since this node represents a membership expression of a structure,
# its parent (if supplied) *must* subclass StructureReference or
# StructureMember.
if (parent and
not isinstance(parent, (StructureReference, StructureMember))):
raise TypeError(
f"The parent of a {type(self).__name__} must be either a "
f"(ArrayOf)Structure(s)Reference or (ArrayOf)Structure(s)"
f"Member but found '{type(parent).__name__}'.")
super().__init__(parent=parent)
# Store the name of the component that this member represents
self._component_name = member_name
def __eq__(self, other):
'''
Members are assumed to be equivalent if they have the same
component name associated with them, and are the same type.
:param object other: the object to check equality to.
:returns: whether other is equal to self.
:rtype: bool
'''
is_eq = super().__eq__(other)
is_eq = is_eq and self.name == other.name
return is_eq
@property
def name(self):
'''
:returns: the name of this member.
:rtype: str
'''
return self._component_name
[docs]
def node_str(self, colour=True):
''' Create a text description of this node in the schedule, optionally
including control codes for colour.
:param bool colour: whether or not to include colour control codes.
:return: text description of this node.
:rtype: str
'''
return self.coloured_name(colour) + "[name:'" + self.name + "']"
def __str__(self):
return self.node_str(False)
[docs]
def get_signature_and_indices(self):
'''
:returns: the Signature of this member access, and a list of list of
the indices used for each component, which is empty in this case
since it is not an array access.
:rtype: tuple[:py:class:`psyclone.core.Signature`, List[List[int]]]
'''
return (Signature(self.name), [[]])
[docs]
def get_base_and_depth(self):
'''
:returns: the base Reference that contains this member and the depth
where this member is found.
:rtype: tuple[\
Optional[:py:class:`psyclone.psyir.node.StructureReference`], \
int]
'''
depth = 1
current = self
while current.parent and isinstance(current.parent, Member):
depth += 1
current = current.parent
return current.parent, depth
# For Sphinx AutoAPI documentation generation
__all__ = ['Member']