This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Console/Command/Command.php

579 lines
15 KiB
PHP
Raw Normal View History

2010-01-04 14:42:28 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Console\Command;
2010-01-04 14:42:28 +00:00
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Helper\HelperSet;
2010-01-04 14:42:28 +00:00
/**
* Base class for all commands.
2010-01-04 14:42:28 +00:00
*
* @author Fabien Potencier <fabien@symfony.com>
2011-03-24 08:39:53 +00:00
*
* @api
2010-01-04 14:42:28 +00:00
*/
class Command
2010-01-04 14:42:28 +00:00
{
private $application;
private $name;
private $aliases;
private $definition;
private $help;
private $description;
private $ignoreValidationErrors;
private $applicationDefinitionMerged;
private $code;
private $synopsis;
private $helperSet;
/**
* Constructor.
*
* @param string $name The name of the command
*
* @throws \LogicException When the command name is empty
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function __construct($name = null)
2010-01-04 14:42:28 +00:00
{
$this->definition = new InputDefinition();
$this->ignoreValidationErrors = false;
$this->applicationDefinitionMerged = false;
$this->aliases = array();
if (null !== $name) {
$this->setName($name);
}
$this->configure();
if (!$this->name) {
throw new \LogicException('The command name cannot be empty.');
}
2010-01-04 14:42:28 +00:00
}
/**
* Sets the application instance for this command.
*
* @param Application $application An Application instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function setApplication(Application $application = null)
{
$this->application = $application;
if ($application) {
$this->setHelperSet($application->getHelperSet());
} else {
$this->helperSet = null;
}
}
/**
* Sets the helper set.
*
* @param HelperSet $helperSet A HelperSet instance
*/
public function setHelperSet(HelperSet $helperSet)
{
$this->helperSet = $helperSet;
}
/**
* Gets the helper set.
*
* @return HelperSet A HelperSet instance
*/
public function getHelperSet()
{
return $this->helperSet;
}
/**
* Gets the application instance for this command.
*
* @return Application An Application instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function getApplication()
{
return $this->application;
}
/**
* Configures the current command.
*/
protected function configure()
{
}
/**
* Executes the current command.
*
2010-12-06 07:11:27 +00:00
* This method is not abstract because you can use this class
* as a concrete class. In this case, instead of defining the
* execute() method, you set the code to execute by passing
* a Closure to the setCode() method.
*
* @param InputInterface $input An InputInterface instance
* @param OutputInterface $output An OutputInterface instance
*
* @return integer 0 if everything went fine, or an error code
*
* @throws \LogicException When this abstract method is not implemented
2010-12-06 07:11:27 +00:00
* @see setCode()
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
throw new \LogicException('You must override the execute() method in the concrete command class.');
}
/**
* Interacts with the user.
*
* @param InputInterface $input An InputInterface instance
* @param OutputInterface $output An OutputInterface instance
*/
protected function interact(InputInterface $input, OutputInterface $output)
{
}
/**
* Initializes the command just after the input has been validated.
*
* This is mainly useful when a lot of commands extends one main command
* where some things need to be initialized based on the input arguments and options.
*
* @param InputInterface $input An InputInterface instance
* @param OutputInterface $output An OutputInterface instance
*/
protected function initialize(InputInterface $input, OutputInterface $output)
{
}
/**
* Runs the command.
*
2010-12-06 07:11:27 +00:00
* The code to execute is either defined directly with the
* setCode() method or by overriding the execute() method
* in a sub-class.
*
* @param InputInterface $input An InputInterface instance
* @param OutputInterface $output An OutputInterface instance
2010-12-06 07:11:27 +00:00
*
* @see setCode()
* @see execute()
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function run(InputInterface $input, OutputInterface $output)
{
// force the creation of the synopsis before the merge with the app definition
$this->getSynopsis();
// add the application arguments and options
$this->mergeApplicationDefinition();
// bind the input against the command specific arguments/options
try {
$input->bind($this->definition);
} catch (\Exception $e) {
if (!$this->ignoreValidationErrors) {
throw $e;
}
}
$this->initialize($input, $output);
if ($input->isInteractive()) {
$this->interact($input, $output);
}
$input->validate();
if ($this->code) {
return call_user_func($this->code, $input, $output);
}
2011-02-27 16:48:41 +00:00
return $this->execute($input, $output);
}
/**
* Sets the code to execute when running this command.
*
2010-12-06 07:11:27 +00:00
* If this method is used, it overrides the code defined
* in the execute() method.
*
* @param \Closure $code A \Closure
*
* @return Command The current instance
2010-12-06 07:11:27 +00:00
*
* @see execute()
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function setCode(\Closure $code)
{
$this->code = $code;
return $this;
}
/**
* Merges the application definition with the command definition.
*/
private function mergeApplicationDefinition()
{
if (null === $this->application || true === $this->applicationDefinitionMerged) {
return;
}
$this->definition->setArguments(array_merge(
$this->application->getDefinition()->getArguments(),
$this->definition->getArguments()
));
2010-01-04 14:42:28 +00:00
$this->definition->addOptions($this->application->getDefinition()->getOptions());
$this->applicationDefinitionMerged = true;
}
/**
* Sets an array of argument and option instances.
*
* @param array|Definition $definition An array of argument and option instances or a definition instance
*
* @return Command The current instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function setDefinition($definition)
2010-01-04 14:42:28 +00:00
{
if ($definition instanceof InputDefinition) {
$this->definition = $definition;
} else {
$this->definition->setDefinition($definition);
}
$this->applicationDefinitionMerged = false;
return $this;
2010-01-04 14:42:28 +00:00
}
/**
* Gets the InputDefinition attached to this Command.
*
* @return InputDefinition An InputDefinition instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function getDefinition()
2010-01-04 14:42:28 +00:00
{
return $this->definition;
2010-01-04 14:42:28 +00:00
}
/**
* Adds an argument.
*
* @param string $name The argument name
* @param integer $mode The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL
* @param string $description A description text
* @param mixed $default The default value (for InputArgument::OPTIONAL mode only)
*
* @return Command The current instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function addArgument($name, $mode = null, $description = '', $default = null)
2010-01-04 14:42:28 +00:00
{
$this->definition->addArgument(new InputArgument($name, $mode, $description, $default));
return $this;
2010-01-04 14:42:28 +00:00
}
/**
* Adds an option.
*
* @param string $name The option name
* @param string $shortcut The shortcut (can be null)
* @param integer $mode The option mode: One of the InputOption::VALUE_* constants
* @param string $description A description text
* @param mixed $default The default value (must be null for InputOption::VALUE_REQUIRED or self::VALUE_NONE)
*
* @return Command The current instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function addOption($name, $shortcut = null, $mode = null, $description = '', $default = null)
{
$this->definition->addOption(new InputOption($name, $shortcut, $mode, $description, $default));
return $this;
}
/**
* Sets the name of the command.
*
* This method can set both the namespace and the name if
* you separate them by a colon (:)
*
* $command->setName('foo:bar');
*
* @param string $name The command name
*
* @return Command The current instance
*
* @throws \InvalidArgumentException When command name given is empty
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function setName($name)
2010-01-04 14:42:28 +00:00
{
$this->validateName($name);
$this->name = $name;
return $this;
2010-01-04 14:42:28 +00:00
}
/**
* Returns the command name.
*
* @return string The command name
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function getName()
2010-01-04 14:42:28 +00:00
{
return $this->name;
2010-01-04 14:42:28 +00:00
}
/**
* Sets the description for the command.
*
* @param string $description The description for the command
*
* @return Command The current instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function setDescription($description)
2010-01-04 14:42:28 +00:00
{
$this->description = $description;
return $this;
2010-01-04 14:42:28 +00:00
}
/**
* Returns the description for the command.
*
* @return string The description for the command
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function getDescription()
2010-01-04 14:42:28 +00:00
{
return $this->description;
2010-01-04 14:42:28 +00:00
}
/**
* Sets the help for the command.
*
* @param string $help The help for the command
*
* @return Command The current instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function setHelp($help)
2010-01-04 14:42:28 +00:00
{
$this->help = $help;
return $this;
2010-01-04 14:42:28 +00:00
}
/**
* Returns the help for the command.
*
* @return string The help for the command
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function getHelp()
2010-01-04 14:42:28 +00:00
{
return $this->help;
2010-01-04 14:42:28 +00:00
}
/**
* Returns the processed help for the command replacing the %command.name% and
* %command.full_name% patterns with the real values dynamically.
*
* @return string The processed help for the command
*/
public function getProcessedHelp()
2010-01-04 14:42:28 +00:00
{
$name = $this->name;
$placeholders = array(
'%command.name%',
'%command.full_name%'
);
$replacements = array(
$name,
$_SERVER['PHP_SELF'].' '.$name
);
return str_replace($placeholders, $replacements, $this->getHelp());
2010-01-04 14:42:28 +00:00
}
/**
* Sets the aliases for the command.
*
* @param array $aliases An array of aliases for the command
*
* @return Command The current instance
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function setAliases($aliases)
2010-01-04 14:42:28 +00:00
{
foreach ($aliases as $alias) {
$this->validateName($alias);
}
$this->aliases = $aliases;
return $this;
2010-01-04 14:42:28 +00:00
}
/**
* Returns the aliases for the command.
*
* @return array An array of aliases for the command
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function getAliases()
2010-01-04 14:42:28 +00:00
{
return $this->aliases;
2010-01-04 14:42:28 +00:00
}
/**
* Returns the synopsis for the command.
*
* @return string The synopsis
*/
public function getSynopsis()
{
if (null === $this->synopsis) {
$this->synopsis = trim(sprintf('%s %s', $this->name, $this->definition->getSynopsis()));
}
return $this->synopsis;
}
2010-01-04 14:42:28 +00:00
/**
* Gets a helper instance by name.
*
* @param string $name The helper name
*
* @return mixed The helper value
*
* @throws \InvalidArgumentException if the helper is not defined
2011-03-24 08:39:53 +00:00
*
* @api
*/
public function getHelper($name)
2010-01-04 14:42:28 +00:00
{
return $this->helperSet->get($name);
2010-01-04 14:42:28 +00:00
}
/**
* Returns a text representation of the command.
*
* @return string A string representing the command
*/
public function asText()
{
$messages = array(
'<comment>Usage:</comment>',
' '.$this->getSynopsis(),
'',
);
if ($this->getAliases()) {
$messages[] = '<comment>Aliases:</comment> <info>'.implode(', ', $this->getAliases()).'</info>';
}
$messages[] = $this->definition->asText();
if ($help = $this->getProcessedHelp()) {
$messages[] = '<comment>Help:</comment>';
$messages[] = ' '.implode("\n ", explode("\n", $help))."\n";
}
return implode("\n", $messages);
}
2010-01-04 14:42:28 +00:00
/**
* Returns an XML representation of the command.
*
* @param Boolean $asDom Whether to return a DOM or an XML string
*
* @return string|DOMDocument An XML string representing the command
*/
public function asXml($asDom = false)
{
$dom = new \DOMDocument('1.0', 'UTF-8');
$dom->formatOutput = true;
$dom->appendChild($commandXML = $dom->createElement('command'));
$commandXML->setAttribute('id', $this->name);
$commandXML->setAttribute('name', $this->name);
$commandXML->appendChild($usageXML = $dom->createElement('usage'));
$usageXML->appendChild($dom->createTextNode(sprintf($this->getSynopsis(), '')));
$commandXML->appendChild($descriptionXML = $dom->createElement('description'));
$descriptionXML->appendChild($dom->createTextNode(implode("\n ", explode("\n", $this->getDescription()))));
$commandXML->appendChild($helpXML = $dom->createElement('help'));
$help = $this->help;
$helpXML->appendChild($dom->createTextNode(implode("\n ", explode("\n", $help))));
$commandXML->appendChild($aliasesXML = $dom->createElement('aliases'));
foreach ($this->getAliases() as $alias) {
$aliasesXML->appendChild($aliasXML = $dom->createElement('alias'));
$aliasXML->appendChild($dom->createTextNode($alias));
}
$definition = $this->definition->asXml(true);
$commandXML->appendChild($dom->importNode($definition->getElementsByTagName('arguments')->item(0), true));
$commandXML->appendChild($dom->importNode($definition->getElementsByTagName('options')->item(0), true));
return $asDom ? $dom : $dom->saveXml();
}
private function validateName($name)
{
if (!preg_match('/^[^\:]+(\:[^\:]+)*$/', $name)) {
throw new \InvalidArgumentException(sprintf('Command name "%s" is invalid.', $name));
}
}
2010-01-04 14:42:28 +00:00
}