File: JslLintTask.php

package info (click to toggle)
icinga-web 1.7.1%2Bdfsg2-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 83,496 kB
  • sloc: php: 252,926; xml: 142,251; sql: 8,190; sh: 1,039; makefile: 575; perl: 215; python: 194
file content (232 lines) | stat: -rw-r--r-- 7,706 bytes parent folder | download
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
<?php
/*
 *  $Id: JslLintTask.php 614 2009-10-25 15:25:39Z mrook $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information please see
 * <http://phing.info>.
 */
  
require_once 'phing/Task.php';
require_once 'phing/util/DataStore.php';

  /**
  * A Javascript lint task. Checks syntax of Javascript files.
  * Javascript lint (http://www.javascriptlint.com) must be in the system path.
  * This class is based on Knut Urdalen's PhpLintTask.
  *
  * @author Stefan Priebsch <stefan.priebsch@e-novative.de>
  * @version $Id: JslLintTask.php 614 2009-10-25 15:25:39Z mrook $
  * @package phing.tasks.ext
  */
  class JslLintTask extends Task
  {
    protected $file;  // the source file (from xml attribute)
    protected $filesets = array(); // all fileset objects assigned to this task

    protected $showWarnings = true;
    protected $haltOnFailure = false;
    protected $hasErrors = false;
    private $badFiles = array();
    
    private $cache = null;
    private $conf = null;

    /**
     * Sets the flag if warnings should be shown
     * @param boolean $show
     */
    public function setShowWarnings($show) {
      $this->showWarnings = StringHelper::booleanValue($show);
    }

    /**
     * The haltonfailure property
     * @param boolean $aValue
     */
    public function setHaltOnFailure($aValue) {
      $this->haltOnFailure = $aValue;
    }
  
    /**
     * File to be performed syntax check on
     * @param PhingFile $file
     */
    public function setFile(PhingFile $file) {
      $this->file = $file;
    }
    
    /**
     * Whether to store last-modified times in cache
     *
     * @param PhingFile $file
     */
    public function setCacheFile(PhingFile $file)
    {
      $this->cache = new DataStore($file);
    }

    /**
     * jsl config file
     *
     * @param PhingFile $file
     */
    public function setConfFile(PhingFile $file)
    {
      $this->conf = $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(!isset($this->file) and count($this->filesets) == 0) {
        throw new BuildException("Missing either a nested fileset or attribute 'file' set");
      }
  
      exec('jsl', $output);
      if (!preg_match('/JavaScript\sLint/', implode('', $output))) throw new BuildException('Javascript Lint not found');
    
      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();
          $dir = $fs->getDir($this->project)->getPath();
          foreach($files as $file) {
            $this->lint($dir.DIRECTORY_SEPARATOR.$file);
          }
        }
      }
  
      if ($this->haltOnFailure && $this->hasErrors) throw new BuildException('Syntax error(s) in JS files:' .implode(', ',$this->badFiles));
    }
  
    /**
     * Performs the actual syntax check
     *
     * @param string $file
     * @return void
     */
    protected function lint($file)
    {
      $command = 'jsl -output-format ' . escapeshellarg('file:__FILE__;line:__LINE__;message:__ERROR__') . ' ';

      if (isset($this->conf)) {
          $command .= '-conf ' . $this->conf->getPath() . ' ';
      }

      $command .= '-process ';

      if(file_exists($file))
      {
        if(is_readable($file))
        {
          if ($this->cache)
          {
            $lastmtime = $this->cache->get($file);

            if ($lastmtime >= filemtime($file))
            {
              $this->log("Not linting '" . $file . "' due to cache", Project::MSG_DEBUG);
              return false;
            }
          }

          $messages = array();
          exec($command.'"'.$file.'"', $messages);

          $summary = $messages[sizeof($messages) - 1];

          preg_match('/(\d+)\serror/', $summary, $matches);
          $errorCount = $matches[1];
          
          preg_match('/(\d+)\swarning/', $summary, $matches);
          $warningCount = $matches[1];

          $errors = array();
          $warnings = array();
          if ($errorCount > 0 || $warningCount > 0) {
            $last = false;
            foreach ($messages as $message) {
              $matches = array();
              if (preg_match('/^(\.*)\^$/', $message)) {
                $column = strlen($message);
                if ($last == 'error') {
                  $errors[count($errors) - 1]['column'] = $column;
                } else if ($last == 'warning') {
                  $warnings[count($warnings) - 1]['column'] = $column;
                }
                $last = false;
              }
              if (!preg_match('/^file:(.+);line:(\d+);message:(.+)$/', $message, $matches)) continue;
              $msg = $matches[3];
              $data = array('filename' => $matches[1], 'line' => $matches[2], 'message' => $msg);
              if (preg_match('/^.*error:.+$/i', $msg)) {
                $errors[] = $data;
                $last = 'error';
              } else if (preg_match('/^.*warning:.+$/i', $msg)) {
                $warnings[] = $data;
                $last = 'warning';
              }
            }
          }

          if($this->showWarnings && $warningCount > 0)
          {
            $this->log($file . ': ' . $warningCount . ' warnings detected', Project::MSG_WARN);
            foreach ($warnings as $warning) {
              $this->log('- line ' . $warning['line'] . (isset($warning['column']) ? ' column ' . $warning['column'] : '') . ': ' . $warning['message'], Project::MSG_WARN);
            }
          }
            
          if($errorCount > 0)
          {
            $this->log($file . ': ' . $errorCount . ' errors detected', Project::MSG_ERR);
            foreach ($errors as $error) {
              $this->log('- line ' . $error['line'] . (isset($error['column']) ? ' column ' . $error['column'] : '') . ': ' . $error['message'], Project::MSG_ERR);
            }
            $this->badFiles[] = $file;
            $this->hasErrors = true;
          } else if (!$this->showWarnings || $warningCount == 0) {
            $this->log($file . ': No syntax errors detected', Project::MSG_INFO);
          }

          if ($this->cache)
          {
            $this->cache->put($file, filemtime($file));
          }
        } else {
          throw new BuildException('Permission denied: '.$file);
        }
      } else {
        throw new BuildException('File not found: '.$file);
      }
    }
  }