TextDescriptor.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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\Formatter\OutputFormatter;
  14. use Symfony\Component\Console\Helper\Helper;
  15. use Symfony\Component\Console\Input\InputArgument;
  16. use Symfony\Component\Console\Input\InputDefinition;
  17. use Symfony\Component\Console\Input\InputOption;
  18. /**
  19. * Text descriptor.
  20. *
  21. * @author Jean-François Simon <contact@jfsimon.fr>
  22. *
  23. * @internal
  24. */
  25. class TextDescriptor extends Descriptor
  26. {
  27. /**
  28. * {@inheritdoc}
  29. */
  30. protected function describeInputArgument(InputArgument $argument, array $options = [])
  31. {
  32. if (null !== $argument->getDefault() && (!\is_array($argument->getDefault()) || \count($argument->getDefault()))) {
  33. $default = sprintf('<comment> [default: %s]</comment>', $this->formatDefaultValue($argument->getDefault()));
  34. } else {
  35. $default = '';
  36. }
  37. $totalWidth = isset($options['total_width']) ? $options['total_width'] : Helper::strlen($argument->getName());
  38. $spacingWidth = $totalWidth - \strlen($argument->getName());
  39. $this->writeText(sprintf(' <info>%s</info> %s%s%s',
  40. $argument->getName(),
  41. str_repeat(' ', $spacingWidth),
  42. // + 4 = 2 spaces before <info>, 2 spaces after </info>
  43. preg_replace('/\s*[\r\n]\s*/', "\n".str_repeat(' ', $totalWidth + 4), $argument->getDescription()),
  44. $default
  45. ), $options);
  46. }
  47. /**
  48. * {@inheritdoc}
  49. */
  50. protected function describeInputOption(InputOption $option, array $options = [])
  51. {
  52. if ($option->acceptValue() && null !== $option->getDefault() && (!\is_array($option->getDefault()) || \count($option->getDefault()))) {
  53. $default = sprintf('<comment> [default: %s]</comment>', $this->formatDefaultValue($option->getDefault()));
  54. } else {
  55. $default = '';
  56. }
  57. $value = '';
  58. if ($option->acceptValue()) {
  59. $value = '='.strtoupper($option->getName());
  60. if ($option->isValueOptional()) {
  61. $value = '['.$value.']';
  62. }
  63. }
  64. $totalWidth = isset($options['total_width']) ? $options['total_width'] : $this->calculateTotalWidthForOptions([$option]);
  65. $synopsis = sprintf('%s%s',
  66. $option->getShortcut() ? sprintf('-%s, ', $option->getShortcut()) : ' ',
  67. sprintf('--%s%s', $option->getName(), $value)
  68. );
  69. $spacingWidth = $totalWidth - Helper::strlen($synopsis);
  70. $this->writeText(sprintf(' <info>%s</info> %s%s%s%s',
  71. $synopsis,
  72. str_repeat(' ', $spacingWidth),
  73. // + 4 = 2 spaces before <info>, 2 spaces after </info>
  74. preg_replace('/\s*[\r\n]\s*/', "\n".str_repeat(' ', $totalWidth + 4), $option->getDescription()),
  75. $default,
  76. $option->isArray() ? '<comment> (multiple values allowed)</comment>' : ''
  77. ), $options);
  78. }
  79. /**
  80. * {@inheritdoc}
  81. */
  82. protected function describeInputDefinition(InputDefinition $definition, array $options = [])
  83. {
  84. $totalWidth = $this->calculateTotalWidthForOptions($definition->getOptions());
  85. foreach ($definition->getArguments() as $argument) {
  86. $totalWidth = max($totalWidth, Helper::strlen($argument->getName()));
  87. }
  88. if ($definition->getArguments()) {
  89. $this->writeText('<comment>Arguments:</comment>', $options);
  90. $this->writeText("\n");
  91. foreach ($definition->getArguments() as $argument) {
  92. $this->describeInputArgument($argument, array_merge($options, ['total_width' => $totalWidth]));
  93. $this->writeText("\n");
  94. }
  95. }
  96. if ($definition->getArguments() && $definition->getOptions()) {
  97. $this->writeText("\n");
  98. }
  99. if ($definition->getOptions()) {
  100. $laterOptions = [];
  101. $this->writeText('<comment>Options:</comment>', $options);
  102. foreach ($definition->getOptions() as $option) {
  103. if (\strlen($option->getShortcut()) > 1) {
  104. $laterOptions[] = $option;
  105. continue;
  106. }
  107. $this->writeText("\n");
  108. $this->describeInputOption($option, array_merge($options, ['total_width' => $totalWidth]));
  109. }
  110. foreach ($laterOptions as $option) {
  111. $this->writeText("\n");
  112. $this->describeInputOption($option, array_merge($options, ['total_width' => $totalWidth]));
  113. }
  114. }
  115. }
  116. /**
  117. * {@inheritdoc}
  118. */
  119. protected function describeCommand(Command $command, array $options = [])
  120. {
  121. $command->getSynopsis(true);
  122. $command->getSynopsis(false);
  123. $command->mergeApplicationDefinition(false);
  124. if ($description = $command->getDescription()) {
  125. $this->writeText('<comment>Description:</comment>', $options);
  126. $this->writeText("\n");
  127. $this->writeText(' '.$description);
  128. $this->writeText("\n\n");
  129. }
  130. $this->writeText('<comment>Usage:</comment>', $options);
  131. foreach (array_merge([$command->getSynopsis(true)], $command->getAliases(), $command->getUsages()) as $usage) {
  132. $this->writeText("\n");
  133. $this->writeText(' '.OutputFormatter::escape($usage), $options);
  134. }
  135. $this->writeText("\n");
  136. $definition = $command->getNativeDefinition();
  137. if ($definition->getOptions() || $definition->getArguments()) {
  138. $this->writeText("\n");
  139. $this->describeInputDefinition($definition, $options);
  140. $this->writeText("\n");
  141. }
  142. $help = $command->getProcessedHelp();
  143. if ($help && $help !== $description) {
  144. $this->writeText("\n");
  145. $this->writeText('<comment>Help:</comment>', $options);
  146. $this->writeText("\n");
  147. $this->writeText(' '.str_replace("\n", "\n ", $help), $options);
  148. $this->writeText("\n");
  149. }
  150. }
  151. /**
  152. * {@inheritdoc}
  153. */
  154. protected function describeApplication(Application $application, array $options = [])
  155. {
  156. $describedNamespace = isset($options['namespace']) ? $options['namespace'] : null;
  157. $description = new ApplicationDescription($application, $describedNamespace);
  158. if (isset($options['raw_text']) && $options['raw_text']) {
  159. $width = $this->getColumnWidth($description->getCommands());
  160. foreach ($description->getCommands() as $command) {
  161. $this->writeText(sprintf("%-{$width}s %s", $command->getName(), $command->getDescription()), $options);
  162. $this->writeText("\n");
  163. }
  164. } else {
  165. if ('' != $help = $application->getHelp()) {
  166. $this->writeText("$help\n\n", $options);
  167. }
  168. $this->writeText("<comment>Usage:</comment>\n", $options);
  169. $this->writeText(" command [options] [arguments]\n\n", $options);
  170. $this->describeInputDefinition(new InputDefinition($application->getDefinition()->getOptions()), $options);
  171. $this->writeText("\n");
  172. $this->writeText("\n");
  173. $commands = $description->getCommands();
  174. $namespaces = $description->getNamespaces();
  175. if ($describedNamespace && $namespaces) {
  176. // make sure all alias commands are included when describing a specific namespace
  177. $describedNamespaceInfo = reset($namespaces);
  178. foreach ($describedNamespaceInfo['commands'] as $name) {
  179. $commands[$name] = $description->getCommand($name);
  180. }
  181. }
  182. // calculate max. width based on available commands per namespace
  183. $width = $this->getColumnWidth(array_merge(...array_values(array_map(function ($namespace) use ($commands) {
  184. return array_intersect($namespace['commands'], array_keys($commands));
  185. }, $namespaces))));
  186. if ($describedNamespace) {
  187. $this->writeText(sprintf('<comment>Available commands for the "%s" namespace:</comment>', $describedNamespace), $options);
  188. } else {
  189. $this->writeText('<comment>Available commands:</comment>', $options);
  190. }
  191. foreach ($namespaces as $namespace) {
  192. $namespace['commands'] = array_filter($namespace['commands'], function ($name) use ($commands) {
  193. return isset($commands[$name]);
  194. });
  195. if (!$namespace['commands']) {
  196. continue;
  197. }
  198. if (!$describedNamespace && ApplicationDescription::GLOBAL_NAMESPACE !== $namespace['id']) {
  199. $this->writeText("\n");
  200. $this->writeText(' <comment>'.$namespace['id'].'</comment>', $options);
  201. }
  202. foreach ($namespace['commands'] as $name) {
  203. $this->writeText("\n");
  204. $spacingWidth = $width - Helper::strlen($name);
  205. $command = $commands[$name];
  206. $commandAliases = $name === $command->getName() ? $this->getCommandAliasesText($command) : '';
  207. $this->writeText(sprintf(' <info>%s</info>%s%s', $name, str_repeat(' ', $spacingWidth), $commandAliases.$command->getDescription()), $options);
  208. }
  209. }
  210. $this->writeText("\n");
  211. }
  212. }
  213. /**
  214. * {@inheritdoc}
  215. */
  216. private function writeText($content, array $options = [])
  217. {
  218. $this->write(
  219. isset($options['raw_text']) && $options['raw_text'] ? strip_tags($content) : $content,
  220. isset($options['raw_output']) ? !$options['raw_output'] : true
  221. );
  222. }
  223. /**
  224. * Formats command aliases to show them in the command description.
  225. */
  226. private function getCommandAliasesText(Command $command): string
  227. {
  228. $text = '';
  229. $aliases = $command->getAliases();
  230. if ($aliases) {
  231. $text = '['.implode('|', $aliases).'] ';
  232. }
  233. return $text;
  234. }
  235. /**
  236. * Formats input option/argument default value.
  237. *
  238. * @param mixed $default
  239. */
  240. private function formatDefaultValue($default): string
  241. {
  242. if (INF === $default) {
  243. return 'INF';
  244. }
  245. if (\is_string($default)) {
  246. $default = OutputFormatter::escape($default);
  247. } elseif (\is_array($default)) {
  248. foreach ($default as $key => $value) {
  249. if (\is_string($value)) {
  250. $default[$key] = OutputFormatter::escape($value);
  251. }
  252. }
  253. }
  254. return str_replace('\\\\', '\\', json_encode($default, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
  255. }
  256. /**
  257. * @param (Command|string)[] $commands
  258. */
  259. private function getColumnWidth(array $commands): int
  260. {
  261. $widths = [];
  262. foreach ($commands as $command) {
  263. if ($command instanceof Command) {
  264. $widths[] = Helper::strlen($command->getName());
  265. foreach ($command->getAliases() as $alias) {
  266. $widths[] = Helper::strlen($alias);
  267. }
  268. } else {
  269. $widths[] = Helper::strlen($command);
  270. }
  271. }
  272. return $widths ? max($widths) + 2 : 0;
  273. }
  274. /**
  275. * @param InputOption[] $options
  276. */
  277. private function calculateTotalWidthForOptions(array $options): int
  278. {
  279. $totalWidth = 0;
  280. foreach ($options as $option) {
  281. // "-" + shortcut + ", --" + name
  282. $nameLength = 1 + max(Helper::strlen($option->getShortcut()), 1) + 4 + Helper::strlen($option->getName());
  283. if ($option->acceptValue()) {
  284. $valueLength = 1 + Helper::strlen($option->getName()); // = + value
  285. $valueLength += $option->isValueOptional() ? 2 : 0; // [ + ]
  286. $nameLength += $valueLength;
  287. }
  288. $totalWidth = max($totalWidth, $nameLength);
  289. }
  290. return $totalWidth;
  291. }
  292. }