# Copyright 2006 Google, Inc. All Rights Reserved.# Licensed to PSF under a Contributor Agreement."""Python parse tree definitions.This is a very concrete parse tree; we need to keep every token andeven the comments and whitespace between tokens.There's also a pattern matching implementation here."""__author__ = "Guido van Rossum <guido@python.org>"import sysfrom io import StringIOHUGE = 0x7FFFFFFF # maximum repeat count, default max_type_reprs = {}def type_repr(type_num):global _type_reprsif not _type_reprs:from .pygram import python_symbols# printing tokens is possible but not as useful# from .pgen2 import token // token.__dict__.items():for name, val in python_symbols.__dict__.items():if type(val) == int: _type_reprs[val] = namereturn _type_reprs.setdefault(type_num, type_num)class Base(object):"""Abstract base class for Node and Leaf.This provides some default functionality and boilerplate using thetemplate pattern.A node may be a subnode of at most one parent."""# Default values for instance variablestype = None # int: token number (< 256) or symbol number (>= 256)parent = None # Parent node pointer, or Nonechildren = () # Tuple of subnodeswas_changed = Falsewas_checked = Falsedef __new__(cls, *args, **kwds):"""Constructor that prevents Base from being instantiated."""assert cls is not Base, "Cannot instantiate Base"return object.__new__(cls)def __eq__(self, other):"""Compare two nodes for equality.This calls the method _eq()."""if self.__class__ is not other.__class__:return NotImplementedreturn self._eq(other)__hash__ = None # For Py3 compatibility.def _eq(self, other):"""Compare two nodes for equality.This is called by __eq__ and __ne__. It is only called if the two nodeshave the same type. This must be implemented by the concrete subclass.Nodes should be considered equal if they have the same structure,ignoring the prefix string and other context information."""raise NotImplementedErrordef clone(self):"""Return a cloned (deep) copy of self.This must be implemented by the concrete subclass."""raise NotImplementedErrordef post_order(self):"""Return a post-order iterator for the tree.This must be implemented by the concrete subclass."""raise NotImplementedErrordef pre_order(self):"""Return a pre-order iterator for the tree.This must be implemented by the concrete subclass."""raise NotImplementedErrordef replace(self, new):"""Replace this node with a new one in the parent."""assert self.parent is not None, str(self)assert new is not Noneif not isinstance(new, list):new = [new]l_children = []found = Falsefor ch in self.parent.children:if ch is self:assert not found, (self.parent.children, self, new)if new is not None:l_children.extend(new)found = Trueelse:l_children.append(ch)assert found, (self.children, self, new)self.parent.changed()self.parent.children = l_childrenfor x in new:x.parent = self.parentself.parent = Nonedef get_lineno(self):"""Return the line number which generated the invocant node."""node = selfwhile not isinstance(node, Leaf):if not node.children:returnnode = node.children[0]return node.linenodef changed(self):if self.parent:self.parent.changed()self.was_changed = Truedef remove(self):"""Remove the node from the tree. Returns the position of the node in itsparent's children before it was removed."""if self.parent:for i, node in enumerate(self.parent.children):if node is self:self.parent.changed()del self.parent.children[i]self.parent = Nonereturn i@propertydef next_sibling(self):"""The node immediately following the invocant in their parent's childrenlist. If the invocant does not have a next sibling, it is None"""if self.parent is None:return None# Can't use index(); we need to test by identityfor i, child in enumerate(self.parent.children):if child is self:try:return self.parent.children[i+1]except IndexError:return None@propertydef prev_sibling(self):"""The node immediately preceding the invocant in their parent's childrenlist. If the invocant does not have a previous sibling, it is None."""if self.parent is None:return None# Can't use index(); we need to test by identityfor i, child in enumerate(self.parent.children):if child is self:if i == 0:return Nonereturn self.parent.children[i-1]def leaves(self):for child in self.children:yield from child.leaves()def depth(self):if self.parent is None:return 0return 1 + self.parent.depth()def get_suffix(self):"""Return the string immediately following the invocant node. This iseffectively equivalent to node.next_sibling.prefix"""next_sib = self.next_siblingif next_sib is None:return ""return next_sib.prefixif sys.version_info < (3, 0):def __str__(self):return str(self).encode("ascii")class Node(Base):"""Concrete implementation for interior nodes."""def __init__(self,type, children,context=None,prefix=None,fixers_applied=None):"""Initializer.Takes a type constant (a symbol number >= 256), a sequence ofchild nodes, and an optional context keyword argument.As a side effect, the parent pointers of the children are updated."""assert type >= 256, typeself.type = typeself.children = list(children)for ch in self.children:assert ch.parent is None, repr(ch)ch.parent = selfif prefix is not None:self.prefix = prefixif fixers_applied:self.fixers_applied = fixers_applied[:]else:self.fixers_applied = Nonedef __repr__(self):"""Return a canonical string representation."""return "%s(%s, %r)" % (self.__class__.__name__,type_repr(self.type),self.children)def __unicode__(self):"""Return a pretty string representation.This reproduces the input source exactly."""return "".join(map(str, self.children))if sys.version_info > (3, 0):__str__ = __unicode__def _eq(self, other):"""Compare two nodes for equality."""return (self.type, self.children) == (other.type, other.children)def clone(self):"""Return a cloned (deep) copy of self."""return Node(self.type, [ch.clone() for ch in self.children],fixers_applied=self.fixers_applied)def post_order(self):"""Return a post-order iterator for the tree."""for child in self.children:yield from child.post_order()yield selfdef pre_order(self):"""Return a pre-order iterator for the tree."""yield selffor child in self.children:yield from child.pre_order()@propertydef prefix(self):"""The whitespace and comments preceding this node in the input."""if not self.children:return ""return self.children[0].prefix@prefix.setterdef prefix(self, prefix):if self.children:self.children[0].prefix = prefixdef set_child(self, i, child):"""Equivalent to 'node.children[i] = child'. This method also sets thechild's parent attribute appropriately."""child.parent = selfself.children[i].parent = Noneself.children[i] = childself.changed()def insert_child(self, i, child):"""Equivalent to 'node.children.insert(i, child)'. This method also setsthe child's parent attribute appropriately."""child.parent = selfself.children.insert(i, child)self.changed()def append_child(self, child):"""Equivalent to 'node.children.append(child)'. This method also sets thechild's parent attribute appropriately."""child.parent = selfself.children.append(child)self.changed()class Leaf(Base):"""Concrete implementation for leaf nodes."""# Default values for instance variables_prefix = "" # Whitespace and comments preceding this token in the inputlineno = 0 # Line where this token starts in the inputcolumn = 0 # Column where this token tarts in the inputdef __init__(self, type, value,context=None,prefix=None,fixers_applied=[]):"""Initializer.Takes a type constant (a token number < 256), a string value, and anoptional context keyword argument."""assert 0 <= type < 256, typeif context is not None:self._prefix, (self.lineno, self.column) = contextself.type = typeself.value = valueif prefix is not None:self._prefix = prefixself.fixers_applied = fixers_applied[:]def __repr__(self):"""Return a canonical string representation."""return "%s(%r, %r)" % (self.__class__.__name__,self.type,self.value)def __unicode__(self):"""Return a pretty string representation.This reproduces the input source exactly."""return self.prefix + str(self.value)if sys.version_info > (3, 0):__str__ = __unicode__def _eq(self, other):"""Compare two nodes for equality."""return (self.type, self.value) == (other.type, other.value)def clone(self):"""Return a cloned (deep) copy of self."""return Leaf(self.type, self.value,(self.prefix, (self.lineno, self.column)),fixers_applied=self.fixers_applied)def leaves(self):yield selfdef post_order(self):"""Return a post-order iterator for the tree."""yield selfdef pre_order(self):"""Return a pre-order iterator for the tree."""yield self@propertydef prefix(self):"""The whitespace and comments preceding this token in the input."""return self._prefix@prefix.setterdef prefix(self, prefix):self.changed()self._prefix = prefixdef convert(gr, raw_node):"""Convert raw node information to a Node or Leaf instance.This is passed to the parser driver which calls it whenever a reduction of agrammar rule produces a new complete node, so that the tree is buildstrictly bottom-up."""type, value, context, children = raw_nodeif children or type in gr.number2symbol:# If there's exactly one child, return that child instead of# creating a new node.if len(children) == 1:return children[0]return Node(type, children, context=context)else:return Leaf(type, value, context=context)class BasePattern(object):"""A pattern is a tree matching pattern.It looks for a specific node type (token or symbol), andoptionally for a specific content.This is an abstract base class. There are three concretesubclasses:- LeafPattern matches a single leaf node;- NodePattern matches a single node (usually non-leaf);- WildcardPattern matches a sequence of nodes of variable length."""# Defaults for instance variablestype = None # Node type (token if < 256, symbol if >= 256)content = None # Optional content matching patternname = None # Optional name used to store match in results dictdef __new__(cls, *args, **kwds):"""Constructor that prevents BasePattern from being instantiated."""assert cls is not BasePattern, "Cannot instantiate BasePattern"return object.__new__(cls)def __repr__(self):args = [type_repr(self.type), self.content, self.name]while args and args[-1] is None:del args[-1]return "%s(%s)" % (self.__class__.__name__, ", ".join(map(repr, args)))def optimize(self):"""A subclass can define this as a hook for optimizations.Returns either self or another node with the same effect."""return selfdef match(self, node, results=None):"""Does this pattern exactly match a node?Returns True if it matches, False if not.If results is not None, it must be a dict which will beupdated with the nodes matching named subpatterns.Default implementation for non-wildcard patterns."""if self.type is not None and node.type != self.type:return Falseif self.content is not None:r = Noneif results is not None:r = {}if not self._submatch(node, r):return Falseif r:results.update(r)if results is not None and self.name:results[self.name] = nodereturn Truedef match_seq(self, nodes, results=None):"""Does this pattern exactly match a sequence of nodes?Default implementation for non-wildcard patterns."""if len(nodes) != 1:return Falsereturn self.match(nodes[0], results)def generate_matches(self, nodes):"""Generator yielding all matches for this pattern.Default implementation for non-wildcard patterns."""r = {}if nodes and self.match(nodes[0], r):yield 1, rclass LeafPattern(BasePattern):def __init__(self, type=None, content=None, name=None):"""Initializer. Takes optional type, content, and name.The type, if given must be a token type (< 256). If not given,this matches any *leaf* node; the content may still be required.The content, if given, must be a string.If a name is given, the matching node is stored in the resultsdict under that key."""if type is not None:assert 0 <= type < 256, typeif content is not None:assert isinstance(content, str), repr(content)self.type = typeself.content = contentself.name = namedef match(self, node, results=None):"""Override match() to insist on a leaf node."""if not isinstance(node, Leaf):return Falsereturn BasePattern.match(self, node, results)def _submatch(self, node, results=None):"""Match the pattern's content to the node's children.This assumes the node type matches and self.content is not None.Returns True if it matches, False if not.If results is not None, it must be a dict which will beupdated with the nodes matching named subpatterns.When returning False, the results dict may still be updated."""return self.content == node.valueclass NodePattern(BasePattern):wildcards = Falsedef __init__(self, type=None, content=None, name=None):"""Initializer. Takes optional type, content, and name.The type, if given, must be a symbol type (>= 256). If thetype is None this matches *any* single node (leaf or not),except if content is not None, in which it only matchesnon-leaf nodes that also match the content pattern.The content, if not None, must be a sequence of Patterns thatmust match the node's children exactly. If the content isgiven, the type must not be None.If a name is given, the matching node is stored in the resultsdict under that key."""if type is not None:assert type >= 256, typeif content is not None:assert not isinstance(content, str), repr(content)content = list(content)for i, item in enumerate(content):assert isinstance(item, BasePattern), (i, item)if isinstance(item, WildcardPattern):self.wildcards = Trueself.type = typeself.content = contentself.name = namedef _submatch(self, node, results=None):"""Match the pattern's content to the node's children.This assumes the node type matches and self.content is not None.Returns True if it matches, False if not.If results is not None, it must be a dict which will beupdated with the nodes matching named subpatterns.When returning False, the results dict may still be updated."""if self.wildcards:for c, r in generate_matches(self.content, node.children):if c == len(node.children):if results is not None:results.update(r)return Truereturn Falseif len(self.content) != len(node.children):return Falsefor subpattern, child in zip(self.content, node.children):if not subpattern.match(child, results):return Falsereturn Trueclass WildcardPattern(BasePattern):"""A wildcard pattern can match zero or more nodes.This has all the flexibility needed to implement patterns like:.* .+ .? .{m,n}(a b c | d e | f)(...)* (...)+ (...)? (...){m,n}except it always uses non-greedy matching."""def __init__(self, content=None, min=0, max=HUGE, name=None):"""Initializer.Args:content: optional sequence of subsequences of patterns;if absent, matches one node;if present, each subsequence is an alternative [*]min: optional minimum number of times to match, default 0max: optional maximum number of times to match, default HUGEname: optional name assigned to this match[*] Thus, if content is [[a, b, c], [d, e], [f, g, h]] this isequivalent to (a b c | d e | f g h); if content is None,this is equivalent to '.' in regular expression terms.The min and max parameters work as follows:min=0, max=maxint: .*min=1, max=maxint: .+min=0, max=1: .?min=1, max=1: .If content is not None, replace the dot with the parenthesizedlist of alternatives, e.g. (a b c | d e | f g h)*"""assert 0 <= min <= max <= HUGE, (min, max)if content is not None:content = tuple(map(tuple, content)) # Protect against alterations# Check sanity of alternativesassert len(content), repr(content) # Can't have zero alternativesfor alt in content:assert len(alt), repr(alt) # Can have empty alternativesself.content = contentself.min = minself.max = maxself.name = namedef optimize(self):"""Optimize certain stacked wildcard patterns."""subpattern = Noneif (self.content is not None andlen(self.content) == 1 and len(self.content[0]) == 1):subpattern = self.content[0][0]if self.min == 1 and self.max == 1:if self.content is None:return NodePattern(name=self.name)if subpattern is not None and self.name == subpattern.name:return subpattern.optimize()if (self.min <= 1 and isinstance(subpattern, WildcardPattern) andsubpattern.min <= 1 and self.name == subpattern.name):return WildcardPattern(subpattern.content,self.min*subpattern.min,self.max*subpattern.max,subpattern.name)return selfdef match(self, node, results=None):"""Does this pattern exactly match a node?"""return self.match_seq([node], results)def match_seq(self, nodes, results=None):"""Does this pattern exactly match a sequence of nodes?"""for c, r in self.generate_matches(nodes):if c == len(nodes):if results is not None:results.update(r)if self.name:results[self.name] = list(nodes)return Truereturn Falsedef generate_matches(self, nodes):"""Generator yielding matches for a sequence of nodes.Args:nodes: sequence of nodesYields:(count, results) tuples where:count: the match comprises nodes[:count];results: dict containing named submatches."""if self.content is None:# Shortcut for special case (see __init__.__doc__)for count in range(self.min, 1 + min(len(nodes), self.max)):r = {}if self.name:r[self.name] = nodes[:count]yield count, relif self.name == "bare_name":yield self._bare_name_matches(nodes)else:# The reason for this is that hitting the recursion limit usually# results in some ugly messages about how RuntimeErrors are being# ignored. We only have to do this on CPython, though, because other# implementations don't have this nasty bug in the first place.if hasattr(sys, "getrefcount"):save_stderr = sys.stderrsys.stderr = StringIO()try:for count, r in self._recursive_matches(nodes, 0):if self.name:r[self.name] = nodes[:count]yield count, rexcept RuntimeError:# We fall back to the iterative pattern matching scheme if the recursive# scheme hits the recursion limit.for count, r in self._iterative_matches(nodes):if self.name:r[self.name] = nodes[:count]yield count, rfinally:if hasattr(sys, "getrefcount"):sys.stderr = save_stderrdef _iterative_matches(self, nodes):"""Helper to iteratively yield the matches."""nodelen = len(nodes)if 0 >= self.min:yield 0, {}results = []# generate matches that use just one alt from self.contentfor alt in self.content:for c, r in generate_matches(alt, nodes):yield c, rresults.append((c, r))# for each match, iterate down the nodeswhile results:new_results = []for c0, r0 in results:# stop if the entire set of nodes has been matchedif c0 < nodelen and c0 <= self.max:for alt in self.content:for c1, r1 in generate_matches(alt, nodes[c0:]):if c1 > 0:r = {}r.update(r0)r.update(r1)yield c0 + c1, rnew_results.append((c0 + c1, r))results = new_resultsdef _bare_name_matches(self, nodes):"""Special optimized matcher for bare_name."""count = 0r = {}done = Falsemax = len(nodes)while not done and count < max:done = Truefor leaf in self.content:if leaf[0].match(nodes[count], r):count += 1done = Falsebreakr[self.name] = nodes[:count]return count, rdef _recursive_matches(self, nodes, count):"""Helper to recursively yield the matches."""assert self.content is not Noneif count >= self.min:yield 0, {}if count < self.max:for alt in self.content:for c0, r0 in generate_matches(alt, nodes):for c1, r1 in self._recursive_matches(nodes[c0:], count+1):r = {}r.update(r0)r.update(r1)yield c0 + c1, rclass NegatedPattern(BasePattern):def __init__(self, content=None):"""Initializer.The argument is either a pattern or None. If it is None, thisonly matches an empty sequence (effectively '$' in regexlingo). If it is not None, this matches whenever the argumentpattern doesn't have any matches."""if content is not None:assert isinstance(content, BasePattern), repr(content)self.content = contentdef match(self, node):# We never match a node in its entiretyreturn Falsedef match_seq(self, nodes):# We only match an empty sequence of nodes in its entiretyreturn len(nodes) == 0def generate_matches(self, nodes):if self.content is None:# Return a match if there is an empty sequenceif len(nodes) == 0:yield 0, {}else:# Return a match if the argument pattern has no matchesfor c, r in self.content.generate_matches(nodes):returnyield 0, {}def generate_matches(patterns, nodes):"""Generator yielding matches for a sequence of patterns and nodes.Args:patterns: a sequence of patternsnodes: a sequence of nodesYields:(count, results) tuples where:count: the entire sequence of patterns matches nodes[:count];results: dict containing named submatches."""if not patterns:yield 0, {}else:p, rest = patterns[0], patterns[1:]for c0, r0 in p.generate_matches(nodes):if not rest:yield c0, r0else:for c1, r1 in generate_matches(rest, nodes[c0:]):r = {}r.update(r0)r.update(r1)yield c0 + c1, r
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。