Skip to content

Commit cf4448c

Browse files
vdeturckheimapapirovski
authored andcommitted
events: move domain handling from events to domain
PR-URL: #17403 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Andreas Madsen <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]>
1 parent a803bca commit cf4448c

File tree

2 files changed

+52
-47
lines changed

2 files changed

+52
-47
lines changed

lib/domain.js

+46-5
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ const EventEmitter = require('events');
3131
const errors = require('internal/errors');
3232
const { createHook } = require('async_hooks');
3333

34-
// communicate with events module, but don't require that
35-
// module to have to load this one, since this module has
36-
// a few side effects.
37-
EventEmitter.usingDomains = true;
38-
3934
// overwrite process.domain with a getter/setter that will allow for more
4035
// effective optimizations
4136
var _domain = [null];
@@ -387,3 +382,49 @@ Domain.prototype.bind = function(cb) {
387382

388383
return runBound;
389384
};
385+
386+
// Override EventEmitter methods to make it domain-aware.
387+
EventEmitter.usingDomains = true;
388+
389+
const eventInit = EventEmitter.init;
390+
EventEmitter.init = function() {
391+
this.domain = null;
392+
if (exports.active && !(this instanceof exports.Domain)) {
393+
this.domain = exports.active;
394+
}
395+
396+
return eventInit.call(this);
397+
};
398+
399+
const eventEmit = EventEmitter.prototype.emit;
400+
EventEmitter.prototype.emit = function emit(...args) {
401+
const domain = this.domain;
402+
if (domain === null || domain === undefined || this === process) {
403+
return eventEmit.apply(this, args);
404+
}
405+
406+
const type = args[0];
407+
// edge case: if there is a domain and an existing non error object is given,
408+
// it should not be errorized
409+
// see test/parallel/test-event-emitter-no-error-provided-to-error-event.js
410+
if (type === 'error' && args.length > 1 && args[1] &&
411+
!(args[1] instanceof Error)) {
412+
domain.emit('error', args[1]);
413+
return false;
414+
}
415+
416+
domain.enter();
417+
try {
418+
return eventEmit.apply(this, args);
419+
} catch (er) {
420+
if (typeof er === 'object' && er !== null) {
421+
er.domainEmitter = this;
422+
er.domain = domain;
423+
er.domainThrown = false;
424+
}
425+
domain.emit('error', er);
426+
return false;
427+
} finally {
428+
domain.exit();
429+
}
430+
};

lib/events.js

+6-42
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
'use strict';
2323

24-
var domain;
2524
var spliceOne;
2625

2726
function EventEmitter() {
@@ -32,9 +31,6 @@ module.exports = EventEmitter;
3231
// Backwards-compat with node 0.10.x
3332
EventEmitter.EventEmitter = EventEmitter;
3433

35-
EventEmitter.usingDomains = false;
36-
37-
EventEmitter.prototype.domain = undefined;
3834
EventEmitter.prototype._events = undefined;
3935
EventEmitter.prototype._maxListeners = undefined;
4036

@@ -66,14 +62,6 @@ Object.defineProperty(EventEmitter, 'defaultMaxListeners', {
6662
});
6763

6864
EventEmitter.init = function() {
69-
this.domain = null;
70-
if (EventEmitter.usingDomains) {
71-
// if there is an active domain, then attach to it.
72-
domain = domain || require('domain');
73-
if (domain.active && !(this instanceof domain.Domain)) {
74-
this.domain = domain.active;
75-
}
76-
}
7765

7866
if (this._events === undefined ||
7967
this._events === Object.getPrototypeOf(this)._events) {
@@ -114,47 +102,26 @@ EventEmitter.prototype.emit = function emit(type, ...args) {
114102
else if (!doError)
115103
return false;
116104

117-
const domain = this.domain;
118-
119105
// If there is no 'error' event listener then throw.
120106
if (doError) {
121107
let er;
122108
if (args.length > 0)
123109
er = args[0];
124-
if (domain !== null && domain !== undefined) {
125-
if (!er) {
126-
const errors = lazyErrors();
127-
er = new errors.Error('ERR_UNHANDLED_ERROR');
128-
}
129-
if (typeof er === 'object' && er !== null) {
130-
er.domainEmitter = this;
131-
er.domain = domain;
132-
er.domainThrown = false;
133-
}
134-
domain.emit('error', er);
135-
} else if (er instanceof Error) {
110+
if (er instanceof Error) {
136111
throw er; // Unhandled 'error' event
137-
} else {
138-
// At least give some kind of context to the user
139-
const errors = lazyErrors();
140-
const err = new errors.Error('ERR_UNHANDLED_ERROR', er);
141-
err.context = er;
142-
throw err;
143112
}
144-
return false;
113+
// At least give some kind of context to the user
114+
const errors = lazyErrors();
115+
const err = new errors.Error('ERR_UNHANDLED_ERROR', er);
116+
err.context = er;
117+
throw err;
145118
}
146119

147120
const handler = events[type];
148121

149122
if (handler === undefined)
150123
return false;
151124

152-
let needDomainExit = false;
153-
if (domain !== null && domain !== undefined && this !== process) {
154-
domain.enter();
155-
needDomainExit = true;
156-
}
157-
158125
if (typeof handler === 'function') {
159126
handler.apply(this, args);
160127
} else {
@@ -164,9 +131,6 @@ EventEmitter.prototype.emit = function emit(type, ...args) {
164131
listeners[i].apply(this, args);
165132
}
166133

167-
if (needDomainExit)
168-
domain.exit();
169-
170134
return true;
171135
};
172136

0 commit comments

Comments
 (0)