ProgressBar.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @filename ProgressBar.php
  5. * @createdAt 2020/6/20
  6. * @project https://github.com/yanwenwu/catch-admin
  7. * @document http://doc.catchadmin.com
  8. * @author JaguarJack <njphper@gmail.com>
  9. * @copyright By CatchAdmin
  10. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  11. */
  12. namespace catcher\library;
  13. use think\console\Output;
  14. class ProgressBar
  15. {
  16. protected $output;
  17. protected $total;
  18. protected $current = 0;
  19. protected $header = '[x] ';
  20. protected $length= 100;
  21. protected $average;
  22. public function __construct(Output $output, int $total)
  23. {
  24. $this->output = $output;
  25. $this->total = $total;
  26. $this->average = $this->length/$total;
  27. }
  28. /**
  29. * 开始
  30. *
  31. * @time 2020年06月20日
  32. * @return void
  33. */
  34. public function start()
  35. {
  36. $this->write();
  37. }
  38. /**
  39. * 前进
  40. *
  41. * @time 2020年06月20日
  42. * @param int $step
  43. * @return void
  44. */
  45. public function advance($step = 1)
  46. {
  47. $this->current += $step;
  48. $this->write();
  49. }
  50. /**
  51. * 结束
  52. *
  53. * @time 2020年06月20日
  54. * @return void
  55. */
  56. public function finished()
  57. {
  58. $this->write(true);
  59. $this->current = 1;
  60. }
  61. /**
  62. * 输出
  63. *
  64. * @time 2020年06月20日
  65. * @param bool $end
  66. * @return void
  67. */
  68. protected function write($end = false)
  69. {
  70. $bar = $this->bar() . ($end ? '' : "\r");
  71. $this->output->write(sprintf('<info>%s</info>', $bar), false);
  72. }
  73. /**
  74. * 进度条
  75. *
  76. * @time 2020年06月20日
  77. * @return string
  78. */
  79. protected function bar()
  80. {
  81. $left = $this->total - $this->current;
  82. $empty = str_repeat(' ', $left * $this->average);
  83. $bar = str_repeat('>', $this->current * $this->average);
  84. $percent = ((int)(sprintf('%.2f', $this->current/$this->total) * 100)) . '%';
  85. return $this->header . $bar . $empty . ' ' . $percent;
  86. }
  87. /**
  88. * 设置头信息
  89. *
  90. * @time 2020年06月20日
  91. * @param $header
  92. * @return $this
  93. */
  94. public function setHeader($header)
  95. {
  96. $this->header = $header;
  97. return $this;
  98. }
  99. }