-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathRecognizer.php
229 lines (183 loc) · 6.03 KB
/
Recognizer.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?php
declare(strict_types=1);
namespace Antlr\Antlr4\Runtime;
use Antlr\Antlr4\Runtime\Atn\ATN;
use Antlr\Antlr4\Runtime\Atn\ATNSimulator;
use Antlr\Antlr4\Runtime\Error\Exceptions\RecognitionException;
use Antlr\Antlr4\Runtime\Error\Listeners\ANTLRErrorListener;
use Antlr\Antlr4\Runtime\Error\Listeners\ProxyErrorListener;
abstract class Recognizer
{
public const EOF = -1;
/** @var array<string> */
public array $log = [];
/** @var array<string, array<string, int>> */
private static array $tokenTypeMapCache = [];
/** @var array<ANTLRErrorListener> */
private array $listeners;
protected ?ATNSimulator $interp = null;
private int $stateNumber = -1;
public function __construct()
{
$this->listeners = [];
}
/**
* Get the vocabulary used by the recognizer.
*
* @return Vocabulary A {@see Vocabulary} instance providing information
* about the vocabulary used by the grammar.
*/
abstract public function getVocabulary(): Vocabulary;
/**
* Get a map from token names to token types.
*
* Used for XPath and tree pattern compilation.
*
* @return array<string, int>
*/
public function getTokenTypeMap(): array
{
$vocabulary = $this->getVocabulary();
$key = \spl_object_hash($vocabulary);
$result = self::$tokenTypeMapCache[$key] ?? null;
if ($result === null) {
$result = [];
for ($i = 0; $i <= $this->getATN()->maxTokenType; $i++) {
$literalName = $vocabulary->getLiteralName($i);
if ($literalName !== null) {
$result[$literalName] = $i;
}
$symbolicName = $vocabulary->getSymbolicName($i);
if ($symbolicName !== null) {
$result[$symbolicName] = $i;
}
}
$result['EOF'] = Token::EOF;
self::$tokenTypeMapCache[$key] = $result;
}
return $result;
}
/**
* Get a map from rule names to rule indexes.
*
* Used for XPath and tree pattern compilation.
*
* @return array<string, int>
*/
public function getRuleIndexMap(): array
{
return \array_flip($this->getRuleNames());
}
public function getTokenType(string $tokenName): int
{
$map = $this->getTokenTypeMap();
return $map[$tokenName] ?? Token::INVALID_TYPE;
}
/**
* If this recognizer was generated, it will have a serialized ATN
* representation of the grammar. For interpreters, we don't know
* their serialized ATN despite having created the interpreter from it.
*
* @return array<int>
*/
public function getSerializedATN(): array
{
throw new \InvalidArgumentException('there is no serialized ATN');
}
/**
* Get the ATN interpreter used by the recognizer for prediction.
*
* @return ATNSimulator|null The ATN interpreter used by the recognizer
* for prediction.
*/
public function getInterpreter(): ?ATNSimulator
{
return $this->interp;
}
protected function interpreter(): ATNSimulator
{
if ($this->interp === null) {
throw new \LogicException('Unexpected null interpreter.');
}
return $this->interp;
}
/**
* Set the ATN interpreter used by the recognizer for prediction.
*
* @param ATNSimulator|null $interpreter The ATN interpreter used
* by the recognizer for prediction.
*/
public function setInterpreter(?ATNSimulator $interpreter): void
{
$this->interp = $interpreter;
}
/**
* What is the error header, normally line/character position information?
*/
public function getErrorHeader(RecognitionException $e): string
{
$token = $e->getOffendingToken();
if ($token === null) {
return '';
}
return \sprintf('line %d:%d', $token->getLine(), $token->getCharPositionInLine());
}
public function addErrorListener(ANTLRErrorListener $listener): void
{
$this->listeners[] = $listener;
}
public function removeErrorListeners(): void
{
$this->listeners = [];
}
public function getErrorListenerDispatch(): ANTLRErrorListener
{
return new ProxyErrorListener($this->listeners);
}
/**
* Subclass needs to override these if there are sempreds or actions
* that the ATN interp needs to execute
*/
public function sempred(?RuleContext $localctx, int $ruleIndex, int $actionIndex): bool
{
return true;
}
public function precpred(RuleContext $localctx, int $precedence): bool
{
return true;
}
public function action(?RuleContext $localctx, int $ruleIndex, int $actionIndex): void
{
// Overridden by subclasses
}
public function getState(): int
{
return $this->stateNumber;
}
/**
* Indicate that the recognizer has changed internal state that is
* consistent with the ATN state passed in. This way we always know
* where we are in the ATN as the parser goes along. The rule
* context objects form a stack that lets us see the stack of
* invoking rules. Combine this and we have complete ATN
* configuration information.
*/
public function setState(int $atnState): void
{
$this->stateNumber = $atnState;
}
abstract public function getInputStream(): ?IntStream;
abstract public function setInputStream(IntStream $input): void;
abstract public function getTokenFactory(): TokenFactory;
abstract public function setTokenFactory(TokenFactory $input): void;
/**
* @return array<string>
*/
abstract public function getRuleNames(): array;
/**
* Get the {@see ATN} used by the recognizer for prediction.
*
* @return ATN The {@see ATN} used by the recognizer for prediction.
*/
abstract public function getATN(): ATN;
}