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
|
<?php
class cli {
protected ?array $commandsCache = null;
function __construct(
protected string $ns
) {}
protected function usage($error = null): void {
global $argv;
if (!is_null($error))
echo "error: {$error}\n\n";
echo "Usage: $argv[0] COMMAND\n\nCommands:\n";
foreach ($this->getCommands() as $c)
echo " $c\n";
exit(is_null($error) ? 0 : 1);
}
function getCommands(): array {
if (is_null($this->commandsCache)) {
$funcs = array_filter(get_defined_functions()['user'], fn(string $f) => str_starts_with($f, $this->ns));
$funcs = array_map(fn(string $f) => str_replace('_', '-', substr($f, strlen($this->ns.'\\'))), $funcs);
$this->commandsCache = array_values($funcs);
}
return $this->commandsCache;
}
function run(): void {
global $argv, $argc;
if (!is_cli())
cli::die('SAPI != cli');
if ($argc < 2)
$this->usage();
$func = $argv[1];
if (!in_array($func, $this->getCommands()))
self::usage('unknown command "'.$func.'"');
$func = str_replace('-', '_', $func);
call_user_func($this->ns.'\\'.$func);
}
public static function input(string $prompt): string {
echo $prompt;
$input = substr(fgets(STDIN), 0, -1);
return $input;
}
public static function silentInput(string $prompt = ''): string {
echo $prompt;
system('stty -echo');
$input = substr(fgets(STDIN), 0, -1);
system('stty echo');
echo "\n";
return $input;
}
public static function die($error): void {
self::error($error);
exit(1);
}
public static function error($error): void {
fwrite(STDERR, "error: {$error}\n");
}
}
|