ProgressIndicator.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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\Helper;
  11. use Symfony\Component\Console\Exception\InvalidArgumentException;
  12. use Symfony\Component\Console\Exception\LogicException;
  13. use Symfony\Component\Console\Output\OutputInterface;
  14. /**
  15. * @author Kevin Bond <kevinbond@gmail.com>
  16. */
  17. class ProgressIndicator
  18. {
  19. private const FORMATS = [
  20. 'normal' => ' %indicator% %message%',
  21. 'normal_no_ansi' => ' %message%',
  22. 'verbose' => ' %indicator% %message% (%elapsed:6s%)',
  23. 'verbose_no_ansi' => ' %message% (%elapsed:6s%)',
  24. 'very_verbose' => ' %indicator% %message% (%elapsed:6s%, %memory:6s%)',
  25. 'very_verbose_no_ansi' => ' %message% (%elapsed:6s%, %memory:6s%)',
  26. ];
  27. private OutputInterface $output;
  28. private int $startTime;
  29. private ?string $format = null;
  30. private ?string $message = null;
  31. private array $indicatorValues;
  32. private int $indicatorCurrent;
  33. private int $indicatorChangeInterval;
  34. private float $indicatorUpdateTime;
  35. private bool $started = false;
  36. /**
  37. * @var array<string, callable>
  38. */
  39. private static array $formatters;
  40. /**
  41. * @param int $indicatorChangeInterval Change interval in milliseconds
  42. * @param array|null $indicatorValues Animated indicator characters
  43. */
  44. public function __construct(OutputInterface $output, ?string $format = null, int $indicatorChangeInterval = 100, ?array $indicatorValues = null)
  45. {
  46. $this->output = $output;
  47. $format ??= $this->determineBestFormat();
  48. $indicatorValues ??= ['-', '\\', '|', '/'];
  49. $indicatorValues = array_values($indicatorValues);
  50. if (2 > \count($indicatorValues)) {
  51. throw new InvalidArgumentException('Must have at least 2 indicator value characters.');
  52. }
  53. $this->format = self::getFormatDefinition($format);
  54. $this->indicatorChangeInterval = $indicatorChangeInterval;
  55. $this->indicatorValues = $indicatorValues;
  56. $this->startTime = time();
  57. }
  58. /**
  59. * Sets the current indicator message.
  60. *
  61. * @return void
  62. */
  63. public function setMessage(?string $message)
  64. {
  65. $this->message = $message;
  66. $this->display();
  67. }
  68. /**
  69. * Starts the indicator output.
  70. *
  71. * @return void
  72. */
  73. public function start(string $message)
  74. {
  75. if ($this->started) {
  76. throw new LogicException('Progress indicator already started.');
  77. }
  78. $this->message = $message;
  79. $this->started = true;
  80. $this->startTime = time();
  81. $this->indicatorUpdateTime = $this->getCurrentTimeInMilliseconds() + $this->indicatorChangeInterval;
  82. $this->indicatorCurrent = 0;
  83. $this->display();
  84. }
  85. /**
  86. * Advances the indicator.
  87. *
  88. * @return void
  89. */
  90. public function advance()
  91. {
  92. if (!$this->started) {
  93. throw new LogicException('Progress indicator has not yet been started.');
  94. }
  95. if (!$this->output->isDecorated()) {
  96. return;
  97. }
  98. $currentTime = $this->getCurrentTimeInMilliseconds();
  99. if ($currentTime < $this->indicatorUpdateTime) {
  100. return;
  101. }
  102. $this->indicatorUpdateTime = $currentTime + $this->indicatorChangeInterval;
  103. ++$this->indicatorCurrent;
  104. $this->display();
  105. }
  106. /**
  107. * Finish the indicator with message.
  108. *
  109. * @return void
  110. */
  111. public function finish(string $message)
  112. {
  113. if (!$this->started) {
  114. throw new LogicException('Progress indicator has not yet been started.');
  115. }
  116. $this->message = $message;
  117. $this->display();
  118. $this->output->writeln('');
  119. $this->started = false;
  120. }
  121. /**
  122. * Gets the format for a given name.
  123. */
  124. public static function getFormatDefinition(string $name): ?string
  125. {
  126. return self::FORMATS[$name] ?? null;
  127. }
  128. /**
  129. * Sets a placeholder formatter for a given name.
  130. *
  131. * This method also allow you to override an existing placeholder.
  132. *
  133. * @return void
  134. */
  135. public static function setPlaceholderFormatterDefinition(string $name, callable $callable)
  136. {
  137. self::$formatters ??= self::initPlaceholderFormatters();
  138. self::$formatters[$name] = $callable;
  139. }
  140. /**
  141. * Gets the placeholder formatter for a given name (including the delimiter char like %).
  142. */
  143. public static function getPlaceholderFormatterDefinition(string $name): ?callable
  144. {
  145. self::$formatters ??= self::initPlaceholderFormatters();
  146. return self::$formatters[$name] ?? null;
  147. }
  148. private function display(): void
  149. {
  150. if (OutputInterface::VERBOSITY_QUIET === $this->output->getVerbosity()) {
  151. return;
  152. }
  153. $this->overwrite(preg_replace_callback("{%([a-z\-_]+)(?:\:([^%]+))?%}i", function ($matches) {
  154. if ($formatter = self::getPlaceholderFormatterDefinition($matches[1])) {
  155. return $formatter($this);
  156. }
  157. return $matches[0];
  158. }, $this->format ?? ''));
  159. }
  160. private function determineBestFormat(): string
  161. {
  162. return match ($this->output->getVerbosity()) {
  163. // OutputInterface::VERBOSITY_QUIET: display is disabled anyway
  164. OutputInterface::VERBOSITY_VERBOSE => $this->output->isDecorated() ? 'verbose' : 'verbose_no_ansi',
  165. OutputInterface::VERBOSITY_VERY_VERBOSE,
  166. OutputInterface::VERBOSITY_DEBUG => $this->output->isDecorated() ? 'very_verbose' : 'very_verbose_no_ansi',
  167. default => $this->output->isDecorated() ? 'normal' : 'normal_no_ansi',
  168. };
  169. }
  170. /**
  171. * Overwrites a previous message to the output.
  172. */
  173. private function overwrite(string $message): void
  174. {
  175. if ($this->output->isDecorated()) {
  176. $this->output->write("\x0D\x1B[2K");
  177. $this->output->write($message);
  178. } else {
  179. $this->output->writeln($message);
  180. }
  181. }
  182. private function getCurrentTimeInMilliseconds(): float
  183. {
  184. return round(microtime(true) * 1000);
  185. }
  186. /**
  187. * @return array<string, \Closure>
  188. */
  189. private static function initPlaceholderFormatters(): array
  190. {
  191. return [
  192. 'indicator' => fn (self $indicator) => $indicator->indicatorValues[$indicator->indicatorCurrent % \count($indicator->indicatorValues)],
  193. 'message' => fn (self $indicator) => $indicator->message,
  194. 'elapsed' => fn (self $indicator) => Helper::formatTime(time() - $indicator->startTime, 2),
  195. 'memory' => fn () => Helper::formatMemory(memory_get_usage(true)),
  196. ];
  197. }
  198. }