-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathvisitor.php
894 lines (707 loc) · 23.1 KB
/
visitor.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
<?php
declare(strict_types = 1);
use phpDocumentor\Reflection\DocBlock;
use phpDocumentor\Reflection\DocBlock\Description;
use phpDocumentor\Reflection\DocBlock\Tags\Param;
use phpDocumentor\Reflection\DocBlock\Tags\Return_;
use phpDocumentor\Reflection\DocBlock\Tags\Var_;
use phpDocumentor\Reflection\Type;
use PhpParser\Comment\Doc;
use PhpParser\Node;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Function_;
use PhpParser\Node\Stmt\Property;
use StubsGenerator\NodeVisitor;
abstract class WithChildren
{
/**
* @var WordPressArg[]
*/
public $children = [];
public function isArrayShape(): bool
{
foreach ($this->children as $child) {
if ($child->name === null) {
return false;
}
}
return true;
}
public function isMixedShape(): bool
{
$hasStaticKey = false;
foreach ($this->children as $child) {
if ($child->name !== null) {
$hasStaticKey = true;
} elseif ($hasStaticKey) {
return true;
}
}
return false;
}
}
final class WordPressTag extends WithChildren
{
/**
* @var string
*/
public $tag;
/**
* @var string
*/
public $type;
/**
* @var ?string
*/
public $name = null;
/**
* @var ?string
*/
public $description = null;
/**
* @return string[]
*/
public function format(): array
{
if ($this->isMixedShape()) {
return [];
}
$strings = [];
$childStrings = [];
$level = 1;
if (! $this->isArrayShape()) {
$level = 0;
}
foreach ($this->children as $child) {
$childStrings = array_merge($childStrings, $child->format($level));
}
if (count($childStrings) === 0) {
return [];
}
$name = ($this->name !== null) ? (' $' . $this->name) : '';
if ($this->isArrayShape()) {
$strings[] = sprintf(
'%s %s{',
$this->tag,
$this->type
);
} else {
if (count($this->children) > 0 && count($this->children[0]->children) > 0) {
$strings[] = sprintf(
'%s %s<int|string, array{',
$this->tag,
$this->type
);
} else {
$strings[] = sprintf(
'%s array<int|string, %s>%s',
$this->tag,
$this->type,
$name
);
return $strings;
}
}
$strings = array_merge($strings, $childStrings);
$description = '';
if ($this->description !== null) {
$description = ' ' . $this->description;
}
if ($this->isArrayShape()) {
$strings[] = sprintf(
'}%s%s',
$name,
$description
);
} else {
$strings[] = sprintf(
'}>%s%s',
$name,
$description
);
}
return $strings;
}
}
final class WordPressArg extends WithChildren
{
/**
* @var string
*/
public $type;
/**
* @var bool
*/
public $optional = false;
/**
* @var ?string
*/
public $name = null;
/**
* @return string[]
*/
public function format(int $level = 1): array
{
$strings = [];
$padding = str_repeat(' ', ($level * 2));
if ($this->isMixedShape()) {
return [];
}
if (count($this->children) > 0) {
$childStrings = [];
foreach ($this->children as $child) {
$childStrings = array_merge($childStrings, $child->format($level + 1));
}
if (count($childStrings) === 0) {
return [];
}
if ($this->isArrayShape()) {
if ($this->name !== null) {
$strings[] = sprintf(
'%s%s%s: %s{',
$padding,
$this->name,
($this->optional) ? '?' : '',
$this->type
);
}
} else {
$strings[] = sprintf(
'%s%s%s: array<int|string, %s{',
$padding,
$this->name,
($this->optional) ? '?' : '',
$this->type
);
}
$strings = array_merge($strings, $childStrings);
if ($this->isArrayShape()) {
if ($this->name !== null) {
$strings[] = $padding . '},';
}
} else {
$strings[] = $padding . '}>,';
}
} else {
$strings[] = sprintf(
'%s%s%s: %s,',
$padding,
$this->name,
($this->optional) ? '?' : '',
$this->type
);
}
return $strings;
}
}
return new class extends NodeVisitor {
/**
* @var \phpDocumentor\Reflection\DocBlockFactory
*/
private $docBlockFactory;
/**
* @var ?array<string,array<int|string,string>>
*/
private $functionMap = null;
/**
* @var array<string, array<int, WordPressTag>>
*/
private $additionalTags = [];
/**
* @var array<string, array<int, string>>
*/
private $additionalTagStrings = [];
public function __construct()
{
$this->docBlockFactory = \phpDocumentor\Reflection\DocBlockFactory::createInstance();
}
public function enterNode(Node $node)
{
parent::enterNode($node);
if (!($node instanceof Function_) && !($node instanceof ClassMethod) && !($node instanceof Property) && !($node instanceof Class_)) {
return null;
}
$docComment = $node->getDocComment();
if (!($docComment instanceof Doc)) {
return null;
}
$symbolName = self::getNodeName($node);
if ($node instanceof ClassMethod) {
/** @var \PhpParser\Node\Stmt\Class_ $parent */
$parent = $this->stack[count($this->stack) - 2];
if (isset($parent->name)) {
$symbolName = sprintf(
'%1$s::%2$s',
$parent->name->name,
$node->name->name
);
}
}
$additions = $this->generateAdditionalTagsFromDoc($docComment);
$node->setAttribute('fullSymbolName', $symbolName);
if (count($additions) > 0) {
$this->additionalTags[ $symbolName ] = $additions;
}
$additions = $this->getAdditionalTagsFromMap($symbolName);
if (count($additions) > 0) {
$this->additionalTagStrings[ $symbolName ] = $additions;
}
return null;
}
private static function getNodeName(Node $node): string
{
if ($node instanceof Function_ || $node instanceof ClassMethod || ($node instanceof Class_ && $node->name instanceof Identifier)) {
\PHPStan\dumpType($node);
\PHPStan\dumpType($node->name);
return $node->name->name;
}
if ($node instanceof Property) {
return sprintf(
'property_%s',
uniqid()
);
}
return '';
}
/**
* @return Node[]
*/
public function getStubStmts(): array
{
$stmts = parent::getStubStmts();
foreach ($stmts as $stmt) {
$this->postProcessNode($stmt);
}
return $stmts;
}
private function postProcessNode(Node $node): void
{
if (isset($node->stmts) && is_array($node->stmts)) {
foreach ($node->stmts as $stmt) {
$this->postProcessNode($stmt);
}
}
if (! ($node instanceof Function_) && ! ($node instanceof ClassMethod) && ! ($node instanceof Property) && ! ($node instanceof Class_)) {
return;
}
$name = $node->getAttribute('fullSymbolName');
if ($name === null) {
return;
}
$docComment = $node->getDocComment();
if (!($docComment instanceof Doc)) {
return;
}
$newDocComment = $this->addTags($name, $docComment);
if ($newDocComment !== null) {
$node->setDocComment($newDocComment);
}
if (! isset($this->additionalTagStrings[ $name ])) {
return;
}
$docComment = $node->getDocComment();
if (!($docComment instanceof Doc)) {
return;
}
$newDocComment = $this->addStringTags($name, $docComment);
if ($newDocComment !== null) {
$node->setDocComment($newDocComment);
}
}
/**
* @return array<int, WordPressTag>
*/
private function generateAdditionalTagsFromDoc(Doc $docComment): array
{
$docCommentText = $docComment->getText();
try {
$docblock = $this->docBlockFactory->create($docCommentText);
} catch ( \RuntimeException $e ) {
return [];
} catch ( \InvalidArgumentException $e ) {
return [];
}
/** @var \phpDocumentor\Reflection\DocBlock\Tags\Param[] */
$params = $docblock->getTagsByName('param');
/** @var \phpDocumentor\Reflection\DocBlock\Tags\Return_[] */
$returns = $docblock->getTagsByName('return');
/** @var \phpDocumentor\Reflection\DocBlock\Tags\Var_[] */
$vars = $docblock->getTagsByName('var');
/** @var WordPressTag[] $additions */
$additions = [];
foreach ($params as $param) {
if (! $param instanceof Param) {
continue;
}
$addition = self::getAdditionFromParam($param);
if ($addition !== null) {
$additions[] = $addition;
}
}
foreach ($returns as $return) {
if (! $return instanceof Return_) {
continue;
}
$addition = self::getAdditionFromReturn($return);
if ($addition !== null) {
$additions[] = $addition;
}
}
foreach ($vars as $var) {
if (! $var instanceof Var_) {
continue;
}
$addition = self::getAdditionFromVar($var);
if ($addition !== null) {
$additions[] = $addition;
}
}
return $additions;
}
private function addTags(string $name, Doc $docComment): ?Doc
{
if (isset($this->additionalTags[ $name ])) {
$additions = $this->additionalTags[ $name ];
} else {
$additions = [];
}
$docCommentText = $docComment->getText();
try {
$docblock = $this->docBlockFactory->create($docCommentText);
} catch ( \RuntimeException $e ) {
return null;
} catch ( \InvalidArgumentException $e ) {
return null;
}
$additions = $this->discoverInheritedArgs($docblock, $additions);
/** @var string[] $additionStrings */
$additionStrings = array_map( function(WordPressTag $tag): string {
$lines = $tag->format();
if (count($lines) === 0) {
return '';
}
return " * " . implode("\n * ", $lines);
}, $additions);
$additionStrings = array_filter($additionStrings);
if (count($additionStrings) === 0) {
return null;
}
$newDocComment = sprintf(
"%s\n%s\n */",
substr($docCommentText, 0, -4),
implode("\n", $additionStrings)
);
return new Doc($newDocComment, $docComment->getStartLine(), $docComment->getStartFilePos());
}
/**
* @param array<int, WordPressTag> $additions
* @return array<int, WordPressTag>
*/
private function discoverInheritedArgs(DocBlock $docblock, array $additions): array
{
/** @var Param[] $params */
$params = $docblock->getTagsByName('param');
$phpStanParams = array_filter($additions, function(WordPressTag $addition): bool {
return $addition->tag === '@phpstan-param';
});
foreach ($params as $param) {
$inherited = $this->getInheritedTagsForParam($param);
if (count($inherited) === 0) {
continue;
}
foreach ($phpStanParams as $addition) {
foreach ($inherited as $inherit) {
if ($addition->name !== $inherit->name) {
continue;
}
$addition->children = array_merge($addition->children, $inherit->children);
continue 3;
}
}
$additions = array_merge($additions, $inherited);
}
return $additions;
}
/**
* @return array<int, WordPressTag>
*/
private function getInheritedTagsForParam(Param $param): array
{
$type = $param->getType();
if ($type === null) {
return [];
}
$typeName = self::getTypeNameFromType($type);
if ($typeName === null) {
return [];
}
$paramDescription = $param->getDescription();
if ($paramDescription === null) {
return [];
}
list($description) = explode("\n\n", $paramDescription->__toString());
if (strpos($description, '()') === false) {
return [];
}
$description = str_replace("\n", ' ', $description);
$additions = [];
foreach ($this->additionalTags as $symbolName => $tags) {
$search = sprintf(
'see %s()',
$symbolName
);
if (stripos($description, $search) === false) {
continue;
}
$match = self::getMatchingInheritedTag($param, $tags, $symbolName);
if ($match !== null) {
$additions[] = $match;
}
}
return $additions;
}
/**
* @param array<int, WordPressTag> $tags
*/
private static function getMatchingInheritedTag(Param $param, array $tags, string $symbolName): ?WordPressTag
{
$paramName = $param->getVariableName();
$matchNames = [
$paramName,
'args',
'options',
'query',
];
$matchingTags = array_filter($tags, static function(WordPressTag $tag) use ($matchNames): bool {
return in_array($tag->name, $matchNames, true);
});
foreach ($matchingTags as $tag) {
$addTag = clone $tag;
$addTag->name = $paramName;
$addTag->description = sprintf(
'See %s()',
$symbolName
);
return $addTag;
}
return null;
}
/**
* @return string[]
*/
private function getAdditionalTagsFromMap(string $symbolName): array
{
if (! isset($this->functionMap)) {
$this->functionMap = require __DIR__ . '/functionMap.php';
}
if (! isset($this->functionMap[$symbolName])) {
return [];
}
$parameters = $this->functionMap[$symbolName];
$returnType = array_shift($parameters);
$additions = [];
foreach ($parameters as $paramName => $paramType) {
if (strpos($paramName, '@') === 0) {
$format = ( $paramType === '' ) ? '%s' : '%s %s';
$additions[] = sprintf(
$format,
$paramName,
$paramType
);
continue;
}
$additions[] = sprintf(
'@phpstan-param %s $%s',
$paramType,
$paramName
);
}
if ($returnType) {
$additions[] = sprintf(
'@phpstan-return %s',
$returnType
);
}
return $additions;
}
private function addStringTags(string $name, Doc $docComment): ?Doc
{
if ( !isset($this->additionalTagStrings[ $name ])) {
return null;
}
$additions = $this->additionalTagStrings[ $name ];
$docCommentText = $docComment->getText();
$newDocComment = sprintf(
"%s\n * %s\n */",
substr($docCommentText, 0, -4),
implode("\n * ", $additions)
);
return new Doc($newDocComment, $docComment->getStartLine(), $docComment->getStartFilePos());
}
private function getAdditionFromParam(Param $tag): ?WordPressTag
{
$tagDescription = $tag->getDescription();
$tagVariableName = $tag->getVariableName();
$tagVariableType = $tag->getType();
// Skip if information we need is missing.
if (!$tagDescription || !$tagVariableName || !$tagVariableType) {
return null;
}
$elements = self::getElementsFromDescription($tagDescription, true);
if (count($elements) === 0) {
return null;
}
$tagVariableType = self::getTypeNameFromType($tagVariableType);
if ($tagVariableType === null) {
return null;
}
// It's common for an args parameter to accept a query var string or array with `string|array`.
// Remove the accepted string type for these so we get the strongest typing we can manage.
$tagVariableType = str_replace(['|string', 'string|'], '', $tagVariableType);
$tag = new WordPressTag();
$tag->tag = '@phpstan-param';
$tag->type = $tagVariableType;
$tag->name = $tagVariableName;
$tag->children = $elements;
return $tag;
}
private function getAdditionFromReturn(Return_ $tag): ?WordPressTag
{
$tagDescription = $tag->getDescription();
$tagVariableType = $tag->getType();
// Skip if information we need is missing.
if (!$tagDescription || !$tagVariableType) {
return null;
}
$elements = self::getElementsFromDescription($tagDescription, false);
if (count($elements) === 0) {
return null;
}
$tagVariableType = self::getTypeNameFromType($tagVariableType);
if ($tagVariableType === null) {
return null;
}
$tag = new WordPressTag();
$tag->tag = '@phpstan-return';
$tag->type = $tagVariableType;
$tag->children = $elements;
return $tag;
}
private static function getAdditionFromVar(Var_ $tag): ?WordPressTag
{
$tagDescription = $tag->getDescription();
$tagVariableType = $tag->getType();
// Skip if information we need is missing.
if (!$tagDescription || !$tagVariableType) {
return null;
}
$elements = self::getElementsFromDescription($tagDescription, false);
if (count($elements) === 0) {
return null;
}
$tagVariableType = self::getTypeNameFromType($tagVariableType);
if ($tagVariableType === null) {
return null;
}
$tag = new WordPressTag();
$tag->tag = '@phpstan-var';
$tag->type = $tagVariableType;
$tag->children = $elements;
return $tag;
}
private static function getTypeNameFromType(Type $tagVariableType): ?string
{
return self::getTypeNameFromString($tagVariableType->__toString());
}
private static function getTypeNameFromString(string $tagVariable): ?string
{
// PHPStan doesn't support typed array shapes (`int[]{...}`) so replace
// typed arrays such as `int[]` with `array`.
$tagVariableType = preg_replace('#[a-zA-Z0-9_]+\[\]#', 'array', $tagVariable);
if ($tagVariableType === null) {
return null;
}
if (strpos($tagVariableType, 'array') === false) {
// Skip if we have hash notation that's not for an array (ie. for `object`).
return null;
}
if (strpos($tagVariableType, 'array|') !== false) {
// Move `array` to the end of union types so the appended array shape works.
$tagVariableType = str_replace('array|', '', $tagVariableType) . '|array';
}
return $tagVariableType;
}
/**
* @return WordPressArg[]
*/
private static function getElementsFromDescription(Description $tagDescription, bool $optional): array
{
$text = $tagDescription->__toString();
// Skip if the description doesn't contain at least one correctly
// formatted `@type`, which indicates an array hash.
if (strpos($text, ' @type ') === false) {
return [];
}
return self::getTypesAtLevel($text, $optional, 1);
}
/**
* @return WordPressArg[]
*/
private static function getTypesAtLevel(string $text, bool $optional, int $level): array
{
// Populate `$types` with the value of each top level `@type`.
$spaces = str_repeat(' ', ($level * 4));
$types = preg_split("/\R+{$spaces}@type /", $text);
if ($types === false) {
return [];
}
unset($types[0]);
$elements = [];
foreach ($types as $typeTag) {
$parts = preg_split('#\s+#', trim($typeTag), 3);
if ($parts === false || count($parts) < 2) {
return [];
}
list($type, $name) = $parts;
$optionalArg = $optional;
$nameTrimmed = ltrim($name, '$');
if (is_numeric($nameTrimmed)) {
$optionalArg = false;
} elseif ($optional && ($level > 1)) {
$optionalArg = isset($parts[2]) && self::isOptional($parts[2]);
}
if (strpos($name, '...$') !== false) {
$name = null;
} elseif (strpos($name, '$') !== 0) {
return [];
} else {
$name = $nameTrimmed;
}
$arg = new WordPressArg();
$arg->type = $type;
$arg->optional = $optionalArg;
$arg->name = $name;
$nextLevel = $level + 1;
$subTypes = self::getTypesAtLevel($typeTag, $optional, $nextLevel);
if (count($subTypes) > 0) {
$type = self::getTypeNameFromString($type);
if ($type !== null) {
$arg->type = $type;
}
$arg->children = $subTypes;
}
$elements[] = $arg;
}
return $elements;
}
private static function isOptional(string $description): bool
{
return (stripos($description, 'Optional') !== false)
|| (stripos($description, 'Default ') !== false)
|| (stripos($description, 'Default: ') !== false)
|| (stripos($description, 'Defaults to ') !== false)
;
}
};