0cc0bb40f2b8649cc06de21d577c7b76728f2a44
5 use pharext\Cli\Args
as CliArgs
;
9 if (!function_exists("array_column")) {
10 function array_column(array $array, $col, $idx = null) {
12 foreach ($array as $el) {
14 $result[$el[$idx]] = $el[$col];
16 $result[] = $el[$col];
26 * Command line arguments
27 * @var pharext\CliArgs
33 * @see \pharext\Command::getArgs()
35 public function getArgs() {
40 * Retrieve metadata of the currently running phar
44 public function metadata($key = null) {
45 $running = new Phar(Phar
::running(false));
47 if ($key === "signature") {
48 $sig = $running->getSignature();
49 return sprintf("%s signature of %s\n%s",
51 $this->metadata("name"),
52 chunk_split($sig["hash"], 64, "\n"));
55 $metadata = $running->getMetadata();
57 return $metadata[$key];
63 * Output pharext vX.Y.Z header
65 public function header() {
66 if (!headers_sent()) {
67 /* only display header, if we didn't generate any output yet */
68 printf("%s\n\n", $this->metadata("header"));
74 * @see \pharext\Command::debug()
76 public function debug($fmt) {
77 if ($this->args
->verbose
) {
78 vprintf($fmt, array_slice(func_get_args(), 1));
84 * @see \pharext\Command::info()
86 public function info($fmt) {
87 if (!$this->args
->quiet
) {
88 vprintf($fmt, array_slice(func_get_args(), 1));
94 * @see \pharext\Command::warn()
96 public function warn($fmt) {
97 if (!$this->args
->quiet
) {
100 $arg = error_get_last()["message"];
102 $arg = array_slice(func_get_args(), 1);
104 vfprintf(STDERR
, "Warning: $fmt", $arg);
110 * @see \pharext\Command::error()
112 public function error($fmt) {
113 if (!$this->args
->quiet
) {
116 $arg = error_get_last()["message"];
118 $arg = array_slice(func_get_args(), 1);
120 vfprintf(STDERR
, "ERROR: $fmt", $arg);
125 * Output command line help message
126 * @param string $prog
128 public function help($prog) {
129 printf("Usage:\n\n \$ %s", $prog);
134 foreach ($this->args
->getSpec() as $spec) {
135 if ($spec[3] & CliArgs
::REQARG
) {
136 if ($spec[3] & CliArgs
::REQUIRED
) {
147 printf(" [-%s]", implode("", array_column($flags, 0)));
149 foreach ($required as $req) {
150 printf(" -%s <arg>", $req[0]);
153 printf(" [-%s <arg>]", implode("|-", array_column($optional, 0)));
156 $spc = $this->args
->getSpec();
157 $max = max(array_map("strlen", array_column($spc, 1)));
158 $max +
= $max %
8 +
2;
159 foreach ($spc as $spec) {
160 if (isset($spec[0])) {
161 printf(" -%s|", $spec[0]);
165 printf("--%s ", $spec[1]);
166 if ($spec[3] & CliArgs
::REQARG
) {
168 } elseif ($spec[3] & CliArgs
::OPTARG
) {
173 printf("%s%s", str_repeat(" ", $max-strlen($spec[1])+
3*!isset($spec[0])), $spec[2]);
174 if ($spec[3] & CliArgs
::REQUIRED
) {
175 printf(" (REQUIRED)");
177 if (isset($spec[4])) {
178 printf(" [%s]", $spec[4]);
189 private function rm($dir) {
190 foreach (scandir($dir) as $entry) {
191 if ($entry === "." ||
$entry === "..") {
193 } elseif (is_dir("$dir/$entry")) {
194 $this->rm("$dir/$entry");
195 } elseif (!unlink("$dir/$entry")) {