2019-08-17 22:50:48 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2019-2020 Yomichan Authors
|
2019-08-17 22:50:48 +00:00
|
|
|
*
|
|
|
|
* 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
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-08-17 22:50:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
class FrontendApiSender {
|
|
|
|
constructor() {
|
2020-05-02 16:50:44 +00:00
|
|
|
this._senderId = yomichan.generateId(16);
|
|
|
|
this._ackTimeout = 3000; // 3 seconds
|
|
|
|
this._responseTimeout = 10000; // 10 seconds
|
|
|
|
this._callbacks = new Map();
|
|
|
|
this._disconnected = false;
|
|
|
|
this._nextId = 0;
|
|
|
|
this._port = null;
|
2019-08-17 22:50:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
invoke(action, params, target) {
|
2020-05-02 16:50:44 +00:00
|
|
|
if (this._disconnected) {
|
2020-03-06 22:32:45 +00:00
|
|
|
// attempt to reconnect the next time
|
2020-05-02 16:50:44 +00:00
|
|
|
this._disconnected = false;
|
2019-10-08 01:04:58 +00:00
|
|
|
return Promise.reject(new Error('Disconnected'));
|
2019-08-17 22:50:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
if (this._port === null) {
|
|
|
|
this._createPort();
|
2019-09-14 15:58:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
const id = `${this._nextId}`;
|
|
|
|
++this._nextId;
|
2019-08-17 22:50:48 +00:00
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const info = {id, resolve, reject, ack: false, timer: null};
|
2020-05-02 16:50:44 +00:00
|
|
|
this._callbacks.set(id, info);
|
|
|
|
info.timer = setTimeout(() => this._onError(id, 'Timeout (ack)'), this._ackTimeout);
|
2019-08-17 22:50:48 +00:00
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
this._port.postMessage({id, action, params, target, senderId: this._senderId});
|
2019-08-17 22:50:48 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
_createPort() {
|
|
|
|
this._port = chrome.runtime.connect(null, {name: 'backend-api-forwarder'});
|
|
|
|
this._port.onDisconnect.addListener(this._onDisconnect.bind(this));
|
|
|
|
this._port.onMessage.addListener(this._onMessage.bind(this));
|
2019-09-14 15:58:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
_onMessage({type, id, data, senderId}) {
|
|
|
|
if (senderId !== this._senderId) { return; }
|
2019-08-17 22:50:48 +00:00
|
|
|
switch (type) {
|
|
|
|
case 'ack':
|
2020-05-02 16:50:44 +00:00
|
|
|
this._onAck(id);
|
2019-08-17 22:50:48 +00:00
|
|
|
break;
|
|
|
|
case 'result':
|
2020-05-02 16:50:44 +00:00
|
|
|
this._onResult(id, data);
|
2019-08-17 22:50:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
_onDisconnect() {
|
|
|
|
this._disconnected = true;
|
|
|
|
this._port = null;
|
2019-08-17 22:50:48 +00:00
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
for (const id of this._callbacks.keys()) {
|
|
|
|
this._onError(id, 'Disconnected');
|
2019-08-17 22:50:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
_onAck(id) {
|
|
|
|
const info = this._callbacks.get(id);
|
2019-12-21 19:30:13 +00:00
|
|
|
if (typeof info === 'undefined') {
|
2020-04-26 20:55:25 +00:00
|
|
|
yomichan.logWarning(new Error(`ID ${id} not found for ack`));
|
2019-08-17 22:50:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.ack) {
|
2020-04-26 20:55:25 +00:00
|
|
|
yomichan.logWarning(new Error(`Request ${id} already ack'd`));
|
2019-08-17 22:50:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
info.ack = true;
|
|
|
|
clearTimeout(info.timer);
|
2020-05-02 16:50:44 +00:00
|
|
|
info.timer = setTimeout(() => this._onError(id, 'Timeout (response)'), this._responseTimeout);
|
2019-08-17 22:50:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
_onResult(id, data) {
|
|
|
|
const info = this._callbacks.get(id);
|
2019-12-21 19:30:13 +00:00
|
|
|
if (typeof info === 'undefined') {
|
2020-04-26 20:55:25 +00:00
|
|
|
yomichan.logWarning(new Error(`ID ${id} not found`));
|
2019-08-17 22:50:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!info.ack) {
|
2020-04-26 20:55:25 +00:00
|
|
|
yomichan.logWarning(new Error(`Request ${id} not ack'd`));
|
2019-08-17 22:50:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
this._callbacks.delete(id);
|
2019-08-17 22:50:48 +00:00
|
|
|
clearTimeout(info.timer);
|
|
|
|
info.timer = null;
|
|
|
|
|
2019-10-08 01:04:58 +00:00
|
|
|
if (typeof data.error !== 'undefined') {
|
|
|
|
info.reject(jsonToError(data.error));
|
2019-08-17 22:50:48 +00:00
|
|
|
} else {
|
|
|
|
info.resolve(data.result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 16:50:44 +00:00
|
|
|
_onError(id, reason) {
|
|
|
|
const info = this._callbacks.get(id);
|
2019-12-21 19:30:13 +00:00
|
|
|
if (typeof info === 'undefined') { return; }
|
2020-05-02 16:50:44 +00:00
|
|
|
this._callbacks.delete(id);
|
2019-08-17 22:50:48 +00:00
|
|
|
info.timer = null;
|
2019-10-08 01:04:58 +00:00
|
|
|
info.reject(new Error(reason));
|
2019-08-17 22:50:48 +00:00
|
|
|
}
|
|
|
|
}
|