node/lib/child_process.js

239 lines
5.9 KiB
JavaScript
Raw Normal View History

var util = require('util');
2010-03-18 05:00:17 +08:00
var EventEmitter = require('events').EventEmitter;
2010-03-18 07:31:24 +08:00
var Stream = require('net').Stream;
2010-03-18 05:00:17 +08:00
var InternalChildProcess = process.binding('child_process').ChildProcess;
2010-09-17 14:13:03 +08:00
var constants;
2010-03-18 05:00:17 +08:00
2010-12-02 08:56:03 +08:00
var spawn = exports.spawn = function(path, args /*, options, customFds */) {
2010-03-18 05:00:17 +08:00
var child = new ChildProcess();
child.spawn.apply(child, arguments);
2010-03-18 05:00:17 +08:00
return child;
};
2010-12-02 08:56:03 +08:00
exports.exec = function(command /*, options, callback */) {
var _slice = Array.prototype.slice;
2010-12-02 08:56:03 +08:00
var args = ['/bin/sh', ['-c', command]].concat(_slice.call(arguments, 1));
return exports.execFile.apply(this, args);
};
2010-03-18 05:00:17 +08:00
2010-12-02 08:56:03 +08:00
// execFile('something.sh', { env: ENV }, function() { })
2010-12-02 08:56:03 +08:00
exports.execFile = function(file /* args, options, callback */) {
var options = { encoding: 'utf8',
timeout: 0,
maxBuffer: 200 * 1024,
killSignal: 'SIGTERM',
cwd: null,
env: null };
var args, optionArg, callback;
// Parse the parameters.
2010-12-02 08:56:03 +08:00
if (typeof arguments[arguments.length - 1] === 'function') {
callback = arguments[arguments.length - 1];
}
if (Array.isArray(arguments[1])) {
args = arguments[1];
if (typeof arguments[2] === 'object') optionArg = arguments[2];
} else {
args = [];
if (typeof arguments[1] === 'object') optionArg = arguments[1];
}
// Merge optionArg into options
if (optionArg) {
var keys = Object.keys(options);
2010-09-23 20:14:16 +08:00
for (var i = 0, len = keys.length; i < len; i++) {
var k = keys[i];
if (optionArg[k] !== undefined) options[k] = optionArg[k];
}
}
var child = spawn(file, args, {cwd: options.cwd, env: options.env});
2010-12-02 08:56:03 +08:00
var stdout = '';
var stderr = '';
var killed = false;
var exited = false;
var timeoutId;
2010-12-02 08:56:03 +08:00
function exithandler(code, signal) {
if (exited) return;
exited = true;
if (timeoutId) {
clearTimeout(timeoutId);
timeoutId = null;
}
if (!callback) return;
if (code === 0 && signal === null) {
callback(null, stdout, stderr);
} else {
2010-12-02 08:56:03 +08:00
var e = new Error('Command failed: ' + stderr);
e.killed = child.killed || killed;
e.code = code;
e.signal = signal;
callback(e, stdout, stderr);
}
}
2010-03-18 05:00:17 +08:00
2010-12-02 08:56:03 +08:00
function kill() {
killed = true;
child.kill(options.killSignal);
2010-12-02 08:56:03 +08:00
process.nextTick(function() {
exithandler(null, options.killSignal);
});
}
if (options.timeout > 0) {
2010-12-02 08:56:03 +08:00
timeoutId = setTimeout(function() {
kill();
timeoutId = null;
}, options.timeout);
}
2010-03-18 05:00:17 +08:00
child.stdout.setEncoding(options.encoding);
child.stderr.setEncoding(options.encoding);
2010-12-02 08:56:03 +08:00
child.stdout.addListener('data', function(chunk) {
stdout += chunk;
if (stdout.length > options.maxBuffer) {
kill();
}
});
2010-12-02 08:56:03 +08:00
child.stderr.addListener('data', function(chunk) {
stderr += chunk;
if (stderr.length > options.maxBuffer) {
kill();
}
});
2010-03-18 05:00:17 +08:00
2010-12-02 08:56:03 +08:00
child.addListener('exit', exithandler);
2010-07-13 05:18:09 +08:00
return child;
2010-03-18 05:00:17 +08:00
};
2010-12-02 08:56:03 +08:00
function ChildProcess() {
EventEmitter.call(this);
2010-03-18 05:00:17 +08:00
var self = this;
this.killed = false;
2010-03-18 05:00:17 +08:00
var gotCHLD = false;
var exitCode;
var termSignal;
2010-03-18 05:00:17 +08:00
var internal = this._internal = new InternalChildProcess();
2010-12-02 08:56:03 +08:00
var stdin = this.stdin = new Stream();
2010-03-18 07:31:24 +08:00
var stdout = this.stdout = new Stream();
var stderr = this.stderr = new Stream();
2010-03-18 05:00:17 +08:00
var stderrClosed = false;
var stdoutClosed = false;
2010-12-02 08:56:03 +08:00
stderr.addListener('close', function() {
stderrClosed = true;
if (gotCHLD && (!self.stdout || stdoutClosed)) {
self.emit('exit', exitCode, termSignal);
2010-03-18 05:00:17 +08:00
}
});
2010-12-02 08:56:03 +08:00
stdout.addListener('close', function() {
stdoutClosed = true;
if (gotCHLD && (!self.stderr || stderrClosed)) {
self.emit('exit', exitCode, termSignal);
}
});
2010-03-18 05:00:17 +08:00
2010-12-02 08:56:03 +08:00
internal.onexit = function(code, signal) {
2010-03-18 05:00:17 +08:00
gotCHLD = true;
exitCode = code;
termSignal = signal;
if (self.stdin) {
self.stdin.end();
}
2010-12-02 08:56:03 +08:00
if ((!self.stdout || !self.stdout.readable) &&
(!self.stderr || !self.stderr.readable)) {
self.emit('exit', exitCode, termSignal);
2010-03-18 05:00:17 +08:00
}
};
2010-12-02 08:56:03 +08:00
this.__defineGetter__('pid', function() { return internal.pid; });
2010-03-18 05:00:17 +08:00
}
util.inherits(ChildProcess, EventEmitter);
2010-03-18 05:00:17 +08:00
2010-12-02 08:56:03 +08:00
ChildProcess.prototype.kill = function(sig) {
if (this._internal.pid) {
this.killed = true;
2010-12-02 08:56:03 +08:00
if (!constants) constants = process.binding('constants');
sig = sig || 'SIGTERM';
2010-12-02 08:56:03 +08:00
if (!constants[sig]) throw new Error('Unknown signal: ' + sig);
return this._internal.kill(constants[sig]);
}
2010-03-18 05:00:17 +08:00
};
2010-12-02 08:56:03 +08:00
ChildProcess.prototype.spawn = function(path, args, options, customFds) {
2010-03-18 05:00:17 +08:00
args = args || [];
var cwd, env;
if (!options || options.cwd === undefined &&
options.env === undefined &&
options.customFds === undefined) {
// Deprecated API: (path, args, options, env, customFds)
2010-12-02 08:56:03 +08:00
cwd = '';
env = options || process.env;
customFds = customFds || [-1, -1, -1];
2010-10-10 03:48:22 +08:00
} else {
// Recommended API: (path, args, options)
2010-12-02 08:56:03 +08:00
cwd = options.cwd || '';
env = options.env || process.env;
customFds = options.customFds || [-1, -1, -1];
}
2010-03-18 05:00:17 +08:00
var envPairs = [];
var keys = Object.keys(env);
for (var index = 0, keysLength = keys.length; index < keysLength; index++) {
var key = keys[index];
2010-12-02 08:56:03 +08:00
envPairs.push(key + '=' + env[key]);
2010-03-18 05:00:17 +08:00
}
2010-12-02 08:56:03 +08:00
var fds = this._internal.spawn(path, args, cwd, envPairs, customFds);
this.fds = fds;
2010-03-18 05:00:17 +08:00
if (customFds[0] === -1 || customFds[0] === undefined) {
this.stdin.open(fds[0]);
this.stdin.writable = true;
this.stdin.readable = false;
2010-10-10 03:48:22 +08:00
} else {
this.stdin = null;
}
2010-03-18 05:00:17 +08:00
if (customFds[1] === -1 || customFds[1] === undefined) {
this.stdout.open(fds[1]);
this.stdout.writable = false;
this.stdout.readable = true;
this.stdout.resume();
2010-10-10 03:48:22 +08:00
} else {
this.stdout = null;
}
2010-03-18 05:00:17 +08:00
if (customFds[2] === -1 || customFds[2] === undefined) {
this.stderr.open(fds[2]);
this.stderr.writable = false;
this.stderr.readable = true;
this.stderr.resume();
2010-10-10 03:48:22 +08:00
} else {
this.stderr = null;
}
2010-03-18 05:00:17 +08:00
};