forked from adhocore/php-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOutputHelper.php
340 lines (279 loc) · 9.41 KB
/
OutputHelper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<?php
/*
* This file is part of the PHP-CLI package.
*
* (c) Jitendra Adhikari <[email protected]>
* <https://github.com/adhocore>
*
* Licensed under MIT license.
*/
namespace Ahc\Cli\Helper;
use Ahc\Cli\Exception;
use Ahc\Cli\Input\Argument;
use Ahc\Cli\Input\Command;
use Ahc\Cli\Input\Groupable;
use Ahc\Cli\Input\Option;
use Ahc\Cli\Input\Parameter;
use Ahc\Cli\Output\Writer;
use Throwable;
use function array_map;
use function array_shift;
use function asort;
use function explode;
use function get_class;
use function gettype;
use function implode;
use function is_array;
use function is_object;
use function is_scalar;
use function key;
use function levenshtein;
use function max;
use function method_exists;
use function preg_replace;
use function preg_replace_callback;
use function realpath;
use function str_contains;
use function str_pad;
use function str_replace;
use function strlen;
use function strrpos;
use function trim;
use function uasort;
use function var_export;
use const STR_PAD_LEFT;
/**
* This helper helps you by showing you help information :).
*
* @author Jitendra Adhikari <[email protected]>
* @license MIT
*
* @link https://github.com/adhocore/cli
*/
class OutputHelper
{
use InflectsString;
protected Writer $writer;
/** @var int Max width of command name */
protected int $maxCmdName = 0;
public function __construct(?Writer $writer = null)
{
$this->writer = $writer ?? new Writer;
}
/**
* Print stack trace and error msg of an exception.
*/
public function printTrace(Throwable $e): void
{
$eClass = get_class($e);
$this->writer->colors(
"{$eClass} <red>{$e->getMessage()}</end><eol/>" .
"({$this->translate('thrownIn')} <yellow>{$e->getFile()}</end><white>:{$e->getLine()})</end>"
);
// @codeCoverageIgnoreStart
if ($e instanceof Exception) {
// Internal exception traces are not printed.
return;
}
// @codeCoverageIgnoreEnd
$traceStr = "<eol/><eol/><bold>{$this->translate('stackTrace')}:</end><eol/><eol/>";
foreach ($e->getTrace() as $i => $trace) {
$trace += ['class' => '', 'type' => '', 'function' => '', 'file' => '', 'line' => '', 'args' => []];
$symbol = $trace['class'] . $trace['type'] . $trace['function'];
$args = $this->stringifyArgs($trace['args']);
$traceStr .= " <comment>$i)</end> <red>$symbol</end><comment>($args)</end>";
if ('' !== $trace['file']) {
$file = realpath($trace['file']);
$traceStr .= "<eol/> <yellow>{$this->translate('thrownAt')} $file</end><white>:{$trace['line']}</end><eol/>";
}
}
$this->writer->colors($traceStr);
}
public function stringifyArgs(array $args): string
{
$holder = [];
foreach ($args as $arg) {
$holder[] = $this->stringifyArg($arg);
}
return implode(', ', $holder);
}
protected function stringifyArg($arg): string
{
if (is_scalar($arg)) {
return var_export($arg, true);
}
if (is_object($arg)) {
return method_exists($arg, '__toString') ? (string) $arg : get_class($arg);
}
if (is_array($arg)) {
return '[' . $this->stringifyArgs($arg) . ']';
}
return gettype($arg);
}
/**
* @param Argument[] $arguments
* @param string $header
* @param string $footer
*
* @return self
*/
public function showArgumentsHelp(array $arguments, string $header = '', string $footer = ''): self
{
$this->showHelp('Arguments', $arguments, $header, $footer);
return $this;
}
/**
* @param Option[] $options
* @param string $header
* @param string $footer
*
* @return self
*/
public function showOptionsHelp(array $options, string $header = '', string $footer = ''): self
{
$this->showHelp('Options', $options, $header, $footer);
return $this;
}
/**
* @param Command[] $commands
* @param string $header
* @param string $footer
*
* @return self
*/
public function showCommandsHelp(array $commands, string $header = '', string $footer = ''): self
{
$this->maxCmdName = $commands ? max(array_map(static fn (Command $cmd) => strlen($cmd->name()), $commands)) : 0;
$this->showHelp('Commands', $commands, $header, $footer);
return $this;
}
/**
* Show help with headers and footers.
*/
protected function showHelp(string $for, array $items, string $header = '', string $footer = ''): void
{
if ($header) {
$this->writer->help_header($header, true);
}
$this->writer->eol()->help_category($this->translate(strtolower($for)) . ':', true);
if (empty($items)) {
$this->writer->help_text(' (n/a)', true);
return;
}
$space = 4;
$group = $lastGroup = null;
$withDefault = $for === 'Options' || $for === 'Arguments';
foreach (array_values($this->sortItems($items, $padLen, $for)) as $idx => $item) {
$name = $this->getName($item);
if ($for === 'Commands' && $lastGroup !== $group = $item->group()) {
$this->writer->help_group($group ?: '*', true);
$lastGroup = $group;
}
$desc = str_replace(["\r\n", "\n"], str_pad("\n", $padLen + $space + 3), $item->desc($withDefault));
if ($idx % 2 == 0) {
$this->writer->help_item_even(' ' . str_pad($name, $padLen + $space));
$this->writer->help_description_even($desc, true);
} else {
$this->writer->help_item_odd(' ' . str_pad($name, $padLen + $space));
$this->writer->help_description_odd($desc, true);
}
}
if ($footer) {
$this->writer->eol()->help_footer($footer, true);
}
}
/**
* Show usage examples of a Command.
*
* It replaces $0 with actual command name and properly pads ` ## ` segments.
*/
public function showUsage(string $usage): self
{
$usage = str_replace('$0', $_SERVER['argv'][0] ?? '[cmd]', $usage);
if (!str_contains($usage, ' ## ')) {
$this->writer->eol()->help_category($this->translate('usageExamples') . ':', true)->colors($usage)->eol();
return $this;
}
$lines = explode("\n", str_replace(['<eol>', '<eol/>', '</eol>', "\r\n"], "\n", $usage));
foreach ($lines as $i => &$pos) {
if (false === $pos = strrpos(preg_replace('~</?\w+/?>~', '', $pos), ' ##')) {
unset($lines[$i]);
}
}
$maxlen = ($lines ? max($lines) : 0) + 4;
$usage = preg_replace_callback('~ ## ~', static function () use (&$lines, $maxlen) {
return str_pad('# ', $maxlen - array_shift($lines), ' ', STR_PAD_LEFT);
}, $usage);
$this->writer->eol()->help_category($this->translate('usageExamples') . ':', true)->colors($usage)->eol();
return $this;
}
public function showCommandNotFound(string $attempted, array $available): self
{
$closest = [];
foreach ($available as $cmd) {
$lev = levenshtein($attempted, $cmd);
if ($lev > 0 || $lev < 5) {
$closest[$cmd] = $lev;
}
}
$this->writer->error($this->translate('commandNotFound', [$attempted]), true);
if ($closest) {
asort($closest);
$closest = key($closest);
$this->writer->bgRed($this->translate('commandSuggestion', [$closest]), true);
}
return $this;
}
/**
* Sort items by name. As a side effect sets max length of all names.
*
* @param Parameter[]|Command[] $items
* @param int $max
* @param string $for
*
* @return array
*/
protected function sortItems(array $items, &$max = 0, string $for = ''): array
{
$max = max(array_map(fn ($item) => strlen($this->getName($item)), $items));
if ($for === 'Arguments') { // Arguments are positional so must not be sorted
return $items;
}
uasort($items, static function ($a, $b) {
$aName = $a instanceof Groupable ? $a->group() . $a->name() : $a->name();
$bName = $b instanceof Groupable ? $b->group() . $b->name() : $b->name();
return $aName <=> $bName;
});
return $items;
}
/**
* Prepare name for different items.
*
* @param Parameter|Command $item
*
* @return string
*/
protected function getName($item): string
{
$name = $item->name();
if ($item instanceof Command) {
return trim(str_pad($name, $this->maxCmdName) . ' ' . $item->alias());
}
return $this->label($item);
}
/**
* Get parameter label for humans.
*/
protected function label(Parameter $item): string
{
$name = $item->name();
if ($item instanceof Option) {
$name = $item->short() . '|' . $item->long();
}
$variad = $item->variadic() ? '...' : '';
if ($item->required()) {
return "<$name$variad>";
}
return "[$name$variad]";
}
}