1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
uBlock/platform/chromium/vapi-client.js

271 lines
7.4 KiB
JavaScript
Raw Normal View History

/*******************************************************************************
µBlock - a browser extension to block requests.
Copyright (C) 2014 The µBlock authors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/uBlock
*/
// For non background pages
/******************************************************************************/
(function(self) {
'use strict';
/******************************************************************************/
2015-01-14 23:45:55 +01:00
var vAPI = self.vAPI = self.vAPI || {};
2015-01-02 03:14:53 +01:00
var chrome = self.chrome;
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/456
// Already injected?
2015-01-02 03:14:53 +01:00
if ( vAPI.vapiClientInjected ) {
//console.debug('vapi-client.js already injected: skipping.');
return;
}
2014-11-24 23:20:21 +01:00
vAPI.vapiClientInjected = true;
vAPI.sessionId = String.fromCharCode(Date.now() % 25 + 97) +
Math.random().toString(36).slice(2);
2014-11-24 23:20:21 +01:00
vAPI.chrome = true;
/******************************************************************************/
vAPI.setTimeout = vAPI.setTimeout || self.setTimeout.bind(self);
/******************************************************************************/
2015-04-08 01:34:22 +02:00
vAPI.shutdown = (function() {
var jobs = [];
var add = function(job) {
jobs.push(job);
};
var exec = function() {
//console.debug('Shutting down...');
var job;
while ( job = jobs.pop() ) {
job();
}
};
return {
add: add,
exec: exec
};
})();
/******************************************************************************/
vAPI.messaging = {
port: null,
channels: {},
pending: {},
auxProcessId: 1,
2015-06-26 06:08:41 +02:00
setup: function() {
this.port = chrome.runtime.connect({name: vAPI.sessionId});
this.port.onMessage.addListener(messagingConnector);
},
2015-06-26 06:08:41 +02:00
close: function() {
if ( this.port === null ) {
return;
}
this.port.disconnect();
this.port.onMessage.removeListener(messagingConnector);
this.port = null;
this.channels = {};
this.pending = {};
},
2015-06-28 23:42:08 +02:00
channel: function(channelName, callback) {
if ( !channelName ) {
return;
}
var channel = this.channels[channelName];
if ( channel instanceof MessagingChannel ) {
channel.addListener(callback);
channel.refCount += 1;
} else {
channel = this.channels[channelName] = new MessagingChannel(channelName, callback);
}
return channel;
2015-06-26 06:08:41 +02:00
}
};
/******************************************************************************/
var messagingConnector = function(details) {
if ( !details ) {
return;
}
2015-06-26 06:08:41 +02:00
var messaging = vAPI.messaging;
var channels = messaging.channels;
var channel;
2015-06-26 06:08:41 +02:00
// Sent to all channels
if ( details.broadcast === true && !details.channelName ) {
2014-11-24 16:40:05 +01:00
for ( channel in channels ) {
2015-06-26 06:08:41 +02:00
if ( channels[channel] instanceof MessagingChannel === false ) {
2014-11-24 16:40:05 +01:00
continue;
}
channels[channel].sendToListeners(details.msg);
}
return;
}
2015-06-26 06:08:41 +02:00
// Response to specific message previously sent
if ( details.auxProcessId ) {
var listener = messaging.pending[details.auxProcessId];
delete messaging.pending[details.auxProcessId];
delete details.auxProcessId; // TODO: why?
2015-06-26 06:08:41 +02:00
if ( listener ) {
listener(details.msg);
2015-06-26 06:08:41 +02:00
return;
}
}
// Sent to a specific channel
var response;
channel = channels[details.channelName];
2015-06-26 06:08:41 +02:00
if ( channel instanceof MessagingChannel ) {
response = channel.sendToListeners(details.msg);
}
// Respond back if required
if ( details.mainProcessId !== undefined ) {
messaging.port.postMessage({
mainProcessId: details.mainProcessId,
msg: response
});
2015-06-26 06:08:41 +02:00
}
};
/******************************************************************************/
var MessagingChannel = function(name, callback) {
this.channelName = name;
this.listeners = typeof callback === 'function' ? [callback] : [];
2015-06-26 06:08:41 +02:00
this.refCount = 1;
if ( typeof callback === 'function' ) {
var messaging = vAPI.messaging;
if ( messaging.port === null ) {
messaging.setup();
}
}
};
MessagingChannel.prototype.send = function(message, callback) {
this.sendTo(message, undefined, undefined, callback);
};
MessagingChannel.prototype.sendTo = function(message, toTabId, toChannel, callback) {
2015-06-26 06:08:41 +02:00
var messaging = vAPI.messaging;
if ( messaging.port === null ) {
messaging.setup();
}
var auxProcessId;
2015-06-26 06:08:41 +02:00
if ( callback ) {
auxProcessId = messaging.auxProcessId++;
messaging.pending[auxProcessId] = callback;
2015-06-26 06:08:41 +02:00
}
messaging.port.postMessage({
channelName: this.channelName,
auxProcessId: auxProcessId,
toTabId: toTabId,
toChannel: toChannel,
2015-06-26 06:08:41 +02:00
msg: message
});
};
MessagingChannel.prototype.close = function() {
this.refCount -= 1;
if ( this.refCount !== 0 ) {
return;
}
var messaging = vAPI.messaging;
delete messaging.channels[this.channelName];
if ( Object.keys(messaging.channels).length === 0 ) {
messaging.close();
}
2015-06-26 06:08:41 +02:00
};
2015-06-26 06:08:41 +02:00
MessagingChannel.prototype.addListener = function(callback) {
if ( typeof callback !== 'function' ) {
return;
}
if ( this.listeners.indexOf(callback) !== -1 ) {
throw new Error('Duplicate listener.');
}
this.listeners.push(callback);
2015-06-26 06:08:41 +02:00
var messaging = vAPI.messaging;
if ( messaging.port === null ) {
messaging.setup();
}
2015-06-26 06:08:41 +02:00
};
2015-06-26 06:08:41 +02:00
MessagingChannel.prototype.removeListener = function(callback) {
if ( typeof callback !== 'function' ) {
return;
}
var pos = this.listeners.indexOf(callback);
if ( pos === -1 ) {
throw new Error('Listener not found.');
}
this.listeners.splice(pos, 1);
};
2015-06-28 23:42:08 +02:00
MessagingChannel.prototype.removeAllListeners = function() {
this.listeners = [];
2015-06-28 23:42:08 +02:00
};
MessagingChannel.prototype.sendToListeners = function(msg) {
var response;
var listeners = this.listeners;
for ( var i = 0, n = listeners.length; i < n; i++ ) {
response = listeners[i](msg);
if ( response !== undefined ) {
break;
2015-06-26 06:08:41 +02:00
}
}
return response;
};
// https://www.youtube.com/watch?v=rT5zCHn0tsg
// https://www.youtube.com/watch?v=E-jS4e3zacI
/******************************************************************************/
2015-04-08 01:34:22 +02:00
// No need to have vAPI client linger around after shutdown if
// we are not a top window (because element picker can still
// be injected in top window).
if ( window !== window.top ) {
vAPI.shutdown.add(function() {
vAPI = null;
});
}
/******************************************************************************/
})(this);
/******************************************************************************/