ProgressIndicator.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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 $output;
  28. private $startTime;
  29. private $format;
  30. private $message;
  31. private $indicatorValues;
  32. private $indicatorCurrent;
  33. private $indicatorChangeInterval;
  34. private $indicatorUpdateTime;
  35. private $started = false;
  36. /**
  37. * @var array<string, callable>
  38. */
  39. private static $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. if (null === $format) {
  48. $format = $this->determineBestFormat();
  49. }
  50. if (null === $indicatorValues) {
  51. $indicatorValues = ['-', '\\', '|', '/'];
  52. }
  53. $indicatorValues = array_values($indicatorValues);
  54. if (2 > \count($indicatorValues)) {
  55. throw new InvalidArgumentException('Must have at least 2 indicator value characters.');
  56. }
  57. $this->format = self::getFormatDefinition($format);
  58. $this->indicatorChangeInterval = $indicatorChangeInterval;
  59. $this->indicatorValues = $indicatorValues;
  60. $this->startTime = time();
  61. }
  62. /**
  63. * Sets the current indicator message.
  64. */
  65. public function setMessage(?string $message)
  66. {
  67. $this->message = $message;
  68. $this->display();
  69. }
  70. /**
  71. * Starts the indicator output.
  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. public function advance()
  89. {
  90. if (!$this->started) {
  91. throw new LogicException('Progress indicator has not yet been started.');
  92. }
  93. if (!$this->output->isDecorated()) {
  94. return;
  95. }
  96. $currentTime = $this->getCurrentTimeInMilliseconds();
  97. if ($currentTime < $this->indicatorUpdateTime) {
  98. return;
  99. }
  100. $this->indicatorUpdateTime = $currentTime + $this->indicatorChangeInterval;
  101. ++$this->indicatorCurrent;
  102. $this->display();
  103. }
  104. /**
  105. * Finish the indicator with message.
  106. */
  107. public function finish(string $message)
  108. {
  109. if (!$this->started) {
  110. throw new LogicException('Progress indicator has not yet been started.');
  111. }
  112. $this->message = $message;
  113. $this->display();
  114. $this->output->writeln('');
  115. $this->started = false;
  116. }
  117. /**
  118. * Gets the format for a given name.
  119. *
  120. * @return string|null
  121. */
  122. public static function getFormatDefinition(string $name)
  123. {
  124. return self::FORMATS[$name] ?? null;
  125. }
  126. /**
  127. * Sets a placeholder formatter for a given name.
  128. *
  129. * This method also allow you to override an existing placeholder.
  130. */
  131. public static function setPlaceholderFormatterDefinition(string $name, callable $callable)
  132. {
  133. if (!self::$formatters) {
  134. self::$formatters = self::initPlaceholderFormatters();
  135. }
  136. self::$formatters[$name] = $callable;
  137. }
  138. /**
  139. * Gets the placeholder formatter for a given name (including the delimiter char like %).
  140. *
  141. * @return callable|null
  142. */
  143. public static function getPlaceholderFormatterDefinition(string $name)
  144. {
  145. if (!self::$formatters) {
  146. self::$formatters = self::initPlaceholderFormatters();
  147. }
  148. return self::$formatters[$name] ?? null;
  149. }
  150. private function display()
  151. {
  152. if (OutputInterface::VERBOSITY_QUIET === $this->output->getVerbosity()) {
  153. return;
  154. }
  155. $this->overwrite(preg_replace_callback("{%([a-z\-_]+)(?:\:([^%]+))?%}i", function ($matches) {
  156. if ($formatter = self::getPlaceholderFormatterDefinition($matches[1])) {
  157. return $formatter($this);
  158. }
  159. return $matches[0];
  160. }, $this->format ?? ''));
  161. }
  162. private function determineBestFormat(): string
  163. {
  164. switch ($this->output->getVerbosity()) {
  165. // OutputInterface::VERBOSITY_QUIET: display is disabled anyway
  166. case OutputInterface::VERBOSITY_VERBOSE:
  167. return $this->output->isDecorated() ? 'verbose' : 'verbose_no_ansi';
  168. case OutputInterface::VERBOSITY_VERY_VERBOSE:
  169. case OutputInterface::VERBOSITY_DEBUG:
  170. return $this->output->isDecorated() ? 'very_verbose' : 'very_verbose_no_ansi';
  171. default:
  172. return $this->output->isDecorated() ? 'normal' : 'normal_no_ansi';
  173. }
  174. }
  175. /**
  176. * Overwrites a previous message to the output.
  177. */
  178. private function overwrite(string $message)
  179. {
  180. if ($this->output->isDecorated()) {
  181. $this->output->write("\x0D\x1B[2K");
  182. $this->output->write($message);
  183. } else {
  184. $this->output->writeln($message);
  185. }
  186. }
  187. private function getCurrentTimeInMilliseconds(): float
  188. {
  189. return round(microtime(true) * 1000);
  190. }
  191. private static function initPlaceholderFormatters(): array
  192. {
  193. return [
  194. 'indicator' => function (self $indicator) {
  195. return $indicator->indicatorValues[$indicator->indicatorCurrent % \count($indicator->indicatorValues)];
  196. },
  197. 'message' => function (self $indicator) {
  198. return $indicator->message;
  199. },
  200. 'elapsed' => function (self $indicator) {
  201. return Helper::formatTime(time() - $indicator->startTime);
  202. },
  203. 'memory' => function () {
  204. return Helper::formatMemory(memory_get_usage(true));
  205. },
  206. ];
  207. }
  208. }