This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathevent-emitter.js
More file actions
393 lines (332 loc) · 10.7 KB
/
Copy pathevent-emitter.js
File metadata and controls
393 lines (332 loc) · 10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const BAD_LISTENER =
"The event listener must be a function, or an object that has " +
"`EventEmitter.handler` Symbol.";
const eventListeners = Symbol("EventEmitter/listeners");
const onceOriginalListener = Symbol("EventEmitter/once-original-listener");
const handler = Symbol("EventEmitter/event-handler");
class EventEmitter {
constructor() {
this[eventListeners] = new Map();
}
/**
* Registers an event `listener` that is called every time events of
* specified `type` is emitted on the given event `target`.
*
* @param {Object} target
* Event target object.
* @param {String} type
* The type of event.
* @param {Function|Object} listener
* The listener that processes the event.
*/
static on(target, type, listener) {
if (typeof listener !== "function" && !isEventHandler(listener)) {
throw new Error(BAD_LISTENER);
}
if (!(eventListeners in target)) {
target[eventListeners] = new Map();
}
const events = target[eventListeners];
if (events.has(type)) {
events.get(type).add(listener);
} else {
events.set(type, new Set([listener]));
}
}
/**
* Removes an event `listener` for the given event `type` on the given event
* `target`. If no `listener` is passed removes all listeners of the given
* `type`. If `type` is not passed removes all the listeners of the given
* event `target`.
* @param {Object} target
* The event target object.
* @param {String} [type]
* The type of event.
* @param {Function|Object} [listener]
* The listener that processes the event.
*/
static off(target, type, listener) {
const length = arguments.length;
const events = target[eventListeners];
if (!events) {
return;
}
if (length >= 3) {
// Trying to remove from the `target` the `listener` specified for the
// event's `type` given.
const listenersForType = events.get(type);
// If we don't have listeners for the event's type, we bail out.
if (!listenersForType) {
return;
}
// If the listeners list contains the listener given, we just remove it.
if (listenersForType.has(listener)) {
listenersForType.delete(listener);
} else {
// If it's not present, there is still the possibility that the listener
// have been added using `once`, since the method wraps the original listener
// in another function.
// So we iterate all the listeners to check if any of them is a wrapper to
// the `listener` given.
for (const value of listenersForType.values()) {
if (
onceOriginalListener in value &&
value[onceOriginalListener] === listener
) {
listenersForType.delete(value);
break;
}
}
}
} else if (length === 2) {
// No listener was given, it means we're removing all the listeners from
// the given event's `type`.
if (events.has(type)) {
events.delete(type);
}
} else if (length === 1) {
// With only the `target` given, we're removing all the listeners from the object.
events.clear();
}
}
static clearEvents(target) {
const events = target[eventListeners];
if (!events) {
return;
}
events.clear();
}
/**
* Registers an event `listener` that is called only the next time an event
* of the specified `type` is emitted on the given event `target`.
* It returns a promised resolved once the specified event `type` is emitted.
*
* @param {Object} target
* Event target object.
* @param {String} type
* The type of the event.
* @param {Function|Object} [listener]
* The listener that processes the event.
* @return {Promise}
* The promise resolved once the event `type` is emitted.
*/
static once(target, type, listener) {
return new Promise(resolve => {
// This is the actual listener that will be added to the target's listener, it wraps
// the call to the original `listener` given.
const newListener = (first, ...rest) => {
// To prevent side effects we're removing the listener upfront.
EventEmitter.off(target, type, newListener);
if (listener) {
if (isEventHandler(listener)) {
// if the `listener` given is actually an object that handles the events
// using `EventEmitter.handler`, we want to call that function, passing also
// the event's type as first argument, and the `listener` (the object) as
// contextual object.
listener[handler](type, first, ...rest);
} else {
// Otherwise we'll just call it
listener.call(target, first, ...rest);
}
}
// We resolve the promise once the listener is called.
resolve(first);
};
newListener[onceOriginalListener] = listener;
EventEmitter.on(target, type, newListener);
});
}
static emit(target, type, ...rest) {
logEvent(type, rest);
if (!(eventListeners in target)) {
return;
}
if (target[eventListeners].has(type)) {
// Creating a temporary Set with the original listeners, to avoiding side effects
// in emit.
const listenersForType = new Set(target[eventListeners].get(type));
const events = target[eventListeners];
const listeners = events.get(type);
for (const listener of listenersForType) {
// If the object was destroyed during event emission, stop emitting.
if (!(eventListeners in target)) {
break;
}
// If listeners were removed during emission, make sure the
// event handler we're going to fire wasn't removed.
if (listeners && listeners.has(listener)) {
try {
if (isEventHandler(listener)) {
listener[handler](type, ...rest);
} else {
listener.call(target, ...rest);
}
} catch (ex) {
// Prevent a bad listener from interfering with the others.
const msg = ex + ": " + ex.stack;
console.error(msg);
dump(msg + "\n");
}
}
}
}
// Backward compatibility with the SDK event-emitter: support wildcard listeners that
// will be called for any event. The arguments passed to the listener are the event
// type followed by the actual arguments.
// !!! This API will be removed by Bug 1391261.
const hasWildcardListeners = target[eventListeners].has("*");
if (type !== "*" && hasWildcardListeners) {
EventEmitter.emit(target, "*", type, ...rest);
}
}
/**
* Returns a number of event listeners registered for the given event `type`
* on the given event `target`.
*
* @param {Object} target
* Event target object.
* @param {String} type
* The type of event.
* @return {Number}
* The number of event listeners.
*/
static count(target, type) {
if (eventListeners in target) {
const listenersForType = target[eventListeners].get(type);
if (listenersForType) {
return listenersForType.size;
}
}
return 0;
}
/**
* Decorate an object with event emitter functionality; basically using the
* class' prototype as mixin.
*
* @param Object target
* The object to decorate.
* @return Object
* The object given, mixed.
*/
static decorate(target) {
const descriptors = Object.getOwnPropertyDescriptors(this.prototype);
delete descriptors.constructor;
return Object.defineProperties(target, descriptors);
}
static get handler() {
return handler;
}
on(...args) {
EventEmitter.on(this, ...args);
}
off(...args) {
EventEmitter.off(this, ...args);
}
clearEvents() {
EventEmitter.clearEvents(this);
}
once(...args) {
return EventEmitter.once(this, ...args);
}
emit(...args) {
EventEmitter.emit(this, ...args);
}
}
module.exports = EventEmitter;
const isEventHandler = listener =>
listener && handler in listener && typeof listener[handler] === "function";
const Services = require("Services");
const { getNthPathExcluding } = require("devtools/shared/platform/stack");
let loggingEnabled = false;
if (!isWorker) {
loggingEnabled = Services.prefs.getBoolPref("devtools.dump.emit");
Services.prefs.addObserver("devtools.dump.emit", {
observe: () => {
loggingEnabled = Services.prefs.getBoolPref("devtools.dump.emit");
},
});
}
function serialize(target) {
const MAXLEN = 60;
// Undefined
if (typeof target === "undefined") {
return "undefined";
}
if (target === null) {
return "null";
}
// Number / String
if (typeof target === "string" || typeof target === "number") {
return truncate(target, MAXLEN);
}
// HTML Node
if (target.nodeName) {
let out = target.nodeName;
if (target.id) {
out += "#" + target.id;
}
if (target.className) {
out += "." + target.className;
}
return out;
}
// Array
if (Array.isArray(target)) {
return truncate(target.toSource(), MAXLEN);
}
// Function
if (typeof target === "function") {
return `function ${target.name ? target.name : "anonymous"}()`;
}
// Window
if (
target.constructor &&
target.constructor.name &&
target.constructor.name === "Window"
) {
return `window (${target.location.origin})`;
}
// Object
if (typeof target === "object") {
let out = "{";
const entries = Object.entries(target);
for (let i = 0; i < Math.min(10, entries.length); i++) {
const [name, value] = entries[i];
if (i > 0) {
out += ", ";
}
out += `${name}: ${truncate(value, MAXLEN)}`;
}
return out + "}";
}
// Other
return truncate(target.toSource(), MAXLEN);
}
function truncate(value, maxLen) {
// We don't use value.toString() because it can throw.
const str = String(value);
return str.length > maxLen ? str.substring(0, maxLen) + "..." : str;
}
function logEvent(type, args) {
if (!loggingEnabled) {
return;
}
let argsOut = "";
// We need this try / catch to prevent any dead object errors.
try {
argsOut = `${args.map(serialize).join(", ")}`;
} catch (e) {
// Object is dead so the toolbox is most likely shutting down,
// do nothing.
}
const path = getNthPathExcluding(0, "devtools/shared/event-emitter.js");
if (args.length > 0) {
dump(`EMITTING: emit(${type}, ${argsOut}) from ${path}\n`);
} else {
dump(`EMITTING: emit(${type}) from ${path}\n`);
}
}