summaryrefslogtreecommitdiff
path: root/buildscripts/phing
diff options
context:
space:
mode:
authorknut <>2006-02-09 16:37:48 +0000
committerknut <>2006-02-09 16:37:48 +0000
commit78c3c01a73ea6646f5d866b34e64365712e4b598 (patch)
tree3032412d82a5b1e3cd4867f4e44b824e51d77702 /buildscripts/phing
parent6dda6c19be8c8c27949b88bc0a28a6461907eb17 (diff)
forgot the actual task :)
Diffstat (limited to 'buildscripts/phing')
-rw-r--r--buildscripts/phing/tasks/PhpLintTask.php76
1 files changed, 76 insertions, 0 deletions
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