Completed
Push — master ( b7d262...3c2b8e )
by Дмитрий
05:26
created

CheckCommand   A

Complexity

Total Complexity 19

Size/Duplication

Total Lines 140
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 11

Test Coverage

Coverage 85.14%

Importance

Changes 0
Metric Value
dl 0
loc 140
ccs 63
cts 74
cp 0.8514
rs 10
c 0
b 0
f 0
wmc 19
lcom 2
cbo 11

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configure() 0 14 1
D execute() 0 115 18
1
<?php
2
/**
3
 * @author Patsura Dmitry https://github.com/ovr <[email protected]>
4
 */
5
6
namespace PHPSA\Command;
7
8
use PHPSA\Analyzer;
9
use PHPSA\Application;
10
use PHPSA\Compiler;
11
use PHPSA\Context;
12
use PHPSA\Definition\FileParser;
13
use RecursiveDirectoryIterator;
14
use RecursiveIteratorIterator;
15
use SplFileInfo;
16
use FilesystemIterator;
17
use Symfony\Component\Config\FileLocator;
18
use Symfony\Component\Console\Input\InputArgument;
19
use Symfony\Component\Console\Input\InputInterface;
20
use Symfony\Component\Console\Input\InputOption;
21
use Symfony\Component\Console\Output\OutputInterface;
22
use Webiny\Component\EventManager\EventManager;
23
24
/**
25
 * Command to run compiler and analyzers on files
26
 *
27
 * @package PHPSA\Command
28
 * @method Application getApplication();
29
 */
30
class CheckCommand extends AbstractCommand
31
{
32
33
    /**
34
     * {@inheritdoc}
35
     */
36 297
    protected function configure()
37
    {
38
        $this
39 297
            ->setName('check')
40 297
            ->setDescription('Runs compiler and analyzers on all files in path')
41 297
            ->addOption('config-file', null, InputOption::VALUE_REQUIRED, 'Path to the configuration file.')
42 297
            ->addArgument('path', InputArgument::OPTIONAL, 'Path to check file or directory', '.')
43 297
            ->addOption(
44 297
                'report-json',
45 297
                null,
46 297
                InputOption::VALUE_REQUIRED,
47 297
                'Path to save detailed report in JSON format. Example: /tmp/report.json'
48
            );
49 297
    }
50
51
    /**
52
     * {@inheritdoc}
53
     */
54 1
    protected function execute(InputInterface $input, OutputInterface $output)
0 ignored issues
show
Complexity introduced by
This operation has 6060 execution paths which exceeds the configured maximum of 200.

A high number of execution paths generally suggests many nested conditional statements and make the code less readible. This can usually be fixed by splitting the method into several smaller methods.

You can also find more information in the “Code” section of your repository.

Loading history...
55
    {
56 1
        $output->writeln('');
57
58 1
        if (extension_loaded('xdebug')) {
59
            /**
60
             * This will disable only showing stack traces on error conditions.
61
             */
62 1
            if (function_exists('xdebug_disable')) {
63 1
                xdebug_disable();
64
            }
65
66 1
            $output->writeln('<error>It is highly recommended to disable the XDebug extension before invoking this command.</error>');
67
        }
68
69
        /** @var Application $application */
70 1
        $application = $this->getApplication();
71 1
        $application->compiler = new Compiler();
72
73 1
        $configFile = $input->getOption('config-file') ?: '.phpsa.yml';
74 1
        $configDir = realpath($input->getArgument('path'));
75 1
        $application->configuration = $this->loadConfiguration($configFile, $configDir);
76
77 1
        $parser = $this->createParser($application);
0 ignored issues
show
Documentation introduced by
$application is of type object<PHPSA\Application>, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
78
79 1
        $output->writeln('Used config file: ' . $application->configuration->getPath());
80
81 1
        $em = EventManager::getInstance();
0 ignored issues
show
Comprehensibility introduced by
Avoid variables with short names like $em. Configured minimum length is 3.

Short variable names may make your code harder to understand. Variable names should be self-descriptive. This check looks for variable names who are shorter than a configured minimum.

Loading history...
82 1
        Analyzer\Factory::factory($em, $application->configuration);
83 1
        $context = new Context($output, $application, $em);
84
85 1
        $fileParser = new FileParser(
86 1
            $parser,
87 1
            $application->compiler
88
        );
89
90 1
        $path = $input->getArgument('path');
91 1
        if (is_dir($path)) {
92 1
            $directoryIterator = new RecursiveIteratorIterator(
93 1
                new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS)
94
            );
95 1
            $output->writeln('Scanning directory <info>' . $path . '</info>');
96
97 1
            $count = 0;
98
99 1
            $ignore =  $application->configuration->getValue('ignore');
100
            /** @var SplFileInfo $file */
101 1
            foreach ($directoryIterator as $file) {
102 1
                $skip = 0;
103 1
                foreach ($ignore as $item) {
104 1
                    $item = preg_replace('#/+#', '/', ($path . $item));
105
106 1
                    if (preg_match("#$item#", $file->getPathname())) {
107
                        $skip = 1;
108 1
                        break;
109
                    }
110
                }
111
112 1
                if ($file->getExtension() !== 'php' || $skip) {
113
                    continue;
114
                }
115
116 1
                $context->debug($file->getPathname());
117 1
                $count++;
118
            }
119
120 1
            $output->writeln("Found <info>{$count} files</info>");
121
122 1
            if ($count > 100) {
123
                $output->writeln('<comment>Caution: You are trying to scan a lot of files; this might be slow. For bigger libraries, consider setting up a dedicated platform or using ci.lowl.io.</comment>');
124
            }
125
126 1
            $output->writeln('');
127
128
            /** @var SplFileInfo $file */
129 1
            foreach ($directoryIterator as $file) {
130 1
                $skip = 0;
131 1
                foreach ($ignore as $item) {
132 1
                    $item = preg_replace('#/+#', '/', ($path . $item));
133
134 1
                    if (preg_match("#$item#", $file->getPathname())) {
135
                        $skip = 1;
136 1
                        break;
137
                    }
138
                }
139
140 1
                if ($file->getExtension() !== 'php' || $skip) {
141
                    continue;
142
                }
143
144 1
                $fileParser->parserFile($file->getPathname(), $context);
145
            }
146
        } elseif (is_file($path)) {
147
            $fileParser->parserFile($path, $context);
148
        }
149
150
151
        /**
152
         * Step 2 Recursive check ...
153
         */
154 1
        $application->compiler->compile($context);
155
156 1
        $jsonReport = $input->getOption('report-json');
157 1
        if ($jsonReport) {
158
            file_put_contents(
159
                $jsonReport,
160
                json_encode(
161
                    $this->getApplication()->getIssuesCollector()->getIssues()
162
                )
163
            );
164
        }
165
166 1
        $output->writeln('');
167 1
        $output->writeln('Memory usage: ' . $this->getMemoryUsage(false) . ' (peak: ' . $this->getMemoryUsage(true) . ') MB');
168 1
    }
169
}
170