-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathUsedSymbolExtractor.php
482 lines (393 loc) · 15.9 KB
/
UsedSymbolExtractor.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<?php declare(strict_types = 1);
namespace ShipMonk\ComposerDependencyAnalyser;
use function count;
use function explode;
use function is_array;
use function ltrim;
use function strlen;
use function strpos;
use function strtolower;
use function substr;
use function token_get_all;
use const PHP_VERSION_ID;
use const T_AS;
use const T_ATTRIBUTE;
use const T_CLASS;
use const T_COMMENT;
use const T_CONST;
use const T_CURLY_OPEN;
use const T_DOC_COMMENT;
use const T_DOLLAR_OPEN_CURLY_BRACES;
use const T_DOUBLE_COLON;
use const T_ENUM;
use const T_FUNCTION;
use const T_INSTEADOF;
use const T_INTERFACE;
use const T_NAME_FULLY_QUALIFIED;
use const T_NAME_QUALIFIED;
use const T_NAMESPACE;
use const T_NEW;
use const T_NS_SEPARATOR;
use const T_NULLSAFE_OBJECT_OPERATOR;
use const T_OBJECT_OPERATOR;
use const T_STRING;
use const T_TRAIT;
use const T_USE;
use const T_WHITESPACE;
// phpcs:disable Squiz.PHP.CommentedOutCode.Found
class UsedSymbolExtractor
{
/**
* @var list<array{int, string, int}|string>
*/
private $tokens;
/**
* @var int
*/
private $numTokens;
/**
* @var int
*/
private $pointer = 0;
public function __construct(string $code)
{
$this->tokens = token_get_all($code);
$this->numTokens = count($this->tokens);
}
/**
* It does not produce any local names in current namespace
* - this results in very limited functionality in files without namespace
*
* @param array<string, SymbolKind::*> $extensionSymbols
* @return array<SymbolKind::*, array<string, list<int>>>
* @license Inspired by https://github.com/doctrine/annotations/blob/2.0.0/lib/Doctrine/Common/Annotations/TokenParser.php
*/
public function parseUsedSymbols(
array $extensionSymbols
): array
{
$usedSymbols = [];
$useStatements = [];
$useStatementKinds = [];
$level = 0; // {, }, {$, ${
$squareLevel = 0; // [, ], #[
$inGlobalScope = true;
$inClassLevel = null;
$inAttributeSquareLevel = null;
$numTokens = $this->numTokens;
$tokens = $this->tokens;
while ($this->pointer < $numTokens) {
$token = $tokens[$this->pointer++];
if (is_array($token)) {
switch ($token[0]) {
case T_CLASS:
case T_INTERFACE:
case T_TRAIT:
case PHP_VERSION_ID >= 80100 ? T_ENUM : -1:
$inClassLevel = $level + 1;
break;
case T_USE:
if ($inClassLevel === null) {
foreach ($this->parseUseStatement() as $alias => [$fullSymbolName, $symbolKind]) {
$useStatements[$alias] = $this->normalizeBackslash($fullSymbolName);
$useStatementKinds[$alias] = $symbolKind;
}
}
break;
case PHP_VERSION_ID > 80000 ? T_ATTRIBUTE : -1:
$inAttributeSquareLevel = ++$squareLevel;
break;
case PHP_VERSION_ID >= 80000 ? T_NAMESPACE : -1:
// namespace change
$inGlobalScope = false;
$useStatements = [];
$useStatementKinds = [];
break;
case PHP_VERSION_ID >= 80000 ? T_NAME_FULLY_QUALIFIED : -1:
$symbolName = $this->normalizeBackslash($token[1]);
$lowerSymbolName = strtolower($symbolName);
$kind = $extensionSymbols[$lowerSymbolName] ?? $this->getFqnSymbolKind($this->pointer - 2, $this->pointer, $inAttributeSquareLevel !== null);
$usedSymbols[$kind][$symbolName][] = $token[2];
break;
case PHP_VERSION_ID >= 80000 ? T_NAME_QUALIFIED : -1:
[$neededAlias] = explode('\\', $token[1], 2);
if (isset($useStatements[$neededAlias])) {
$symbolName = $useStatements[$neededAlias] . substr($token[1], strlen($neededAlias));
} elseif ($inGlobalScope) {
$symbolName = $token[1];
} else {
break;
}
$lowerSymbolName = strtolower($symbolName);
$kind = $extensionSymbols[$lowerSymbolName] ?? $this->getFqnSymbolKind($this->pointer - 2, $this->pointer, $inAttributeSquareLevel !== null);
$usedSymbols[$kind][$symbolName][] = $token[2];
break;
case PHP_VERSION_ID >= 80000 ? T_STRING : -1:
$name = $token[1];
$lowerName = strtolower($name);
$pointerBeforeName = $this->pointer - 2;
$pointerAfterName = $this->pointer;
if (!$this->canBeSymbolName($pointerBeforeName, $pointerAfterName)) {
break;
}
if (isset($useStatements[$name])) {
$symbolName = $useStatements[$name];
$kind = $useStatementKinds[$name];
$usedSymbols[$kind][$symbolName][] = $token[2];
} elseif (isset($extensionSymbols[$lowerName])) {
$symbolName = $name;
$kind = $extensionSymbols[$lowerName];
if (!$inGlobalScope && $kind === SymbolKind::CLASSLIKE) {
break; // cannot use class-like symbols in non-global scope when not imported
}
$usedSymbols[$kind][$symbolName][] = $token[2];
}
break;
case PHP_VERSION_ID < 80000 ? T_NAMESPACE : -1:
$this->pointer++;
$nextName = $this->parseNameForOldPhp();
if (substr($nextName, 0, 1) !== '\\') { // not a namespace-relative name, but a new namespace declaration
// namespace change
$inGlobalScope = false;
$useStatements = [];
$useStatementKinds = [];
}
break;
case PHP_VERSION_ID < 80000 ? T_NS_SEPARATOR : -1:
$pointerBeforeName = $this->pointer - 2;
$symbolName = $this->normalizeBackslash($this->parseNameForOldPhp());
$lowerSymbolName = strtolower($symbolName);
if ($symbolName !== '') { // e.g. \array (NS separator followed by not-a-name)
$kind = $extensionSymbols[$lowerSymbolName] ?? $this->getFqnSymbolKind($pointerBeforeName, $this->pointer - 1, false);
$usedSymbols[$kind][$symbolName][] = $token[2];
}
break;
case PHP_VERSION_ID < 80000 ? T_STRING : -1:
$pointerBeforeName = $this->pointer - 2;
$name = $this->parseNameForOldPhp();
$lowerName = strtolower($name);
$pointerAfterName = $this->pointer - 1;
if (!$this->canBeSymbolName($pointerBeforeName, $pointerAfterName)) {
break;
}
if (isset($useStatements[$name])) { // unqualified name
$symbolName = $useStatements[$name];
$kind = $useStatementKinds[$name];
$usedSymbols[$kind][$symbolName][] = $token[2];
} elseif (isset($extensionSymbols[$lowerName])) {
$symbolName = $name;
$kind = $extensionSymbols[$lowerName];
if (!$inGlobalScope && $kind === SymbolKind::CLASSLIKE) {
break; // cannot use class-like symbols in non-global scope when not imported
}
$usedSymbols[$kind][$symbolName][] = $token[2];
} else {
[$neededAlias] = explode('\\', $name, 2);
if (isset($useStatements[$neededAlias])) { // qualified name
$symbolName = $useStatements[$neededAlias] . substr($name, strlen($neededAlias));
$kind = $this->getFqnSymbolKind($pointerBeforeName, $pointerAfterName, false);
$usedSymbols[$kind][$symbolName][] = $token[2];
} elseif ($inGlobalScope && strpos($name, '\\') !== false) {
$symbolName = $name;
$kind = $this->getFqnSymbolKind($pointerBeforeName, $pointerAfterName, false);
$usedSymbols[$kind][$symbolName][] = $token[2];
}
}
break;
case T_CURLY_OPEN:
case T_DOLLAR_OPEN_CURLY_BRACES:
$level++;
break;
}
} elseif ($token === '{') {
$level++;
} elseif ($token === '}') {
if ($level === $inClassLevel) {
$inClassLevel = null;
}
$level--;
} elseif ($token === '[') {
$squareLevel++;
} elseif ($token === ']') {
if ($squareLevel === $inAttributeSquareLevel) {
$inAttributeSquareLevel = null;
}
$squareLevel--;
}
}
return $usedSymbols;
}
/**
* See old behaviour: https://wiki.php.net/rfc/namespaced_names_as_token
*/
private function parseNameForOldPhp(): string
{
$this->pointer--; // we already detected start token above
$name = '';
while ($this->pointer < $this->numTokens) {
$token = $this->tokens[$this->pointer++];
if (!is_array($token) || ($token[0] !== T_STRING && $token[0] !== T_NS_SEPARATOR)) {
break;
}
$name .= $token[1];
}
return $name;
}
/**
* @return array<string, array{string, SymbolKind::*}>
*/
private function parseUseStatement(): array
{
$groupRoot = '';
$class = '';
$alias = '';
$statements = [];
$kind = SymbolKind::CLASSLIKE;
$explicitAlias = false;
$kindFrozen = false;
while ($this->pointer < $this->numTokens) {
$token = $this->tokens[$this->pointer++];
if (is_array($token)) {
switch ($token[0]) {
case T_STRING:
$alias = $token[1];
if (!$explicitAlias) {
$class .= $alias;
}
break;
case PHP_VERSION_ID >= 80000 ? T_NAME_QUALIFIED : -1:
case PHP_VERSION_ID >= 80000 ? T_NAME_FULLY_QUALIFIED : -1:
$class .= $token[1];
$classSplit = explode('\\', $token[1]);
$alias = $classSplit[count($classSplit) - 1];
break;
case T_FUNCTION:
$kind = SymbolKind::FUNCTION;
break;
case T_CONST:
$kind = SymbolKind::CONSTANT;
break;
case T_NS_SEPARATOR:
$class .= '\\';
$alias = '';
break;
case T_AS:
$explicitAlias = true;
$alias = '';
break;
case T_WHITESPACE:
case T_COMMENT:
case T_DOC_COMMENT:
break;
default:
break 2;
}
} elseif ($token === ',') {
$statements[$alias] = [$groupRoot . $class, $kind];
if (!$kindFrozen) {
$kind = SymbolKind::CLASSLIKE;
}
$class = '';
$alias = '';
$explicitAlias = false;
} elseif ($token === ';') {
$statements[$alias] = [$groupRoot . $class, $kind];
break;
} elseif ($token === '{') {
$kindFrozen = ($kind === SymbolKind::FUNCTION || $kind === SymbolKind::CONSTANT);
$groupRoot = $class;
$class = '';
} elseif ($token === '}') {
continue;
} else {
break;
}
}
return $statements;
}
private function normalizeBackslash(string $class): string
{
return ltrim($class, '\\');
}
/**
* @return SymbolKind::CLASSLIKE|SymbolKind::FUNCTION
*/
private function getFqnSymbolKind(
int $pointerBeforeName,
int $pointerAfterName,
bool $inAttribute
): int
{
if ($inAttribute) {
return SymbolKind::CLASSLIKE;
}
$tokenBeforeName = $this->getTokenBefore($pointerBeforeName);
$tokenAfterName = $this->getTokenAfter($pointerAfterName);
if (
$tokenAfterName === '('
&& $tokenBeforeName[0] !== T_NEW // eliminate new \ClassName(
) {
return SymbolKind::FUNCTION;
}
return SymbolKind::CLASSLIKE; // constant may fall here, this is eliminated later
}
private function canBeSymbolName(
int $pointerBeforeName,
int $pointerAfterName
): bool
{
$tokenBeforeName = $this->getTokenBefore($pointerBeforeName);
$tokenAfterName = $this->getTokenAfter($pointerAfterName);
if (
$tokenBeforeName[0] === T_DOUBLE_COLON
|| $tokenBeforeName[0] === T_INSTEADOF
|| $tokenBeforeName[0] === T_AS
|| $tokenBeforeName[0] === T_FUNCTION
|| $tokenBeforeName[0] === T_OBJECT_OPERATOR
|| $tokenBeforeName[0] === T_NAMESPACE
|| $tokenBeforeName[0] === (PHP_VERSION_ID > 80000 ? T_NULLSAFE_OBJECT_OPERATOR : -1)
|| $tokenAfterName[0] === T_INSTEADOF
|| $tokenAfterName[0] === T_AS
|| $tokenAfterName === ':'
) {
return false;
}
return true;
}
/**
* @return array{int, string}|string
*/
private function getTokenBefore(int $pointer)
{
do {
$token = $this->tokens[$pointer];
if (!is_array($token)) {
break;
}
if ($token[0] === T_WHITESPACE || $token[0] === T_COMMENT || $token[0] === T_DOC_COMMENT) {
$pointer--;
continue;
}
break;
} while ($pointer >= 0);
return $token;
}
/**
* @return array{int, string}|string
*/
private function getTokenAfter(int $pointer)
{
do {
$token = $this->tokens[$pointer];
if (!is_array($token)) {
break;
}
if ($token[0] === T_WHITESPACE || $token[0] === T_COMMENT || $token[0] === T_DOC_COMMENT) {
$pointer++;
continue;
}
break;
} while ($pointer < $this->numTokens);
return $token;
}
}