* @package PHPCI * @subpackage Plugins */ class PhpParallelLint extends AbstractPlugin { /** * @inheritdoc */ protected $allowedStages = array('test'); /** * @var \PHPCI\Builder */ protected $phpci; /** * @var \PHPCI\Model\Build */ protected $build; /** * @var string */ protected $directory; /** * @var array - paths to ignore */ protected $ignore; /** * Standard Constructor * * $options['directory'] Output Directory. Default: %BUILDPATH% * $options['filename'] Phar Filename. Default: build.phar * $options['regexp'] Regular Expression Filename Capture. Default: /\.php$/ * $options['stub'] Stub Content. No Default Value * * @param Builder $phpci * @param Build $build * @param array $options */ public function __construct(Builder $phpci, Build $build, array $options = array()) { $this->phpci = $phpci; $this->build = $build; $this->directory = $phpci->buildPath; $this->ignore = $this->phpci->ignore; if (isset($options['directory'])) { $this->directory = $phpci->buildPath.$options['directory']; } if (isset($options['ignore'])) { $this->ignore = $options['ignore']; } } /** * Executes parallel lint */ public function execute() { list($ignore) = $this->getFlags(); $phplint = $this->phpci->findBinary('parallel-lint'); $cmd = $phplint . ' %s "%s"'; $success = $this->phpci->executeCommand( $cmd, $ignore, $this->directory ); $output = $this->phpci->getLastOutput(); $matches = array(); if (preg_match_all('/Parse error\:/', $output, $matches)) { $this->build->storeMeta('phplint-errors', count($matches[0])); } return $success; } /** * Produce an argument string for PHP Parallel Lint. * @return array */ protected function getFlags() { $ignoreFlags = array(); foreach ($this->ignore as $ignoreDir) { $ignoreFlags[] = '--exclude "' . $this->phpci->buildPath . $ignoreDir . '"'; } $ignore = implode(' ', $ignoreFlags); return array($ignore); } }