2010-01-31 11:13:30 -08:00
|
|
|
(function (process) {
|
2010-01-30 23:22:34 -08:00
|
|
|
|
|
|
|
process.global.process = process;
|
|
|
|
process.global.global = process.global;
|
|
|
|
global.GLOBAL = 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
|
|
|
GLOBAL.__module = removed("'__module' has been renamed to 'module'");
|
2010-03-08 15:08:30 -08:00
|
|
|
GLOBAL.include = removed("include(module) has been removed. Use require(module)");
|
2010-01-20 21:39:10 +01:00
|
|
|
GLOBAL.puts = removed("puts() has moved. Use require('sys') to bring it back.");
|
|
|
|
GLOBAL.print = removed("print() has moved. Use require('sys') to bring it back.");
|
|
|
|
GLOBAL.p = removed("p() has moved. Use require('sys') to bring it back.");
|
|
|
|
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.');
|
2009-10-31 19:02:30 +01:00
|
|
|
|
2009-10-31 19:56:27 +01:00
|
|
|
GLOBAL.node = {};
|
|
|
|
|
2010-01-20 21:39:10 +01:00
|
|
|
node.createProcess = removed("node.createProcess() has been changed to process.createChildProcess() update your code");
|
2010-03-17 14:00:17 -07:00
|
|
|
process.createChildProcess = removed("childProcess API has changed. See doc/api.txt.");
|
2010-01-20 21:39:10 +01:00
|
|
|
node.exec = removed("process.exec() has moved. Use require('sys') to bring it back.");
|
|
|
|
node.inherits = removed("node.inherits() has moved. Use require('sys') to access it.");
|
2010-03-01 11:39:35 -08:00
|
|
|
process.inherits = removed("process.inherits() has moved to sys.inherits.");
|
2009-06-30 13:40:00 +02:00
|
|
|
|
2009-10-31 19:56:27 +01:00
|
|
|
node.http = {};
|
2010-01-20 21:39:10 +01:00
|
|
|
node.http.createServer = removed("node.http.createServer() has moved. Use require('http') to access it.");
|
|
|
|
node.http.createClient = removed("node.http.createClient() has moved. Use require('http') to access it.");
|
2009-10-31 19:56:27 +01:00
|
|
|
|
|
|
|
node.tcp = {};
|
2010-01-20 21:39:10 +01:00
|
|
|
node.tcp.createServer = removed("node.tcp.createServer() has moved. Use require('tcp') to access it.");
|
|
|
|
node.tcp.createConnection = removed("node.tcp.createConnection() has moved. Use require('tcp') to access it.");
|
2009-10-31 19:56:27 +01:00
|
|
|
|
|
|
|
node.dns = {};
|
2010-01-20 21:39:10 +01:00
|
|
|
node.dns.createConnection = removed("node.dns.createConnection() has moved. Use require('dns') to access it.");
|
2009-11-07 16:27:18 +01:00
|
|
|
|
2010-01-15 12:46:08 -08:00
|
|
|
/**********************************************************************/
|
|
|
|
|
2010-03-15 09:02:52 -07:00
|
|
|
// Module
|
2010-01-15 12:46:08 -08:00
|
|
|
|
2010-02-04 22:28:04 +01:00
|
|
|
var internalModuleCache = {};
|
2010-03-08 17:35:39 +13:00
|
|
|
var extensionCache = {};
|
2010-02-04 22:28:04 +01:00
|
|
|
|
2010-01-15 12:46:08 -08:00
|
|
|
function Module (id, parent) {
|
|
|
|
this.id = id;
|
|
|
|
this.exports = {};
|
|
|
|
this.parent = parent;
|
|
|
|
|
2010-02-04 22:28:04 +01:00
|
|
|
if (parent) {
|
2010-02-11 12:09:46 +01:00
|
|
|
this.moduleCache = parent.moduleCache;
|
|
|
|
} else {
|
|
|
|
this.moduleCache = {};
|
2010-02-04 22:28:04 +01:00
|
|
|
}
|
2010-02-11 12:09:46 +01:00
|
|
|
this.moduleCache[this.id] = this;
|
2010-02-04 22:28:04 +01:00
|
|
|
|
2010-01-15 12:46:08 -08:00
|
|
|
this.filename = null;
|
|
|
|
this.loaded = false;
|
|
|
|
this.exited = false;
|
|
|
|
this.children = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
function createInternalModule (id, constructor) {
|
2010-02-04 22:28:04 +01:00
|
|
|
var m = new Module(id);
|
2010-01-15 12:46:08 -08:00
|
|
|
constructor(m.exports);
|
|
|
|
m.loaded = true;
|
2010-02-04 22:28:04 +01:00
|
|
|
internalModuleCache[id] = m;
|
2010-01-15 12:46:08 -08:00
|
|
|
return m;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-03-15 14:22:50 -07:00
|
|
|
// 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');
|
|
|
|
|
2010-03-19 00:29:49 +01:00
|
|
|
function loadNative (id) {
|
2010-03-15 10:41:58 -07:00
|
|
|
var m = new Module(id);
|
|
|
|
internalModuleCache[id] = m;
|
2010-03-15 14:22:50 -07:00
|
|
|
var e = m._compile(natives[id], id);
|
2010-03-15 10:41:58 -07:00
|
|
|
if (e) throw e;
|
2010-03-19 00:29:49 +01:00
|
|
|
m.loaded = true;
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-03-15 10:41:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-07 14:37:22 +01:00
|
|
|
process.assert = function (x, msg) {
|
|
|
|
if (!(x)) throw new Error(msg || "assertion error");
|
|
|
|
};
|
|
|
|
|
2010-04-17 17:18:15 +02:00
|
|
|
process.evalcx = process.binding('evals').Script.runInNewContext;
|
2010-03-15 15:11:40 -07:00
|
|
|
|
2009-11-07 14:37:22 +01:00
|
|
|
// Event
|
2010-04-20 18:13:07 -07:00
|
|
|
var eventsModule = createInternalModule
|
|
|
|
( 'events'
|
|
|
|
, process.compile
|
|
|
|
( "(function (exports) {" + natives.events + "})"
|
|
|
|
, "events"
|
|
|
|
)
|
|
|
|
);
|
2010-01-15 12:46:08 -08:00
|
|
|
var events = eventsModule.exports;
|
2009-11-07 14:37:22 +01:00
|
|
|
|
2010-01-18 10:27:27 -08:00
|
|
|
// nextTick()
|
|
|
|
|
|
|
|
var nextTickQueue = [];
|
|
|
|
|
2010-04-13 15:39:15 -07:00
|
|
|
process._tickCallback = function () {
|
2010-01-18 10:27:27 -08:00
|
|
|
var l = nextTickQueue.length;
|
|
|
|
while (l--) {
|
|
|
|
var cb = nextTickQueue.shift();
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-10-14 17:56:12 -04:00
|
|
|
// Signal Handlers
|
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
function isSignal (event) {
|
|
|
|
return event.slice(0, 3) === 'SIG' && process.hasOwnProperty(event);
|
|
|
|
};
|
2009-10-14 17:56:12 -04:00
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
process.addListener("newListener", function (event) {
|
|
|
|
if (isSignal(event) && process.listeners(event).length === 0) {
|
2010-03-15 14:05:18 -07:00
|
|
|
var b = process.binding('signal_watcher');
|
|
|
|
var w = new b.SignalWatcher(process[event]);
|
|
|
|
w.addListener("signal", function () {
|
2009-10-31 19:02:30 +01:00
|
|
|
process.emit(event);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2009-10-14 17:56:12 -04:00
|
|
|
|
|
|
|
|
2009-06-08 15:30:10 +02:00
|
|
|
// Timers
|
2010-01-19 04:51:50 +11:00
|
|
|
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);
|
2010-03-05 15:31:21 -08:00
|
|
|
timer.callback = function () { callback.apply(timer, args); };
|
2010-01-19 04:51:50 +11:00
|
|
|
} else {
|
2010-03-05 15:31:21 -08:00
|
|
|
timer.callback = callback;
|
2010-01-19 04:51:50 +11:00
|
|
|
}
|
|
|
|
}
|
2009-06-08 15:30:10 +02:00
|
|
|
|
2010-03-05 15:31:21 -08:00
|
|
|
global.setTimeout = function (callback, after) {
|
2009-10-29 23:34:10 +01:00
|
|
|
var timer = new process.Timer();
|
2010-01-19 04:51:50 +11:00
|
|
|
addTimerListener.apply(timer, arguments);
|
2009-06-25 20:25:44 +02:00
|
|
|
timer.start(after, 0);
|
2009-06-08 15:30:10 +02:00
|
|
|
return timer;
|
2009-12-16 17:33:33 -05:00
|
|
|
};
|
2009-06-08 15:30:10 +02:00
|
|
|
|
2010-03-05 15:31:21 -08:00
|
|
|
global.setInterval = function (callback, repeat) {
|
2009-10-29 23:34:10 +01:00
|
|
|
var timer = new process.Timer();
|
2010-01-19 04:51:50 +11:00
|
|
|
addTimerListener.apply(timer, arguments);
|
2009-06-25 20:25:44 +02:00
|
|
|
timer.start(repeat, repeat);
|
2009-06-08 15:30:10 +02:00
|
|
|
return timer;
|
2009-12-16 17:33:33 -05:00
|
|
|
};
|
2009-06-08 15:30:10 +02:00
|
|
|
|
2010-03-05 15:31:21 -08:00
|
|
|
global.clearTimeout = function (timer) {
|
2010-01-03 19:45:17 -05:00
|
|
|
if (timer instanceof process.Timer) {
|
|
|
|
timer.stop();
|
|
|
|
}
|
2009-12-16 17:33:33 -05:00
|
|
|
};
|
2009-06-08 15:30:10 +02:00
|
|
|
|
2010-03-05 15:31:21 -08:00
|
|
|
global.clearInterval = global.clearTimeout;
|
2009-10-31 19:02:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2009-04-15 10:08:28 +02:00
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
// Modules
|
2009-04-29 11:00:46 +02:00
|
|
|
|
2010-03-23 20:56:44 -07:00
|
|
|
var debugLevel = parseInt(process.env["NODE_DEBUG"]);
|
2009-10-31 19:02:30 +01:00
|
|
|
function debug (x) {
|
|
|
|
if (debugLevel > 0) {
|
2010-03-15 15:11:40 -07:00
|
|
|
process.binding('stdio').writeError(x + "\n");
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
2009-09-18 15:45:47 +02:00
|
|
|
}
|
|
|
|
|
2010-04-20 18:17:54 -07:00
|
|
|
var pathModule = createInternalModule
|
|
|
|
( 'path'
|
|
|
|
, process.compile
|
|
|
|
( "(function (exports) {" + natives.path + "})"
|
|
|
|
, "path"
|
|
|
|
)
|
|
|
|
);
|
2009-10-31 19:02:30 +01:00
|
|
|
|
|
|
|
var path = pathModule.exports;
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
function existsSync (path) {
|
|
|
|
try {
|
2010-03-15 13:48:03 -07:00
|
|
|
process.binding('fs').stat(path);
|
2010-02-19 09:37:20 -08:00
|
|
|
return true;
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
|
2010-03-15 08:07:33 -07:00
|
|
|
var modulePaths = [];
|
2009-12-22 23:11:54 +01:00
|
|
|
|
2010-02-03 12:19:08 -08:00
|
|
|
if (process.env["HOME"]) {
|
2010-03-15 08:07:33 -07:00
|
|
|
modulePaths.unshift(path.join(process.env["HOME"], ".node_libraries"));
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
|
|
|
|
2010-02-03 12:19:08 -08:00
|
|
|
if (process.env["NODE_PATH"]) {
|
2010-03-15 08:07:33 -07:00
|
|
|
modulePaths = process.env["NODE_PATH"].split(":").concat(modulePaths);
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
/* Sync unless callback given */
|
2009-10-31 19:47:41 +01:00
|
|
|
function findModulePath (id, dirs, callback) {
|
2009-10-31 19:02:30 +01:00
|
|
|
process.assert(dirs.constructor == Array);
|
|
|
|
|
2009-11-01 15:34:46 +01:00
|
|
|
if (/^https?:\/\//.exec(id)) {
|
2010-02-19 09:37:20 -08:00
|
|
|
if (callback) {
|
|
|
|
callback(id);
|
|
|
|
} else {
|
|
|
|
throw new Error("Sync http require not allowed.");
|
|
|
|
}
|
2009-11-01 15:34:46 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-04 12:39:08 +01:00
|
|
|
if (/\.(js|node)$/.exec(id)) {
|
2009-10-31 19:02:30 +01:00
|
|
|
throw new Error("No longer accepting filename extension in module names");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dirs.length == 0) {
|
2010-02-19 09:37:20 -08:00
|
|
|
if (callback) {
|
|
|
|
callback();
|
|
|
|
} else {
|
|
|
|
return; // sync returns null
|
|
|
|
}
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
2009-12-22 23:11:54 +01:00
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
var dir = dirs[0];
|
|
|
|
var rest = dirs.slice(1, dirs.length);
|
|
|
|
|
2009-11-02 00:34:16 +01:00
|
|
|
if (id.charAt(0) == '/') {
|
|
|
|
dir = '';
|
|
|
|
rest = [];
|
|
|
|
}
|
2009-10-31 19:02:30 +01:00
|
|
|
|
2009-11-02 00:34:16 +01:00
|
|
|
var locations = [
|
|
|
|
path.join(dir, id + ".js"),
|
|
|
|
path.join(dir, id + ".node"),
|
|
|
|
path.join(dir, id, "index.js"),
|
2010-03-11 22:03:55 -08:00
|
|
|
path.join(dir, id, "index.node")
|
2009-11-02 00:34:16 +01:00
|
|
|
];
|
|
|
|
|
2010-03-08 17:35:39 +13:00
|
|
|
var ext;
|
2010-04-12 11:57:24 -05:00
|
|
|
var extensions = Object.keys(extensionCache);
|
|
|
|
for (var i = 0, l = extensions.length; i < l; i++) {
|
|
|
|
var ext = extensions[i];
|
2010-03-08 17:35:39 +13:00
|
|
|
locations.push(path.join(dir, id + ext));
|
|
|
|
locations.push(path.join(dir, id, 'index' + ext));
|
|
|
|
}
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
function searchLocations () {
|
2009-11-02 00:34:16 +01:00
|
|
|
var location = locations.shift();
|
2010-02-19 09:37:20 -08:00
|
|
|
if (!location) {
|
|
|
|
return findModulePath(id, rest, callback);
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
2009-11-02 00:34:16 +01:00
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
// if async
|
|
|
|
if (callback) {
|
|
|
|
path.exists(location, function (found) {
|
|
|
|
if (found) {
|
|
|
|
callback(location);
|
|
|
|
} else {
|
|
|
|
return searchLocations();
|
|
|
|
}
|
2010-03-11 22:05:09 -08:00
|
|
|
});
|
2010-02-19 09:37:20 -08:00
|
|
|
|
|
|
|
// if sync
|
|
|
|
} else {
|
|
|
|
if (existsSync(location)) {
|
|
|
|
return location;
|
|
|
|
} else {
|
|
|
|
return searchLocations();
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
2010-02-19 09:37:20 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return searchLocations();
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
// sync - no i/o performed
|
|
|
|
function resolveModulePath(request, parent) {
|
2009-10-31 19:47:41 +01:00
|
|
|
var id, paths;
|
2009-11-02 21:21:02 +01:00
|
|
|
if (request.charAt(0) == "." && (request.charAt(1) == "/" || request.charAt(1) == ".")) {
|
2009-10-31 19:02:30 +01:00
|
|
|
// Relative request
|
2010-03-15 08:00:19 -07:00
|
|
|
debug("RELATIVE: requested:" + request + " set ID to: "+id+" from "+parent.id);
|
|
|
|
|
2010-03-08 17:35:39 +13:00
|
|
|
var exts = ['js', 'node'], ext;
|
2010-04-12 11:57:24 -05:00
|
|
|
var extensions = Object.keys(extensionCache);
|
|
|
|
for (var i = 0, l = extensions.length; i < l; i++) {
|
|
|
|
var ext = extensions[i];
|
2010-03-08 17:35:39 +13:00
|
|
|
exts.push(ext.slice(1));
|
|
|
|
}
|
|
|
|
|
2009-12-16 15:18:27 -08:00
|
|
|
var parentIdPath = path.dirname(parent.id +
|
2010-03-08 17:35:39 +13:00
|
|
|
(path.basename(parent.filename).match(new RegExp('^index\\.(' + exts.join('|') + ')$')) ? "/" : ""));
|
2009-12-16 15:18:27 -08:00
|
|
|
id = path.join(parentIdPath, request);
|
2009-10-31 19:02:30 +01:00
|
|
|
paths = [path.dirname(parent.filename)];
|
|
|
|
} else {
|
2009-10-31 19:47:41 +01:00
|
|
|
id = request;
|
2009-12-17 14:06:56 -08:00
|
|
|
// debug("ABSOLUTE: id="+id);
|
2010-03-15 08:07:33 -07:00
|
|
|
paths = modulePaths;
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
|
|
|
|
2010-02-04 22:28:04 +01:00
|
|
|
return [id, paths];
|
|
|
|
}
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
|
2010-03-15 08:00:19 -07:00
|
|
|
function loadModule (request, parent, callback) {
|
|
|
|
var resolvedModule = resolveModulePath(request, parent),
|
|
|
|
id = resolvedModule[0],
|
|
|
|
paths = resolvedModule[1];
|
2010-02-19 09:37:20 -08:00
|
|
|
|
2010-03-15 08:00:19 -07:00
|
|
|
debug("loadModule REQUEST " + (request) + " parent: " + parent.id);
|
2010-02-19 09:37:20 -08:00
|
|
|
|
|
|
|
var cachedModule = internalModuleCache[id] || parent.moduleCache[id];
|
|
|
|
|
2010-03-15 08:00:19 -07:00
|
|
|
if (!cachedModule) {
|
|
|
|
// Try to compile from native modules
|
2010-03-15 14:22:50 -07:00
|
|
|
if (natives[id]) {
|
2010-03-15 08:00:19 -07:00
|
|
|
debug('load native module ' + id);
|
2010-03-19 00:29:49 +01:00
|
|
|
cachedModule = loadNative(id);
|
2010-02-19 09:37:20 -08:00
|
|
|
}
|
|
|
|
}
|
2010-02-04 22:28:04 +01:00
|
|
|
|
|
|
|
if (cachedModule) {
|
2009-10-31 19:47:41 +01:00
|
|
|
debug("found " + JSON.stringify(id) + " in cache");
|
2010-03-15 08:00:19 -07:00
|
|
|
if (callback) {
|
|
|
|
callback(null, cachedModule.exports);
|
|
|
|
} else {
|
|
|
|
return cachedModule.exports;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2009-10-31 19:02:30 +01:00
|
|
|
// Not in cache
|
2010-03-15 08:00:19 -07:00
|
|
|
debug("looking for " + JSON.stringify(id) + " in " + JSON.stringify(paths));
|
|
|
|
|
|
|
|
if (!callback) {
|
|
|
|
// sync
|
|
|
|
var filename = findModulePath(request, paths);
|
2009-10-31 19:02:30 +01:00
|
|
|
if (!filename) {
|
2010-03-15 08:00:19 -07:00
|
|
|
throw new Error("Cannot find module '" + request + "'");
|
2009-09-18 15:45:47 +02:00
|
|
|
} else {
|
2010-02-04 22:28:04 +01:00
|
|
|
var module = new Module(id, parent);
|
2010-03-15 08:00:19 -07:00
|
|
|
module.loadSync(filename);
|
|
|
|
return module.exports;
|
2009-09-18 15:45:47 +02:00
|
|
|
}
|
2010-03-15 08:00:19 -07:00
|
|
|
|
|
|
|
} else {
|
|
|
|
// async
|
|
|
|
findModulePath(request, paths, function (filename) {
|
|
|
|
if (!filename) {
|
|
|
|
var err = new Error("Cannot find module '" + request + "'");
|
|
|
|
callback(err);
|
|
|
|
} else {
|
|
|
|
var module = new Module(id, parent);
|
|
|
|
module.load(filename, callback);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
|
2010-03-08 17:35:39 +13:00
|
|
|
// 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
|
2010-03-13 13:21:21 -07:00
|
|
|
// is the second argument, which is a function that gets called when the
|
2010-03-08 17:35:39 +13:00
|
|
|
// 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] = compiler;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-02-19 11:25:40 -08:00
|
|
|
Module.prototype.load = function (filename, callback) {
|
2009-10-31 19:47:41 +01:00
|
|
|
debug("load " + JSON.stringify(filename) + " for module " + JSON.stringify(this.id));
|
2009-10-31 19:02:30 +01:00
|
|
|
|
|
|
|
process.assert(!this.loaded);
|
2009-09-18 15:45:47 +02:00
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
this.filename = filename;
|
2009-09-18 15:45:47 +02:00
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
if (filename.match(/\.node$/)) {
|
2010-02-19 11:25:40 -08:00
|
|
|
this._loadObject(filename, callback);
|
2009-08-31 11:14:34 +02:00
|
|
|
} else {
|
2010-02-19 11:25:40 -08:00
|
|
|
this._loadScript(filename, callback);
|
2009-08-31 11:14:34 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
|
|
|
|
Module.prototype._loadObjectSync = function (filename) {
|
|
|
|
this.loaded = true;
|
|
|
|
process.dlopen(filename, this.exports);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-02-19 11:25:40 -08:00
|
|
|
Module.prototype._loadObject = function (filename, callback) {
|
2009-08-31 11:14:34 +02:00
|
|
|
var self = this;
|
|
|
|
// XXX Not yet supporting loading from HTTP. would need to download the
|
2009-12-22 23:11:54 +01:00
|
|
|
// file, store it to tmp then run dlopen on it.
|
2010-02-19 11:25:40 -08:00
|
|
|
self.loaded = true;
|
|
|
|
process.dlopen(filename, self.exports); // FIXME synchronus
|
|
|
|
if (callback) callback(null, self.exports);
|
2009-08-31 11:14:34 +02:00
|
|
|
};
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
|
2010-02-19 11:25:40 -08:00
|
|
|
function cat (id, callback) {
|
2009-11-07 14:57:49 +01:00
|
|
|
if (id.match(/^http:\/\//)) {
|
2010-02-19 11:25:40 -08:00
|
|
|
loadModule('http', process.mainModule, function (err, http) {
|
|
|
|
if (err) {
|
|
|
|
if (callback) callback(err);
|
|
|
|
} else {
|
2010-02-19 16:26:48 -08:00
|
|
|
http.cat(id, callback);
|
2010-02-19 11:25:40 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2010-03-15 10:41:58 -07:00
|
|
|
requireNative('fs').readFile(id, callback);
|
2009-11-01 15:34:46 +01:00
|
|
|
}
|
2009-11-07 14:57:49 +01:00
|
|
|
}
|
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
|
2010-03-15 08:00:19 -07:00
|
|
|
// Returns exception if any
|
|
|
|
Module.prototype._compile = function (content, filename) {
|
2010-02-19 09:37:20 -08:00
|
|
|
var self = this;
|
|
|
|
// remove shebang
|
|
|
|
content = content.replace(/^\#\!.*/, '');
|
|
|
|
|
2010-03-08 17:35:39 +13:00
|
|
|
// Compile content if needed
|
|
|
|
var ext = path.extname(filename);
|
|
|
|
if (extensionCache[ext]) {
|
|
|
|
content = extensionCache[ext](content);
|
|
|
|
}
|
|
|
|
|
2010-02-19 11:25:40 -08:00
|
|
|
function requireAsync (url, cb) {
|
|
|
|
loadModule(url, self, cb);
|
2010-02-19 09:37:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
function require (path) {
|
2010-03-15 08:00:19 -07:00
|
|
|
return loadModule(path, self);
|
2010-02-19 09:37:20 -08:00
|
|
|
}
|
|
|
|
|
2010-03-15 08:07:33 -07:00
|
|
|
require.paths = modulePaths;
|
2010-02-19 09:37:20 -08:00
|
|
|
require.async = requireAsync;
|
|
|
|
require.main = process.mainModule;
|
2010-03-08 17:35:39 +13:00
|
|
|
require.registerExtension = registerExtension;
|
2010-02-19 09:37:20 -08:00
|
|
|
|
2010-03-08 17:35:39 +13:00
|
|
|
|
|
|
|
if ('string' === typeof content) {
|
|
|
|
// create wrapper function
|
|
|
|
var wrapper = "(function (exports, require, module, __filename, __dirname) { "
|
|
|
|
+ content
|
|
|
|
+ "\n});";
|
|
|
|
|
|
|
|
try {
|
|
|
|
var compiledWrapper = process.compile(wrapper, filename);
|
|
|
|
var dirName = path.dirname(filename);
|
|
|
|
if (filename === process.argv[1]) {
|
|
|
|
process.checkBreak();
|
|
|
|
}
|
|
|
|
compiledWrapper.apply(self.exports, [self.exports, require, self, filename, dirName]);
|
|
|
|
} catch (e) {
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.exports = content;
|
2010-02-19 09:37:20 -08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Module.prototype._loadScriptSync = function (filename) {
|
2010-03-15 10:41:58 -07:00
|
|
|
var content = requireNative('fs').readFileSync(filename);
|
2010-03-15 08:00:19 -07:00
|
|
|
var e = this._compile(content, filename);
|
2010-02-19 09:37:20 -08:00
|
|
|
if (e) {
|
|
|
|
throw e;
|
|
|
|
} else {
|
|
|
|
this.loaded = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-02-19 11:25:40 -08:00
|
|
|
Module.prototype._loadScript = function (filename, callback) {
|
2009-11-07 14:57:49 +01:00
|
|
|
var self = this;
|
2010-02-19 11:25:40 -08:00
|
|
|
cat(filename, function (err, content) {
|
2010-02-19 16:02:30 -08:00
|
|
|
debug('cat done');
|
2010-02-19 11:25:40 -08:00
|
|
|
if (err) {
|
|
|
|
if (callback) callback(err);
|
|
|
|
} else {
|
2010-03-15 08:00:19 -07:00
|
|
|
var e = self._compile(content, filename);
|
2010-02-19 11:25:40 -08:00
|
|
|
if (e) {
|
|
|
|
if (callback) callback(e);
|
|
|
|
} else {
|
|
|
|
self._waitChildrenLoad(function () {
|
|
|
|
self.loaded = true;
|
|
|
|
if (self.onload) self.onload();
|
|
|
|
if (callback) callback(null, self.exports);
|
|
|
|
});
|
|
|
|
}
|
2009-12-18 23:58:04 +01:00
|
|
|
}
|
2009-06-08 15:30:10 +02:00
|
|
|
});
|
|
|
|
};
|
2009-04-20 02:55:08 +02:00
|
|
|
|
2010-02-19 09:37:20 -08:00
|
|
|
|
|
|
|
Module.prototype._waitChildrenLoad = function (callback) {
|
2009-08-26 18:51:04 +02:00
|
|
|
var nloaded = 0;
|
2009-06-08 15:30:10 +02:00
|
|
|
var children = this.children;
|
|
|
|
for (var i = 0; i < children.length; i++) {
|
|
|
|
var child = children[i];
|
2009-08-26 18:02:45 +02:00
|
|
|
if (child.loaded) {
|
|
|
|
nloaded++;
|
|
|
|
} else {
|
2010-02-19 11:25:40 -08:00
|
|
|
child.onload = function () {
|
|
|
|
child.onload = null;
|
2009-08-26 18:02:45 +02:00
|
|
|
nloaded++;
|
|
|
|
if (children.length == nloaded && callback) callback();
|
2010-02-19 11:25:40 -08:00
|
|
|
};
|
2009-08-26 18:02:45 +02:00
|
|
|
}
|
2009-04-20 02:55:08 +02:00
|
|
|
}
|
2009-08-26 18:02:45 +02:00
|
|
|
if (children.length == nloaded && callback) callback();
|
2009-06-08 15:30:10 +02:00
|
|
|
};
|
|
|
|
|
2009-09-28 16:50:19 +02:00
|
|
|
|
2010-03-15 15:11:40 -07:00
|
|
|
var stdout;
|
|
|
|
process.__defineGetter__('stdout', function () {
|
|
|
|
if (stdout) return stdout;
|
|
|
|
var net = requireNative('net');
|
2010-03-17 16:31:24 -07:00
|
|
|
stdout = new net.Stream(process.binding('stdio').stdoutFD);
|
2010-03-15 15:11:40 -07:00
|
|
|
return stdout;
|
|
|
|
});
|
|
|
|
|
|
|
|
var stdin;
|
|
|
|
process.openStdin = function () {
|
|
|
|
if (stdin) return stdin;
|
|
|
|
var net = requireNative('net');
|
|
|
|
var fd = process.binding('stdio').openStdin();
|
2010-03-17 16:31:24 -07:00
|
|
|
stdin = new net.Stream(fd);
|
2010-03-15 15:11:40 -07:00
|
|
|
stdin.resume();
|
|
|
|
stdin.readable = true;
|
|
|
|
return stdin;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-09-28 16:50:19 +02:00
|
|
|
process.exit = function (code) {
|
|
|
|
process.emit("exit");
|
2009-10-29 23:34:10 +01:00
|
|
|
process.reallyExit(code);
|
2009-09-28 16:50:19 +02:00
|
|
|
};
|
|
|
|
|
2009-10-31 19:02:30 +01:00
|
|
|
var cwd = process.cwd();
|
2009-09-18 15:45:47 +02:00
|
|
|
|
2010-02-03 12:19:08 -08: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]);
|
2009-10-31 19:02:30 +01:00
|
|
|
}
|
2009-09-07 14:09:18 +02:00
|
|
|
|
2010-02-03 12:19:08 -08:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-11-07 14:57:49 +01:00
|
|
|
// Load the main module--the command line argument.
|
2010-02-04 22:28:04 +01:00
|
|
|
process.mainModule = new Module(".");
|
2010-02-19 16:02:30 -08:00
|
|
|
process.mainModule.load(process.argv[1], function (err) {
|
|
|
|
if (err) throw err;
|
|
|
|
});
|
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
|
|
|
});
|