|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of Symplify |
|
5
|
|
|
* Copyright (c) 2016 Tomas Votruba (http://tomasvotruba.cz). |
|
6
|
|
|
*/ |
|
7
|
|
|
|
|
8
|
|
|
namespace Symplify\PHP7_CodeSniffer\Standard\Finder; |
|
9
|
|
|
|
|
10
|
|
|
use Exception; |
|
11
|
|
|
use Symfony\Component\Finder\Finder; |
|
12
|
|
|
use Symplify\PHP7_CodeSniffer\Composer\VendorDirProvider; |
|
13
|
|
|
|
|
14
|
|
|
final class StandardFinder |
|
15
|
|
|
{ |
|
16
|
|
|
/** |
|
17
|
|
|
* @var string[] |
|
18
|
|
|
*/ |
|
19
|
|
|
private $rulesets = []; |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* @param string[] $names |
|
23
|
|
|
* @return string[] |
|
24
|
|
|
*/ |
|
25
|
5 |
|
public function getRulesetPathsForStandardNames(array $names) : array |
|
26
|
|
|
{ |
|
27
|
5 |
|
$rulesetPaths = []; |
|
28
|
5 |
|
foreach ($names as $name) { |
|
29
|
4 |
|
$rulesetPaths[$name] = $this->getRulesetPathForStandardName($name); |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
5 |
|
return $rulesetPaths; |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
6 |
|
public function getRulesetPathForStandardName(string $standardName) : string |
|
36
|
|
|
{ |
|
37
|
6 |
|
if (isset($this->getStandards()[$standardName])) { |
|
38
|
6 |
|
return $this->getStandards()[$standardName]; |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
throw new Exception( |
|
42
|
|
|
sprintf( |
|
43
|
|
|
'Ruleset for standard "%s" was not found. Found standards are: %s.', |
|
44
|
|
|
$standardName, |
|
45
|
|
|
implode($this->getRulesetNames(), ', ') |
|
46
|
|
|
) |
|
47
|
|
|
); |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* @return string[] |
|
52
|
|
|
*/ |
|
53
|
9 |
|
public function getStandards() : array |
|
54
|
|
|
{ |
|
55
|
9 |
|
if ($this->rulesets) { |
|
|
|
|
|
|
56
|
7 |
|
return $this->rulesets; |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
9 |
|
foreach ($this->findRulesetFiles() as $rulesetFile) { |
|
60
|
9 |
|
$rulesetXml = simplexml_load_file($rulesetFile); |
|
61
|
|
|
|
|
62
|
9 |
|
$rulesetName = (string) $rulesetXml['name']; |
|
63
|
9 |
|
$this->rulesets[$rulesetName] = $rulesetFile; |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
9 |
|
return $this->rulesets; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
/** |
|
70
|
|
|
* @return string[] |
|
71
|
|
|
*/ |
|
72
|
9 |
|
private function findRulesetFiles() : array |
|
73
|
|
|
{ |
|
74
|
9 |
|
$installedStandards = (new Finder())->files() |
|
75
|
9 |
|
->in(VendorDirProvider::provide()) |
|
76
|
9 |
|
->name('ruleset.xml'); |
|
77
|
|
|
|
|
78
|
9 |
|
return array_keys(iterator_to_array($installedStandards)); |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
private function getRulesetNames() : array |
|
82
|
|
|
{ |
|
83
|
|
|
return array_keys($this->getStandards()); |
|
84
|
|
|
} |
|
85
|
|
|
} |
|
86
|
|
|
|
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)or! empty(...)instead.