|
|
@ -14,17 +14,25 @@ function removed (reason) { |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
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."); |
|
|
|
process.watchFile = removed("process.watchFile() has moved to fs.watchFile()"); |
|
|
|
process.unwatchFile = removed("process.unwatchFile() has moved to fs.unwatchFile()"); |
|
|
|
process.mixin = removed('process.mixin() has been removed.'); |
|
|
|
process.createChildProcess = removed("childProcess API has changed. See doc/api.txt."); |
|
|
|
process.inherits = removed("process.inherits() has moved to sys.inherits."); |
|
|
|
process._byteLength = removed("process._byteLength() has moved to Buffer.byteLength"); |
|
|
|
process.debug = |
|
|
|
removed('process.debug() use console.error() instead'); |
|
|
|
process.error = |
|
|
|
removed('process.error() use console.error() instead'); |
|
|
|
process.watchFile = |
|
|
|
removed('process.watchFile() has moved to fs.watchFile()'); |
|
|
|
process.unwatchFile = |
|
|
|
removed('process.unwatchFile() has moved to fs.unwatchFile()'); |
|
|
|
process.mixin = |
|
|
|
removed('process.mixin() has been removed.'); |
|
|
|
process.createChildProcess = |
|
|
|
removed('childProcess API has changed. See doc/api.txt.'); |
|
|
|
process.inherits = |
|
|
|
removed('process.inherits() has moved to sys.inherits.'); |
|
|
|
process._byteLength = |
|
|
|
removed('process._byteLength() has moved to Buffer.byteLength'); |
|
|
|
|
|
|
|
process.assert = function(x, msg) { |
|
|
|
if (!x) throw new Error(msg || "assertion error"); |
|
|
|
if (!x) throw new Error(msg || 'assertion error'); |
|
|
|
}; |
|
|
|
|
|
|
|
var evals = process.binding('evals'); |
|
|
@ -32,7 +40,7 @@ var evals = process.binding('evals'); |
|
|
|
// lazy loaded.
|
|
|
|
var constants; |
|
|
|
function lazyConstants() { |
|
|
|
if (!constants) constants = process.binding("constants"); |
|
|
|
if (!constants) constants = process.binding('constants'); |
|
|
|
return constants; |
|
|
|
} |
|
|
|
|
|
|
@ -79,7 +87,7 @@ function requireNative (id) { |
|
|
|
if (!natives[id]) throw new Error('No such native module ' + id); |
|
|
|
|
|
|
|
var fn = evals.Script.runInThisContext( |
|
|
|
"(function (module, exports, require) {" + natives[id] + "\n})", |
|
|
|
'(function (module, exports, require) {' + natives[id] + '\n})', |
|
|
|
id + '.js'); |
|
|
|
var m = {id: id, exports: {}}; |
|
|
|
fn(m, m.exports, requireNative); |
|
|
@ -94,7 +102,7 @@ var module = (function () { |
|
|
|
// Set the environ variable NODE_MODULE_CONTEXTS=1 to make node load all
|
|
|
|
// modules in thier own context.
|
|
|
|
var contextLoad = false; |
|
|
|
if (+process.env["NODE_MODULE_CONTEXTS"] > 0) contextLoad = true; |
|
|
|
if (+process.env['NODE_MODULE_CONTEXTS'] > 0) contextLoad = true; |
|
|
|
|
|
|
|
var moduleCache = {}; |
|
|
|
|
|
|
@ -112,27 +120,30 @@ var module = (function () { |
|
|
|
|
|
|
|
// Modules
|
|
|
|
|
|
|
|
var debugLevel = parseInt(process.env["NODE_DEBUG"], 16); |
|
|
|
function debug (x) { |
|
|
|
if (debugLevel & 1) console.error(x); |
|
|
|
var debugLevel = parseInt(process.env['NODE_DEBUG'], 16); |
|
|
|
if (debugLevel & 1) { |
|
|
|
debug = function(x) { console.error(x); }; |
|
|
|
} else { |
|
|
|
debug = function() { }; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var path = requireNative('path'); |
|
|
|
|
|
|
|
var modulePaths = [path.join(process.execPath, "..", "..", "lib", "node")]; |
|
|
|
var modulePaths = [path.join(process.execPath, '..', '..', 'lib', 'node')]; |
|
|
|
|
|
|
|
if (process.env["HOME"]) { |
|
|
|
modulePaths.unshift(path.join(process.env["HOME"], ".node_libraries")); |
|
|
|
modulePaths.unshift(path.join(process.env["HOME"], ".node_modules")); |
|
|
|
if (process.env['HOME']) { |
|
|
|
modulePaths.unshift(path.join(process.env['HOME'], '.node_libraries')); |
|
|
|
modulePaths.unshift(path.join(process.env['HOME'], '.node_modules')); |
|
|
|
} |
|
|
|
|
|
|
|
if (process.env["NODE_PATH"]) { |
|
|
|
modulePaths = process.env["NODE_PATH"].split(":").concat(modulePaths); |
|
|
|
if (process.env['NODE_PATH']) { |
|
|
|
modulePaths = process.env['NODE_PATH'].split(':').concat(modulePaths); |
|
|
|
} |
|
|
|
|
|
|
|
var extensions = {}; |
|
|
|
var registerExtension = removed('require.registerExtension() removed. Use require.extensions instead'); |
|
|
|
var registerExtension = |
|
|
|
removed('require.registerExtension() removed.' + |
|
|
|
' Use require.extensions instead'); |
|
|
|
|
|
|
|
// Which files to traverse while finding id? Returns generator function.
|
|
|
|
function traverser(id, dirs) { |
|
|
@ -160,7 +171,8 @@ var module = (function () { |
|
|
|
} |
|
|
|
|
|
|
|
function findModulePath(request, paths) { |
|
|
|
var nextLoc = traverser(request, request.charAt(0) === '/' ? [''] : paths); |
|
|
|
var nextLoc = |
|
|
|
traverser(request, request.charAt(0) === '/' ? [''] : paths); |
|
|
|
|
|
|
|
var fs = requireNative('fs'); |
|
|
|
|
|
|
@ -179,7 +191,7 @@ var module = (function () { |
|
|
|
if (natives[request]) return [request, []]; |
|
|
|
|
|
|
|
var start = request.substring(0, 2); |
|
|
|
if (start !== "./" && start !== "..") { |
|
|
|
if (start !== './' && start !== '..') { |
|
|
|
return [request, modulePaths]; |
|
|
|
} |
|
|
|
|
|
|
@ -202,13 +214,14 @@ var module = (function () { |
|
|
|
if (parentIdPath === '.' && id.indexOf('/') === -1) { |
|
|
|
id = './' + id; |
|
|
|
} |
|
|
|
debug("RELATIVE: requested:" + request + " set ID to: "+id+" from "+parent.id); |
|
|
|
debug('RELATIVE: requested:' + request + |
|
|
|
' set ID to: ' + id + ' from ' + parent.id); |
|
|
|
return [id, [path.dirname(parent.filename)]]; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
function loadModule(request, parent) { |
|
|
|
debug("loadModule REQUEST " + (request) + " parent: " + parent.id); |
|
|
|
debug('loadModule REQUEST ' + (request) + ' parent: ' + parent.id); |
|
|
|
|
|
|
|
var resolved = resolveModuleFilename(request, parent); |
|
|
|
var id = resolved[0]; |
|
|
@ -219,7 +232,7 @@ var module = (function () { |
|
|
|
if (natives[id]) { |
|
|
|
// REPL is a special case, because it needs the real require.
|
|
|
|
if (id == 'repl') { |
|
|
|
var replModule = new Module("repl"); |
|
|
|
var replModule = new Module('repl'); |
|
|
|
replModule._compile(natives.repl, 'repl.js'); |
|
|
|
internalModuleCache.repl = replModule; |
|
|
|
return replModule.exports; |
|
|
@ -245,7 +258,8 @@ var module = (function () { |
|
|
|
paths = resolvedModule[1]; |
|
|
|
|
|
|
|
// look up the filename first, since that's the cache key.
|
|
|
|
debug("looking for " + JSON.stringify(id) + " in " + JSON.stringify(paths)); |
|
|
|
debug('looking for ' + JSON.stringify(id) + |
|
|
|
' in ' + JSON.stringify(paths)); |
|
|
|
var filename = findModulePath(request, paths); |
|
|
|
if (!filename) { |
|
|
|
throw new Error("Cannot find module '" + request + "'"); |
|
|
@ -255,7 +269,8 @@ var module = (function () { |
|
|
|
|
|
|
|
|
|
|
|
Module.prototype.load = function(filename) { |
|
|
|
debug("load " + JSON.stringify(filename) + " for module " + JSON.stringify(this.id)); |
|
|
|
debug('load ' + JSON.stringify(filename) + |
|
|
|
' for module ' + JSON.stringify(this.id)); |
|
|
|
|
|
|
|
process.assert(!this.loaded); |
|
|
|
this.filename = filename; |
|
|
@ -291,7 +306,7 @@ var module = (function () { |
|
|
|
var dirname = path.dirname(filename); |
|
|
|
|
|
|
|
if (contextLoad) { |
|
|
|
if (self.id !== ".") { |
|
|
|
if (self.id !== '.') { |
|
|
|
debug('load submodule'); |
|
|
|
// not root module
|
|
|
|
var sandbox = {}; |
|
|
@ -321,15 +336,17 @@ var module = (function () { |
|
|
|
|
|
|
|
} else { |
|
|
|
// create wrapper function
|
|
|
|
var wrapper = "(function (exports, require, module, __filename, __dirname) { " |
|
|
|
+ content |
|
|
|
+ "\n});"; |
|
|
|
var wrapper = |
|
|
|
'(function (exports, require, module, __filename, __dirname) { ' + |
|
|
|
content + |
|
|
|
'\n});'; |
|
|
|
|
|
|
|
var compiledWrapper = evals.Script.runInThisContext(wrapper, filename); |
|
|
|
if (filename === process.argv[1] && global.v8debug) { |
|
|
|
global.v8debug.Debug.setBreakPoint(compiledWrapper, 0, 0); |
|
|
|
} |
|
|
|
return compiledWrapper.apply(self.exports, [self.exports, require, self, filename, dirname]); |
|
|
|
var args = [self.exports, require, self, filename, dirname]; |
|
|
|
return compiledWrapper.apply(self.exports, args); |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
@ -350,7 +367,7 @@ var module = (function () { |
|
|
|
// bootstrap main module.
|
|
|
|
exports.runMain = function() { |
|
|
|
// Load the main module--the command line argument.
|
|
|
|
process.mainModule = new Module("."); |
|
|
|
process.mainModule = new Module('.'); |
|
|
|
try { |
|
|
|
process.mainModule.load(process.argv[1]); |
|
|
|
} catch (e) { |
|
|
@ -364,7 +381,7 @@ var module = (function () { |
|
|
|
}; |
|
|
|
|
|
|
|
// bootstrap repl
|
|
|
|
exports.requireRepl = function () { return loadModule("repl", "."); }; |
|
|
|
exports.requireRepl = function() { return loadModule('repl', '.'); }; |
|
|
|
|
|
|
|
// export for --eval
|
|
|
|
exports.Module = Module; |
|
|
@ -455,9 +472,9 @@ process.__defineGetter__('stdout', function () { |
|
|
|
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.
|
|
|
|
// 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; |
|
|
|
} |
|
|
@ -496,13 +513,13 @@ global.__defineGetter__('console', function () { |
|
|
|
global.Buffer = requireNative('buffer').Buffer; |
|
|
|
|
|
|
|
process.exit = function(code) { |
|
|
|
process.emit("exit", code || 0); |
|
|
|
process.emit('exit', code || 0); |
|
|
|
process.reallyExit(code || 0); |
|
|
|
}; |
|
|
|
|
|
|
|
process.kill = function(pid, sig) { |
|
|
|
sig = sig || 'SIGTERM'; |
|
|
|
if (!lazyConstants()[sig]) throw new Error("Unknown signal: " + sig); |
|
|
|
if (!lazyConstants()[sig]) throw new Error('Unknown signal: ' + sig); |
|
|
|
process._kill(pid, lazyConstants()[sig]); |
|
|
|
}; |
|
|
|
|
|
|
@ -517,7 +534,8 @@ if (process.argv[0].indexOf('/') > 0) { |
|
|
|
|
|
|
|
if (process.argv[1]) { |
|
|
|
// Load module
|
|
|
|
if (process.argv[1].charAt(0) != "/" && !(/^http:\/\//).exec(process.argv[1])) { |
|
|
|
if (process.argv[1].charAt(0) != '/' && |
|
|
|
!(/^http:\/\//).exec(process.argv[1])) { |
|
|
|
process.argv[1] = path.join(cwd, process.argv[1]); |
|
|
|
} |
|
|
|
// REMOVEME: nextTick should not be necessary. This hack to get
|
|
|
|