2020-06-22 20:32:45 -07:00
|
|
|
const v8Util = process._linkedBinding('electron_common_v8_util');
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2019-06-15 01:18:25 -07:00
|
|
|
export class CallbacksRegistry {
|
|
|
|
private nextId: number = 0
|
2019-10-15 18:14:41 +02:00
|
|
|
private callbacks = new Map<number, Function>()
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2019-06-15 01:18:25 -07:00
|
|
|
add (callback: Function) {
|
2016-01-14 10:35:29 -08:00
|
|
|
// The callback is already added.
|
2020-03-20 13:28:31 -07:00
|
|
|
let id = v8Util.getHiddenValue<number>(callback, 'callbackId');
|
|
|
|
if (id != null) return id;
|
2017-11-16 00:04:33 -05:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
id = this.nextId += 1;
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2016-01-14 10:44:21 -08:00
|
|
|
// Capture the location of the function and put it in the ID string,
|
|
|
|
// so that release errors can be tracked down easily.
|
2020-03-20 13:28:31 -07:00
|
|
|
const regexp = /at (.*)/gi;
|
|
|
|
const stackString = (new Error()).stack;
|
|
|
|
if (!stackString) return;
|
2017-11-16 00:04:33 -05:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
let filenameAndLine;
|
|
|
|
let match;
|
2017-11-16 00:04:33 -05:00
|
|
|
|
2016-01-11 18:40:23 -08:00
|
|
|
while ((match = regexp.exec(stackString)) !== null) {
|
2020-03-20 13:28:31 -07:00
|
|
|
const location = match[1];
|
|
|
|
if (location.includes('(native)')) continue;
|
|
|
|
if (location.includes('(<anonymous>)')) continue;
|
|
|
|
if (location.includes('electron/js2c')) continue;
|
|
|
|
|
|
|
|
const ref = /([^/^)]*)\)?$/gi.exec(location);
|
|
|
|
if (ref) filenameAndLine = ref![1];
|
|
|
|
break;
|
2016-01-11 18:40:23 -08:00
|
|
|
}
|
2019-06-15 01:18:25 -07:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
this.callbacks.set(id, callback);
|
|
|
|
v8Util.setHiddenValue(callback, 'callbackId', id);
|
|
|
|
v8Util.setHiddenValue(callback, 'location', filenameAndLine);
|
|
|
|
return id;
|
2016-01-15 14:31:23 -08:00
|
|
|
}
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2019-06-15 01:18:25 -07:00
|
|
|
get (id: number) {
|
2020-03-20 13:28:31 -07:00
|
|
|
return this.callbacks.get(id) || function () {};
|
2016-01-15 14:31:23 -08:00
|
|
|
}
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2019-06-15 01:18:25 -07:00
|
|
|
apply (id: number, ...args: any[]) {
|
2020-03-20 13:28:31 -07:00
|
|
|
return this.get(id).apply(global, ...args);
|
2016-01-15 14:31:23 -08:00
|
|
|
}
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2019-06-15 01:18:25 -07:00
|
|
|
remove (id: number) {
|
2020-03-20 13:28:31 -07:00
|
|
|
const callback = this.callbacks.get(id);
|
2016-06-24 11:21:32 +09:00
|
|
|
if (callback) {
|
2020-03-20 13:28:31 -07:00
|
|
|
v8Util.deleteHiddenValue(callback, 'callbackId');
|
|
|
|
this.callbacks.delete(id);
|
2016-06-24 11:21:32 +09:00
|
|
|
}
|
2016-01-15 14:31:23 -08:00
|
|
|
}
|
|
|
|
}
|