2010-01-31 11:13:30 -08:00
|
|
|
(function (process) {
|
2010-01-30 23:22:34 -08:00
|
|
|
|
2010-09-17 00:01:07 -07:00
|
|
|
global = this;
|
|
|
|
global.process = process;
|
|
|
|
global.global = global;
|
2010-01-30 23:22:34 -08:00
|
|
|
global.GLOBAL = global;
|
2010-08-19 01:37:45 +02:00
|
|
|
global.root = global;
|
2009-10-31 19:02:30 +01:00
|
|
|
|
2010-01-15 12:46:08 -08:00
|
|
|
/** deprecation errors ************************************************/
|
2009-10-31 19:02:30 +01:00
|
|
|
|
2010-01-20 21:39:10 +01:00
|
|
|
function removed (reason) {
|
|
|
|
return function () {
|
2010-10-06 23:05:23 -04:00
|
|
|
throw new Error(reason);
|
|
|
|
};
|
2010-01-20 21:39:10 +01:00
|
|
|
}
|
2009-10-31 19:02:30 +01:00
|
|
|
|
2010-01-20 21:39:10 +01:00
|
|
|
process.debug = removed("process.debug() has moved. Use require('sys') to bring it back.");
|
|
|
|
process.error = removed("process.error() has moved. Use require('sys') to bring it back.");
|
2010-03-01 10:42:37 -08:00
|
|
|
process.watchFile = removed("process.watchFile() has moved to fs.watchFile()");
|
|
|
|
process.unwatchFile = removed("process.unwatchFile() has moved to fs.unwatchFile()");
|
2010-04-13 13:44:05 -07:00
|
|
|
process.mixin = removed('process.mixin() has been removed.');
|
2010-03-17 14:00:17 -07:00
|
|
|
process.createChildProcess = removed("childProcess API has changed. See doc/api.txt.");
|
2010-03-01 11:39:35 -08:00
|
|
|
process.inherits = removed("process.inherits() has moved to sys.inherits.");
|
2010-09-17 01:06:44 -07:00
|
|
|
process._byteLength = removed("process._byteLength() has moved to Buffer.byteLength");
|
2009-06-30 13:40:00 +02:00
|
|
|
|
2009-11-07 14:37:22 +01:00
|
|
|
process.assert = function (x, msg) {
|
2010-04-28 22:37:09 +02:00
|
|
|
if (!x) throw new Error(msg || "assertion error");
|
2009-11-07 14:37:22 +01:00
|
|
|
};
|
|
|
|
|
2010-11-21 15:16:02 -08:00
|
|
|
var evals = process.binding('evals');
|
2010-11-21 14:20:22 -08:00
|
|
|
|
|
|
|
// lazy loaded.
|
|
|
|
var constants;
|
|
|
|
function lazyConstants () {
|
|
|
|
if (!constants) constants = process.binding("constants");
|
|
|
|
return constants;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-18 10:27:27 -08:00
|
|
|
// nextTick()
|
|
|
|
|
|
|
|
var nextTickQueue = [];
|
|
|
|
|
2010-04-13 15:39:15 -07:00
|
|
|
process._tickCallback = function () {
|
2010-08-19 18:58:28 -07:00
|
|
|
var l = nextTickQueue.length;
|
|
|
|
if (l === 0) return;
|
2010-08-27 02:50:12 -06:00
|
|
|
|
|
|
|
try {
|
|
|
|
for (var i = 0; i < l; i++) {
|
2010-09-01 05:01:38 -06:00
|
|
|
nextTickQueue[i]();
|
2010-08-27 02:50:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
nextTickQueue.splice(0, i+1);
|
2010-09-01 05:01:38 -06:00
|
|
|
if (i+1 < l) {
|
|
|
|
process._needTickCallback();
|
|
|
|
}
|
2010-10-01 23:22:34 -07:00
|
|
|
throw e; // process.nextTick error, or 'error' event on first tick
|
2010-01-18 10:27:27 -08:00
|
|
|
}
|
2010-08-27 02:50:12 -06:00
|
|
|
|
2010-08-19 18:58:28 -07:00
|
|
|
nextTickQueue.splice(0, l);
|
2010-01-18 10:27:27 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
process.nextTick = function (callback) {
|
|
|
|
nextTickQueue.push(callback);
|
2010-04-13 15:39:15 -07:00
|
|
|
process._needTickCallback();
|
2010-01-18 10:27:27 -08:00
|
|
|
};
|
|
|
|
|
2010-11-22 03:03:21 +01:00
|
|
|
var internalModuleCache = {};
|
|
|
|
|
|
|
|
// This contains the source code for the files in lib/
|
|
|
|
// Like, natives.fs is the contents of lib/fs.js
|
|
|
|
var natives = process.binding('natives');
|
|
|
|
|
|
|
|
// Native modules don't need a full require function. So we can bootstrap
|
|
|
|
// most of the system with this mini-require.
|
|
|
|
function requireNative (id) {
|
|
|
|
if (internalModuleCache[id]) return internalModuleCache[id].exports;
|
|
|
|
if (!natives[id]) throw new Error('No such native module ' + id);
|
|
|
|
|
|
|
|
var fn = evals.Script.runInThisContext(
|
2010-11-22 11:26:37 -08:00
|
|
|
"(function (module, exports, require) {" + natives[id] + "\n})",
|
2010-11-22 03:03:21 +01:00
|
|
|
id + '.js');
|
|
|
|
var m = {id: id, exports: {}};
|
2010-11-22 11:26:37 -08:00
|
|
|
fn(m, m.exports, requireNative);
|
2010-11-22 03:03:21 +01:00
|
|
|
m.loaded = true;
|
|
|
|
internalModuleCache[id] = m;
|
|
|
|
return m.exports;
|
|
|
|
}
|
2010-09-16 14:04:37 +02:00
|
|
|
|
2010-04-20 18:22:51 -07:00
|
|
|
// Module System
|
2010-08-06 12:31:41 -07:00
|
|
|
var module = (function () {
|
|
|
|
var exports = {};
|
2010-08-17 15:38:57 +02:00
|
|
|
// Set the environ variable NODE_MODULE_CONTEXTS=1 to make node load all
|
2010-08-06 12:31:41 -07:00
|
|
|
// modules in thier own context.
|
|
|
|
var contextLoad = false;
|
2010-09-20 13:50:26 +12:00
|
|
|
if (+process.env["NODE_MODULE_CONTEXTS"] > 0) contextLoad = true;
|
2010-08-06 12:31:41 -07:00
|
|
|
|
2010-09-30 12:16:48 -07:00
|
|
|
var moduleCache = {};
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
function Module (id, parent) {
|
|
|
|
this.id = id;
|
|
|
|
this.exports = {};
|
|
|
|
this.parent = parent;
|
|
|
|
|
|
|
|
this.filename = null;
|
|
|
|
this.loaded = false;
|
|
|
|
this.exited = false;
|
|
|
|
this.children = [];
|
|
|
|
};
|
|
|
|
|
2010-11-16 15:44:06 +01:00
|
|
|
|
2010-08-06 12:31:41 -07:00
|
|
|
// Modules
|
|
|
|
|
|
|
|
var debugLevel = parseInt(process.env["NODE_DEBUG"], 16);
|
|
|
|
function debug (x) {
|
2010-11-30 11:18:02 -08:00
|
|
|
if (debugLevel & 1) console.error(x);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
2010-11-21 15:07:34 -08:00
|
|
|
|
|
|
|
var path = requireNative('path');
|
2010-08-06 12:31:41 -07:00
|
|
|
|
2010-11-15 10:22:24 -08:00
|
|
|
var modulePaths = [path.join(process.execPath, "..", "..", "lib", "node")];
|
|
|
|
|
|
|
|
if (process.env["HOME"]) {
|
|
|
|
modulePaths.unshift(path.join(process.env["HOME"], ".node_libraries"));
|
2010-11-15 11:20:35 -08:00
|
|
|
modulePaths.unshift(path.join(process.env["HOME"], ".node_modules"));
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
2010-11-15 10:22:24 -08:00
|
|
|
if (process.env["NODE_PATH"]) {
|
|
|
|
modulePaths = process.env["NODE_PATH"].split(":").concat(modulePaths);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
2010-09-20 13:50:26 +12:00
|
|
|
var extensions = {};
|
|
|
|
var registerExtension = removed('require.registerExtension() removed. Use require.extensions instead');
|
2010-08-06 12:31:41 -07:00
|
|
|
|
2010-08-15 02:48:06 +02:00
|
|
|
// Which files to traverse while finding id? Returns generator function.
|
|
|
|
function traverser (id, dirs) {
|
2010-09-20 13:50:26 +12:00
|
|
|
var head = [], inDir = [], dirs = dirs.slice(),
|
|
|
|
exts = Object.keys(extensions);
|
2010-08-15 02:48:06 +02:00
|
|
|
return function next () {
|
|
|
|
var result = head.shift();
|
|
|
|
if (result) { return result; }
|
|
|
|
|
|
|
|
var gen = inDir.shift();
|
|
|
|
if (gen) { head = gen(); return next(); }
|
|
|
|
|
2010-09-20 13:50:26 +12:00
|
|
|
var dir = dirs.shift();
|
2010-08-15 02:48:06 +02:00
|
|
|
if (dir !== undefined) {
|
2010-09-20 13:50:26 +12:00
|
|
|
function direct (ext) { return path.join(dir, id + ext); }
|
|
|
|
function index (ext) { return path.join(dir, id, 'index' + ext); }
|
2010-08-15 02:48:06 +02:00
|
|
|
inDir = [
|
2010-09-20 13:50:26 +12:00
|
|
|
function () { return exts.map(direct); },
|
2010-10-06 23:05:23 -04:00
|
|
|
function () { return exts.map(index); }
|
2010-08-15 02:48:06 +02:00
|
|
|
];
|
|
|
|
head = [path.join(dir, id)];
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-10-18 18:17:33 -07:00
|
|
|
function findModulePath (request, paths) {
|
2010-11-15 10:22:24 -08:00
|
|
|
var nextLoc = traverser(request, request.charAt(0) === '/' ? [''] : paths);
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
var fs = requireNative('fs');
|
|
|
|
|
2010-09-19 16:00:46 -07:00
|
|
|
var location, stats;
|
|
|
|
while (location = nextLoc()) {
|
|
|
|
try { stats = fs.statSync(location); } catch(e) { continue; }
|
|
|
|
if (stats && !stats.isDirectory()) return location;
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
2010-09-19 16:00:46 -07:00
|
|
|
return false;
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// sync - no i/o performed
|
2010-10-18 18:17:33 -07:00
|
|
|
function resolveModuleLookupPaths (request, parent) {
|
|
|
|
|
|
|
|
if (natives[request]) return [request, []];
|
|
|
|
|
2010-08-15 19:23:50 +02:00
|
|
|
var start = request.substring(0, 2);
|
2010-09-20 13:50:26 +12:00
|
|
|
if (start !== "./" && start !== "..") {
|
2010-11-15 10:22:24 -08:00
|
|
|
return [request, modulePaths];
|
2010-09-20 13:50:26 +12:00
|
|
|
}
|
|
|
|
|
2010-11-16 15:44:06 +01:00
|
|
|
// with --eval, parent.id is not set and parent.filename is null
|
|
|
|
if (!parent || !parent.id || !parent.filename) {
|
|
|
|
// make require('./path/to/foo') work - normally the path is taken
|
|
|
|
// from realpath(__filename) but with eval there is no filename
|
|
|
|
return [request, ['.'].concat(modulePaths)];
|
|
|
|
}
|
|
|
|
|
2010-09-20 13:50:26 +12:00
|
|
|
// Is the parent an index module?
|
|
|
|
// We can assume the parent has a valid extension,
|
|
|
|
// as it already has been accepted as a module.
|
|
|
|
var isIndex = /^index\.\w+?$/.test(path.basename(parent.filename)),
|
|
|
|
parentIdPath = isIndex ? parent.id : path.dirname(parent.id),
|
|
|
|
id = path.join(parentIdPath, request);
|
|
|
|
|
2010-08-15 19:23:50 +02:00
|
|
|
// make sure require('./path') and require('path') get distinct ids, even
|
|
|
|
// when called from the toplevel js file
|
|
|
|
if (parentIdPath === '.' && id.indexOf('/') === -1) {
|
|
|
|
id = './' + id;
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
2010-08-15 19:23:50 +02:00
|
|
|
debug("RELATIVE: requested:" + request + " set ID to: "+id+" from "+parent.id);
|
|
|
|
return [id, [path.dirname(parent.filename)]];
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-19 16:00:46 -07:00
|
|
|
function loadModule (request, parent) {
|
2010-08-06 12:31:41 -07:00
|
|
|
debug("loadModule REQUEST " + (request) + " parent: " + parent.id);
|
|
|
|
|
2010-10-18 18:17:33 -07:00
|
|
|
var resolved = resolveModuleFilename(request, parent);
|
|
|
|
var id = resolved[0];
|
|
|
|
var filename = resolved[1];
|
|
|
|
|
2010-09-20 13:50:26 +12:00
|
|
|
// With natives id === request
|
|
|
|
// We deal with these first
|
2010-10-18 18:17:33 -07:00
|
|
|
if (natives[id]) {
|
2010-11-22 03:03:21 +01:00
|
|
|
// REPL is a special case, because it needs the real require.
|
|
|
|
if (id == 'repl') {
|
|
|
|
var replModule = new Module("repl");
|
|
|
|
replModule._compile(natives.repl, 'repl.js');
|
|
|
|
internalModuleCache.repl = replModule;
|
|
|
|
return replModule.exports;
|
|
|
|
}
|
|
|
|
|
2010-09-20 13:50:26 +12:00
|
|
|
debug('load native module ' + request);
|
2010-11-21 15:06:20 -08:00
|
|
|
return requireNative(id);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
2010-10-18 18:17:33 -07:00
|
|
|
var cachedModule = moduleCache[filename];
|
|
|
|
if (cachedModule) return cachedModule.exports;
|
|
|
|
|
|
|
|
var module = new Module(id, parent);
|
|
|
|
moduleCache[filename] = module;
|
|
|
|
module.load(filename);
|
|
|
|
return module.exports;
|
|
|
|
};
|
|
|
|
|
|
|
|
function resolveModuleFilename (request, parent) {
|
|
|
|
if (natives[request]) return [request, request];
|
|
|
|
var resolvedModule = resolveModuleLookupPaths(request, parent),
|
2010-09-20 13:50:26 +12:00
|
|
|
id = resolvedModule[0],
|
|
|
|
paths = resolvedModule[1];
|
|
|
|
|
2010-08-06 12:31:41 -07:00
|
|
|
// look up the filename first, since that's the cache key.
|
|
|
|
debug("looking for " + JSON.stringify(id) + " in " + JSON.stringify(paths));
|
2010-09-19 16:00:46 -07:00
|
|
|
var filename = findModulePath(request, paths);
|
|
|
|
if (!filename) {
|
|
|
|
throw new Error("Cannot find module '" + request + "'");
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
2010-10-18 18:17:33 -07:00
|
|
|
return [id, filename];
|
|
|
|
}
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
|
2010-09-19 16:00:46 -07:00
|
|
|
Module.prototype.load = function (filename) {
|
2010-08-06 12:31:41 -07:00
|
|
|
debug("load " + JSON.stringify(filename) + " for module " + JSON.stringify(this.id));
|
|
|
|
|
|
|
|
process.assert(!this.loaded);
|
|
|
|
this.filename = filename;
|
|
|
|
|
2010-09-20 13:50:26 +12:00
|
|
|
var extension = path.extname(filename) || '.js';
|
2010-09-21 16:51:55 -07:00
|
|
|
if (!extensions[extension]) extension = '.js';
|
2010-09-20 13:50:26 +12:00
|
|
|
extensions[extension](this, filename);
|
|
|
|
this.loaded = true;
|
2010-08-06 12:31:41 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Returns exception if any
|
|
|
|
Module.prototype._compile = function (content, filename) {
|
|
|
|
var self = this;
|
|
|
|
// remove shebang
|
|
|
|
content = content.replace(/^\#\!.*/, '');
|
|
|
|
|
|
|
|
function require (path) {
|
|
|
|
return loadModule(path, self);
|
|
|
|
}
|
|
|
|
|
2010-10-18 18:17:33 -07:00
|
|
|
require.resolve = function (request) {
|
|
|
|
return resolveModuleFilename(request, self)[1];
|
|
|
|
}
|
2010-08-06 12:31:41 -07:00
|
|
|
require.paths = modulePaths;
|
|
|
|
require.main = process.mainModule;
|
2010-09-20 13:50:26 +12:00
|
|
|
// Enable support to add extra extension types
|
|
|
|
require.extensions = extensions;
|
|
|
|
// TODO: Insert depreciation warning
|
2010-08-06 12:31:41 -07:00
|
|
|
require.registerExtension = registerExtension;
|
2010-10-07 09:58:08 -07:00
|
|
|
require.cache = moduleCache;
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
var dirname = path.dirname(filename);
|
|
|
|
|
|
|
|
if (contextLoad) {
|
|
|
|
if (self.id !== ".") {
|
|
|
|
debug('load submodule');
|
|
|
|
// not root module
|
|
|
|
var sandbox = {};
|
|
|
|
for (var k in global) {
|
|
|
|
sandbox[k] = global[k];
|
|
|
|
}
|
|
|
|
sandbox.require = require;
|
|
|
|
sandbox.exports = self.exports;
|
|
|
|
sandbox.__filename = filename;
|
|
|
|
sandbox.__dirname = dirname;
|
|
|
|
sandbox.module = self;
|
2010-08-20 18:59:33 +02:00
|
|
|
sandbox.global = sandbox;
|
2010-08-19 01:37:45 +02:00
|
|
|
sandbox.root = root;
|
2010-08-06 12:31:41 -07:00
|
|
|
|
2010-11-16 15:44:06 +01:00
|
|
|
return evals.Script.runInNewContext(content, sandbox, filename);
|
2010-08-06 12:31:41 -07:00
|
|
|
} else {
|
|
|
|
debug('load root module');
|
|
|
|
// root module
|
|
|
|
global.require = require;
|
|
|
|
global.exports = self.exports;
|
|
|
|
global.__filename = filename;
|
|
|
|
global.__dirname = dirname;
|
|
|
|
global.module = self;
|
2010-11-16 15:44:06 +01:00
|
|
|
|
|
|
|
return evals.Script.runInThisContext(content, filename);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2010-08-17 22:19:19 +02:00
|
|
|
// create wrapper function
|
|
|
|
var wrapper = "(function (exports, require, module, __filename, __dirname) { "
|
|
|
|
+ content
|
|
|
|
+ "\n});";
|
|
|
|
|
2010-11-21 15:16:02 -08:00
|
|
|
var compiledWrapper = evals.Script.runInThisContext(wrapper, filename);
|
2010-08-17 22:19:19 +02:00
|
|
|
if (filename === process.argv[1] && global.v8debug) {
|
|
|
|
global.v8debug.Debug.setBreakPoint(compiledWrapper, 0, 0);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
2010-11-16 15:44:06 +01:00
|
|
|
return compiledWrapper.apply(self.exports, [self.exports, require, self, filename, dirname]);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-09-20 13:50:26 +12:00
|
|
|
// Native extension for .js
|
|
|
|
extensions['.js'] = function (module, filename) {
|
2010-08-06 12:31:41 -07:00
|
|
|
var content = requireNative('fs').readFileSync(filename, 'utf8');
|
2010-09-20 13:50:26 +12:00
|
|
|
module._compile(content, filename);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Native extension for .node
|
|
|
|
extensions['.node'] = function (module, filename) {
|
|
|
|
process.dlopen(filename, module.exports);
|
2010-08-06 12:31:41 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// bootstrap main module.
|
|
|
|
exports.runMain = function () {
|
|
|
|
// Load the main module--the command line argument.
|
|
|
|
process.mainModule = new Module(".");
|
2010-11-21 13:58:47 -08:00
|
|
|
try {
|
|
|
|
process.mainModule.load(process.argv[1]);
|
|
|
|
} catch (e) {
|
2010-11-21 14:20:22 -08:00
|
|
|
if (e.errno == lazyConstants().ENOENT) {
|
2010-11-21 13:58:47 -08:00
|
|
|
console.error("Cannot load '%s'", process.argv[1]);
|
|
|
|
process.exit(1);
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2010-10-06 23:05:23 -04:00
|
|
|
};
|
2010-11-22 03:03:21 +01:00
|
|
|
|
|
|
|
// bootstrap repl
|
|
|
|
exports.requireRepl = function () { return loadModule("repl", "."); };
|
2010-08-06 12:31:41 -07:00
|
|
|
|
2010-11-16 15:44:06 +01:00
|
|
|
// export for --eval
|
|
|
|
exports.Module = Module;
|
|
|
|
|
2010-08-06 12:31:41 -07:00
|
|
|
return exports;
|
|
|
|
})();
|
|
|
|
|
2010-01-18 10:27:27 -08:00
|
|
|
|
2010-09-19 11:20:25 -07:00
|
|
|
// Load events module in order to access prototype elements on process like
|
|
|
|
// process.addListener.
|
2010-11-22 03:03:21 +01:00
|
|
|
var events = requireNative('events');
|
2010-09-19 11:20:25 -07:00
|
|
|
|
|
|
|
// Signal Handlers
|
|
|
|
(function() {
|
|
|
|
var signalWatchers = {};
|
|
|
|
var addListener = process.addListener;
|
|
|
|
var removeListener = process.removeListener;
|
|
|
|
|
|
|
|
function isSignal (event) {
|
2010-11-21 14:20:22 -08:00
|
|
|
return event.slice(0, 3) === 'SIG' && lazyConstants()[event];
|
2010-09-19 11:20:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap addListener for the special signal types
|
|
|
|
process.on = process.addListener = function (type, listener) {
|
|
|
|
var ret = addListener.apply(this, arguments);
|
|
|
|
if (isSignal(type)) {
|
|
|
|
if (!signalWatchers.hasOwnProperty(type)) {
|
|
|
|
var b = process.binding('signal_watcher');
|
2010-11-21 14:20:22 -08:00
|
|
|
var w = new b.SignalWatcher(lazyConstants()[type]);
|
2010-09-19 11:20:25 -07:00
|
|
|
w.callback = function () { process.emit(type); };
|
|
|
|
signalWatchers[type] = w;
|
|
|
|
w.start();
|
|
|
|
|
|
|
|
} else if (this.listeners(type).length === 1) {
|
|
|
|
signalWatchers[event].start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
|
|
|
|
process.removeListener = function (type, listener) {
|
|
|
|
var ret = removeListener.apply(this, arguments);
|
|
|
|
if (isSignal(type)) {
|
|
|
|
process.assert(signalWatchers.hasOwnProperty(type));
|
|
|
|
|
|
|
|
if (this.listeners(type).length === 0) {
|
|
|
|
signalWatchers[type].stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
|
2010-10-26 12:14:17 -07:00
|
|
|
global.setTimeout = function () {
|
2010-11-22 03:03:21 +01:00
|
|
|
var t = requireNative('timers');
|
2010-10-26 12:14:17 -07:00
|
|
|
return t.setTimeout.apply(this, arguments);
|
2010-09-19 11:20:25 -07:00
|
|
|
};
|
|
|
|
|
2010-10-26 12:14:17 -07:00
|
|
|
global.setInterval = function () {
|
2010-11-22 03:03:21 +01:00
|
|
|
var t = requireNative('timers');
|
2010-10-26 12:14:17 -07:00
|
|
|
return t.setInterval.apply(this, arguments);
|
2010-09-19 11:20:25 -07:00
|
|
|
};
|
|
|
|
|
2010-10-26 12:14:17 -07:00
|
|
|
global.clearTimeout = function () {
|
2010-11-22 03:03:21 +01:00
|
|
|
var t = requireNative('timers');
|
2010-10-26 12:14:17 -07:00
|
|
|
return t.clearTimeout.apply(this, arguments);
|
2010-09-19 11:20:25 -07:00
|
|
|
};
|
|
|
|
|
2010-10-26 12:14:17 -07:00
|
|
|
global.clearInterval = function () {
|
2010-11-22 03:03:21 +01:00
|
|
|
var t = requireNative('timers');
|
2010-10-26 12:14:17 -07:00
|
|
|
return t.clearInterval.apply(this, arguments);
|
|
|
|
};
|
2010-09-19 11:20:25 -07:00
|
|
|
|
|
|
|
|
|
|
|
var stdout;
|
|
|
|
process.__defineGetter__('stdout', function () {
|
|
|
|
if (stdout) return stdout;
|
|
|
|
|
|
|
|
var binding = process.binding('stdio'),
|
2010-11-22 03:03:21 +01:00
|
|
|
net = requireNative('net'),
|
|
|
|
fs = requireNative('fs'),
|
2010-09-19 11:20:25 -07:00
|
|
|
fd = binding.stdoutFD;
|
|
|
|
|
|
|
|
if (binding.isStdoutBlocking()) {
|
|
|
|
stdout = new fs.WriteStream(null, {fd: fd});
|
|
|
|
} else {
|
|
|
|
stdout = new net.Stream(fd);
|
|
|
|
// FIXME Should probably have an option in net.Stream to create a stream from
|
|
|
|
// an existing fd which is writable only. But for now we'll just add
|
|
|
|
// this hack and set the `readable` member to false.
|
|
|
|
// Test: ./node test/fixtures/echo.js < /etc/passwd
|
|
|
|
stdout.readable = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return stdout;
|
|
|
|
});
|
|
|
|
|
|
|
|
var stdin;
|
|
|
|
process.openStdin = function () {
|
|
|
|
if (stdin) return stdin;
|
|
|
|
|
|
|
|
var binding = process.binding('stdio'),
|
2010-11-22 03:03:21 +01:00
|
|
|
net = requireNative('net'),
|
|
|
|
fs = requireNative('fs'),
|
2010-09-19 11:20:25 -07:00
|
|
|
fd = binding.openStdin();
|
|
|
|
|
|
|
|
if (binding.isStdinBlocking()) {
|
|
|
|
stdin = new fs.ReadStream(null, {fd: fd});
|
|
|
|
} else {
|
|
|
|
stdin = new net.Stream(fd);
|
|
|
|
stdin.readable = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
stdin.resume();
|
|
|
|
|
|
|
|
return stdin;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-11-30 11:18:02 -08:00
|
|
|
// Lazy load console object
|
|
|
|
global.__defineGetter__('console', function () {
|
|
|
|
return requireNative('console');
|
|
|
|
});
|
2010-09-19 11:20:25 -07:00
|
|
|
|
|
|
|
|
2010-11-22 03:03:21 +01:00
|
|
|
global.Buffer = requireNative('buffer').Buffer;
|
2010-09-19 11:20:25 -07:00
|
|
|
|
|
|
|
process.exit = function (code) {
|
2010-10-23 16:44:19 -07:00
|
|
|
process.emit("exit", code || 0);
|
|
|
|
process.reallyExit(code || 0);
|
2010-09-19 11:20:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
process.kill = function (pid, sig) {
|
|
|
|
sig = sig || 'SIGTERM';
|
2010-11-21 14:20:22 -08:00
|
|
|
if (!lazyConstants()[sig]) throw new Error("Unknown signal: " + sig);
|
|
|
|
process._kill(pid, lazyConstants()[sig]);
|
2010-09-19 11:20:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-07 16:15:41 -07:00
|
|
|
var cwd = process.cwd();
|
2010-11-22 03:03:21 +01:00
|
|
|
var path = requireNative('path');
|
2009-09-18 15:45:47 +02:00
|
|
|
|
2010-06-07 16:15:41 -07:00
|
|
|
// Make process.argv[0] and process.argv[1] into full paths.
|
|
|
|
if (process.argv[0].indexOf('/') > 0) {
|
|
|
|
process.argv[0] = path.join(cwd, process.argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process.argv[1]) {
|
2010-10-06 19:05:01 -07:00
|
|
|
// Load module
|
2010-06-07 16:15:41 -07:00
|
|
|
if (process.argv[1].charAt(0) != "/" && !(/^http:\/\//).exec(process.argv[1])) {
|
|
|
|
process.argv[1] = path.join(cwd, process.argv[1]);
|
|
|
|
}
|
2010-09-07 16:38:43 +02:00
|
|
|
// REMOVEME: nextTick should not be necessary. This hack to get
|
|
|
|
// test/simple/test-exception-handler2.js working.
|
2010-10-21 14:36:00 +02:00
|
|
|
process.nextTick(module.runMain);
|
2010-10-06 19:05:01 -07:00
|
|
|
|
|
|
|
} else if (process._eval) {
|
2010-11-16 15:44:06 +01:00
|
|
|
// -e, --eval
|
|
|
|
var rv = new module.Module()._compile('return eval(process._eval)', 'eval');
|
|
|
|
console.log(rv);
|
2010-06-07 16:15:41 -07:00
|
|
|
} else {
|
2010-11-22 03:03:21 +01:00
|
|
|
// REPL
|
|
|
|
module.requireRepl().start();
|
2010-06-07 16:15:41 -07:00
|
|
|
}
|
2009-09-07 14:09:18 +02:00
|
|
|
|
2010-03-11 22:05:09 -08:00
|
|
|
});
|