forked from beenanner/PHP_CodeSniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReporting.php
425 lines (360 loc) · 12.8 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
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
<?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
*/
/**
* 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;
/**
* Total number of errors/warnings that can be fixed.
*
* @var int
*/
public $totalFixable = 0;
/**
* When the PHPCS run started.
*
* @var float
*/
public static $startTime = 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();
/**
* A cache of opened tmp files.
*
* @var array
*/
private $_tmpFiles = 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];
}
if (strpos($type, '.') !== false) {
// This is a path to a custom report class.
$filename = realpath($type);
if ($filename === false) {
echo 'ERROR: Custom report "'.$type.'" not found'.PHP_EOL;
exit(2);
}
$reportClassName = 'PHP_CodeSniffer_Reports_'.basename($filename);
$reportClassName = substr($reportClassName, 0, strpos($reportClassName, '.'));
include_once $filename;
} else {
$filename = $type.'.php';
$reportClassName = 'PHP_CodeSniffer_Reports_'.$type;
if (class_exists($reportClassName, true) === false) {
echo 'ERROR: Report type "'.$type.'" not found'.PHP_EOL;
exit(2);
}
}//end if
$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 = $this->factory($report);
$report = get_class($reportClass);
ob_start();
$result = $reportClass->generateFileReport($reportData, $phpcsFile, $cliValues['showSources'], $cliValues['reportWidth']);
if ($result === true) {
$errorsShown = true;
}
$generatedReport = ob_get_contents();
ob_end_clean();
if ($output === null && $cliValues['reportFile'] !== null) {
$output = $cliValues['reportFile'];
}
if ($output === null) {
// Using a temp file.
if (isset($this->_tmpFiles[$report]) === false) {
if (function_exists('sys_get_temp_dir') === true) {
// This is needed for HHVM support, but only available from 5.2.1.
$this->_tmpFiles[$report] = fopen(tempnam(sys_get_temp_dir(), 'phpcs'), 'w');
} else {
$this->_tmpFiles[$report] = tmpfile();
}
}
fwrite($this->_tmpFiles[$report], $generatedReport);
} else {
$flags = FILE_APPEND;
if (isset($this->_cachedReports[$report]) === false) {
$this->_cachedReports[$report] = true;
$flags = null;
}
file_put_contents($output, $generatedReport, $flags);
}//end if
}//end foreach
if ($errorsShown === true) {
$this->totalFiles++;
$this->totalErrors += $reportData['errors'];
$this->totalWarnings += $reportData['warnings'];
$this->totalFixable += $reportData['fixable'];
}
}//end cacheFileReport()
/**
* Generates and prints a final report.
*
* Returns an array with the number of errors and the number of
* warnings, in the form ['errors' => int, 'warnings' => int].
*
* @param string $report Report type.
* @param boolean $showSources Show sources?
* @param array $cliValues An array of command line arguments.
* @param string $reportFile Report file to generate.
* @param integer $reportWidth Report max width.
*
* @return int[]
*/
public function printReport(
$report,
$showSources,
array $cliValues,
$reportFile='',
$reportWidth=80
) {
$reportClass = $this->factory($report);
$report = get_class($reportClass);
if ($reportFile !== null) {
$filename = $reportFile;
$toScreen = false;
if (file_exists($filename) === true
&& isset($this->_cachedReports[$report]) === true
) {
$reportCache = file_get_contents($filename);
} else {
$reportCache = '';
}
} else {
if (isset($this->_tmpFiles[$report]) === true) {
$data = stream_get_meta_data($this->_tmpFiles[$report]);
$filename = $data['uri'];
$reportCache = file_get_contents($filename);
fclose($this->_tmpFiles[$report]);
} else {
$reportCache = '';
$filename = null;
}
$toScreen = true;
}//end if
ob_start();
$reportClass->generate(
$reportCache,
$this->totalFiles,
$this->totalErrors,
$this->totalWarnings,
$this->totalFixable,
$showSources,
$reportWidth,
$toScreen
);
$generatedReport = ob_get_contents();
ob_end_clean();
if ($cliValues['colors'] !== true || $reportFile !== null) {
$generatedReport = preg_replace('`\033\[[0-9]+m`', '', $generatedReport);
}
if ($reportFile !== null) {
if (PHP_CODESNIFFER_VERBOSITY > 0) {
echo $generatedReport;
}
file_put_contents($reportFile, $generatedReport.PHP_EOL);
} else {
echo $generatedReport;
if ($filename !== null && file_exists($filename) === true) {
unlink($filename);
}
}
return array(
'errors' => $this->totalErrors,
'warnings' => $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(),
'fixable' => $phpcsFile->getFixableCount(),
'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'],
'fixable' => $data['fixable'],
'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'],
'fixable' => $data['fixable'],
'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()
/**
* Start recording time for the run.
*
* @return void
*/
public static function startTiming()
{
self::$startTime = microtime(true);
}//end startTiming()
/**
* Print information about the run.
*
* @return void
*/
public static function printRunTime()
{
$time = ((microtime(true) - self::$startTime) * 1000);
if ($time > 60000) {
$mins = floor($time / 60000);
$secs = round((($time % 60000) / 1000), 2);
$time = $mins.' mins';
if ($secs !== 0) {
$time .= ", $secs secs";
}
} else if ($time > 1000) {
$time = round(($time / 1000), 2).' secs';
} else {
$time = round($time).'ms';
}
$mem = round((memory_get_peak_usage(true) / (1024 * 1024)), 2).'Mb';
echo "Time: $time; Memory: $mem".PHP_EOL.PHP_EOL;
}//end printRunTime()
}//end class