Lichen

Annotated results.py

627:05ad7964265c
2017-02-27 Paul Boddie Merged convenience macro changes.
paul@11 1
#!/usr/bin/env python
paul@11 2
paul@11 3
"""
paul@11 4
Result abstractions.
paul@11 5
paul@510 6
Copyright (C) 2016, 2017 Paul Boddie <paul@boddie.org.uk>
paul@11 7
paul@11 8
This program is free software; you can redistribute it and/or modify it under
paul@11 9
the terms of the GNU General Public License as published by the Free Software
paul@11 10
Foundation; either version 3 of the License, or (at your option) any later
paul@11 11
version.
paul@11 12
paul@11 13
This program is distributed in the hope that it will be useful, but WITHOUT
paul@11 14
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
paul@11 15
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
paul@11 16
details.
paul@11 17
paul@11 18
You should have received a copy of the GNU General Public License along with
paul@11 19
this program.  If not, see <http://www.gnu.org/licenses/>.
paul@11 20
"""
paul@11 21
paul@27 22
from referencing import Reference
paul@27 23
paul@11 24
# Classes representing inspection and translation observations.
paul@11 25
paul@11 26
class Result:
paul@11 27
paul@11 28
    "An abstract expression result."
paul@11 29
paul@11 30
    def is_name(self):
paul@11 31
        return False
paul@118 32
paul@603 33
    def is_global_name(self):
paul@603 34
        return False
paul@603 35
paul@226 36
    def reference(self):
paul@226 37
        return None
paul@226 38
paul@552 39
    def references(self):
paul@552 40
        return None
paul@552 41
paul@554 42
    def access_location(self):
paul@553 43
        return None
paul@553 44
paul@618 45
    def context_identity(self):
paul@618 46
        return None
paul@618 47
paul@226 48
    def get_name(self):
paul@226 49
        return None
paul@226 50
paul@11 51
    def get_origin(self):
paul@11 52
        return None
paul@11 53
paul@226 54
    def static(self):
paul@118 55
        return None
paul@118 56
paul@226 57
    def final(self):
paul@226 58
        return None
paul@226 59
paul@226 60
    def has_kind(self, kinds):
paul@226 61
        return False
paul@226 62
paul@11 63
class AccessRef(Result):
paul@11 64
paul@11 65
    """
paul@11 66
    A reference to an attribute access that is generally only returned from a
paul@11 67
    processed access for possible initialiser resolution for assignments.
paul@11 68
    """
paul@11 69
paul@11 70
    def __init__(self, original_name, attrnames, number):
paul@11 71
        self.original_name = original_name
paul@11 72
        self.attrnames = attrnames
paul@11 73
        self.number = number
paul@11 74
paul@11 75
    def __repr__(self):
paul@11 76
        return "AccessRef(%r, %r, %r)" % (self.original_name, self.attrnames, self.number)
paul@11 77
paul@11 78
class InvocationRef(Result):
paul@11 79
paul@11 80
    "An invocation of a name reference."
paul@11 81
paul@11 82
    def __init__(self, name_ref):
paul@11 83
        self.name_ref = name_ref
paul@11 84
paul@27 85
    def reference(self):
paul@27 86
        origin = self.name_ref.get_origin()
paul@27 87
        if origin:
paul@27 88
            return Reference("<invoke>", origin)
paul@27 89
        else:
paul@27 90
            return Reference("<var>")
paul@27 91
paul@11 92
    def __repr__(self):
paul@11 93
        return "InvocationRef(%r)" % self.name_ref
paul@11 94
paul@11 95
class NameRef(Result):
paul@11 96
paul@11 97
    "A reference to a name."
paul@11 98
paul@603 99
    def __init__(self, name, expr=None, is_global=False):
paul@11 100
        self.name = name
paul@11 101
        self.expr = expr
paul@603 102
        self.is_global = is_global
paul@11 103
paul@11 104
    def is_name(self):
paul@11 105
        return True
paul@11 106
paul@603 107
    def is_global_name(self):
paul@603 108
        return self.is_global
paul@603 109
paul@11 110
    def final(self):
paul@11 111
        return None
paul@11 112
paul@11 113
    def __repr__(self):
