From 78c3c01a73ea6646f5d866b34e64365712e4b598 Mon Sep 17 00:00:00 2001 From: knut <> Date: Thu, 9 Feb 2006 16:37:48 +0000 Subject: forgot the actual task :) --- buildscripts/phing/tasks/PhpLintTask.php | 76 ++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 buildscripts/phing/tasks/PhpLintTask.php (limited to 'buildscripts') diff --git a/buildscripts/phing/tasks/PhpLintTask.php b/buildscripts/phing/tasks/PhpLintTask.php new file mode 100644 index 00000000..6087f6a1 --- /dev/null +++ b/buildscripts/phing/tasks/PhpLintTask.php @@ -0,0 +1,76 @@ + + * @package phing.tasks.ext + */ +class PhpLintTask extends Task { + + protected $file; // the source file (from xml attribute) + protected $filesets = array(); // all fileset objects assigned to this task + + /** + * File to be performed syntax check on + * @param PhingFile $file + */ + public function setFile(PhingFile $file) { + $this->file = $file; + } + + /** + * Nested creator, creates a FileSet for this task + * + * @return FileSet The created fileset object + */ + function createFileSet() { + $num = array_push($this->filesets, new FileSet()); + return $this->filesets[$num-1]; + } + + /** + * Execute lint check against PhingFile or a FileSet + */ + public function main() { + if($this->file instanceof PhingFile) { + $this->lint($this->file->getPath()); + } else { // process filesets + $project = $this->getProject(); + foreach($this->filesets as $fs) { + $ds = $fs->getDirectoryScanner($project); + $files = $ds->getIncludedFiles(); + foreach($files as $file) { + $this->lint($file); + } + } + } + $this->log('No syntax errors detected'); + } + + /** + * Performs the actual syntax check + * + * @param string $file + * @return void + */ + protected function lint($file) { + $command = 'php -l '; + if(file_exists($file)) { + if(is_readable($file)) { + $message = array(); + exec($command.$file, $message); + if(!preg_match('/^No syntax errors detected/', $message[0])) { + throw new BuildException($message[1]); + } + } else { + throw new BuildException('Permission denied: '.$file); + } + } else { + throw new BuildException('File not found: '.$file); + } + } +} + +?> \ No newline at end of file -- cgit v1.2.3