Example #1
0
 /**
  * {@inheritdoc}
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $output->setFormatter(new Console\Formatter($output->isDecorated()));
     $this->io = new Console\IO($input, $output, $this->getHelperSet());
     $spec = $input->getArgument('spec');
     if (!is_dir($specsPath = $input->getOption('spec-path'))) {
         mkdir($specsPath, 0777, true);
     }
     if ($srcPath = $input->getOption('src-path')) {
         $spec = preg_replace('#^' . preg_quote($srcPath, '#') . '/#', '', $spec);
     }
     $spec = preg_replace('#\\.php$#', '', $spec);
     $spec = str_replace('/', '\\', $spec);
     $specsPath = realpath($specsPath) . DIRECTORY_SEPARATOR;
     $subject = str_replace('/', '\\', $spec);
     $classname = $input->getOption('namespace') . $subject;
     $filepath = $specsPath . str_replace('\\', DIRECTORY_SEPARATOR, $spec) . '.php';
     $namespace = str_replace('/', '\\', dirname(str_replace('\\', DIRECTORY_SEPARATOR, $classname)));
     $class = basename(str_replace('\\', DIRECTORY_SEPARATOR, $classname));
     if (file_exists($filepath)) {
         $overwrite = $this->io->askConfirmation(sprintf('File "%s" already exists. Overwrite?', basename($filepath)), false);
         if (!$overwrite) {
             return 1;
         }
         $this->io->writeln();
     }
     $dirpath = dirname($filepath);
     if (!is_dir($dirpath)) {
         mkdir($dirpath, 0777, true);
     }
     file_put_contents($filepath, $this->getSpecContentFor(array('%classname%' => $classname, '%namespace%' => $namespace, '%filepath%' => $filepath, '%class%' => $class, '%subject%' => $subject)));
     $output->writeln(sprintf("<info>Specification for <value>%s</value> created in <value>%s</value>.</info>\n", $subject, $this->relativizePath($filepath)));
 }
Example #2
0
 /**
  * Override run method to internationalize error message.
  *
  * @param \Symfony\Component\Console\Input\InputInterface $input
  * @param \Symfony\Component\Console\Output\OutputInterface $output
  * @return int Return code
  */
 public function run(InputInterface $input, OutputInterface $output)
 {
     // Set extra colors
     // The most problem is $output->getFormatter() don't work.
     // So create new formatter to add extra color.
     $formatter = new OutputFormatter($output->isDecorated());
     $formatter->setStyle('red', new OutputFormatterStyle('red', 'black'));
     $formatter->setStyle('green', new OutputFormatterStyle('green', 'black'));
     $formatter->setStyle('yellow', new OutputFormatterStyle('yellow', 'black'));
     $formatter->setStyle('blue', new OutputFormatterStyle('blue', 'black'));
     $formatter->setStyle('magenta', new OutputFormatterStyle('magenta', 'black'));
     $formatter->setStyle('yellow-blue', new OutputFormatterStyle('yellow', 'blue'));
     $output->setFormatter($formatter);
     \App::setLocale(\Config::get('syncle::MessageLang'));
     try {
         $result = parent::run($input, $output);
     } catch (\RuntimeException $e) {
         // All error messages were hard coded in
         // Symfony/Component/Console/Input/Input.php
         if ($e->getMessage() == 'Not enough arguments.') {
             $this->error(\Lang::get('syncle::BaseCommand.ArgumentNotEnough'));
         } elseif ($e->getMessage() == 'Too many arguments.') {
             $this->error(\Lang::get('syncle::BaseCommand.TooManyArgument'));
         } elseif (preg_match('/The "(.+)" option does not exist./', $e->getMessage(), $matches)) {
             $this->error(\Lang::get('syncle::BaseCommand.OptionNotExist', array('option' => $matches[1])));
         } else {
             $this->error($e->getMessage());
         }
         $result = 1;
     }
     return $result;
 }
