-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.mjs
369 lines (333 loc) · 9.15 KB
/
index.mjs
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import fs from "fs"
import { promisify, inspect } from "util"
import { spawn } from "child_process"
import { createInterface } from "readline"
import which from "which"
import chalk from "chalk"
import minimist from "minimist"
import psTreeModule from "ps-tree"
export const sleep = promisify(setTimeout)
export const argv = minimist(process.argv.slice(2))
const psTree = promisify(psTreeModule)
export function registerGlobals() {
Object.assign(global, {
$,
argv,
nothrow,
question,
sleep,
YZX,
})
}
export function YZX() {
function $(pieces, ...args) {
let { verbose, cwd, shell, prefix } = $
let __from = new Error().stack.split(/^\s*at\s/m)[2].trim()
let cmd = pieces[0],
i = 0
while (i < args.length) {
let s
if (Array.isArray(args[i])) {
s = args[i].map((x) => $.quote(substitute(x))).join(" ")
} else {
s = $.quote(substitute(args[i]))
}
cmd += s + pieces[++i]
}
let resolve, reject
let promise = new ProcessPromise((...args) => ([resolve, reject] = args))
promise._run = () => {
if (promise.child) return
if (promise._prerun) promise._prerun()
if (verbose) {
printCmd(cmd)
}
let child = spawn(prefix + cmd, {
cwd,
shell: typeof shell === "string" ? shell : true,
stdio: [promise._inheritStdin ? "inherit" : "pipe", "pipe", "pipe"],
windowsHide: true,
})
child.on("exit", (code) => {
child.on("close", () => {
let output = new ProcessOutput({
code,
stdout,
stderr,
combined,
message:
`${stderr || "\n"} at ${__from}\n exit code: ${code}` +
(exitCodeInfo(code) ? " (" + exitCodeInfo(code) + ")" : ""),
})
;(code === 0 || promise._nothrow ? resolve : reject)(output)
promise._resolved = true
})
})
let stdout = "",
stderr = "",
combined = ""
let onStdout = (data) => {
if (verbose) process.stdout.write(data)
stdout += data
combined += data
}
let onStderr = (data) => {
if (verbose) process.stderr.write(data)
stderr += data
combined += data
}
if (!promise._piped) child.stdout.on("data", onStdout)
child.stderr.on("data", onStderr)
promise.child = child
if (promise._postrun) promise._postrun()
}
setTimeout(promise._run, 0) // Make sure all subprocesses started.
return promise
}
$.verbose = !argv.quiet
if (typeof argv.shell === "string") {
$.shell = argv.shell
$.prefix = ""
} else {
try {
$.shell = which.sync("bash")
$.prefix = "set -euo pipefail;"
} catch (e) {
$.prefix = "" // Bash not found, no prefix.
}
}
if (typeof argv.prefix === "string") {
$.prefix = argv.prefix
}
$.quote = quote
$.cwd = undefined
$.cd = function (path) {
if ($.verbose) console.log("$", colorize(`cd ${path}`))
// try {
fs.accessSync(path)
// } catch(e) {
// console.log("e", e)
// let __from = (new Error().stack.split(/^\s*at\s/m)[2]).trim()
// console.error(`cd: ${path}: No such directory`)
// console.error(` at ${__from}`)
// process.exit(1)
// }
$.cwd = path
}
return $
}
export const $ = YZX()
export async function question(query, options) {
let completer = undefined
if (Array.isArray(options?.choices)) {
completer = function completer(line) {
const completions = options.choices
const hits = completions.filter((c) => c.startsWith(line))
return [hits.length ? hits : completions, line]
}
}
const rl = createInterface({
input: process.stdin,
output: process.stdout,
completer,
})
const question = (q) =>
new Promise((resolve) => rl.question(q ?? "", resolve))
let answer = await question(query)
rl.close()
return answer
}
export function nothrow(promise) {
promise._nothrow = true
return promise
}
export class ProcessPromise extends Promise {
child = undefined
_nothrow = false
_resolved = false
_inheritStdin = true
_piped = false
_prerun = undefined
_postrun = undefined
get stdin() {
this._inheritStdin = false
this._run()
return this.child.stdin
}
get stdout() {
this._inheritStdin = false
this._run()
return this.child.stdout
}
get stderr() {
this._inheritStdin = false
this._run()
return this.child.stderr
}
get exitCode() {
return this.then((p) => p.exitCode).catch((p) => p.exitCode)
}
then(onfulfilled, onrejected) {
if (this._run) this._run()
return super.then(onfulfilled, onrejected)
}
pipe(dest) {
if (typeof dest === "string") {
throw new Error("The pipe() method does not take strings. Forgot $?")
}
if (this._resolved === true) {
throw new Error(
"The pipe() method shouldn't be called after promise is already resolved!",
)
}
this._piped = true
if (dest instanceof ProcessPromise) {
dest._inheritStdin = false
dest._prerun = this._run
dest._postrun = () => this.stdout.pipe(dest.child.stdin)
return dest
} else {
this._postrun = () => this.stdout.pipe(dest)
return this
}
}
async kill(signal = "SIGTERM") {
this.catch(_ => _)
let children = await psTree(this.child.pid)
for (const p of children) {
try {
process.kill(p.PID, signal)
} catch (e) {}
}
try {
process.kill(this.child.pid, signal)
} catch (e) {}
}
}
export class ProcessOutput extends Error {
#code = 0
#stdout = ""
#stderr = ""
#combined = ""
constructor({ code, stdout, stderr, combined, message }) {
super(message)
this.#code = code
this.#stdout = stdout
this.#stderr = stderr
this.#combined = combined
}
toString() {
return this.#combined
}
get stdout() {
return this.#stdout
}
get stderr() {
return this.#stderr
}
get exitCode() {
return this.#code
}
[inspect.custom]() {
let stringify = (s, c) => (s.length === 0 ? "''" : c(inspect(s)))
return `ProcessOutput {
stdout: ${stringify(this.stdout, chalk.green)},
stderr: ${stringify(this.stderr, chalk.red)},
exitCode: ${(this.exitCode === 0 ? chalk.green : chalk.red)(this.exitCode)}${
exitCodeInfo(this.exitCode)
? chalk.grey(" (" + exitCodeInfo(this.exitCode) + ")")
: ""
}
}`
}
}
function printCmd(cmd) {
if (/\n/.test(cmd)) {
console.log(
cmd
.split("\n")
.map((line, i) => (i === 0 ? "$" : ">") + " " + colorize(line))
.join("\n"),
)
} else {
console.log("$", colorize(cmd))
}
}
function colorize(cmd) {
return cmd.replace(/^[\w_.-]+(\s|$)/, (substr) => {
return chalk.greenBright(substr)
})
}
function substitute(arg) {
if (arg instanceof ProcessOutput) {
return arg.stdout.replace(/\n$/, "")
}
return `${arg}`
}
function quote(arg) {
if (/^[a-z0-9/_.-]+$/i.test(arg) || arg === "") {
return arg
}
return (
`$'` +
arg
.replace(/\\/g, "\\\\")
.replace(/'/g, "\\'")
.replace(/\f/g, "\\f")
.replace(/\n/g, "\\n")
.replace(/\r/g, "\\r")
.replace(/\t/g, "\\t")
.replace(/\v/g, "\\v")
.replace(/\0/g, "\\0") +
`'`
)
}
function exitCodeInfo(exitCode) {
return {
2: "Misuse of shell builtins",
126: "Invoked command cannot execute",
127: "Command not found",
128: "Invalid exit argument",
129: "Hangup",
130: "Interrupt",
131: "Quit and dump core",
132: "Illegal instruction",
133: "Trace/breakpoint trap",
134: "Process aborted",
135: 'Bus error: "access to undefined portion of memory object"',
136: 'Floating point exception: "erroneous arithmetic operation"',
137: "Kill (terminate immediately)",
138: "User-defined 1",
139: "Segmentation violation",
140: "User-defined 2",
141: "Write to pipe with no one reading",
142: "Signal raised by alarm",
143: "Termination (request to terminate)",
145: "Child process terminated, stopped (or continued*)",
146: "Continue if stopped",
147: "Stop executing temporarily",
148: "Terminal stop signal",
149: 'Background process attempting to read from tty ("in")',
150: 'Background process attempting to write to tty ("out")',
151: "Urgent data available on socket",
152: "CPU time limit exceeded",
153: "File size limit exceeded",
154: 'Signal raised by timer counting virtual time: "virtual timer expired"',
155: "Profiling timer expired",
157: "Pollable event",
159: "Bad syscall",
}[exitCode]
}