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 () {
|
|
|
|
throw new Error(reason)
|
|
|
|
}
|
|
|
|
}
|
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-06-28 20:47:12 -07:00
|
|
|
var writeError = process.binding('stdio').writeError;
|
|
|
|
|
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-08-27 02:50:12 -06:00
|
|
|
throw e;
|
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-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;
|
|
|
|
if (parseInt(process.env["NODE_MODULE_CONTEXTS"]) > 0) contextLoad = true;
|
|
|
|
var Script;
|
|
|
|
|
2010-09-19 11:20:25 -07:00
|
|
|
var internalModuleCache = {};
|
2010-08-06 12:31:41 -07:00
|
|
|
var extensionCache = {};
|
|
|
|
|
|
|
|
function Module (id, parent) {
|
|
|
|
this.id = id;
|
|
|
|
this.exports = {};
|
|
|
|
this.parent = parent;
|
|
|
|
|
|
|
|
if (parent) {
|
|
|
|
this.moduleCache = parent.moduleCache;
|
|
|
|
} else {
|
|
|
|
this.moduleCache = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
this.filename = null;
|
|
|
|
this.loaded = false;
|
|
|
|
this.exited = false;
|
|
|
|
this.children = [];
|
|
|
|
};
|
|
|
|
|
2010-09-19 11:20:25 -07:00
|
|
|
function createInternalModule (id, constructor) {
|
|
|
|
var m = new Module(id);
|
|
|
|
constructor(m.exports);
|
|
|
|
m.loaded = true;
|
|
|
|
internalModuleCache[id] = m;
|
|
|
|
return m;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 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');
|
|
|
|
|
|
|
|
function loadNative (id) {
|
|
|
|
var m = new Module(id);
|
|
|
|
internalModuleCache[id] = m;
|
|
|
|
var e = m._compile(natives[id], id);
|
|
|
|
if (e) throw e;
|
|
|
|
m.loaded = true;
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.requireNative = requireNative;
|
|
|
|
|
|
|
|
function requireNative (id) {
|
|
|
|
if (internalModuleCache[id]) return internalModuleCache[id].exports;
|
|
|
|
if (!natives[id]) throw new Error('No such native module ' + id);
|
|
|
|
return loadNative(id).exports;
|
|
|
|
}
|
|
|
|
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
// Modules
|
|
|
|
|
|
|
|
var debugLevel = parseInt(process.env["NODE_DEBUG"], 16);
|
|
|
|
function debug (x) {
|
|
|
|
if (debugLevel & 1) {
|
|
|
|
process.binding('stdio').writeError(x + "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-19 11:20:25 -07:00
|
|
|
var pathFn = process.compile("(function (exports) {" + natives.path + "\n})",
|
|
|
|
"path");
|
|
|
|
var pathModule = createInternalModule('path', pathFn);
|
|
|
|
var path = pathModule.exports;
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
var modulePaths = [path.join(process.execPath, "..", "..", "lib", "node")];
|
|
|
|
|
|
|
|
if (process.env["HOME"]) {
|
|
|
|
modulePaths.unshift(path.join(process.env["HOME"], ".node_libraries"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process.env["NODE_PATH"]) {
|
|
|
|
modulePaths = process.env["NODE_PATH"].split(":").concat(modulePaths);
|
|
|
|
}
|
|
|
|
|
|
|
|
var moduleNativeExtensions = ['js', 'node'];
|
|
|
|
|
2010-08-15 02:48:06 +02:00
|
|
|
// Which files to traverse while finding id? Returns generator function.
|
|
|
|
function traverser (id, dirs) {
|
|
|
|
var head = [], inDir = [], _dirs = dirs.slice();
|
|
|
|
return function next () {
|
|
|
|
var result = head.shift();
|
|
|
|
if (result) { return result; }
|
|
|
|
|
|
|
|
var gen = inDir.shift();
|
|
|
|
if (gen) { head = gen(); return next(); }
|
|
|
|
|
|
|
|
var dir = _dirs.shift();
|
|
|
|
if (dir !== undefined) {
|
|
|
|
function direct (ext) { return path.join(dir, id + '.' + ext); }
|
|
|
|
function index (ext) { return path.join(dir, id, 'index.' + ext); }
|
|
|
|
var userExts = Object.keys(extensionCache);
|
|
|
|
inDir = [
|
|
|
|
function () { return moduleNativeExtensions.map(direct); },
|
|
|
|
function () { return userExts.map(direct); },
|
|
|
|
function () { return moduleNativeExtensions.map(index); },
|
|
|
|
function () { return userExts.map(index); }
|
|
|
|
];
|
|
|
|
head = [path.join(dir, id)];
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-08-06 12:31:41 -07:00
|
|
|
/* Sync unless callback given */
|
|
|
|
function findModulePath (id, dirs, callback) {
|
2010-08-15 01:13:54 +02:00
|
|
|
process.assert(Array.isArray(dirs));
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
if (/^https?:\/\//.exec(id)) {
|
|
|
|
if (callback) {
|
|
|
|
callback(id);
|
|
|
|
} else {
|
|
|
|
throw new Error("Sync http require not allowed.");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-15 02:48:06 +02:00
|
|
|
var nextLoc = traverser(id, id.charAt(0) === '/' ? [''] : dirs);
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
var fs = requireNative('fs');
|
|
|
|
|
|
|
|
function searchLocations () {
|
2010-08-15 02:48:06 +02: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-08-15 02:48:06 +02:00
|
|
|
return false;
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function searchLocationsAsync (cb) {
|
2010-08-15 02:48:06 +02:00
|
|
|
var location = nextLoc();
|
2010-08-06 12:31:41 -07:00
|
|
|
|
2010-08-15 02:48:06 +02:00
|
|
|
if (!location) { cb(false); return; }
|
|
|
|
|
|
|
|
fs.stat(location, function (err, stats) {
|
|
|
|
if (stats && !stats.isDirectory()) { cb(location); }
|
|
|
|
else { searchLocationsAsync(cb); }
|
|
|
|
});
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
2010-08-15 02:48:06 +02:00
|
|
|
|
|
|
|
return callback ? searchLocationsAsync(callback) : searchLocations();
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// sync - no i/o performed
|
|
|
|
function resolveModulePath(request, parent) {
|
2010-08-15 19:23:50 +02:00
|
|
|
var start = request.substring(0, 2);
|
|
|
|
if (start !== "./" && start !== "..") { return [request, modulePaths]; }
|
|
|
|
|
|
|
|
// Relative request
|
|
|
|
var exts = moduleNativeExtensions.concat(Object.keys(extensionCache)),
|
|
|
|
indexRE = new RegExp('^index\\.(' + exts.join('|') + ')$'),
|
|
|
|
// XXX dangerous code: ^^^ what if exts contained some RE control chars?
|
|
|
|
isIndex = path.basename(parent.filename).match(indexRE),
|
|
|
|
parentIdPath = isIndex ? parent.id : path.dirname(parent.id),
|
2010-08-06 12:31:41 -07:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function loadModule (request, parent, callback) {
|
|
|
|
var resolvedModule = resolveModulePath(request, parent),
|
|
|
|
id = resolvedModule[0],
|
|
|
|
paths = resolvedModule[1];
|
|
|
|
|
|
|
|
debug("loadModule REQUEST " + (request) + " parent: " + parent.id);
|
|
|
|
|
|
|
|
// native modules always take precedence.
|
2010-09-19 11:20:25 -07:00
|
|
|
var cachedNative = internalModuleCache[id];
|
|
|
|
if (cachedNative) {
|
|
|
|
return callback ? callback(null, cachedNative.exports) : cachedNative.exports;
|
|
|
|
}
|
|
|
|
if (natives[id]) {
|
|
|
|
debug('load native module ' + id);
|
|
|
|
var nativeMod = loadNative(id);
|
|
|
|
return callback ? callback(null, nativeMod.exports) : nativeMod.exports;
|
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));
|
|
|
|
if (!callback) {
|
|
|
|
// sync
|
|
|
|
var filename = findModulePath(request, paths);
|
|
|
|
if (!filename) {
|
|
|
|
throw new Error("Cannot find module '" + request + "'");
|
|
|
|
}
|
|
|
|
|
|
|
|
var cachedModule = parent.moduleCache[filename];
|
|
|
|
if (cachedModule) return cachedModule.exports;
|
|
|
|
|
|
|
|
var module = new Module(id, parent);
|
|
|
|
module.moduleCache[filename] = module;
|
|
|
|
module.loadSync(filename);
|
|
|
|
return module.exports;
|
|
|
|
}
|
|
|
|
// async
|
|
|
|
findModulePath(request, paths, function (filename) {
|
|
|
|
if (!filename) {
|
|
|
|
var err = new Error("Cannot find module '" + request + "'");
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
var cachedModule = parent.moduleCache[filename];
|
|
|
|
if (cachedModule) return callback(null, cachedModule.exports);
|
|
|
|
|
|
|
|
var module = new Module(id, parent);
|
|
|
|
module.moduleCache[filename] = module;
|
|
|
|
module.load(filename, callback);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// This function allows the user to register file extensions to custom
|
|
|
|
// Javascript 'compilers'. It accepts 2 arguments, where ext is a file
|
|
|
|
// extension as a string. E.g. '.coffee' for coffee-script files. compiler
|
|
|
|
// is the second argument, which is a function that gets called when the
|
|
|
|
// specified file extension is found. The compiler is passed a single
|
|
|
|
// argument, which is, the file contents, which need to be compiled.
|
|
|
|
//
|
|
|
|
// The function needs to return the compiled source, or an non-string
|
|
|
|
// variable that will get attached directly to the module exports. Example:
|
|
|
|
//
|
|
|
|
// require.registerExtension('.coffee', function(content) {
|
|
|
|
// return doCompileMagic(content);
|
|
|
|
// });
|
|
|
|
function registerExtension(ext, compiler) {
|
|
|
|
if ('string' !== typeof ext && false === /\.\w+$/.test(ext)) {
|
|
|
|
throw new Error('require.registerExtension: First argument not a valid extension string.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ('function' !== typeof compiler) {
|
|
|
|
throw new Error('require.registerExtension: Second argument not a valid compiler function.');
|
|
|
|
}
|
|
|
|
|
|
|
|
extensionCache[ext.slice(1)] = compiler;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype.loadSync = function (filename) {
|
|
|
|
debug("loadSync " + JSON.stringify(filename) + " for module " + JSON.stringify(this.id));
|
|
|
|
|
|
|
|
process.assert(!this.loaded);
|
|
|
|
this.filename = filename;
|
|
|
|
|
|
|
|
if (filename.match(/\.node$/)) {
|
|
|
|
this._loadObjectSync(filename);
|
|
|
|
} else {
|
|
|
|
this._loadScriptSync(filename);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype.load = function (filename, callback) {
|
|
|
|
debug("load " + JSON.stringify(filename) + " for module " + JSON.stringify(this.id));
|
|
|
|
|
|
|
|
process.assert(!this.loaded);
|
|
|
|
|
|
|
|
this.filename = filename;
|
|
|
|
|
|
|
|
if (filename.match(/\.node$/)) {
|
|
|
|
this._loadObject(filename, callback);
|
|
|
|
} else {
|
|
|
|
this._loadScript(filename, callback);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype._loadObjectSync = function (filename) {
|
|
|
|
this.loaded = true;
|
|
|
|
process.dlopen(filename, this.exports);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype._loadObject = function (filename, callback) {
|
|
|
|
var self = this;
|
|
|
|
// XXX Not yet supporting loading from HTTP. would need to download the
|
|
|
|
// file, store it to tmp then run dlopen on it.
|
|
|
|
self.loaded = true;
|
|
|
|
process.dlopen(filename, self.exports); // FIXME synchronus
|
|
|
|
if (callback) callback(null, self.exports);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function cat (id, callback) {
|
|
|
|
if (id.match(/^http:\/\//)) {
|
|
|
|
loadModule('http', process.mainModule, function (err, http) {
|
|
|
|
if (err) {
|
|
|
|
if (callback) callback(err);
|
|
|
|
} else {
|
|
|
|
http.cat(id, callback);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
requireNative('fs').readFile(id, 'utf8', callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns exception if any
|
|
|
|
Module.prototype._compile = function (content, filename) {
|
|
|
|
var self = this;
|
|
|
|
// remove shebang
|
|
|
|
content = content.replace(/^\#\!.*/, '');
|
|
|
|
|
|
|
|
// Compile content if needed
|
|
|
|
var ext = path.extname(filename).slice(1);
|
|
|
|
if (extensionCache[ext]) {
|
|
|
|
content = extensionCache[ext](content);
|
|
|
|
}
|
|
|
|
|
2010-08-17 22:19:19 +02:00
|
|
|
if ("string" !== typeof content) {
|
|
|
|
self.exports = content;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-06 12:31:41 -07:00
|
|
|
function requireAsync (url, cb) {
|
|
|
|
loadModule(url, self, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
function require (path) {
|
|
|
|
return loadModule(path, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
require.paths = modulePaths;
|
|
|
|
require.async = requireAsync;
|
|
|
|
require.main = process.mainModule;
|
|
|
|
require.registerExtension = registerExtension;
|
|
|
|
|
|
|
|
var dirname = path.dirname(filename);
|
|
|
|
|
|
|
|
if (contextLoad) {
|
2010-08-17 22:19:19 +02:00
|
|
|
if (!Script) Script = process.binding('evals').Script;
|
2010-08-06 12:31:41 -07:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
Script.runInNewContext(content, sandbox, filename);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
debug('load root module');
|
|
|
|
// root module
|
|
|
|
global.require = require;
|
|
|
|
global.exports = self.exports;
|
|
|
|
global.__filename = filename;
|
|
|
|
global.__dirname = dirname;
|
|
|
|
global.module = self;
|
|
|
|
Script.runInThisContext(content, filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2010-08-17 22:19:19 +02:00
|
|
|
// create wrapper function
|
|
|
|
var wrapper = "(function (exports, require, module, __filename, __dirname) { "
|
|
|
|
+ content
|
|
|
|
+ "\n});";
|
|
|
|
|
|
|
|
var compiledWrapper = process.compile(wrapper, filename);
|
|
|
|
if (filename === process.argv[1] && global.v8debug) {
|
|
|
|
global.v8debug.Debug.setBreakPoint(compiledWrapper, 0, 0);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
2010-08-17 22:19:19 +02:00
|
|
|
compiledWrapper.apply(self.exports, [self.exports, require, self, filename, dirname]);
|
2010-08-06 12:31:41 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype._loadScriptSync = function (filename) {
|
|
|
|
var content = requireNative('fs').readFileSync(filename, 'utf8');
|
|
|
|
this._compile(content, filename);
|
|
|
|
this.loaded = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype._loadScript = function (filename, callback) {
|
|
|
|
var self = this;
|
|
|
|
cat(filename, function (err, content) {
|
|
|
|
debug('cat done');
|
|
|
|
if (err) {
|
|
|
|
if (callback) callback(err);
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
self._compile(content, filename);
|
|
|
|
} catch (err) {
|
|
|
|
if (callback) callback(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self._waitChildrenLoad(function () {
|
|
|
|
self.loaded = true;
|
|
|
|
if (self.onload) self.onload();
|
|
|
|
if (callback) callback(null, self.exports);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype._waitChildrenLoad = function (callback) {
|
|
|
|
var nloaded = 0;
|
|
|
|
var children = this.children;
|
|
|
|
for (var i = 0; i < children.length; i++) {
|
|
|
|
var child = children[i];
|
|
|
|
if (child.loaded) {
|
|
|
|
nloaded++;
|
|
|
|
} else {
|
|
|
|
child.onload = function () {
|
|
|
|
child.onload = null;
|
|
|
|
nloaded++;
|
|
|
|
if (children.length == nloaded && callback) callback();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (children.length == nloaded && callback) callback();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// bootstrap main module.
|
|
|
|
exports.runMain = function () {
|
|
|
|
// Load the main module--the command line argument.
|
|
|
|
process.mainModule = new Module(".");
|
|
|
|
process.mainModule.loadSync(process.argv[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
var events = module.requireNative('events');
|
|
|
|
|
|
|
|
var constants; // lazy loaded.
|
|
|
|
|
|
|
|
// Signal Handlers
|
|
|
|
(function() {
|
|
|
|
var signalWatchers = {};
|
|
|
|
var addListener = process.addListener;
|
|
|
|
var removeListener = process.removeListener;
|
|
|
|
|
|
|
|
function isSignal (event) {
|
|
|
|
if (!constants) constants = process.binding("constants");
|
|
|
|
return event.slice(0, 3) === 'SIG' && constants[event];
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)) {
|
|
|
|
if (!constants) constants = process.binding("constants");
|
|
|
|
var b = process.binding('signal_watcher');
|
|
|
|
var w = new b.SignalWatcher(constants[type]);
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
// Timers
|
|
|
|
function addTimerListener (callback) {
|
|
|
|
var timer = this;
|
|
|
|
// Special case the no param case to avoid the extra object creation.
|
|
|
|
if (arguments.length > 2) {
|
|
|
|
var args = Array.prototype.slice.call(arguments, 2);
|
|
|
|
timer.callback = function () { callback.apply(timer, args); };
|
|
|
|
} else {
|
|
|
|
timer.callback = callback;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var Timer; // lazy load
|
|
|
|
|
|
|
|
global.setTimeout = function (callback, after) {
|
|
|
|
if (!Timer) Timer = process.binding("timer").Timer;
|
|
|
|
var timer = new Timer();
|
|
|
|
addTimerListener.apply(timer, arguments);
|
|
|
|
timer.start(after, 0);
|
|
|
|
return timer;
|
|
|
|
};
|
|
|
|
|
|
|
|
global.setInterval = function (callback, repeat) {
|
|
|
|
if (!Timer) Timer = process.binding("timer").Timer;
|
|
|
|
var timer = new Timer();
|
|
|
|
addTimerListener.apply(timer, arguments);
|
|
|
|
timer.start(repeat, repeat ? repeat : 1);
|
|
|
|
return timer;
|
|
|
|
};
|
|
|
|
|
|
|
|
global.clearTimeout = function (timer) {
|
|
|
|
if (!Timer) Timer = process.binding("timer").Timer;
|
|
|
|
if (timer instanceof Timer) {
|
|
|
|
timer.stop();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
global.clearInterval = global.clearTimeout;
|
|
|
|
|
|
|
|
|
|
|
|
var stdout;
|
|
|
|
process.__defineGetter__('stdout', function () {
|
|
|
|
if (stdout) return stdout;
|
|
|
|
|
|
|
|
var binding = process.binding('stdio'),
|
|
|
|
net = module.requireNative('net'),
|
|
|
|
fs = module.requireNative('fs'),
|
|
|
|
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'),
|
|
|
|
net = module.requireNative('net'),
|
|
|
|
fs = module.requireNative('fs'),
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// console object
|
|
|
|
var formatRegExp = /%[sdj]/g;
|
|
|
|
function format (f) {
|
|
|
|
if (typeof f !== 'string') {
|
|
|
|
var objects = [], sys = module.requireNative('sys');
|
|
|
|
for (var i = 0; i < arguments.length; i++) {
|
|
|
|
objects.push(sys.inspect(arguments[i]));
|
|
|
|
}
|
|
|
|
return objects.join(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var i = 1;
|
|
|
|
var args = arguments;
|
|
|
|
var str = String(f).replace(formatRegExp, function (x) {
|
|
|
|
switch (x) {
|
|
|
|
case '%s': return args[i++];
|
|
|
|
case '%d': return +args[i++];
|
|
|
|
case '%j': return JSON.stringify(args[i++]);
|
|
|
|
default:
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
for (var len = args.length; i < len; ++i) {
|
|
|
|
str += ' ' + args[i];
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
global.console = {};
|
|
|
|
|
|
|
|
global.console.log = function () {
|
|
|
|
process.stdout.write(format.apply(this, arguments) + '\n');
|
|
|
|
};
|
|
|
|
|
|
|
|
global.console.info = global.console.log;
|
|
|
|
|
|
|
|
global.console.warn = function () {
|
|
|
|
writeError(format.apply(this, arguments) + '\n');
|
|
|
|
};
|
|
|
|
|
|
|
|
global.console.error = global.console.warn;
|
|
|
|
|
|
|
|
global.console.dir = function(object){
|
|
|
|
var sys = module.requireNative('sys');
|
|
|
|
process.stdout.write(sys.inspect(object) + '\n');
|
|
|
|
};
|
|
|
|
|
|
|
|
var times = {};
|
|
|
|
global.console.time = function(label){
|
|
|
|
times[label] = Date.now();
|
|
|
|
};
|
|
|
|
|
|
|
|
global.console.timeEnd = function(label){
|
|
|
|
var duration = Date.now() - times[label];
|
|
|
|
global.console.log('%s: %dms', label, duration);
|
|
|
|
};
|
|
|
|
|
|
|
|
global.console.trace = function(label){
|
|
|
|
// TODO probably can to do this better with V8's debug object once that is
|
|
|
|
// exposed.
|
|
|
|
var err = new Error;
|
|
|
|
err.name = 'Trace';
|
|
|
|
err.message = label || '';
|
|
|
|
Error.captureStackTrace(err, arguments.callee);
|
|
|
|
console.error(err.stack);
|
|
|
|
};
|
|
|
|
|
|
|
|
global.console.assert = function(expression){
|
|
|
|
if(!expression){
|
|
|
|
var arr = Array.prototype.slice.call(arguments, 1);
|
|
|
|
process.assert(false, format.apply(this, arr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
global.Buffer = module.requireNative('buffer').Buffer;
|
|
|
|
|
|
|
|
process.exit = function (code) {
|
|
|
|
process.emit("exit");
|
|
|
|
process.reallyExit(code);
|
|
|
|
};
|
|
|
|
|
|
|
|
process.kill = function (pid, sig) {
|
|
|
|
if (!constants) constants = process.binding("constants");
|
|
|
|
sig = sig || 'SIGTERM';
|
|
|
|
if (!constants[sig]) throw new Error("Unknown signal: " + sig);
|
|
|
|
process._kill(pid, constants[sig]);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-07 16:15:41 -07:00
|
|
|
var cwd = process.cwd();
|
2010-09-19 11:20:25 -07:00
|
|
|
var path = module.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]) {
|
|
|
|
if (process.argv[1].charAt(0) != "/" && !(/^http:\/\//).exec(process.argv[1])) {
|
|
|
|
process.argv[1] = path.join(cwd, process.argv[1]);
|
|
|
|
}
|
2009-10-31 19:02:30 +01:00
|
|
|
|
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.
|
|
|
|
process.nextTick(function() {
|
|
|
|
module.runMain();
|
|
|
|
});
|
2010-06-07 16:15:41 -07:00
|
|
|
} else {
|
|
|
|
// No arguments, run the repl
|
2010-09-19 11:20:25 -07:00
|
|
|
module.requireNative('repl').start();
|
2010-06-07 16:15:41 -07:00
|
|
|
}
|
2009-09-07 14:09:18 +02:00
|
|
|
|
2009-11-23 00:59:36 +01:00
|
|
|
// All our arguments are loaded. We've evaluated all of the scripts. We
|
|
|
|
// might even have created TCP servers. Now we enter the main eventloop. If
|
|
|
|
// there are no watchers on the loop (except for the ones that were
|
|
|
|
// ev_unref'd) then this function exits. As long as there are active
|
|
|
|
// watchers, it blocks.
|
|
|
|
process.loop();
|
|
|
|
|
|
|
|
process.emit("exit");
|
|
|
|
|
2010-03-11 22:05:09 -08:00
|
|
|
});
|