blob: c1d4f98ab3a8542f73e5229f52dad3e25a2fdf17 (
plain)
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
|
<?php
namespace phorkie;
class Tool_PHPlint
{
public static $arSupportedExtensions = array(
'php'
);
public function run(File $file)
{
$fpath = $file->getFullPath();
$fpathlen = strlen($fpath);
$res = new Tool_Result();
$cmd = 'php -l ' . escapeshellarg($fpath) . ' 2>&1';
exec($cmd, $output, $retval);
if ($retval == 0) {
$res->annotations['general'][] = new Tool_Result_Line(
'No syntax errors detected', 'ok'
);
return $res;
}
$regex = '#^(.+) in ' . preg_quote($fpath) . ' on line ([0-9]+)$#';
for ($i = 0; $i < count($output) - 1; $i++) {
$line = $output[$i];
if (!preg_match($regex, trim($line), $matches)) {
throw new Exception('"php -l" does not behave as expected: ' . $line);
}
$msg = $matches[1];
$linenum = $matches[2];
$res->annotations[$linenum][] = new Tool_Result_Line(
$msg, 'error'
);
}
$res->annotations['general'][] = new Tool_Result_Line(
'PHP code has syntax errors', 'error'
);
return $res;
}
}
?>
|