-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathspawn_stream.mjs
68 lines (58 loc) · 2.18 KB
/
spawn_stream.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
// Copyright 2022 The Outline Authors
//
// 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
//
// http://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 chalk from 'chalk';
import {spawn} from 'child_process';
/**
* @description promisifies the child process (for supporting legacy bash actions!)
*/
export const spawnStream = (command, ...parameters) =>
new Promise((resolve, reject) => {
const stdout = [];
const stderr = [];
console.debug(chalk.gray(`Running [${[command, ...parameters.map(e => `'${e}'`)].join(' ')}]...`));
const childProcess = spawn(command, parameters, {env: process.env});
const forEachMessageLine = (buffer, callback) => {
buffer
.toString()
.split('\n')
.filter(line => line.trim())
.forEach(callback);
};
childProcess.stdout.on('data', data =>
forEachMessageLine(data, line => {
console.info(line);
stdout.push(line);
})
);
childProcess.stderr.on('data', error => forEachMessageLine(error, line => stderr.push(line)));
childProcess.on('close', code => {
if (code === 0) {
return resolve(stdout.join(''));
}
console.error(
chalk.red(
`ERROR(spawn_stream): ${chalk.underline(
[command, ...parameters].join(' ')
)} failed with exit code ${chalk.bold(code)}.}`
)
);
if (!(stderr.length && stderr.every(line => line))) {
console.error(chalk.bgRedBright('No error output was given... Please fix this so it gives an error output :('));
} else {
console.error(chalk.bgRedBright('Printing stderr:'));
stderr.forEach(error => console.error(chalk.rgb(128, 64, 64)(error)));
}
return reject(stderr.join(''));
});
});