forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalysisResult.php
More file actions
183 lines (159 loc) · 3.73 KB
/
AnalysisResult.php
File metadata and controls
183 lines (159 loc) · 3.73 KB
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
<?php declare(strict_types = 1);
namespace PHPStan\Command;
use PHPStan\Analyser\Error;
use PHPStan\Analyser\InternalError;
use PHPStan\Collectors\CollectedData;
use function count;
use function usort;
/**
* @api
*/
final class AnalysisResult
{
/** @var list<Error> sorted by their file name, line number and message */
private array $fileSpecificErrors;
/**
* @param list<Error> $fileSpecificErrors
* @param list<string> $notFileSpecificErrors
* @param list<InternalError> $internalErrors
* @param list<string> $warnings
* @param list<CollectedData> $collectedData
* @param array<string, string> $changedProjectExtensionFilesOutsideOfAnalysedPaths
* @param list<string> $processedFiles
*/
public function __construct(
array $fileSpecificErrors,
private array $notFileSpecificErrors,
private array $internalErrors,
private array $warnings,
private array $collectedData,
private bool $defaultLevelUsed,
private ?string $projectConfigFile,
private bool $savedResultCache,
private int $peakMemoryUsageBytes,
private bool $isResultCacheUsed,
private array $changedProjectExtensionFilesOutsideOfAnalysedPaths,
private array $processedFiles = [],
)
{
usort(
$fileSpecificErrors,
static fn (Error $a, Error $b): int => [
$a->getFile(),
$a->getLine(),
$a->getMessage(),
] <=> [
$b->getFile(),
$b->getLine(),
$b->getMessage(),
],
);
$this->fileSpecificErrors = $fileSpecificErrors;
}
public function hasErrors(): bool
{
return $this->getTotalErrorsCount() > 0;
}
public function getTotalErrorsCount(): int
{
return count($this->fileSpecificErrors) + count($this->notFileSpecificErrors);
}
/**
* @return list<Error> sorted by their file name, line number and message
*/
public function getFileSpecificErrors(): array
{
return $this->fileSpecificErrors;
}
/**
* @return list<string>
*/
public function getNotFileSpecificErrors(): array
{
return $this->notFileSpecificErrors;
}
/**
* @return list<InternalError>
*/
public function getInternalErrorObjects(): array
{
return $this->internalErrors;
}
/**
* @return list<string>
*/
public function getWarnings(): array
{
return $this->warnings;
}
public function hasWarnings(): bool
{
return count($this->warnings) > 0;
}
/**
* @return list<CollectedData>
*/
public function getCollectedData(): array
{
return $this->collectedData;
}
public function isDefaultLevelUsed(): bool
{
return $this->defaultLevelUsed;
}
public function getProjectConfigFile(): ?string
{
return $this->projectConfigFile;
}
public function hasInternalErrors(): bool
{
return count($this->internalErrors) > 0;
}
public function isResultCacheSaved(): bool
{
return $this->savedResultCache;
}
public function getPeakMemoryUsageBytes(): int
{
return $this->peakMemoryUsageBytes;
}
public function isResultCacheUsed(): bool
{
return $this->isResultCacheUsed;
}
/**
* @return array<string, string>
*/
public function getChangedProjectExtensionFilesOutsideOfAnalysedPaths(): array
{
return $this->changedProjectExtensionFilesOutsideOfAnalysedPaths;
}
/**
* @return list<string>
*/
public function getProcessedFiles(): array
{
return $this->processedFiles;
}
/**
* @api
* @param list<Error> $fileSpecificErrors
*/
public function withFileSpecificErrors(array $fileSpecificErrors): self
{
return new self(
$fileSpecificErrors,
$this->notFileSpecificErrors,
$this->internalErrors,
$this->warnings,
$this->collectedData,
$this->defaultLevelUsed,
$this->projectConfigFile,
$this->savedResultCache,
$this->peakMemoryUsageBytes,
$this->isResultCacheUsed,
$this->changedProjectExtensionFilesOutsideOfAnalysedPaths,
$this->processedFiles,
);
}
}