phpci/PHPCI/Plugin/PhpCpd.php

165 lines
4.1 KiB
PHP
Raw Normal View History

2013-05-03 17:02:53 +02:00
<?php
2013-05-16 03:16:56 +02:00
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2015, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
2013-05-03 17:02:53 +02:00
namespace PHPCI\Plugin;
2013-10-10 02:01:06 +02:00
use PHPCI\Builder;
2014-12-04 16:48:52 +01:00
use PHPCI\Helper\Lang;
2013-10-10 02:01:06 +02:00
use PHPCI\Model\Build;
use PHPCI\PluginInterface;
2013-10-10 02:01:06 +02:00
/**
* PHP Copy / Paste Detector.
*
* Allows PHP Copy / Paste Detector testing.
*
* @author Dan Cryer <dan@block8.co.uk>
* @package PHPCI
* @subpackage Plugins
*/
class PhpCpd implements PluginInterface
2013-05-03 17:02:53 +02:00
{
protected $directory;
protected $args;
protected $phpci;
2014-05-02 15:48:40 +02:00
protected $build;
2013-05-03 17:02:53 +02:00
/**
* @var string, based on the assumption the root may not hold the code to be
* tested, exteds the base path
*/
protected $path;
/**
* @var array - paths to ignore
*/
protected $ignore;
/**
* Set up the plugin, configure options, etc.
2015-04-28 09:12:55 +02:00
*
* @param Builder $phpci
* @param Build $build
* @param array $options
*/
2013-10-10 02:01:06 +02:00
public function __construct(Builder $phpci, Build $build, array $options = array())
{
2013-10-10 02:01:06 +02:00
$this->phpci = $phpci;
2014-05-02 15:48:40 +02:00
$this->build = $build;
2013-10-10 02:01:06 +02:00
$this->path = $phpci->buildPath;
$this->standard = 'PSR1';
$this->ignore = $phpci->ignore;
if (!empty($options['path'])) {
$this->path = $phpci->buildPath . $options['path'];
}
2013-10-10 02:01:06 +02:00
if (!empty($options['standard'])) {
$this->standard = $options['standard'];
}
if (!empty($options['ignore'])) {
$this->ignore = $options['ignore'];
2013-10-10 02:01:06 +02:00
}
}
2013-05-03 17:02:53 +02:00
/**
2015-04-28 09:12:55 +02:00
* {@inheritDocs}
*/
public function execute()
{
$ignore = '';
if (count($this->ignore)) {
$map = function ($item) {
// remove the trailing slash
$item = (substr($item, -1) == '/' ? substr($item, 0, -1) : $item);
if (is_file($this->path . '/' . $item)) {
return ' --names-exclude ' . $item;
} else {
return ' --exclude ' . $item;
}
};
$ignore = array_map($map, $this->ignore);
2013-05-03 17:02:53 +02:00
$ignore = implode('', $ignore);
}
2013-05-03 17:02:53 +02:00
2013-10-08 09:50:10 +02:00
$phpcpd = $this->phpci->findBinary('phpcpd');
$tmpfilename = tempnam('/tmp', 'phpcpd');
$cmd = $phpcpd . ' --log-pmd "%s" %s "%s"';
2014-07-11 15:07:27 +02:00
$success = $this->phpci->executeCommand($cmd, $tmpfilename, $ignore, $this->path);
print $this->phpci->getLastOutput();
list($errorCount, $data) = $this->processReport(file_get_contents($tmpfilename));
$this->build->storeMeta('phpcpd-warnings', $errorCount);
$this->build->storeMeta('phpcpd-data', $data);
unlink($tmpfilename);
return $success;
}
/**
* Process the PHPCPD XML report.
2015-04-28 09:12:55 +02:00
*
* @param $xmlString
2015-04-28 09:12:55 +02:00
*
* @return array
2015-04-28 09:12:55 +02:00
*
* @throws \Exception
*/
protected function processReport($xmlString)
{
$xml = simplexml_load_string($xmlString);
if ($xml === false) {
$this->phpci->log($xmlString);
2014-12-04 16:48:52 +01:00
throw new \Exception(Lang::get('could_not_process_report'));
}
$warnings = 0;
$data = array();
foreach ($xml->duplication as $duplication) {
foreach ($duplication->file as $file) {
$fileName = (string)$file['path'];
$fileName = str_replace($this->phpci->buildPath, '', $fileName);
$data[] = array(
'file' => $fileName,
'line_start' => (int) $file['line'],
'line_end' => (int) $file['line'] + (int) $duplication['lines'],
'code' => (string) $duplication->codefragment
);
$message = <<<CPD
Copy and paste detected:
```
{$duplication->codefragment}
```
CPD;
$this->build->reportError($this->phpci, $fileName, $file['line'], $message);
}
$warnings++;
}
return array($warnings, $data);
}
}