1 | <?php |
||
5 | class Progress extends DynamicTerminalObject |
||
6 | { |
||
7 | /** |
||
8 | * The total number of items involved |
||
9 | * |
||
10 | * @var integer $total |
||
11 | */ |
||
12 | protected $total = 0; |
||
13 | |||
14 | /** |
||
15 | * The current item that the progress bar represents |
||
16 | * |
||
17 | * @var integer $current |
||
18 | */ |
||
19 | protected $current = 0; |
||
20 | |||
21 | /** |
||
22 | * The current percentage displayed |
||
23 | * |
||
24 | * @var string $current_percentage |
||
25 | */ |
||
26 | protected $current_percentage = ''; |
||
27 | |||
28 | /** |
||
29 | * The string length of the bar when at 100% |
||
30 | * |
||
31 | * @var integer $bar_str_len |
||
32 | */ |
||
33 | protected $bar_str_len; |
||
34 | |||
35 | /** |
||
36 | * Flag indicating whether we are writing the bar for the first time |
||
37 | * |
||
38 | * @var boolean $first_line |
||
39 | */ |
||
40 | protected $first_line = true; |
||
41 | |||
42 | /** |
||
43 | * Current status bar label |
||
44 | * |
||
45 | * @var string $label |
||
46 | */ |
||
47 | protected $label; |
||
48 | |||
49 | /** |
||
50 | * Force a redraw every time |
||
51 | * |
||
52 | * @var boolean $force_redraw |
||
53 | */ |
||
54 | protected $force_redraw = false; |
||
55 | |||
56 | /** |
||
57 | * If this progress bar ever displayed a label. |
||
58 | * |
||
59 | * @var boolean $has_label_line |
||
60 | */ |
||
61 | protected $has_label_line = false; |
||
62 | |||
63 | /** |
||
64 | * If they pass in a total, set the total |
||
65 | * |
||
66 | * @param integer $total |
||
67 | */ |
||
68 | 48 | public function __construct($total = null) |
|
74 | |||
75 | /** |
||
76 | * Set the total property |
||
77 | * |
||
78 | * @param integer $total |
||
79 | * |
||
80 | * @return Progress |
||
81 | */ |
||
82 | 44 | public function total($total) |
|
88 | |||
89 | /** |
||
90 | * Determines the current percentage we are at and re-writes the progress bar |
||
91 | * |
||
92 | * @param integer $current |
||
93 | * @param mixed $label |
||
94 | * @throws \Exception |
||
95 | */ |
||
96 | 48 | public function current($current, $label = null) |
|
112 | |||
113 | /** |
||
114 | * Increments the current position we are at and re-writes the progress bar |
||
115 | * |
||
116 | * @param integer $increment The number of items to increment by |
||
117 | * @param string $label |
||
118 | */ |
||
119 | 8 | public function advance($increment = 1, $label = null) |
|
123 | |||
124 | /** |
||
125 | * Force the progress bar to redraw every time regardless of whether it has changed or not |
||
126 | * |
||
127 | * @param boolean $force |
||
128 | * @return Progress |
||
129 | */ |
||
130 | 8 | public function forceRedraw($force = true) |
|
136 | |||
137 | |||
138 | /** |
||
139 | * Update a progress bar using an iterable. |
||
140 | * |
||
141 | * @param iterable $items Array or any other iterable object |
||
142 | * @param callable $callback A handler to run on each item |
||
143 | 40 | */ |
|
144 | public function each($items, callable $callback = null) |
||
145 | 40 | { |
|
146 | if ($items instanceof \Traversable) { |
||
147 | 40 | $items = iterator_to_array($items); |
|
148 | 40 | } |
|
149 | 40 | ||
150 | 40 | $total = count($items); |
|
151 | if (!$total) { |
||
152 | 40 | return; |
|
153 | 40 | } |
|
154 | $this->total($total); |
||
155 | |||
156 | foreach ($items as $key => $item) { |
||
157 | if ($callback) { |
||
158 | $label = $callback($item, $key); |
||
159 | } else { |
||
160 | $label = null; |
||
161 | } |
||
162 | |||
163 | 40 | $this->advance(1, $label); |
|
164 | } |
||
165 | 40 | } |
|
166 | |||
167 | |||
168 | 40 | /** |
|
169 | 40 | * Draw the progress bar, if necessary |
|
170 | 40 | * |
|
171 | * @param string $current |
||
172 | * @param string $label |
||
173 | 40 | */ |
|
174 | protected function drawProgressBar($current, $label) |
||
175 | 40 | { |
|
176 | 40 | $percentage = $this->percentageFormatted($current / $this->total); |
|
177 | 40 | ||
178 | 40 | if ($this->shouldRedraw($percentage, $label)) { |
|
179 | $progress_bar = $this->getProgressBar($current, $label); |
||
180 | $this->output->write($this->parser->apply($progress_bar)); |
||
181 | 40 | } |
|
182 | 12 | ||
183 | 12 | $this->current_percentage = $percentage; |
|
184 | } |
||
185 | 40 | ||
186 | /** |
||
187 | * Build the progress bar str and return it |
||
188 | * |
||
189 | * @param integer $current |
||
190 | * @param string $label |
||
191 | * |
||
192 | * @return string |
||
193 | */ |
||
194 | protected function getProgressBar($current, $label) |
||
195 | { |
||
196 | if ($this->first_line) { |
||
197 | 40 | // Drop down a line, we are about to |
|
198 | // re-write this line for the progress bar |
||
199 | 40 | $this->output->write(''); |
|
200 | 40 | $this->first_line = false; |
|
201 | } |
||
202 | 40 | ||
203 | 40 | // Move the cursor up and clear it to the end |
|
204 | $line_count = $this->has_label_line ? 2 : 1; |
||
205 | 40 | ||
206 | 12 | $progress_bar = $this->util->cursor->up($line_count); |
|
207 | $progress_bar .= $this->util->cursor->startOfCurrentLine(); |
||
208 | $progress_bar .= $this->util->cursor->deleteCurrentLine(); |
||
209 | 40 | $progress_bar .= $this->getProgressBarStr($current, $label); |
|
210 | 4 | ||
211 | 4 | // If this line has a label then set that this progress bar has a label line |
|
212 | if (strlen($label) > 0) { |
||
213 | 40 | $this->has_label_line = true; |
|
214 | } |
||
215 | |||
216 | return $progress_bar; |
||
217 | } |
||
218 | |||
219 | /** |
||
220 | * Get the progress bar string, basically: |
||
221 | * =============> 50% label |
||
222 | * |
||
223 | 40 | * @param integer $current |
|
224 | * @param string $label |
||
225 | 40 | * |
|
226 | 40 | * @return string |
|
227 | */ |
||
228 | 40 | protected function getProgressBarStr($current, $label) |
|
229 | { |
||
230 | $percentage = $current / $this->total; |
||
231 | $bar_length = round($this->getBarStrLen() * $percentage); |
||
232 | |||
233 | $bar = $this->getBar($bar_length); |
||
234 | $number = $this->percentageFormatted($percentage); |
||
235 | |||
236 | 40 | if ($label) { |
|
237 | $label = $this->labelFormatted($label); |
||
238 | 40 | // If this line doesn't have a label, but we've had one before, |
|
239 | // then ensure the label line is cleared |
||
240 | 40 | } elseif ($this->has_label_line) { |
|
241 | 40 | $label = $this->labelFormatted(''); |
|
242 | } |
||
243 | 40 | ||
244 | return trim("{$bar} {$number}{$label}"); |
||
245 | } |
||
246 | |||
247 | /** |
||
248 | * Get the string for the actual bar based on the current length |
||
249 | * |
||
250 | * @param integer $length |
||
251 | * |
||
252 | 40 | * @return string |
|
253 | */ |
||
254 | 40 | protected function getBar($length) |
|
255 | { |
||
256 | $bar = str_repeat('=', $length); |
||
257 | $padding = str_repeat(' ', $this->getBarStrLen() - $length); |
||
258 | |||
259 | return "{$bar}>{$padding}"; |
||
260 | } |
||
261 | |||
262 | /** |
||
263 | 12 | * Get the length of the bar string based on the width of the terminal window |
|
264 | * |
||
265 | 12 | * @return integer |
|
266 | */ |
||
267 | protected function getBarStrLen() |
||
268 | { |
||
269 | if (!$this->bar_str_len) { |
||
270 | // Subtract 10 because of the '> 100%' plus some padding, max 100 |
||
271 | $this->bar_str_len = min($this->util->width() - 10, 100); |
||
272 | } |
||
273 | |||
274 | return $this->bar_str_len; |
||
275 | } |
||
276 | 40 | ||
277 | /** |
||
278 | 40 | * Format the percentage so it looks pretty |
|
279 | * |
||
280 | * @param integer $percentage |
||
281 | * @return float |
||
282 | */ |
||
283 | protected function percentageFormatted($percentage) |
||
287 | |||
288 | /** |
||
289 | * Format the label so it is positioned correctly |
||
290 | * |
||
291 | * @param string $label |
||
292 | * @return string |
||
293 | */ |
||
294 | protected function labelFormatted($label) |
||
298 | |||
299 | /** |
||
300 | * Determine whether the progress bar has changed and we need to redrew |
||
301 | * |
||
302 | * @param string $percentage |
||
303 | * @param string $label |
||
304 | * |
||
305 | * @return boolean |
||
306 | */ |
||
307 | protected function shouldRedraw($percentage, $label) |
||
311 | } |
||
312 |