Example #3
0
 /**
  *
  * {@inheritDoc}
  *
  * @see \Symfony\Component\Console\Command\Command::execute()
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $this->config = json_decode(file_get_contents($input->getOption('config')), true);
     $this->appRoot = dirname(realpath($input->getOption('config')));
     $output->setFormatter(new OutputFormatter(true));
     if ($input->getOption('start')) {
         $this->start();
         $output->writeln('<comment>VPU started</comment>');
     } elseif ($input->getOption('stop')) {
         $this->stop($output);
         $output->writeln('<comment>VPU stopped</comment>');
     } else {
         if (!empty($input->getArgument('files'))) {
             $parser = new Parser();
             $result = $parser->run($input->getArgument('files'));
             Test::createTable($this->getDbConnection());
             Test::store($this->getDbConnection(), $result);
             if ($input->getOption('archive')) {
                 Suite::createTable($this->getDbConnection());
                 Suite::store($this->getDbConnection(), $result);
                 if ($output->isVerbose()) {
                     $output->writeln('<comment>Test suite archived</comment>');
                 }
             }
         } else {
             $output->writeln('<error>No files where supplied. Use -h for help.</error>');
         }
     }
 }
 /**
  * Constructs a new ConsoleLogger instance.
  *
  * @param OutputInterface $output
  */
 public function __construct(OutputInterface $output)
 {
     $this->output = $output;
     $this->output->setFormatter(new OutputFormatter($this->output->isDecorated()));
     if (substr($this->getOperatingSystemName(), 0, 3) === 'WIN') {
         $this->taskActionStatusToOutputMap['completed'] = ' ' . chr(251) . ' ';
     }
 }
 public function run(InputInterface $input, OutputInterface $output)
 {
     // Set extra colors.
     // The most problem is $output->getFormatter() don't work...
     // So create new formatter to add extra color.
     $formatter = new OutputFormatter($output->isDecorated());
     $formatter->setStyle('red', new OutputFormatterStyle('red', 'black'));
     $formatter->setStyle('green', new OutputFormatterStyle('green', 'black'));
     $formatter->setStyle('yellow', new OutputFormatterStyle('yellow', 'black'));
     $formatter->setStyle('blue', new OutputFormatterStyle('blue', 'black'));
     $formatter->setStyle('magenta', new OutputFormatterStyle('magenta', 'black'));
     $formatter->setStyle('yellow-blue', new OutputFormatterStyle('yellow', 'blue'));
     $output->setFormatter($formatter);
     return parent::run($input, $output);
 }
Example #6
0
 /**
  * {@inheritdoc}
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $output->setFormatter(new Console\Formatter($output->isDecorated()));
     $this->io = new Console\IO($input, $output, $this->getHelperSet());
     $presenter = $this->createPresenter();
     $mocker = $this->createMocker();
     $unwrapper = $this->createArgumentsUnwrapper();
     $matchers = $this->createMatchersCollection($presenter, $unwrapper);
     $collector = $this->createStatisticsCollector();
     $formatter = $this->createFormatter($input->getOption('format'), $presenter, $collector);
     $specifications = $this->createLocator()->getSpecifications($input->getArgument('spec'));
     $runner = $this->createRunner($matchers, $mocker, $unwrapper);
     $this->configureAdditionalListeners($input->getOption('src-path'));
     $this->dispatcher->dispatch('beforeSuite', new Event\SuiteEvent($collector));
     $result = 0;
     $startTime = microtime(true);
     foreach ($specifications as $spec) {
         $result = max($result, $runner->runSpecification($spec));
     }
     $this->dispatcher->dispatch('afterSuite', new Event\SuiteEvent(microtime(true) - $startTime, $result));
     return intval(Event\ExampleEvent::PASSED !== $result);
 }
Example #7
0
 /**
  * {@inheritdoc}
  */
 public function setFormatter(OutputFormatterInterface $formatter)
 {
     $this->output->setFormatter($formatter);
 }
