nodejs/src/node.js

181 lines
5.1 KiB
JavaScript
Raw Normal View History

// module search paths
node.includes = ["."];
2009-04-17 18:54:29 +02:00
// This is useful for dealing with raw encodings.
Array.prototype.encodeUtf8 = function () {
return String.fromCharCode.apply(String, this);
}
node.path = new function () {
this.join = function () {
var joined = "";
for (var i = 0; i < arguments.length; i++) {
var part = arguments[i].toString();
if (i === 0) {
part = part.replace(/\/*$/, "/");
} else if (i === arguments.length - 1) {
part = part.replace(/^\/*/, "");
} else {
part = part.replace(/^\/*/, "")
.replace(/\/*$/, "/");
}
joined += part;
}
return joined;
};
this.dirname = function (path) {
if (path.charAt(0) !== "/")
path = "./" + path;
var parts = path.split("/");
return parts.slice(0, parts.length-1).join("/");
};
};
// Timers
function setTimeout (callback, delay) {
2009-05-13 21:42:18 +02:00
var timer = new node.Timer(callback, delay, 0);
timer.start();
return timer;
};
function setInterval (callback, delay) {
2009-05-13 21:42:18 +02:00
var timer = new node.Timer(callback, delay, delay);
timer.start();
return timer;
};
function clearTimeout (timer) {
timer.stop();
delete timer;
};
clearInterval = clearTimeout;
// Modules
(function () {
function findScript(base_directory, name, callback) {
// in the future this function will be more complicated
if (name.charAt(0) == "/")
throw "absolute module paths are not yet supported.";
var filename = node.path.join(base_directory, name) + ".js";
2009-05-21 12:49:41 +02:00
node.fs.exists(filename, function (status) {
callback(status ? filename : null);
});
}
// Constructor for submodule.
// "name" is like a path but without .js. e.g. "database/mysql"
// "target" is an object into which the submodule will be loaded.
function Sub (name, target) {
this.name = name;
this.target = target;
this.load = function (base_directory, callback) {
//node.debug("sub.load from <" + base_directory + "> " + this.toString());
findScript(base_directory, name, function (filename) {
if (filename === null) {
stderr.puts("Cannot find a script matching: " + name);
node.exit(1);
}
loadScript(filename, target, callback);
});
};
this.toString = function () {
return "[sub name=" + name + " target=" + target.toString() + "]";
}
}
function Scaffold (source, filename, module) {
// wrap the source in a strange function
var source = "function (__filename) {"
2009-04-21 16:30:47 +02:00
+ " var onLoad;"
+ " var exports = this;"
+ " var require = this.__require;"
+ " var include = this.__include;"
+ source
2009-04-21 16:30:47 +02:00
+ " this.__onLoad = onLoad;"
+ "};"
;
// returns the function
var compiled = node.compile(source, filename);
2009-04-21 16:30:47 +02:00
if (module.__onLoad) {
//node.debug("<"+ filename+"> has onload! this is bad");
}
module.__subs = [];
module.__require = function (name) {
var target = {};
module.__subs.push(new Sub(name, target));
return target;
}
module.__include = function (name) {
module.__subs.push(new Sub(name, module));
}
// execute the script of interest
compiled.apply(module, [filename]);
// The module still needs to have its submodules loaded.
this.filename = filename;
this.module = module;
this.subs = module.__subs;
2009-04-21 16:30:47 +02:00
this.onLoad = module.__onLoad;
// remove these references so they don't get exported.
delete module.__subs;
2009-04-21 16:30:47 +02:00
delete module.__onLoad;
delete module.__require;
delete module.__include;
}
function loadScript (filename, target, callback) {
node.fs.cat(filename, "utf8", function (status, content) {
if (status != 0) {
2009-06-01 12:56:28 +02:00
stderr.puts("Error reading " + filename);
node.exit(1);
}
var scaffold = new Scaffold(content, filename, target);
//node.debug("after scaffold <" + filename + ">");
function finish() {
//node.debug("finish 1 load <" + filename + ">");
2009-04-21 16:30:47 +02:00
if (scaffold.onLoad instanceof Function) {
2009-04-23 14:22:57 +02:00
//node.debug("calling onLoad for <" + filename + ">");
2009-04-21 16:30:47 +02:00
scaffold.onLoad();
}
//node.debug("finish 2 load <" + filename + ">");
if (callback instanceof Function)
callback();
}
// Each time require() or include() was called inside the script
// a key/value was added to scaffold.__subs.
// Now we loop though each one and recursively load each.
if (scaffold.subs.length == 0) {
finish();
} else {
var ncomplete = 0;
for (var i = 0; i < scaffold.subs.length; i++) {
var sub = scaffold.subs[i];
sub.load(node.path.dirname(filename), function () {
ncomplete += 1;
//node.debug("<" + filename + "> ncomplete = " + ncomplete.toString() + " scaffold.subs.length = " + scaffold.subs.length.toString());
if (ncomplete === scaffold.subs.length)
finish();
});
}
}
});
}
loadScript(ARGV[1], this);
})();