summaryrefslogtreecommitdiff
path: root/buildscripts/phing/classes/phing/tasks/ext/pdepend/PhpDependTask.php
blob: c42575b798a47f5d23f0189bab2c67f91ceee69e (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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<?php
/**
 *  $Id: 572bbfe2e542b864211a85de9990f5cbfe31a4cd $
 *
 * 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';

/**
 * Runs the PHP_Depend software analyzer and metric tool.
 * Performs static code analysis on a given source base.
 *
 * @package phing.tasks.ext.pdepend
 * @author  Benjamin Schultz <bschultz@proqrent.de>
 * @version $Id: 572bbfe2e542b864211a85de9990f5cbfe31a4cd $
 * @since   2.4.1
 */
class PhpDependTask extends Task
{
    /**
     * A php source code filename or directory
     *
     * @var PhingFile
     */
    protected $_file = null;

    /**
     * All fileset objects assigned to this task
     *
     * @var array<FileSet>
     */
    protected $_filesets = array();

    /**
     * List of allowed file extensions. Default file extensions are <b>php</b>
     * and <p>php5</b>.
     *
     * @var array<string>
     */
    protected $_allowedFileExtensions = array('php', 'php5');

    /**
     * List of exclude directories. Default exclude dirs are <b>.git</b>,
     * <b>.svn</b> and <b>CVS</b>.
     *
     * @var array<string>
     */
    protected $_excludeDirectories = array('.git', '.svn', 'CVS');

    /**
     * List of exclude packages
     *
     * @var array<string>
     */
    protected $_excludePackages = array();

    /**
     * Should the parse ignore doc comment annotations?
     *
     * @var boolean
     */
    protected $_withoutAnnotations = false;

    /**
     * Should PHP_Depend treat <b>+global</b> as a regular project package?
     *
     * @var boolean
     */
    protected $_supportBadDocumentation = false;

    /**
     * Flag for enable/disable debugging
     *
     * @var boolean
     */
    protected $_debug = false;

    /**
     * PHP_Depend configuration file
     *
     * @var PhingFile
     */
    protected $_configFile = null;

    /**
     * Logger elements
     *
     * @var array<PhpDependLoggerElement>
     */
    protected $_loggers = array();

    /**
     * Analyzer elements
     *
     * @var array<PhpDependAnalyzerElement>
     */
    protected $_analyzers = array();

    /**
     * Holds the PHP_Depend runner instance
     *
     * @var PHP_Depend_TextUI_Runner
     */
    protected $_runner = null;

    /**
     * Flag that determines whether to halt on error
     *
     * @var boolean
     */
    protected $_haltonerror = false;

    /**
     * Load the necessary environment for running PHP_Depend
     *
     * @return void
     * @throws BuildException
     */
    public function init()
    {
        /**
         * Determine PHP_Depend installation
         */
        @include_once 'PHP/Depend/TextUI/Runner.php';

        if (! class_exists('PHP_Depend_TextUI_Runner')) {
            throw new BuildException(
                'PhpDependTask depends on PHP_Depend being installed '
                . 'and on include_path',
                $this->getLocation()
            );
        }

        /**
         * Other dependencies that should only be loaded
         * when class is actually used
         */
        require_once 'phing/tasks/ext/pdepend/PhpDependLoggerElement.php';
        require_once 'phing/tasks/ext/pdepend/PhpDependAnalyzerElement.php';
        require_once 'PHP/Depend/Autoload.php';
    }

    /**
     * Set the input source file or directory
     *
     * @param PhingFile $file The input source file or directory
     *
     * @return void
     */
    public function setFile(PhingFile $file)
    {
        $this->_file = $file;
    }

    /**
     * Nested creator, adds a set of files (nested fileset attribute)
     *
     * @return FileSet The created fileset object
     */
    public function createFileSet()
    {
        $num = array_push($this->_filesets, new FileSet());
        return $this->_filesets[$num-1];
    }

    /**
     * Sets a list of filename extensions for valid php source code files
     *
     * @param string $fileExtensions List of valid file extensions
     *
     * @return void
     */
    public function setAllowedFileExtensions($fileExtensions)
    {
        $this->_allowedFileExtensions = array();

        $token = ' ,;';
        $ext   = strtok($fileExtensions, $token);

        while ($ext !== false) {
            $this->_allowedFileExtensions[] = $ext;
            $ext = strtok($token);
        }
    }

    /**
     * Sets a list of exclude directories
     *
     * @param string $excludeDirectories List of exclude directories
     *
     * @return void
     */
    public function setExcludeDirectories($excludeDirectories)
    {
        $this->_excludeDirectories = array();

        $token   = ' ,;';
        $pattern = strtok($excludeDirectories, $token);

        while ($pattern !== false) {
            $this->_excludeDirectories[] = $pattern;
            $pattern = strtok($token);
        }
    }

    /**
     * Sets a list of exclude packages
     *
     * @param string $excludePackages Exclude packages
     *
     * @return void
     */
    public function setExcludePackages($excludePackages)
    {
        $this->_excludePackages = array();

        $token   = ' ,;';
        $pattern = strtok($excludePackages, $token);

        while ($pattern !== false) {
            $this->_excludePackages[] = $pattern;
            $pattern = strtok($token);
        }
    }

    /**
     * Should the parser ignore doc comment annotations?
     *
     * @param boolean $withoutAnnotations
     *
     * @return void
     */
    public function setWithoutAnnotations($withoutAnnotations)
    {
        $this->_withoutAnnotations = StringHelper::booleanValue(
            $withoutAnnotations
        );
    }

    /**
     * Should PHP_Depend support projects with a bad documentation. If this
     * option is set to <b>true</b>, PHP_Depend will treat the default package
     * <b>+global</b> as a regular project package.
     *
     * @param boolean $supportBadDocumentation
     *
     * @return void
     */
    public function setSupportBadDocumentation($supportBadDocumentation)
    {
        $this->_supportBadDocumentation = StringHelper::booleanValue(
            $supportBadDocumentation
        );
    }

    /**
     * Set debugging On/Off
     *
     * @param boolean $debug
     *
     * @return void
     */
    public function setDebug($debug)
    {
        $this->_debug = StringHelper::booleanValue($debug);
    }

    /**
     * Set halt on error
     *
     * @param boolean $haltonerror
     *
     * @return void
     */
    public function setHaltonerror($haltonerror)
    {
        $this->_haltonerror = StringHelper::booleanValue($haltonerror);
    }

    /**
     * Set the configuration file
     *
     * @param PhingFile $configFile The configuration file
     *
     * @return void
     */
    public function setConfigFile(PhingFile $configFile)
    {
        $this->_configFile = $configFile;
    }

    /**
     * Create object for nested logger element
     *
     * @return PhpDependLoggerElement
     */
    public function createLogger()
    {
        $num = array_push($this->_loggers, new PhpDependLoggerElement());
        return $this->_loggers[$num-1];
    }

    /**
     * Create object for nested analyzer element
     *
     * @return PhpDependAnalyzerElement
     */
    public function createAnalyzer()
    {
        $num = array_push($this->_analyzers, new PhpDependAnalyzerElement());
        return $this->_analyzers[$num-1];
    }

    /**
     * Executes PHP_Depend_TextUI_Runner against PhingFile or a FileSet
     *
     * @return void
     * @throws BuildException
     */
    public function main()
    {
        $autoload = new PHP_Depend_Autoload();
        $autoload->register();

        if (!isset($this->_file) and count($this->_filesets) == 0) {
            throw new BuildException(
                "Missing either a nested fileset or attribute 'file' set"
            );
        }

        if (count($this->_loggers) == 0) {
            throw new BuildException("Missing nested 'logger' element");
        }

        $this->validateLoggers();
        $this->validateAnalyzers();

        $filesToParse = array();

        if ($this->_file instanceof PhingFile) {
            $filesToParse[] = $this->_file->__toString();
        } else {
            // append any files in filesets
            foreach ($this->_filesets as $fs) {
                $files = $fs->getDirectoryScanner($this->project)
                            ->getIncludedFiles();

                foreach ($files as $filename) {
                     $f = new PhingFile($fs->getDir($this->project), $filename);
                     $filesToParse[] = $f->getAbsolutePath();
                }
            }
        }

        $this->_runner = new PHP_Depend_TextUI_Runner();
        $this->_runner->addProcessListener(new PHP_Depend_TextUI_ResultPrinter());

        $configurationFactory = new PHP_Depend_Util_Configuration_Factory();
        $configuration = $configurationFactory->createDefault();
        $this->_runner->setConfiguration($configuration);

        $this->_runner->setSourceArguments($filesToParse);

        foreach ($this->_loggers as $logger) {
            // Register logger
            $this->_runner->addLogger(
                $logger->getType(),
                $logger->getOutfile()->__toString()
            );
        }

        foreach ($this->_analyzers as $analyzer) {
            // Register additional analyzer
            $this->_runner->addOption(
                $analyzer->getType(),
                $analyzer->getValue()
            );
        }

        // Disable annotation parsing
        if ($this->_withoutAnnotations) {
            $this->_runner->setWithoutAnnotations();
        }

        // Enable bad documentation support
        if ($this->_supportBadDocumentation) {
            $this->_runner->setSupportBadDocumentation();
        }

        // Check for suffix
        if (count($this->_allowedFileExtensions) > 0) {
            $this->_runner->setFileExtensions($this->_allowedFileExtensions);
        }

        // Check for ignore directories
        if (count($this->_excludeDirectories) > 0) {
            $this->_runner->setExcludeDirectories($this->_excludeDirectories);
        }

        // Check for exclude packages
        if (count($this->_excludePackages) > 0) {
            $this->_runner->setExcludePackages($this->_excludePackages);
        }

        // Check for configuration option
        if ($this->_configFile instanceof PhingFile) {
            if (file_exists($this->_configFile->__toString()) === false) {
                throw new BuildException(
                    'The configuration file "'
                    . $this->_configFile->__toString() . '" doesn\'t exist.'
                );
            }

            // Load configuration file
            $config = new PHP_Depend_Util_Configuration(
                $this->_configFile->__toString(),
                null,
                true
            );

            // Store in config registry
            PHP_Depend_Util_ConfigurationInstance::set($config);
        }

        if ($this->_debug) {
            require_once 'PHP/Depend/Util/Log.php';
            // Enable debug logging
            PHP_Depend_Util_Log::setSeverity(PHP_Depend_Util_Log::DEBUG);
        }

        $this->_runner->run();

        if ($this->_runner->hasParseErrors() === true) {
            $this->log('Following errors occurred:');

            foreach ($this->_runner->getParseErrors() as $error) {
                $this->log($error);
            }

            if ($this->_haltonerror === true) {
                throw new BuildException('Errors occurred during parse process');
            }
        }
    }

    /**
     * Validates the available loggers
     *
     * @return void
     * @throws BuildException
     */
    protected function validateLoggers()
    {
        foreach ($this->_loggers as $logger) {
            if ($logger->getType() === '') {
                throw new BuildException(
                    "Logger missing required 'type' attribute"
                );
            }

            if ($logger->getOutfile() === null) {
                throw new BuildException(
                    "Logger requires 'outfile' attribute"
                );
            }
        }
    }

    /**
     * Validates the available analyzers
     *
     * @return void
     * @throws BuildException
     */
    protected function validateAnalyzers()
    {
        foreach ($this->_analyzers as $analyzer) {
            if ($analyzer->getType() === '') {
                throw new BuildException(
                    "Analyzer missing required 'type' attribute"
                );
            }

            if (count($analyzer->getValue()) === 0) {
                throw new BuildException(
                    "Analyzer missing required 'value' attribute"
                );
            }
        }
    }
}