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
|
<?php
/**
* $Id: 1d239a7b88330bc8f42de24bbd703abb14eac0a2 $
*
* 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/tasks/ext/pdepend/PhpDependLoggerElement.php';
require_once 'phing/tasks/ext/pdepend/PhpDependAnalyzerElement.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: 1d239a7b88330bc8f42de24bbd703abb14eac0a2 $
* @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 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 PhpDependLoggerElement[]
*/
protected $loggers = array();
/**
* Analyzer elements
*
* @var 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
*
* @throws BuildException
*/
protected function requireDependencies()
{
/**
* 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 'PHP/Depend/Autoload.php';
}
/**
* Set the input source file or directory
*
* @param PhingFile $file The input source file or directory
*/
public function setFile(PhingFile $file)
{
$this->file = $file;
}
/**
* Nested adder, adds a set of files (nested fileset attribute).
*
* @return void
*/
public function addFileSet(FileSet $fs) {
$this->filesets[] = $fs;
}
/**
* Sets a list of filename extensions for valid php source code files
*
* @param string $fileExtensions List of valid file extensions
*/
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
*/
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
*/
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
*/
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
*/
public function setSupportBadDocumentation($supportBadDocumentation)
{
$this->supportBadDocumentation = StringHelper::booleanValue($supportBadDocumentation);
}
/**
* Set debugging On/Off
*
* @param boolean $debug
*/
public function setDebug($debug)
{
$this->debug = StringHelper::booleanValue($debug);
}
/**
* Set halt on error
*
* @param boolean $haltonerror
*/
public function setHaltonerror($haltonerror)
{
$this->haltonerror = StringHelper::booleanValue($haltonerror);
}
/**
* Set the configuration file
*
* @param PhingFile $configFile The configuration file
*/
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
*
* @throws BuildException
*/
public function main()
{
$this->requireDependencies();
$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
*
* @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
*
* @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');
}
}
}
}
|