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 = array())
  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 = array())
  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(array($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 = array())
  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, array('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 = array();
  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, array('total_width' => $totalWidth)));
  109. }
  110. foreach ($laterOptions as $option) {
  111. $this->writeText("\n");
  112. $this->describeInputOption($option, array_merge($options, array('total_width' => $totalWidth)));
  113. }
  114. }
  115. }
  116. /**
  117. * {@inheritdoc}
  118. */
  119. protected function describeCommand(Command $command, array $options = array())
  120. {
  121. $command->getSynopsis(true);
  122. $command->getSynopsis(false);
  123. $command->mergeApplicationDefinition(false);
  124. $this->writeText('<comment>Usage:</comment>', $options);
  125. foreach (array_merge(array($command->getSynopsis(true)), $command->getAliases(), $command->getUsages()) as $usage) {
  126. $this->writeText("\n");
  127. $this->writeText(' '.OutputFormatter::escape($usage), $options);
  128. }
  129. $this->writeText("\n");
  130. $definition = $command->getNativeDefinition();
  131. if ($definition->getOptions() || $definition->getArguments()) {
  132. $this->writeText("\n");
  133. $this->describeInputDefinition($definition, $options);
  134. $this->writeText("\n");
  135. }
  136. if ($help = $command->getProcessedHelp()) {
  137. $this->writeText("\n");
  138. $this->writeText('<comment>Help:</comment>', $options);
  139. $this->writeText("\n");
  140. $this->writeText(' '.str_replace("\n", "\n ", $help), $options);
  141. $this->writeText("\n");
  142. }
  143. }
  144. /**
  145. * {@inheritdoc}
  146. */
  147. protected function describeApplication(Application $application, array $options = array())
  148. {
  149. $describedNamespace = isset($options['namespace']) ? $options['namespace'] : null;
  150. $description = new ApplicationDescription($application, $describedNamespace);
  151. if (isset($options['raw_text']) && $options['raw_text']) {
  152. $width = $this->getColumnWidth($description->getCommands());
  153. foreach ($description->getCommands() as $command) {
  154. $this->writeText(sprintf("%-{$width}s %s", $command->getName(), $command->getDescription()), $options);
  155. $this->writeText("\n");
  156. }
  157. } else {
  158. if ('' != $help = $application->getHelp()) {
  159. $this->writeText("$help\n\n", $options);
  160. }
  161. $this->writeText("<comment>Usage:</comment>\n", $options);
  162. $this->writeText(" command [options] [arguments]\n\n", $options);
  163. $this->describeInputDefinition(new InputDefinition($application->getDefinition()->getOptions()), $options);
  164. $this->writeText("\n");
  165. $this->writeText("\n");
  166. $commands = $description->getCommands();
  167. $namespaces = $description->getNamespaces();
  168. if ($describedNamespace && $namespaces) {
  169. // make sure all alias commands are included when describing a specific namespace
  170. $describedNamespaceInfo = reset($namespaces);
  171. foreach ($describedNamespaceInfo['commands'] as $name) {
  172. $commands[$name] = $description->getCommand($name);
  173. }
  174. }
  175. // calculate max. width based on available commands per namespace
  176. $width = $this->getColumnWidth(\call_user_func_array('array_merge', array_map(function ($namespace) use ($commands) {
  177. return array_intersect($namespace['commands'], array_keys($commands));
  178. }, $namespaces)));
  179. if ($describedNamespace) {
  180. $this->writeText(sprintf('<comment>Available commands for the "%s" namespace:</comment>', $describedNamespace), $options);
  181. } else {
  182. $this->writeText('<comment>Available commands:</comment>', $options);
  183. }
  184. foreach ($namespaces as $namespace) {
  185. $namespace['commands'] = array_filter($namespace['commands'], function ($name) use ($commands) {
  186. return isset($commands[$name]);
  187. });
  188. if (!$namespace['commands']) {
  189. continue;
  190. }
  191. if (!$describedNamespace && ApplicationDescription::GLOBAL_NAMESPACE !== $namespace['id']) {
  192. $this->writeText("\n");
  193. $this->writeText(' <comment>'.$namespace['id'].'</comment>', $options);
  194. }
  195. foreach ($namespace['commands'] as $name) {
  196. $this->writeText("\n");
  197. $spacingWidth = $width - Helper::strlen($name);
  198. $command = $commands[$name];
  199. $commandAliases = $name === $command->getName() ? $this->getCommandAliasesText($command) : '';
  200. $this->writeText(sprintf(' <info>%s</info>%s%s', $name, str_repeat(' ', $spacingWidth), $commandAliases.$command->getDescription()), $options);
  201. }
  202. }
  203. $this->writeText("\n");
  204. }
  205. }
  206. /**
  207. * {@inheritdoc}
  208. */
  209. private function writeText($content, array $options = array())
  210. {
  211. $this->write(
  212. isset($options['raw_text']) && $options['raw_text'] ? strip_tags($content) : $content,
  213. isset($options['raw_output']) ? !$options['raw_output'] : true
  214. );
  215. }
  216. /**
  217. * Formats command aliases to show them in the command description.
  218. *
  219. * @return string
  220. */
  221. private function getCommandAliasesText(Command $command)
  222. {
  223. $text = '';
  224. $aliases = $command->getAliases();
  225. if ($aliases) {
  226. $text = '['.implode('|', $aliases).'] ';
  227. }
  228. return $text;
  229. }
  230. /**
  231. * Formats input option/argument default value.
  232. *
  233. * @param mixed $default
  234. *
  235. * @return string
  236. */
  237. private function formatDefaultValue($default)
  238. {
  239. if (INF === $default) {
  240. return 'INF';
  241. }
  242. if (\is_string($default)) {
  243. $default = OutputFormatter::escape($default);
  244. } elseif (\is_array($default)) {
  245. foreach ($default as $key => $value) {
  246. if (\is_string($value)) {
  247. $default[$key] = OutputFormatter::escape($value);
  248. }
  249. }
  250. }
  251. return str_replace('\\\\', '\\', json_encode($default, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
  252. }
  253. /**
  254. * @param (Command|string)[] $commands
  255. *
  256. * @return int
  257. */
  258. private function getColumnWidth(array $commands)
  259. {
  260. $widths = array();
  261. foreach ($commands as $command) {
  262. if ($command instanceof Command) {
  263. $widths[] = Helper::strlen($command->getName());
  264. foreach ($command->getAliases() as $alias) {
  265. $widths[] = Helper::strlen($alias);
  266. }
  267. } else {
  268. $widths[] = Helper::strlen($command);
  269. }
  270. }
  271. return $widths ? max($widths) + 2 : 0;
  272. }
  273. /**
  274. * @param InputOption[] $options
  275. *
  276. * @return int
  277. */
  278. private function calculateTotalWidthForOptions(array $options)
  279. {
  280. $totalWidth = 0;
  281. foreach ($options as $option) {
  282. // "-" + shortcut + ", --" + name
  283. $nameLength = 1 + max(Helper::strlen($option->getShortcut()), 1) + 4 + Helper::strlen($option->getName());
  284. if ($option->acceptValue()) {
  285. $valueLength = 1 + Helper::strlen($option->getName()); // = + value
  286. $valueLength += $option->isValueOptional() ? 2 : 0; // [ + ]
  287. $nameLength += $valueLength;
  288. }
  289. $totalWidth = max($totalWidth, $nameLength);
  290. }
  291. return $totalWidth;
  292. }
  293. }