visitor.py 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. from compiler import ast
  2. # XXX should probably rename ASTVisitor to ASTWalker
  3. # XXX can it be made even more generic?
  4. class ASTVisitor:
  5. """Performs a depth-first walk of the AST
  6. The ASTVisitor will walk the AST, performing either a preorder or
  7. postorder traversal depending on which method is called.
  8. methods:
  9. preorder(tree, visitor)
  10. postorder(tree, visitor)
  11. tree: an instance of ast.Node
  12. visitor: an instance with visitXXX methods
  13. The ASTVisitor is responsible for walking over the tree in the
  14. correct order. For each node, it checks the visitor argument for
  15. a method named 'visitNodeType' where NodeType is the name of the
  16. node's class, e.g. Class. If the method exists, it is called
  17. with the node as its sole argument.
  18. The visitor method for a particular node type can control how
  19. child nodes are visited during a preorder walk. (It can't control
  20. the order during a postorder walk, because it is called _after_
  21. the walk has occurred.) The ASTVisitor modifies the visitor
  22. argument by adding a visit method to the visitor; this method can
  23. be used to visit a child node of arbitrary type.
  24. """
  25. VERBOSE = 0
  26. def __init__(self):
  27. self.node = None
  28. self._cache = {}
  29. def default(self, node, *args):
  30. for child in node.getChildNodes():
  31. self.dispatch(child, *args)
  32. def dispatch(self, node, *args):
  33. self.node = node
  34. klass = node.__class__
  35. meth = self._cache.get(klass, None)
  36. if meth is None:
  37. className = klass.__name__
  38. meth = getattr(self.visitor, 'visit' + className, self.default)
  39. self._cache[klass] = meth
  40. ## if self.VERBOSE > 0:
  41. ## className = klass.__name__
  42. ## if self.VERBOSE == 1:
  43. ## if meth == 0:
  44. ## print "dispatch", className
  45. ## else:
  46. ## print "dispatch", className, (meth and meth.__name__ or '')
  47. return meth(node, *args)
  48. def preorder(self, tree, visitor, *args):
  49. """Do preorder walk of tree using visitor"""
  50. self.visitor = visitor
  51. visitor.visit = self.dispatch
  52. self.dispatch(tree, *args) # XXX *args make sense?
  53. class ExampleASTVisitor(ASTVisitor):
  54. """Prints examples of the nodes that aren't visited
  55. This visitor-driver is only useful for development, when it's
  56. helpful to develop a visitor incrementally, and get feedback on what
  57. you still have to do.
  58. """
  59. examples = {}
  60. def dispatch(self, node, *args):
  61. self.node = node
  62. meth = self._cache.get(node.__class__, None)
  63. className = node.__class__.__name__
  64. if meth is None:
  65. meth = getattr(self.visitor, 'visit' + className, 0)
  66. self._cache[node.__class__] = meth
  67. if self.VERBOSE > 1:
  68. print "dispatch", className, (meth and meth.__name__ or '')
  69. if meth:
  70. meth(node, *args)
  71. elif self.VERBOSE > 0:
  72. klass = node.__class__
  73. if klass not in self.examples:
  74. self.examples[klass] = klass
  75. print
  76. print self.visitor
  77. print klass
  78. for attr in dir(node):
  79. if attr[0] != '_':
  80. print "\t", "%-12.12s" % attr, getattr(node, attr)
  81. print
  82. return self.default(node, *args)
  83. # XXX this is an API change
  84. _walker = ASTVisitor
  85. def walk(tree, visitor, walker=None, verbose=None):
  86. if walker is None:
  87. walker = _walker()
  88. if verbose is not None:
  89. walker.VERBOSE = verbose
  90. walker.preorder(tree, visitor)
  91. return walker.visitor
  92. def dumpNode(node):
  93. print node.__class__
  94. for attr in dir(node):
  95. if attr[0] != '_':
  96. print "\t", "%-10.10s" % attr, getattr(node, attr)