forked from google/zx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.mjs
238 lines (214 loc) · 5.35 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
// 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 {
createReadStream,
createWriteStream,
existsSync,
promises as fs
} from 'fs'
import os from 'os'
import {promisify} from 'util'
import {spawn} from 'child_process'
import {createInterface} from 'readline'
import {default as nodeFetch} from 'node-fetch'
import which from 'which'
import chalk from 'chalk'
import shq from 'shq'
export function $(pieces, ...args) {
let __from = (new Error().stack.split('at ')[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]
}
if ($.verbose) console.log('$', colorize(cmd))
let options = {
cwd: $.cwd,
shell: typeof $.shell === 'string' ? $.shell : true,
windowsHide: true,
}
let child = spawn($.prefix + cmd, options)
let promise = new ProcessPromise((resolve, reject) => {
child.on('exit', code => {
child.on('close', () => {
let output = new ProcessOutput({
code, stdout, stderr, combined,
message: `${stderr || '\n'} at ${__from}`
});
(code === 0 || promise._nothrow ? resolve : reject)(output)
})
})
})
if (process.stdin.isTTY) {
process.stdin.pipe(child.stdin)
}
let stdout = '', stderr = '', combined = ''
function onStdout(data) {
if ($.verbose) process.stdout.write(data)
stdout += data
combined += data
}
function onStderr(data) {
if ($.verbose) process.stderr.write(data)
stderr += data
combined += data
}
child.stdout.on('data', onStdout)
child.stderr.on('data', onStderr)
promise._stop = () => {
child.stdout.off('data', onStdout)
child.stderr.off('data', onStderr)
}
promise.child = child
return promise
}
$.verbose = true
try {
$.shell = await which('bash')
$.prefix = 'set -euo pipefail;'
} catch (e) {
// Bash not found, no prefix.
$.prefix = ''
}
$.quote = shq
$.cwd = undefined
export function cd(path) {
if ($.verbose) console.log('$', colorize(`cd ${path}`))
if (!existsSync(path)) {
let __from = (new Error().stack.split('at ')[2]).trim()
console.error(`cd: ${path}: No such directory`)
console.error(` at ${__from}`)
process.exit(1)
}
$.cwd = path
}
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 async function fetch(url, init) {
if ($.verbose) {
if (typeof init !== 'undefined') {
console.log('$', colorize(`fetch ${url}`), init)
} else {
console.log('$', colorize(`fetch ${url}`))
}
}
return nodeFetch(url, init)
}
export const sleep = promisify(setTimeout)
export function nothrow(promise) {
promise._nothrow = true
return promise
}
export class ProcessPromise extends Promise {
child = undefined
_stop = () => void 0
_nothrow = false
get stdin() {
return this.child.stdin
}
get stdout() {
return this.child.stdout
}
get stderr() {
return this.child.stderr
}
get exitCode() {
return this
.then(p => p.exitCode)
.catch(p => p.exitCode)
}
pipe(dest) {
if (typeof dest === 'string') {
throw new Error('The pipe() method does not take strings. Forgot $?')
}
this._stop()
if (dest instanceof ProcessPromise) {
process.stdin.unpipe(dest.stdin)
this.stdout.pipe(dest.stdin)
return dest
}
this.stdout.pipe(dest)
return this
}
}
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
}
}
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.toString()
}
Object.assign(global, {
$,
cd,
chalk,
fetch,
fs: {...fs, createWriteStream, createReadStream},
nothrow,
os,
question,
sleep,
})
export {chalk}