-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.js
152 lines (136 loc) · 4.54 KB
/
index.js
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
'use strict';
const debug = require('util').debuglog('runscript');
const is = require('is-type-of');
const assert = require('assert');
const path = require('path');
const spawn = require('child_process').spawn;
const spawnSync = require('child_process').spawnSync;
function isCmd() {
if (process.platform !== 'win32') {
return false
}
try {
const result = spawnSync(`ls`, {
stdio: 'pipe',
})
return result.error !== undefined
} catch (err) {
return true
}
}
/**
* Run shell script in child process
* Support OSX, Linux and Windows
* @param {String} script - full script string, like `git clone https://github.com/node-modules/runscript.git`
* @param {Object} [options] - spawn options
* @see https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options
* @param {Object} [extraOptions] - extra options for running
* - {Number} [extraOptions.timeout] - child process running timeout
* @return {Object} stdio object, will contains stdio.stdout and stdio.stderr buffer.
*/
module.exports = function runScript(script, options, extraOptions) {
return new Promise((resolve, reject) => {
extraOptions = extraOptions || {};
options = options || {};
options.env = options.env || Object.assign({}, process.env);
options.cwd = options.cwd || process.cwd();
options.stdio = options.stdio || 'inherit';
if (options.stdout) assert(is.writableStream(options.stdout), 'options.stdout should be writable stream');
if (options.stderr) assert(is.writableStream(options.stderr), 'options.stderr should be writable stream');
let sh = 'sh';
let shFlag = '-c';
if (process.platform === 'win32') {
sh = process.env.comspec || 'cmd';
shFlag = '/d /s /c';
options.windowsVerbatimArguments = true;
if (script.indexOf('./') === 0 || script.indexOf('.\\') === 0 ||
script.indexOf('../') === 0 || script.indexOf('..\\') === 0) {
const splits = script.split(' ');
// in bash C:\Windows\system32 -> C:\\Windows\\system32
splits[0] = path.join(isCmd() ? options.cwd : path.normalize(options.cwd), splits[0]);
script = splits.join(' ');
}
}
debug('%s %s %s, %j, %j', sh, shFlag, script, options, extraOptions);
const proc = spawn(sh, [ shFlag, script ], options);
const stdout = [];
const stderr = [];
let isEnd = false;
let timeoutTimer;
if (proc.stdout) {
proc.stdout.on('data', buf => {
debug('stdout %d bytes', buf.length);
stdout.push(buf);
});
if (options.stdout) {
proc.stdout.pipe(options.stdout);
}
}
if (proc.stderr) {
proc.stderr.on('data', buf => {
debug('stderr %d bytes', buf.length);
stderr.push(buf);
});
if (options.stderr) {
proc.stderr.pipe(options.stderr);
}
}
proc.on('error', err => {
debug('proc emit error: %s', err);
if (isEnd) return;
isEnd = true;
clearTimeout(timeoutTimer);
reject(err);
});
proc.on('exit', code => {
debug('proc emit exit: %s', code);
if (isEnd) return;
isEnd = true;
clearTimeout(timeoutTimer);
const stdio = {
stdout: null,
stderr: null,
};
if (stdout.length > 0) {
stdio.stdout = Buffer.concat(stdout);
}
if (stderr.length > 0) {
stdio.stderr = Buffer.concat(stderr);
}
if (code !== 0) {
const err = new Error(`Run "${sh} ${shFlag} ${script}" error, exit code ${code}`);
err.name = 'RunScriptError';
err.stdio = stdio;
err.exitcode = code;
return reject(err);
}
return resolve(stdio);
});
proc.on('close', code => {
debug('proc emit close: %s', code);
});
if (typeof extraOptions.timeout === 'number' && extraOptions.timeout > 0) {
// start timer
timeoutTimer = setTimeout(() => {
debug('proc run timeout: %dms', extraOptions.timeout);
isEnd = true;
debug('kill child process %s', proc.pid);
proc.kill();
const err = new Error(`Run "${sh} ${shFlag} ${script}" timeout in ${extraOptions.timeout}ms`);
err.name = 'RunScriptTimeoutError';
const stdio = {
stdout: null,
stderr: null,
};
if (stdout.length > 0) {
stdio.stdout = Buffer.concat(stdout);
}
if (stderr.length > 0) {
stdio.stderr = Buffer.concat(stderr);
}
err.stdio = stdio;
return reject(err);
}, extraOptions.timeout);
}
});
};