-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathAbstractParseTreeVisitor.php
155 lines (140 loc) · 5.56 KB
/
AbstractParseTreeVisitor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
declare(strict_types=1);
namespace Antlr\Antlr4\Runtime\Tree;
/**
* @template T
*
* @implements ParseTreeVisitor<T|null>
*/
class AbstractParseTreeVisitor implements ParseTreeVisitor
{
/**
* {@inheritdoc}
*
* The default implementation calls {@see ParseTree::accept()} on the specified tree.
*/
public function visit(ParseTree $tree): mixed
{
return $tree->accept($this);
}
/**
* {@inheritdoc}
*
* The default implementation initializes the aggregate result to
* {@see AbstractParseTreeVisitor::defaultResult()}. Before visiting each
* child, it calls {@see AbstractParseTreeVisitor::shouldVisitNextChild()};
* if the result is `false` no more children are visited and the current
* aggregate result is returned. After visiting a child, the aggregate
* result is updated by calling {@see AbstractParseTreeVisitor::aggregateResult()}
* with the previous aggregate result and the result of visiting the child.
*
* The default implementation is not safe for use in visitors that modify
* the tree structure. Visitors that modify the tree should override this
* method to behave properly in respect to the specific algorithm in use.
*/
public function visitChildren(RuleNode $node): mixed
{
$result = $this->defaultResult();
$n = $node->getChildCount();
for ($i = 0; $i < $n; $i++) {
if (!$this->shouldVisitNextChild($node, $result)) {
break;
}
/** @var ParseTree $child */
$child = $node->getChild($i);
$childResult = $child->accept($this);
$result = $this->aggregateResult($result, $childResult);
}
return $result;
}
/**
* {@inheritdoc}
*
* The default implementation returns the result of
* {@see AbstractParseTreeVisitor::defaultResult()}.
*/
public function visitTerminal(TerminalNode $node): mixed
{
return $this->defaultResult();
}
/**
* {@inheritdoc}
*
* The default implementation returns the result of
* {@see AbstractParseTreeVisitor::defaultResult()}.
*/
public function visitErrorNode(ErrorNode $tree): mixed
{
return $this->defaultResult();
}
/**
* Gets the default value returned by visitor methods. This value is
* returned by the default implementations of
* {@see AbstractParseTreeVisitor::visitTerminal()},
* {@see AbstractParseTreeVisitor::visitErrorNode()}.
* The default implementation of {@see AbstractParseTreeVisitor::visitChildren()}
* initializes its aggregate result to this value.
*
* The base implementation returns `null`.
*
* @return T|null
*/
protected function defaultResult(): mixed
{
return null;
}
/**
* Aggregates the results of visiting multiple children of a node. After
* either all children are visited or
* {@see AbstractParseTreeVisitor::shouldVisitNextChild()} returns `false`,
* the aggregate value is returned as the result of
* {@see AbstractParseTreeVisitor::visitChildren()}.
*
* The default implementation returns `nextResult`, meaning
* {@see AbstractParseTreeVisitor::visitChildren()} will return the result
* of the last child visited (or return the initial value if the node has
* no children).
*
* @param T|null $aggregate The previous aggregate value. In the default
* implementation, the aggregate value is initialized
* to {@see AbstractParseTreeVisitor::defaultResult()},
* which is passed as the `aggregate` argument to
* this method after the first child node is visited.
* @param T|null $nextResult The result of the immediately preceeding call to
* visit a child node.
*
* @return T|null
*/
protected function aggregateResult(mixed $aggregate, mixed $nextResult): mixed
{
return $nextResult;
}
/**
* This method is called after visiting each child in
* {@see AbstractParseTreeVisitor::visitChildren()}. This method is first
* called before the first child is visited; at that point `currentResult`
* will be the initial value (in the default implementation, the initial
* value is returned by a call to {@see AbstractParseTreeVisitor::defaultResult()}.
* This method is not called after the last child is visited.
*
* The default implementation always returns `true`, indicating that
* `visitChildren` should only return after all children are visited.
* One reason to override this method is to provide a "short circuit"
* evaluation option for situations where the result of visiting a single
* child has the potential to determine the result of the visit operation as
* a whole.
*
* @param RuleNode $node The {@see RuleNode} whose children are
* currently being visited.
* @param T|null $currentResult The current aggregate result of the children
* visited to the current point.
*
* @return bool `true` to continue visiting children. Otherwise return `false`
* to stop visiting children and immediately return the current
* aggregate result from {@see AbstractParseTreeVisitor::visitChildren()}.
*/
protected function shouldVisitNextChild(RuleNode $node, mixed $currentResult): bool
{
return true;
}
}