-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshell.ts
172 lines (159 loc) · 4.38 KB
/
shell.ts
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
import * as fs from "https://deno.land/std@0.75.0/fs/mod.ts";
export interface ShellExecutableScriptDefn {
readonly scriptLanguage: "/bin/bash" | "/bin/zsh" | "deno";
readonly script: string | string[];
}
export function writeGitPreCommitScript(
fn: string,
defn: ShellExecutableScriptDefn,
overwrite = false,
) {
if (!overwrite && fs.existsSync(fn)) {
console.log(
"Git pre-commit hook already exists at " + fn + ", Avoiding overwrite",
);
return;
}
Deno.writeTextFileSync(
fn,
"#!" + defn.scriptLanguage + `\n` +
defn.script,
);
try {
// Deno.chmodSync: This API currently throws on Windows.
Deno.chmodSync(fn, 0o764);
} catch (e) {
console.error(e.message);
}
}
export function commandComponents(command: string): string[] {
// split components of the command with double-quotes support
const splitCmdRegExp = /[^\s"]+|"([^"]*)"/gi;
const components = [];
let match: RegExpExecArray | null;
do {
//Each call to exec returns the next regex match as an array
match = splitCmdRegExp.exec(command);
if (match != null) {
//Index 1 in the array is the captured group if it exists
//Index 0 is the matched text, which we use if no captured group exists
components.push(match[1] ? match[1] : match[0]);
}
} while (match != null);
return components;
}
export interface ShellCommandStatusHandler {
(
rawOutput: Uint8Array,
code: number,
runOpts: Deno.RunOptions,
): void;
}
export interface ShellCmdStatusReporter {
before?(
writer: Deno.WriterSync,
rawOutput: Uint8Array,
code: number,
runOpts: Deno.RunOptions,
): void;
after?(
writer: Deno.WriterSync,
rawOutput: Uint8Array,
code: number,
runOpts: Deno.RunOptions,
): void;
}
export function postShellCmdBlockStatusReporter(
heading: string,
): ShellCmdStatusReporter {
return {
before: (
writer: Deno.WriterSync,
): void => {
// if Deno.Run produced any output, add a heading
writer.writeSync(new TextEncoder().encode(heading + "\n"));
},
after: (
writer: Deno.WriterSync,
rawOutput: Uint8Array,
): void => {
// if Deno.Run produced any output, add a blank line (otherwise nothing)
const text = new TextDecoder().decode(rawOutput);
if (text.trim()) {
writer.writeSync(new TextEncoder().encode(""));
}
},
};
}
export function prepShellCmdStdOutReporter(
reporter: ShellCmdStatusReporter,
): ShellCommandStatusHandler {
return (
rawOutput: Uint8Array,
code: number,
runOpts: Deno.RunOptions,
): void => {
if (reporter.before) reporter.before(Deno.stdout, rawOutput, code, runOpts);
Deno.stdout.writeSync(rawOutput);
if (reporter.after) reporter.after(Deno.stdout, rawOutput, code, runOpts);
};
}
export function prepShellCmdStdErrReporter(
reporter: ShellCmdStatusReporter,
): ShellCommandStatusHandler {
return (
rawOutput: Uint8Array,
code: number,
runOpts: Deno.RunOptions,
): void => {
if (reporter.before) reporter.before(Deno.stderr, rawOutput, code, runOpts);
Deno.stderr.writeSync(rawOutput);
if (reporter.after) reporter.after(Deno.stderr, rawOutput, code, runOpts);
};
}
export function shellCmdStdOutHandler(rawOutput: Uint8Array): void {
Deno.stdout.writeSync(rawOutput);
}
export function shellCmdStdErrHandler(rawOutput: Uint8Array): void {
Deno.stderr.writeSync(rawOutput);
}
export async function runShellCommand(
ctx: { readonly dryRun: boolean },
command: Deno.RunOptions | string,
onSuccessStatus?: ShellCommandStatusHandler,
onNonZeroStatus?: ShellCommandStatusHandler,
): Promise<void> {
const runOpts = typeof command === "string"
? {
cmd: commandComponents(command),
}
: command;
if (ctx.dryRun) {
if (runOpts.cwd) {
console.log(`cd ${runOpts.cwd}`);
}
if (runOpts.env) {
console.dir(runOpts.env);
}
console.log(runOpts.cmd.join(" "));
} else {
if (onSuccessStatus) {
runOpts.stdout = "piped";
}
if (onNonZeroStatus) {
runOpts.stderr = "piped";
}
const p = Deno.run(runOpts);
const { code } = await p.status();
if (code === 0) {
if (onSuccessStatus) {
onSuccessStatus(await p.output(), code, runOpts);
}
} else {
if (onNonZeroStatus) {
onNonZeroStatus(await p.stderrOutput(), code, runOpts);
}
}
p.close();
}
}