forked from squizlabs/PHP_CodeSniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReporting.php
318 lines (266 loc) · 9.37 KB
/
Reporting.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
<?php
/**
* A class to manage reporting.
*
* PHP version 5
*
* @category PHP
* @package PHP_CodeSniffer
* @author Gabriele Santini <[email protected]>
* @author Greg Sherwood <[email protected]>
* @copyright 2009-2014 SQLI <www.sqli.com>
* @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
if (is_file(dirname(__FILE__).'/../CodeSniffer.php') === true) {
include_once dirname(__FILE__).'/../CodeSniffer.php';
} else {
include_once 'PHP/CodeSniffer.php';
}
/**
* A class to manage reporting.
*
* @category PHP
* @package PHP_CodeSniffer
* @author Gabriele Santini <[email protected]>
* @author Greg Sherwood <[email protected]>
* @copyright 2009-2014 SQLI <www.sqli.com>
* @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @version Release: @package_version@
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
class PHP_CodeSniffer_Reporting
{
/**
* Total number of files that contain errors or warnings.
*
* @var int
*/
public $totalFiles = 0;
/**
* Total number of errors found during the run.
*
* @var int
*/
public $totalErrors = 0;
/**
* Total number of warnings found during the run.
*
* @var int
*/
public $totalWarnings = 0;
/**
* A list of reports that have written partial report output.
*
* @var array
*/
private $_cachedReports = array();
/**
* A cache of report objects.
*
* @var array
*/
private $_reports = array();
/**
* Produce the appropriate report object based on $type parameter.
*
* @param string $type The type of the report.
*
* @return PHP_CodeSniffer_Report
* @throws PHP_CodeSniffer_Exception If report is not available.
*/
public function factory($type)
{
$type = ucfirst($type);
if (isset($this->_reports[$type]) === true) {
return $this->_reports[$type];
}
$filename = $type.'.php';
$reportClassName = 'PHP_CodeSniffer_Reports_'.$type;
if (class_exists($reportClassName, true) === false) {
throw new PHP_CodeSniffer_Exception('Report type "'.$type.'" not found.');
}
$reportClass = new $reportClassName();
if (false === ($reportClass instanceof PHP_CodeSniffer_Report)) {
throw new PHP_CodeSniffer_Exception('Class "'.$reportClassName.'" must implement the "PHP_CodeSniffer_Report" interface.');
}
$this->_reports[$type] = $reportClass;
return $this->_reports[$type];
}//end factory()
/**
* Actually generates the report.
*
* @param PHP_CodeSniffer_File $phpcsFile The file that has been processed.
* @param array $cliValues An array of command line arguments.
*
* @return void
*/
public function cacheFileReport(PHP_CodeSniffer_File $phpcsFile, array $cliValues)
{
if (isset($cliValues['reports']) === false) {
// This happens during unit testing, or any time someone just wants
// the error data and not the printed report.
return;
}
$reportData = $this->prepareFileReport($phpcsFile);
$errorsShown = false;
foreach ($cliValues['reports'] as $report => $output) {
$reportClass = self::factory($report);
ob_start();
$result = $reportClass->generateFileReport($reportData, $cliValues['showSources'], $cliValues['reportWidth']);
if ($result === true) {
$errorsShown = true;
}
$generatedReport = ob_get_contents();
ob_end_clean();
if ($generatedReport !== '') {
$flags = FILE_APPEND;
if (in_array($report, $this->_cachedReports) === false) {
$this->_cachedReports[] = $report;
$flags = null;
}
if ($output === null) {
if ($cliValues['reportFile'] !== null) {
$output = $cliValues['reportFile'];
} else {
$output = sys_get_temp_dir().'/phpcs-'.$report.'.tmp';
}
}
file_put_contents($output, $generatedReport, $flags);
}
}//end foreach
if ($errorsShown === true) {
$this->totalFiles++;
$this->totalErrors += $reportData['errors'];
$this->totalWarnings += $reportData['warnings'];
}
}//end cacheFileReport()
/**
* Actually generates the report.
*
* @param string $report Report type.
* @param boolean $showSources Show sources?
* @param string $reportFile Report file to generate.
* @param integer $reportWidth Report max width.
*
* @return integer
*/
public function printReport(
$report,
$showSources,
$reportFile='',
$reportWidth=80
) {
$reportClass = self::factory($report);
if ($reportFile !== null) {
$filename = $reportFile;
$toScreen = false;
ob_start();
} else {
$filename = sys_get_temp_dir().'/phpcs-'.$report.'.tmp';
$toScreen = true;
}
if (file_exists($filename) === true) {
$reportCache = file_get_contents($filename);
} else {
$reportCache = '';
}
$reportClass->generate(
$reportCache,
$this->totalFiles,
$this->totalErrors,
$this->totalWarnings,
$showSources,
$reportWidth,
$toScreen
);
if ($reportFile !== null) {
$generatedReport = ob_get_contents();
ob_end_clean();
if (PHP_CODESNIFFER_VERBOSITY > 0) {
echo $generatedReport;
}
$generatedReport = trim($generatedReport);
file_put_contents($reportFile, $generatedReport.PHP_EOL);
} else if (file_exists($filename) === true) {
unlink($filename);
}
return ($this->totalErrors + $this->totalWarnings);
}//end printReport()
/**
* Pre-process and package violations for all files.
*
* Used by error reports to get a packaged list of all errors in each file.
*
* @param PHP_CodeSniffer_File $phpcsFile The file that has been processed.
*
* @return array
*/
public function prepareFileReport(PHP_CodeSniffer_File $phpcsFile)
{
$report = array(
'filename' => $phpcsFile->getFilename(),
'errors' => $phpcsFile->getErrorCount(),
'warnings' => $phpcsFile->getWarningCount(),
'messages' => array(),
);
if ($report['errors'] === 0 && $report['warnings'] === 0) {
// Prefect score!
return $report;
}
$errors = array();
// Merge errors and warnings.
foreach ($phpcsFile->getErrors() as $line => $lineErrors) {
if (is_array($lineErrors) === false) {
continue;
}
foreach ($lineErrors as $column => $colErrors) {
$newErrors = array();
foreach ($colErrors as $data) {
$newErrors[] = array(
'message' => $data['message'],
'source' => $data['source'],
'severity' => $data['severity'],
'type' => 'ERROR',
);
}//end foreach
$errors[$line][$column] = $newErrors;
}//end foreach
ksort($errors[$line]);
}//end foreach
foreach ($phpcsFile->getWarnings() as $line => $lineWarnings) {
if (is_array($lineWarnings) === false) {
continue;
}
foreach ($lineWarnings as $column => $colWarnings) {
$newWarnings = array();
foreach ($colWarnings as $data) {
$newWarnings[] = array(
'message' => $data['message'],
'source' => $data['source'],
'severity' => $data['severity'],
'type' => 'WARNING',
);
}//end foreach
if (isset($errors[$line]) === false) {
$errors[$line] = array();
}
if (isset($errors[$line][$column]) === true) {
$errors[$line][$column] = array_merge(
$newWarnings,
$errors[$line][$column]
);
} else {
$errors[$line][$column] = $newWarnings;
}
}//end foreach
ksort($errors[$line]);
}//end foreach
ksort($errors);
$report['messages'] = $errors;
return $report;
}//end prepareFileReport()
}//end class
?>