Descriptor.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\Descriptor;
  11. use Symfony\Component\Console\Application;
  12. use Symfony\Component\Console\Command\Command;
  13. use Symfony\Component\Console\Exception\InvalidArgumentException;
  14. use Symfony\Component\Console\Input\InputArgument;
  15. use Symfony\Component\Console\Input\InputDefinition;
  16. use Symfony\Component\Console\Input\InputOption;
  17. use Symfony\Component\Console\Output\OutputInterface;
  18. /**
  19. * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
  20. *
  21. * @internal
  22. */
  23. abstract class Descriptor implements DescriptorInterface
  24. {
  25. /**
  26. * @var OutputInterface
  27. */
  28. protected $output;
  29. /**
  30. * {@inheritdoc}
  31. */
  32. public function describe(OutputInterface $output, object $object, array $options = [])
  33. {
  34. $this->output = $output;
  35. switch (true) {
  36. case $object instanceof InputArgument:
  37. $this->describeInputArgument($object, $options);
  38. break;
  39. case $object instanceof InputOption:
  40. $this->describeInputOption($object, $options);
  41. break;
  42. case $object instanceof InputDefinition:
  43. $this->describeInputDefinition($object, $options);
  44. break;
  45. case $object instanceof Command:
  46. $this->describeCommand($object, $options);
  47. break;
  48. case $object instanceof Application:
  49. $this->describeApplication($object, $options);
  50. break;
  51. default:
  52. throw new InvalidArgumentException(sprintf('Object of type "%s" is not describable.', get_debug_type($object)));
  53. }
  54. }
  55. /**
  56. * Writes content to output.
  57. */
  58. protected function write(string $content, bool $decorated = false)
  59. {
  60. $this->output->write($content, false, $decorated ? OutputInterface::OUTPUT_NORMAL : OutputInterface::OUTPUT_RAW);
  61. }
  62. /**
  63. * Describes an InputArgument instance.
  64. */
  65. abstract protected function describeInputArgument(InputArgument $argument, array $options = []);
  66. /**
  67. * Describes an InputOption instance.
  68. */
  69. abstract protected function describeInputOption(InputOption $option, array $options = []);
  70. /**
  71. * Describes an InputDefinition instance.
  72. */
  73. abstract protected function describeInputDefinition(InputDefinition $definition, array $options = []);
  74. /**
  75. * Describes a Command instance.
  76. */
  77. abstract protected function describeCommand(Command $command, array $options = []);
  78. /**
  79. * Describes an Application instance.
  80. */
  81. abstract protected function describeApplication(Application $application, array $options = []);
  82. }