LEFT | RIGHT |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 /** @module messaging */ | 18 /** @module messaging */ |
19 | 19 |
20 "use strict"; | 20 "use strict"; |
21 | 21 |
22 /** | 22 /** |
23 * Communication port wrapping ext.onMessage to receive messages. | 23 * Communication port wrapping ext.onMessage to receive messages. |
24 * | 24 * |
25 * @constructor | 25 * @constructor |
26 */ | 26 */ |
27 function Port() | 27 function Port() |
28 { | 28 { |
29 this._callbacks = Object.create(null); | 29 this._callbacks = Object.create(null); |
30 ext.onMessage.addListener(this._onMessage.bind(this)); | 30 this._onMessage = this._onMessage.bind(this); |
| 31 ext.onMessage.addListener(this._onMessage); |
31 }; | 32 }; |
32 | 33 |
33 Port.prototype = { | 34 Port.prototype = { |
34 _onMessage: function(message, sender, sendResponse) | 35 _onMessage: function(message, sender, sendResponse) |
35 { | 36 { |
36 let async = false; | 37 let async = false; |
37 let callbacks = this._callbacks[message.type]; | 38 let callbacks = this._callbacks[message.type]; |
38 | 39 |
39 if (callbacks) | 40 if (callbacks) |
40 { | 41 { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 */ | 98 */ |
98 off: function(name, callback) | 99 off: function(name, callback) |
99 { | 100 { |
100 let callbacks = this._callbacks[name]; | 101 let callbacks = this._callbacks[name]; |
101 if (callbacks) | 102 if (callbacks) |
102 { | 103 { |
103 let idx = callbacks.indexOf(callback); | 104 let idx = callbacks.indexOf(callback); |
104 if (idx != -1) | 105 if (idx != -1) |
105 callbacks.splice(idx, 1); | 106 callbacks.splice(idx, 1); |
106 } | 107 } |
| 108 }, |
| 109 |
| 110 /** |
| 111 * Disables the port and makes it stop listening to incoming messages. |
| 112 */ |
| 113 disconnect: function() |
| 114 { |
| 115 ext.onMessage.removeListener(this._onMessage); |
107 } | 116 } |
108 }; | 117 }; |
109 | 118 |
110 /** | 119 /** |
111 * The default port to receive messages. | 120 * The default port to receive messages. |
112 * | 121 * |
113 * @type {Port} | 122 * @type {Port} |
114 */ | 123 */ |
115 exports.port = new Port(); | 124 exports.port = new Port(); |
| 125 |
| 126 /** |
| 127 * Creates a new port that is disconnected when the given window is unloaded. |
| 128 * |
| 129 * @param {Window} window |
| 130 * @return {Port} |
| 131 */ |
| 132 exports.getPort = function(window) |
| 133 { |
| 134 let port = new Port(); |
| 135 window.addEventListener("unload", () => |
| 136 { |
| 137 port.disconnect(); |
| 138 }); |
| 139 return port; |
| 140 }; |
| 141 |
LEFT | RIGHT |