Example #8
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $simulateStepEnabled = true;
     $updateStepEnabled = true;
     $skip3rdPartyAppsDisable = false;
     if ($input->getOption('skip-migration-test')) {
         $simulateStepEnabled = false;
     }
     if ($input->getOption('dry-run')) {
         $updateStepEnabled = false;
     }
     if ($input->getOption('no-app-disable')) {
         $skip3rdPartyAppsDisable = true;
     }
     if (!$simulateStepEnabled && !$updateStepEnabled) {
         $output->writeln('<error>Only one of "--skip-migration-test" or "--dry-run" ' . 'can be specified at a time.</error>');
         return self::ERROR_INVALID_ARGUMENTS;
     }
     if (\OC::checkUpgrade(false)) {
         if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
             // Prepend each line with a little timestamp
             $timestampFormatter = new TimestampFormatter($this->config, $output->getFormatter());
             $output->setFormatter($timestampFormatter);
         }
         $self = $this;
         $updater = new Updater($this->config, \OC::$server->getIntegrityCodeChecker(), $this->logger);
         $updater->setSimulateStepEnabled($simulateStepEnabled);
         $updater->setUpdateStepEnabled($updateStepEnabled);
         $updater->setSkip3rdPartyAppsDisable($skip3rdPartyAppsDisable);
         $dispatcher = \OC::$server->getEventDispatcher();
         $progress = new ProgressBar($output);
         $progress->setFormat(" %message%\n %current%/%max% [%bar%] %percent:3s%%");
         $listener = function ($event) use($progress, $output) {
             if ($event instanceof GenericEvent) {
                 $message = $event->getSubject();
                 if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
                     $output->writeln(' Checking table ' . $message);
                 } else {
                     if (strlen($message) > 60) {
                         $message = substr($message, 0, 57) . '...';
                     }
                     $progress->setMessage($message);
                     if ($event[0] === 1) {
                         $output->writeln('');
                         $progress->start($event[1]);
                     }
                     $progress->setProgress($event[0]);
                     if ($event[0] === $event[1]) {
                         $progress->setMessage('Done');
                         $progress->finish();
                         $output->writeln('');
                     }
                 }
             }
         };
         $repairListener = function ($event) use($progress, $output) {
             if (!$event instanceof GenericEvent) {
                 return;
             }
             switch ($event->getSubject()) {
                 case '\\OC\\Repair::startProgress':
                     $progress->setMessage('Starting ...');
                     $output->writeln($event->getArgument(1));
                     $output->writeln('');
                     $progress->start($event->getArgument(0));
                     break;
                 case '\\OC\\Repair::advance':
                     $desc = $event->getArgument(1);
                     if (!empty($desc)) {
                         $progress->setMessage($desc);
                     }
                     $progress->advance($event->getArgument(0));
                     break;
                 case '\\OC\\Repair::finishProgress':
                     $progress->setMessage('Done');
                     $progress->finish();
                     $output->writeln('');
                     break;
                 case '\\OC\\Repair::step':
                     if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
                         $output->writeln('<info>Repair step: ' . $event->getArgument(0) . '</info>');
                     }
                     break;
                 case '\\OC\\Repair::info':
                     if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
                         $output->writeln('<info>Repair info: ' . $event->getArgument(0) . '</info>');
                     }
                     break;
                 case '\\OC\\Repair::warning':
                     $output->writeln('<error>Repair warning: ' . $event->getArgument(0) . '</error>');
                     break;
                 case '\\OC\\Repair::error':
                     $output->writeln('<error>Repair error: ' . $event->getArgument(0) . '</error>');
                     break;
             }
         };
         $dispatcher->addListener('\\OC\\DB\\Migrator::executeSql', $listener);
         $dispatcher->addListener('\\OC\\DB\\Migrator::checkTable', $listener);
         $dispatcher->addListener('\\OC\\Repair::startProgress', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::advance', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::finishProgress', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::step', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::info', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::warning', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::error', $repairListener);
         $updater->listen('\\OC\\Updater', 'maintenanceEnabled', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceDisabled', function () use($output) {
             $output->writeln('<info>Turned off maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceActive', function () use($output) {
             $output->writeln('<info>Maintenance mode is kept active</info>');
         });
         $updater->listen('\\OC\\Updater', 'updateEnd', function ($success) use($output, $updateStepEnabled, $self) {
             $mode = $updateStepEnabled ? 'Update' : 'Update simulation';
             if ($success) {
                 $message = "<info>{$mode} successful</info>";
             } else {
                 $message = "<error>{$mode} failed</error>";
             }
             $output->writeln($message);
         });
         $updater->listen('\\OC\\Updater', 'dbUpgradeBefore', function () use($output) {
             $output->writeln('<info>Updating database schema</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgradeBefore', function () use($output) {
             $output->writeln('<info>Checking whether the database schema can be updated (this can take a long time depending on the database size)</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgrade', function () use($output) {
             $output->writeln('<info>Checked database schema update</info>');
         });
         $updater->listen('\\OC\\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled incompatible app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
             $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheckBefore', function () use($output) {
             $output->writeln('<info>Checking updates of apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appSimulateUpdate', function ($app) use($output) {
             $output->writeln("<info>Checking whether the database schema for <{$app}> can be updated (this can take a long time depending on the database size)</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheck', function () use($output) {
             $output->writeln('<info>Checked database schema update for apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeStarted', function ($app, $version) use($output) {
             $output->writeln("<info>Updating <{$app}> ...</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgrade', function ($app, $version) use($output) {
             $output->writeln("<info>Updated <{$app}> to {$version}</info>");
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output, $self) {
             $output->writeln("<error>{$message}</error>");
         });
         $updater->listen('\\OC\\Updater', 'setDebugLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Set log level to debug</info>");
         });
         $updater->listen('\\OC\\Updater', 'resetLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Reset log level</info>");
         });
         $updater->listen('\\OC\\Updater', 'startCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Starting code integrity check...</info>");
         });
         $updater->listen('\\OC\\Updater', 'finishedCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Finished code integrity check</info>");
         });
         $success = $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         if (!$success) {
             return self::ERROR_FAILURE;
         }
         return self::ERROR_SUCCESS;
     } else {
         if ($this->config->getSystemValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>Maybe an upgrade is already in process. Please check the ' . 'logfile (data/owncloud.log). If you want to re-run the ' . 'upgrade procedure, remove the "maintenance mode" from ' . 'config.php and call this script again.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }
Example #9
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $simulateStepEnabled = true;
     $updateStepEnabled = true;
     $skip3rdPartyAppsDisable = false;
     if ($this->config->getSystemValue('update.skip-migration-test', false)) {
         $output->writeln('<info>"skip-migration-test" is activated via config.php</info>');
         $simulateStepEnabled = false;
     }
     if ($input->getOption('skip-migration-test')) {
         $simulateStepEnabled = false;
     }
     if ($input->getOption('dry-run')) {
         $updateStepEnabled = false;
     }
     if ($input->getOption('no-app-disable')) {
         $skip3rdPartyAppsDisable = true;
     }
     if (!$simulateStepEnabled && !$updateStepEnabled) {
         $output->writeln('<error>Only one of "--skip-migration-test" or "--dry-run" ' . 'can be specified at a time.</error>');
         return self::ERROR_INVALID_ARGUMENTS;
     }
     if (\OC::checkUpgrade(false)) {
         if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
             // Prepend each line with a little timestamp
             $timestampFormatter = new TimestampFormatter($this->config, $output->getFormatter());
             $output->setFormatter($timestampFormatter);
         }
         $self = $this;
         $updater = new Updater(\OC::$server->getHTTPHelper(), $this->config, \OC::$server->getIntegrityCodeChecker(), $this->logger);
         $updater->setSimulateStepEnabled($simulateStepEnabled);
         $updater->setUpdateStepEnabled($updateStepEnabled);
         $updater->setSkip3rdPartyAppsDisable($skip3rdPartyAppsDisable);
         $updater->listen('\\OC\\Updater', 'maintenanceEnabled', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceDisabled', function () use($output) {
             $output->writeln('<info>Turned off maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceActive', function () use($output) {
             $output->writeln('<info>Maintenance mode is kept active</info>');
         });
         $updater->listen('\\OC\\Updater', 'updateEnd', function ($success) use($output, $updateStepEnabled, $self) {
             $mode = $updateStepEnabled ? 'Update' : 'Update simulation';
             if ($success) {
                 $message = "<info>{$mode} successful</info>";
             } else {
                 $message = "<error>{$mode} failed</error>";
             }
             $output->writeln($message);
         });
         $updater->listen('\\OC\\Updater', 'dbUpgradeBefore', function () use($output) {
             $output->writeln('<info>Updating database schema</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgradeBefore', function () use($output) {
             $output->writeln('<info>Checking whether the database schema can be updated (this can take a long time depending on the database size)</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgrade', function () use($output) {
             $output->writeln('<info>Checked database schema update</info>');
         });
         $updater->listen('\\OC\\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled incompatible app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
             $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'repairWarning', function ($app) use($output) {
             $output->writeln('<error>Repair warning: ' . $app . '</error>');
         });
         $updater->listen('\\OC\\Updater', 'repairError', function ($app) use($output) {
             $output->writeln('<error>Repair error: ' . $app . '</error>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheckBefore', function () use($output) {
             $output->writeln('<info>Checking updates of apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appSimulateUpdate', function ($app) use($output) {
             $output->writeln("<info>Checking whether the database schema for <{$app}> can be updated (this can take a long time depending on the database size)</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheck', function () use($output) {
             $output->writeln('<info>Checked database schema update for apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeStarted', function ($app, $version) use($output) {
             $output->writeln("<info>Updating <{$app}> ...</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgrade', function ($app, $version) use($output) {
             $output->writeln("<info>Updated <{$app}> to {$version}</info>");
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output, $self) {
             $output->writeln("<error>{$message}</error>");
         });
         $updater->listen('\\OC\\Updater', 'setDebugLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Set log level to debug</info>");
         });
         $updater->listen('\\OC\\Updater', 'resetLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Reset log level</info>");
         });
         $updater->listen('\\OC\\Updater', 'startCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Starting code integrity check...</info>");
         });
         $updater->listen('\\OC\\Updater', 'finishedCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Finished code integrity check</info>");
         });
         if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
             $updater->listen('\\OC\\Updater', 'repairInfo', function ($message) use($output) {
                 $output->writeln('<info>Repair info: ' . $message . '</info>');
             });
             $updater->listen('\\OC\\Updater', 'repairStep', function ($message) use($output) {
                 $output->writeln('<info>Repair step: ' . $message . '</info>');
             });
         }
         $success = $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         if (!$success) {
             return self::ERROR_FAILURE;
         }
         return self::ERROR_SUCCESS;
     } else {
         if ($this->config->getSystemValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>Maybe an upgrade is already in process. Please check the ' . 'logfile (data/owncloud.log). If you want to re-run the ' . 'upgrade procedure, remove the "maintenance mode" from ' . 'config.php and call this script again.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }
 /**
  * Sets output formatter.
  *
  * @param \Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter
  */
 public function setFormatter(\Symfony\Component\Console\Formatter\OutputFormatterInterface $formatter)
 {
     $this->decoratedOutput->setFormatter($formatter);
 }
 /**
  * {@inheritedDoc}.
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $output->setFormatter(new OutputFormatter(true));
     if (null !== ($format = $input->getOption('format'))) {
         if (!in_array($format, $this->formats)) {
             throw new \RuntimeException(sprintf('Format "%s" is unknown. Available formats: %s.', $format, implode(', ', $this->formats)));
         }
     }
     if (null !== ($path = $input->getArgument('path'))) {
         $filesystem = new Filesystem();
         if (!$filesystem->isAbsolutePath($path)) {
             $path = getcwd() . DIRECTORY_SEPARATOR . $path;
         }
     }
     if (null === ($configFile = $input->getOption('config-file'))) {
         $configDir = $path;
         if (is_file($path) && ($dirName = pathinfo($path, PATHINFO_DIRNAME))) {
             $configDir = $dirName;
         } elseif (null === $path) {
             $configDir = getcwd();
             // path is directory
         }
         $configFile = $configDir . DIRECTORY_SEPARATOR . '.php_cd';
     }
     $config = $this->loadConfiguration($configFile);
     $rules = $config->getRules();
     $finder = $config->getFinder();
     $finder->in($path);
     $nodeParserResolver = new NodeParserResolver();
     $ruleChecker = new RuleChecker();
     $eventDispatcher = $this->initEventDispatcher($output, $format, $input->getOption('verbose'));
     $detector = new CouplingDetector($nodeParserResolver, $ruleChecker, $eventDispatcher);
     $violations = $detector->detect($finder, $rules);
     return $this->determineExitCode($violations);
 }