Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Almost completely remove onExit and onLoad.
Browse files Browse the repository at this point in the history
They were deprecated in 723c7d9 and
31265be.

Still retaining error message.
  • Loading branch information
ry committed Sep 7, 2009
1 parent 0407145 commit 1a2696f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 36 deletions.
42 changes: 6 additions & 36 deletions src/node.js
Expand Up @@ -158,16 +158,14 @@ node.Module.prototype.loadScript = function (callback) {
self.onLoad = self.target.__onLoad;
self.onExit = self.target.__onExit;
if (self.onLoad || self.onExit) {
node.stdio.writeError( "(node) onLoad is depreciated it will be "
+ "removed in the future. Don't want it to "
+ "leave? Discuss on mailing list.\n"
node.stdio.writeError( "(node) onLoad and onExit have been removed. "
+ " module load is synchronous so onLoad is unnecessary"
+ " Use process.addListener('exit') for onExit. "
);
node.exit(1);
}

self.waitChildrenLoad(function () {
if (self.onLoad) {
self.onLoad();
}
self.loaded = true;
loadPromise.emitSuccess([self.target]);
});
Expand Down Expand Up @@ -203,32 +201,6 @@ node.Module.prototype.waitChildrenLoad = function (callback) {
if (children.length == nloaded && callback) callback();
};

node.Module.prototype.exitChildren = function (callback) {
var children = this.children;
if (children.length == 0 && callback) callback();
var nexited = 0;
for (var i = 0; i < children.length; i++) {
children[i].exit(function () {
nexited += 1;
if (nexited == children.length && callback) callback();
});
}
};

node.Module.prototype.exit = function (callback) {
var self = this;

if (self.exited) {
throw "Module '" + self.filename + "' is already exited.";
}

this.exitChildren(function () {
if (self.onExit) self.onExit();
self.exited = true;
if (callback) callback();
});
};

(function () {
// Load the root module--the command line argument.
var root_module = new node.Module({
Expand All @@ -239,9 +211,7 @@ node.Module.prototype.exit = function (callback) {
root_module.load();

node.exit = function (code) {
root_module.exit(function () {
process.emit("exit");
node.reallyExit(code);
});
process.emit("exit");
node.reallyExit(code);
};
}());
1 change: 1 addition & 0 deletions test/mjsunit/test-tcp-throttle.js
Expand Up @@ -63,4 +63,5 @@ client.addListener("eof", function () {

process.addListener("exit", function () {
assertEquals(N, recv.length);
node.debug("Exit");
});

0 comments on commit 1a2696f

Please sign in to comment.