Total Complexity | 110 |
Total Lines | 691 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Lexer often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Lexer, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
7 | class Lexer implements LexerInterface |
||
8 | { |
||
9 | protected const ENCODING = 'UTF-8'; |
||
10 | |||
11 | /** |
||
12 | * A map between punctuation character code and the corresponding token kind. |
||
13 | * |
||
14 | * @var array |
||
15 | */ |
||
16 | protected static $codeTokenKindMap = [ |
||
17 | 33 => TokenKindEnum::BANG, |
||
18 | 36 => TokenKindEnum::DOLLAR, |
||
19 | 38 => TokenKindEnum::AMP, |
||
20 | 40 => TokenKindEnum::PAREN_L, |
||
21 | 41 => TokenKindEnum::PAREN_R, |
||
22 | 58 => TokenKindEnum::COLON, |
||
23 | 61 => TokenKindEnum::EQUALS, |
||
24 | 64 => TokenKindEnum::AT, |
||
25 | 91 => TokenKindEnum::BRACKET_L, |
||
26 | 93 => TokenKindEnum::BRACKET_R, |
||
27 | 123 => TokenKindEnum::BRACE_L, |
||
28 | 124 => TokenKindEnum::PIPE, |
||
29 | 125 => TokenKindEnum::BRACE_R, |
||
30 | ]; |
||
31 | |||
32 | /** |
||
33 | * The source file for this lexer. |
||
34 | * |
||
35 | * @var Source |
||
36 | */ |
||
37 | protected $source; |
||
38 | |||
39 | /** |
||
40 | * The contents of the source file. |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | protected $body; |
||
45 | |||
46 | /** |
||
47 | * The total number of characters in the source file. |
||
48 | * |
||
49 | * @var int |
||
50 | */ |
||
51 | protected $bodyLength; |
||
52 | |||
53 | /** |
||
54 | * The options for this lexer. |
||
55 | * |
||
56 | * @var array |
||
57 | */ |
||
58 | protected $options = []; |
||
59 | |||
60 | /** |
||
61 | * The previously focused non-ignored token. |
||
62 | * |
||
63 | * @var Token |
||
64 | */ |
||
65 | protected $lastToken; |
||
66 | |||
67 | /** |
||
68 | * The currently focused non-ignored token. |
||
69 | * |
||
70 | * @var Token |
||
71 | */ |
||
72 | protected $token; |
||
73 | |||
74 | /** |
||
75 | * The current position. |
||
76 | * |
||
77 | * @var int |
||
78 | */ |
||
79 | protected $pos; |
||
80 | |||
81 | /** |
||
82 | * The (1-indexed) line containing the current token. |
||
83 | * |
||
84 | * @var int |
||
85 | */ |
||
86 | protected $line; |
||
87 | |||
88 | /** |
||
89 | * The character offset at which the current line begins. |
||
90 | * |
||
91 | * @var int |
||
92 | */ |
||
93 | protected $lineStart; |
||
94 | |||
95 | /** |
||
96 | * @var array |
||
97 | */ |
||
98 | protected static $charCodeCache = []; |
||
99 | |||
100 | /** |
||
101 | * Lexer constructor. |
||
102 | * @param Source|null $source |
||
103 | * @param array $options |
||
104 | */ |
||
105 | public function __construct(Source $source, array $options) |
||
117 | } |
||
118 | |||
119 | /** |
||
120 | * @inheritdoc |
||
121 | * @throws SyntaxErrorException |
||
122 | */ |
||
123 | public function advance(): Token |
||
127 | } |
||
128 | |||
129 | /** |
||
130 | * @inheritdoc |
||
131 | * @throws SyntaxErrorException |
||
132 | */ |
||
133 | public function lookahead(): Token |
||
134 | { |
||
135 | $token = $this->token; |
||
136 | |||
137 | if (TokenKindEnum::EOF !== $token->kind) { |
||
138 | do { |
||
139 | $next = $token->next = $this->readToken($token); |
||
140 | $token = $next; |
||
141 | } while (TokenKindEnum::COMMENT === $token->kind); |
||
142 | } |
||
143 | |||
144 | return $token; |
||
145 | } |
||
146 | |||
147 | /** |
||
148 | * @inheritdoc |
||
149 | */ |
||
150 | public function getOption(string $name, $default = null) |
||
151 | { |
||
152 | return $this->options[$name] ?? $default; |
||
153 | } |
||
154 | |||
155 | /** |
||
156 | * @inheritdoc |
||
157 | */ |
||
158 | public function getSource(): Source |
||
159 | { |
||
160 | return $this->source; |
||
161 | } |
||
162 | |||
163 | /** |
||
164 | * @inheritdoc |
||
165 | */ |
||
166 | public function getToken(): Token |
||
167 | { |
||
168 | return $this->token; |
||
169 | } |
||
170 | |||
171 | /** |
||
172 | * @inheritdoc |
||
173 | */ |
||
174 | public function getLastToken(): Token |
||
175 | { |
||
176 | return $this->lastToken; |
||
177 | } |
||
178 | |||
179 | /** |
||
180 | * @inheritdoc |
||
181 | */ |
||
182 | public function createSyntaxErrorException(?string $description = null): SyntaxErrorException |
||
183 | { |
||
184 | return new SyntaxErrorException( |
||
185 | $this->source, |
||
186 | $this->pos, |
||
187 | $description ?? $this->unexpectedCharacterMessage($this->readCharCode($this->pos)) |
||
188 | ); |
||
189 | } |
||
190 | |||
191 | /** |
||
192 | * Reads the token after the given token. |
||
193 | * |
||
194 | * @param Token $prev |
||
195 | * @return Token |
||
196 | * @throws SyntaxErrorException |
||
197 | */ |
||
198 | protected function readToken(Token $prev): Token |
||
199 | { |
||
200 | $this->pos = $prev->end; |
||
201 | |||
202 | $this->skipWhitespace(); |
||
203 | |||
204 | $line = $this->line; |
||
205 | $col = (1 + $this->pos) - $this->lineStart; |
||
206 | |||
207 | if ($this->pos >= $this->bodyLength) { |
||
208 | return $this->createEndOfFileToken($line, $col, $prev); |
||
209 | } |
||
210 | |||
211 | $code = $this->readCharCode($this->pos); |
||
212 | |||
213 | // Punctuation: [!$&:=@|()\[\]{}]{1} |
||
214 | if (33 === $code || 36 === $code || 38 === $code || 58 === $code || 61 === $code || 64 === $code || 124 === $code || |
||
215 | 40 === $code || 41 === $code || 91 === $code || 93 === $code || 123 === $code || 125 === $code) { |
||
216 | return $this->lexPunctuation($code, $line, $col, $prev); |
||
217 | } |
||
218 | |||
219 | // Comment: #[\u0009\u0020-\uFFFF]* |
||
220 | if (35 === $code) { |
||
221 | return $this->lexComment($line, $col, $prev); |
||
222 | } |
||
223 | |||
224 | // Int: -?(0|[1-9][0-9]*) |
||
225 | // Float: -?(0|[1-9][0-9]*)(\.[0-9]+)?((E|e)(+|-)?[0-9]+)? |
||
226 | if (45 === $code || isNumber($code)) { |
||
227 | return $this->lexNumber($code, $line, $col, $prev); |
||
228 | } |
||
229 | |||
230 | // Name: [_A-Za-z][_0-9A-Za-z]* |
||
231 | if (isAlphaNumeric($code)) { |
||
232 | return $this->lexName($line, $col, $prev); |
||
233 | } |
||
234 | |||
235 | // Spread: ... |
||
236 | if ($this->bodyLength >= 3 && $this->isSpread($code)) { |
||
237 | return $this->lexSpread($line, $col, $prev); |
||
238 | } |
||
239 | |||
240 | // String: "([^"\\\u000A\u000D]|(\\(u[0-9a-fA-F]{4}|["\\/bfnrt])))*" |
||
241 | if ($this->isString($code)) { |
||
242 | return $this->lexString($line, $col, $prev); |
||
243 | } |
||
244 | |||
245 | // Block String: """("?"?(\\"""|\\(?!=""")|[^"\\]))*""" |
||
246 | if ($this->bodyLength >= 3 && $this->isTripleQuote($code)) { |
||
247 | return $this->lexBlockString($line, $col, $prev); |
||
248 | } |
||
249 | |||
250 | throw $this->createSyntaxErrorException(); |
||
251 | } |
||
252 | |||
253 | /** |
||
254 | * @return Token |
||
255 | */ |
||
256 | protected function createStartOfFileToken(): Token |
||
259 | } |
||
260 | |||
261 | /** |
||
262 | * Creates an End Of File (EOF) token. |
||
263 | * |
||
264 | * @param int $line |
||
265 | * @param int $col |
||
266 | * @param Token $prev |
||
267 | * @return Token |
||
268 | */ |
||
269 | protected function createEndOfFileToken(int $line, int $col, Token $prev): Token |
||
270 | { |
||
271 | return new Token(TokenKindEnum::EOF, $this->bodyLength, $this->bodyLength, $line, $col, $prev); |
||
272 | } |
||
273 | |||
274 | /** |
||
275 | * Reads a punctuation token from the source file. |
||
276 | * |
||
277 | * @param int $code |
||
278 | * @param int $line |
||
279 | * @param int $col |
||
280 | * @param Token $prev |
||
281 | * @return Token |
||
282 | * @throws SyntaxErrorException |
||
283 | */ |
||
284 | protected function lexPunctuation(int $code, int $line, int $col, Token $prev): ?Token |
||
285 | { |
||
286 | if (!isset(self::$codeTokenKindMap[$code])) { |
||
287 | throw $this->createSyntaxErrorException(); |
||
288 | } |
||
289 | |||
290 | return new Token(self::$codeTokenKindMap[$code], $this->pos, $this->pos + 1, $line, $col, $prev); |
||
291 | } |
||
292 | |||
293 | /** |
||
294 | * Reads a name token from the source file. |
||
295 | * |
||
296 | * @param int $line |
||
297 | * @param int $col |
||
298 | * @param Token $prev |
||
299 | * @return Token |
||
300 | */ |
||
301 | protected function lexName(int $line, int $col, Token $prev): Token |
||
302 | { |
||
303 | $start = $this->pos; |
||
304 | |||
305 | ++$this->pos; |
||
306 | |||
307 | while ($this->pos !== $this->bodyLength && |
||
308 | ($code = $this->readCharCode($this->pos)) !== null && |
||
309 | isAlphaNumeric($code)) { |
||
310 | ++$this->pos; |
||
311 | } |
||
312 | |||
313 | $value = sliceString($this->body, $start, $this->pos); |
||
314 | |||
315 | return new Token(TokenKindEnum::NAME, $start, $this->pos, $line, $col, $prev, $value); |
||
316 | } |
||
317 | |||
318 | /** |
||
319 | * Reads a number (int or float) token from the source file. |
||
320 | * |
||
321 | * @param int $code |
||
322 | * @param int $line |
||
323 | * @param int $col |
||
324 | * @param Token $prev |
||
325 | * @return Token |
||
326 | * @throws SyntaxErrorException |
||
327 | */ |
||
328 | protected function lexNumber(int $code, int $line, int $col, Token $prev): Token |
||
383 | ); |
||
384 | } |
||
385 | |||
386 | /** |
||
387 | * Skips digits at the current position. |
||
388 | * |
||
389 | * @param int $code |
||
390 | * @throws SyntaxErrorException |
||
391 | */ |
||
392 | protected function skipDigits(int $code): void |
||
393 | { |
||
394 | if (isNumber($code)) { |
||
395 | do { |
||
396 | $code = $this->readCharCode(++$this->pos); |
||
397 | } while (isNumber($code)); |
||
398 | |||
399 | return; |
||
400 | } |
||
401 | |||
402 | throw $this->createSyntaxErrorException( |
||
403 | \sprintf('Invalid number, expected digit but got: %s.', printCharCode($code)) |
||
404 | ); |
||
405 | } |
||
406 | |||
407 | /** |
||
408 | * Reads a comment token from the source file. |
||
409 | * |
||
410 | * @param int $line |
||
411 | * @param int $col |
||
412 | * @param Token $prev |
||
413 | * @return Token |
||
414 | */ |
||
415 | protected function lexComment(int $line, int $col, Token $prev): Token |
||
416 | { |
||
417 | $start = $this->pos; |
||
418 | |||
419 | do { |
||
420 | $code = $this->readCharCode(++$this->pos); |
||
421 | } while ($code !== null && ($code > 0x001f || 0x0009 === $code)); // SourceCharacter but not LineTerminator |
||
422 | |||
423 | return new Token( |
||
424 | TokenKindEnum::COMMENT, |
||
425 | $start, |
||
426 | $this->pos, |
||
427 | $line, |
||
428 | $col, |
||
429 | $prev, |
||
430 | sliceString($this->body, $start + 1, $this->pos) |
||
431 | ); |
||
432 | } |
||
433 | |||
434 | /** |
||
435 | * Reads a spread token from the source. |
||
436 | * |
||
437 | * @param int $line |
||
438 | * @param int $col |
||
439 | * @param Token $prev |
||
440 | * @return Token |
||
441 | */ |
||
442 | protected function lexSpread(int $line, int $col, Token $prev): Token |
||
443 | { |
||
444 | return new Token(TokenKindEnum::SPREAD, $this->pos, $this->pos + 3, $line, $col, $prev); |
||
445 | } |
||
446 | |||
447 | /** |
||
448 | * Reads a string token from the source. |
||
449 | * |
||
450 | * @param int $line |
||
451 | * @param int $col |
||
452 | * @param Token $prev |
||
453 | * @return Token |
||
454 | * @throws SyntaxErrorException |
||
455 | */ |
||
456 | protected function lexString(int $line, int $col, Token $prev): Token |
||
457 | { |
||
458 | $start = $this->pos; |
||
459 | $chunkStart = ++$this->pos; // skip the quote |
||
460 | $value = ''; |
||
461 | |||
462 | while ($this->pos < $this->bodyLength && |
||
463 | ($code = $this->readCharCode($this->pos)) !== null && !isLineTerminator($code)) { |
||
464 | // Closing Quote (") |
||
465 | if (34 === $code) { |
||
466 | $value .= sliceString($this->body, $chunkStart, $this->pos); |
||
467 | return new Token(TokenKindEnum::STRING, $start, $this->pos + 1, $line, $col, $prev, $value); |
||
468 | } |
||
469 | |||
470 | if (isSourceCharacter($code)) { |
||
471 | throw $this->createSyntaxErrorException( |
||
472 | \sprintf('Invalid character within String: %s.', printCharCode($code)) |
||
473 | ); |
||
474 | } |
||
475 | |||
476 | ++$this->pos; |
||
477 | |||
478 | if (92 === $code) { |
||
479 | // \ |
||
480 | $value .= sliceString($this->body, $chunkStart, $this->pos - 1); |
||
481 | |||
482 | $code = $this->readCharCode($this->pos); |
||
483 | |||
484 | switch ($code) { |
||
485 | case 34: // " |
||
486 | $value .= '"'; |
||
487 | break; |
||
488 | case 47: // / |
||
489 | $value .= '/'; |
||
490 | break; |
||
491 | case 92: // \ |
||
492 | $value .= '\\'; |
||
493 | break; |
||
494 | case 98: // b |
||
495 | $value .= '\b'; |
||
496 | break; |
||
497 | case 102: // f |
||
498 | $value .= '\f'; |
||
499 | break; |
||
500 | case 110: // n |
||
501 | $value .= '\n'; |
||
502 | break; |
||
503 | case 114: // r |
||
504 | $value .= '\r'; |
||
505 | break; |
||
506 | case 116: // t |
||
507 | $value .= '\t'; |
||
508 | break; |
||
509 | case 117: // u |
||
510 | $unicodeString = sliceString($this->body, $this->pos + 1, $this->pos + 5); |
||
511 | |||
512 | if (!\preg_match('/[0-9A-Fa-f]{4}/', $unicodeString)) { |
||
513 | throw $this->createSyntaxErrorException( |
||
514 | \sprintf('Invalid character escape sequence: \\u%s.', $unicodeString) |
||
515 | ); |
||
516 | } |
||
517 | |||
518 | $value .= '\\u' . $unicodeString; |
||
519 | $this->pos += 4; |
||
520 | |||
521 | break; |
||
522 | default: |
||
523 | throw $this->createSyntaxErrorException( |
||
524 | \sprintf('Invalid character escape sequence: \\%s.', \chr($code)) |
||
525 | ); |
||
526 | } |
||
527 | |||
528 | ++$this->pos; |
||
529 | |||
530 | $chunkStart = $this->pos; |
||
531 | } |
||
532 | } |
||
533 | |||
534 | throw $this->createSyntaxErrorException('Unterminated string.'); |
||
535 | } |
||
536 | |||
537 | /** |
||
538 | * Reads a block string token from the source file. |
||
539 | * |
||
540 | * @param int $line |
||
541 | * @param int $col |
||
542 | * @param Token $prev |
||
543 | * @return Token |
||
544 | * @throws SyntaxErrorException |
||
545 | */ |
||
546 | protected function lexBlockString(int $line, int $col, Token $prev): Token |
||
584 | } |
||
585 | |||
586 | /** |
||
587 | * Skips whitespace at the current position. |
||
588 | */ |
||
589 | protected function skipWhitespace(): void |
||
590 | { |
||
591 | while ($this->pos < $this->bodyLength) { |
||
592 | $code = $this->readCharCode($this->pos); |
||
593 | |||
594 | if (9 === $code || 32 === $code || 44 === $code || 0xfeff === $code) { |
||
595 | // tab | space | comma | BOM |
||
596 | ++$this->pos; |
||
597 | } elseif (10 === $code) { |
||
598 | // new line (\n) |
||
599 | ++$this->pos; |
||
600 | ++$this->line; |
||
601 | $this->lineStart = $this->pos; |
||
602 | } elseif (13 === $code) { |
||
603 | // carriage return (\r) |
||
604 | if (10 === $this->readCharCode($this->pos + 1)) { |
||
605 | // carriage return and new line (\r\n) |
||
606 | $this->pos += 2; |
||
607 | } else { |
||
608 | ++$this->pos; |
||
609 | } |
||
610 | ++$this->line; |
||
611 | $this->lineStart = $this->pos; |
||
612 | } else { |
||
613 | break; |
||
614 | } |
||
615 | } |
||
616 | } |
||
617 | |||
618 | /** |
||
619 | * @param int $pos |
||
620 | * @return int |
||
621 | */ |
||
622 | protected function readCharCode(int $pos): int |
||
635 | } |
||
636 | |||
637 | /** |
||
638 | * Report a message that an unexpected character was encountered. |
||
639 | * |
||
640 | * @param int $code |
||
641 | * @return string |
||
642 | */ |
||
643 | protected function unexpectedCharacterMessage(int $code): string |
||
644 | { |
||
645 | if (isSourceCharacter($code) && !isLineTerminator($code)) { |
||
646 | return \sprintf('Cannot contain the invalid character %s.', printCharCode($code)); |
||
647 | } |
||
648 | |||
649 | if ($code === 39) { |
||
650 | // ' |
||
651 | return 'Unexpected single quote character (\'), did you mean to use a double quote (")?'; |
||
652 | } |
||
653 | |||
654 | return \sprintf('Cannot parse the unexpected character %s.', printCharCode($code)); |
||
655 | } |
||
656 | |||
657 | /** |
||
658 | * @param int $code |
||
659 | * @return bool |
||
660 | */ |
||
661 | protected function isSpread(int $code): bool |
||
662 | { |
||
663 | return 46 === $code && |
||
664 | $this->readCharCode($this->pos + 1) === 46 && |
||
665 | $this->readCharCode($this->pos + 2) === 46; // ... |
||
666 | } |
||
667 | |||
668 | /** |
||
669 | * @param int $code |
||
670 | * @return bool |
||
671 | */ |
||
672 | protected function isString(int $code): bool |
||
673 | { |
||
674 | return 34 === $code && $this->readCharCode($this->pos + 1) !== 34; |
||
675 | } |
||
676 | |||
677 | /** |
||
678 | * @param int $code |
||
679 | * @return bool |
||
680 | */ |
||
681 | protected function isTripleQuote(int $code): bool |
||
682 | { |
||
683 | return 34 === $code && |
||
684 | 34 === $this->readCharCode($this->pos + 1) && |
||
685 | 34 === $this->readCharCode($this->pos + 2); // """ |
||
686 | } |
||
687 | |||
688 | /** |
||
689 | * @param int $code |
||
690 | * @return bool |
||
691 | */ |
||
692 | protected function isEscapedTripleQuote(int $code): bool |
||
698 | } |
||
699 | } |
||
700 |