|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Padawan\Parser; |
|
4
|
|
|
|
|
5
|
|
|
use Padawan\Domain\Project\FQN; |
|
6
|
|
|
use Padawan\Domain\Project\Node\Uses; |
|
7
|
|
|
use Padawan\Framework\Utils\PathResolver; |
|
8
|
|
|
use PhpParser\ParserFactory; |
|
9
|
|
|
use PhpParser\NodeTraverser as Traverser; |
|
10
|
|
|
use Psr\Log\LoggerInterface; |
|
11
|
|
|
use Padawan\Parser\NamespaceParser; |
|
12
|
|
|
|
|
13
|
|
|
class Parser |
|
14
|
|
|
{ |
|
15
|
|
|
|
|
16
|
|
|
public function __construct( |
|
17
|
|
|
ParserFactory $parserFactory, |
|
18
|
|
|
Traverser $traverser, |
|
19
|
|
|
UseParser $useParser, |
|
20
|
|
|
NamespaceParser $namespaceParser, |
|
21
|
|
|
LoggerInterface $logger |
|
22
|
|
|
) { |
|
23
|
|
|
$this->parserFactory = $parserFactory; |
|
24
|
|
|
$this->traverser = $traverser; |
|
25
|
|
|
$this->useParser = $useParser; |
|
26
|
|
|
$this->namespaceParser = $namespaceParser; |
|
27
|
|
|
$this->walker = []; |
|
28
|
|
|
$this->astPool = []; |
|
29
|
|
|
$this->logger = $logger; |
|
30
|
|
|
} |
|
31
|
|
|
public function parseContent($file, $content, Uses $uses = null) |
|
32
|
|
|
{ |
|
33
|
|
|
if (!$uses instanceof Uses) { |
|
34
|
|
|
$uses = new Uses(new FQN); |
|
35
|
|
|
} |
|
36
|
|
|
$this->setUses($uses); |
|
37
|
|
|
$this->setFileInfo($uses, $file); |
|
38
|
|
|
try { |
|
39
|
|
|
$parser = $this->parserFactory->create(ParserFactory::PREFER_PHP5); |
|
40
|
|
|
$ast = $parser->parse($content); |
|
41
|
|
|
} catch (\Exception $e) { |
|
42
|
|
|
$this->logger->error(sprintf("Parsing failed in file %s\n", $file)); |
|
43
|
|
|
$this->logger->error($e); |
|
44
|
|
|
$this->clearWalkers(); |
|
45
|
|
|
return; |
|
46
|
|
|
} |
|
47
|
|
|
$this->logger->addInfo(sprintf("Traversing with %s walkers", |
|
|
|
|
|
|
48
|
|
|
count($this->walkers) |
|
|
|
|
|
|
49
|
|
|
)); |
|
50
|
|
|
$this->traverser->traverse($ast); |
|
51
|
|
|
$nodes = $this->getResultScopes(); |
|
52
|
|
|
$this->clearWalkers(); |
|
53
|
|
|
return $nodes; |
|
54
|
|
|
} |
|
55
|
|
|
public function setUses(Uses $uses) |
|
56
|
|
|
{ |
|
57
|
|
|
$this->uses = $uses; |
|
58
|
|
|
$this->useParser->setUses($uses); |
|
59
|
|
|
$this->namespaceParser->setUses($uses); |
|
60
|
|
|
} |
|
61
|
|
|
public function getUses() |
|
62
|
|
|
{ |
|
63
|
|
|
return $this->uses; |
|
64
|
|
|
} |
|
65
|
|
|
public function parseFQCN($fqcn) |
|
66
|
|
|
{ |
|
67
|
|
|
return $this->useParser->parseFQCN($fqcn); |
|
68
|
|
|
} |
|
69
|
|
|
public function addWalker($walker) |
|
70
|
|
|
{ |
|
71
|
|
|
$this->walkers[] = $walker; |
|
|
|
|
|
|
72
|
|
|
$this->traverser->addVisitor($walker); |
|
73
|
|
|
} |
|
74
|
|
|
public function clearWalkers() { |
|
75
|
|
|
foreach ($this->walkers AS $walker) { |
|
|
|
|
|
|
76
|
|
|
$this->traverser->removeVisitor($walker); |
|
77
|
|
|
} |
|
78
|
|
|
$this->walkers = []; |
|
|
|
|
|
|
79
|
|
|
} |
|
80
|
|
|
public function getResultScopes() |
|
81
|
|
|
{ |
|
82
|
|
|
$nodes = []; |
|
83
|
|
|
foreach ($this->walkers as $walker) { |
|
|
|
|
|
|
84
|
|
|
$nodes[] = $walker->getResultScope(); |
|
85
|
|
|
} |
|
86
|
|
|
if (count($nodes) === 1) { |
|
87
|
|
|
return array_pop($nodes); |
|
88
|
|
|
} |
|
89
|
|
|
return $nodes; |
|
90
|
|
|
} |
|
91
|
|
|
public function setIndex($index) |
|
92
|
|
|
{ |
|
93
|
|
|
foreach ($this->walkers as $walker) { |
|
|
|
|
|
|
94
|
|
|
$walker->setIndex($index); |
|
95
|
|
|
} |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
protected function setFileInfo(Uses $uses, $file) |
|
99
|
|
|
{ |
|
100
|
|
|
foreach ($this->walkers as $walker) { |
|
|
|
|
|
|
101
|
|
|
$walker->updateFileInfo($uses, $file); |
|
102
|
|
|
} |
|
103
|
|
|
} |
|
104
|
|
|
|
|
105
|
|
|
private $parsedClasses = []; |
|
|
|
|
|
|
106
|
|
|
/** @var ParserFactory */ |
|
107
|
|
|
private $parserFactory; |
|
108
|
|
|
/** @var Traverser */ |
|
109
|
|
|
private $traverser; |
|
110
|
|
|
/** @var Walker\WalkerInterface[] */ |
|
111
|
|
|
private $walker; |
|
112
|
|
|
private $astPool; |
|
113
|
|
|
private $logger; |
|
114
|
|
|
/** @var NamespaceParser */ |
|
115
|
|
|
private $namespaceParser; |
|
116
|
|
|
private $useParser; |
|
117
|
|
|
private $uses; |
|
118
|
|
|
} |
|
119
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: