diff options
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | buildscripts/phing/tasks/PhpLintTask.php | 76 |
2 files changed, 77 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 201b6440..6656423b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12,6 +12,7 @@ buildscripts/phing/style/log.xsl -text buildscripts/phing/style/phpunit2-frames.xsl -text buildscripts/phing/style/phpunit2-noframes.xsl -text buildscripts/phing/style/str.replace.function.xsl -text +buildscripts/phing/tasks/PhpLintTask.php -text buildscripts/phpbuilder/build.php -text buildscripts/phpbuilder/files.txt -text buildscripts/texbuilder/build.php -text 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 @@ +<?php +require_once 'phing/Task.php'; + +/** + * A PHP lint task. Checking syntax of one or more PHP source file. + * + * @author Knut Urdalen <knut.urdalen@telio.no> + * @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 |