paul@603 114
        return "NameRef(%r, %r, %r)" % (self.name, self.expr, self.is_global)
paul@11 115
paul@11 116
class LocalNameRef(NameRef):
paul@11 117
paul@11 118
    "A reference to a local name."
paul@11 119
paul@11 120
    def __init__(self, name, number):
paul@603 121
        NameRef.__init__(self, name, is_global=False)
paul@11 122
        self.number = number
paul@11 123
paul@11 124
    def __repr__(self):
paul@11 125
        return "LocalNameRef(%r, %r)" % (self.name, self.number)
paul@11 126
paul@317 127
class ResolvedRef:
paul@11 128
paul@317 129
    "A resolved reference mix-in."
paul@11 130
paul@552 131
    def __init__(self, ref):
paul@552 132
        self.ref = ref
paul@552 133
paul@11 134
    def reference(self):
paul@11 135
        return self.ref
paul@11 136
paul@552 137
    def references(self):
paul@552 138
        return [self.ref]
paul@552 139
paul@11 140
    def get_name(self):
paul@11 141
        return self.ref and self.ref.get_name() or None
paul@11 142
paul@11 143
    def get_origin(self):
paul@11 144
        return self.ref and self.ref.get_origin() or None
paul@11 145
paul@11 146
    def static(self):
paul@11 147
        return self.ref and self.ref.static() or None
paul@11 148
paul@11 149
    def final(self):
paul@11 150
        return self.ref and self.ref.final() or None
paul@11 151
paul@11 152
    def has_kind(self, kinds):
paul@11 153
        return self.ref and self.ref.has_kind(kinds)
paul@11 154
paul@338 155
    def is_constant_alias(self):
paul@338 156
        return self.ref and self.ref.is_constant_alias()
paul@338 157
paul@317 158
class ResolvedNameRef(ResolvedRef, NameRef):
paul@317 159
paul@317 160
    "A resolved name-based reference."
paul@317 161
paul@603 162
    def __init__(self, name, ref, expr=None, is_global=False):
paul@603 163
        NameRef.__init__(self, name, expr, is_global)
paul@552 164
        ResolvedRef.__init__(self, ref)
paul@317 165
paul@11 166
    def __repr__(self):
paul@603 167
        return "ResolvedNameRef(%r, %r, %r, %r)" % (self.name, self.ref, self.expr, self.is_global)
paul@11 168
paul@11 169
class ConstantValueRef(ResolvedNameRef):
paul@11 170
paul@11 171
    "A constant reference representing a single literal value."
paul@11 172
paul@11 173
    def __init__(self, name, ref, value, number=None):
paul@11 174
        ResolvedNameRef.__init__(self, name, ref)
paul@11 175
        self.value = value
paul@11 176
        self.number = number
paul@11 177
paul@11 178
    def __repr__(self):
paul@11 179
        return "ConstantValueRef(%r, %r, %r, %r)" % (self.name, self.ref, self.value, self.number)
paul@11 180
paul@317 181
class InstanceRef(ResolvedRef, Result):
paul@11 182
paul@11 183
    "An instance reference."
paul@11 184
paul@11 185
    def reference(self):
paul@11 186
        return self.ref
paul@11 187
paul@11 188
    def __repr__(self):
paul@11 189
        return "InstanceRef(%r)" % self.ref
paul@11 190
paul@11 191
class LiteralSequenceRef(ResolvedNameRef):
paul@11 192
paul@11 193
    "A reference representing a sequence of values."
paul@11 194
paul@11 195
    def __init__(self, name, ref, node, items=None):
paul@11 196
        ResolvedNameRef.__init__(self, name, ref)
paul@11 197
        self.node = node
paul@11 198
        self.items = items
paul@11 199
paul@11 200
    def __repr__(self):
paul@11 201
        return "LiteralSequenceRef(%r, %r, %r, %r)" % (self.name, self.ref, self.node, self.items)
paul@11 202
paul@226 203
class VariableRef(Result):
paul@226 204
paul@226 205
    "A variable reference."
paul@226 206
paul@226 207
    def __repr__(self):
paul@226 208
        return "VariableRef()"
paul@226 209
paul@11 210
# vim: tabstop=4 expandtab shiftwidth=4