vector-im-hydrogen-web/src/matrix/room/sending/SendQueue.js

213 lines
7.6 KiB
JavaScript
Raw Normal View History

2020-08-05 18:38:55 +02:00
/*
Copyright 2020 Bruno Windels <bruno@windels.cloud>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import {SortedArray} from "../../../observable/list/SortedArray.js";
2020-04-19 19:05:12 +02:00
import {ConnectionError} from "../../error.js";
import {PendingEvent} from "./PendingEvent.js";
2020-09-03 15:36:17 +02:00
import {makeTxnId} from "../../common.js";
2019-07-01 10:00:29 +02:00
export class SendQueue {
constructor({roomId, storage, hsApi, pendingEvents}) {
pendingEvents = pendingEvents || [];
2019-07-26 22:03:57 +02:00
this._roomId = roomId;
this._storage = storage;
this._hsApi = hsApi;
2019-07-26 22:03:57 +02:00
this._pendingEvents = new SortedArray((a, b) => a.queueIndex - b.queueIndex);
if (pendingEvents.length) {
console.info(`SendQueue for room ${roomId} has ${pendingEvents.length} pending events`, pendingEvents);
}
this._pendingEvents.setManyUnsorted(pendingEvents.map(data => this._createPendingEvent(data)));
2019-07-26 22:03:57 +02:00
this._isSending = false;
2019-06-28 00:52:54 +02:00
this._offline = false;
this._roomEncryption = null;
}
_createPendingEvent(data, attachments = null) {
const pendingEvent = new PendingEvent({
data,
remove: () => this._removeEvent(pendingEvent),
emitUpdate: () => this._pendingEvents.set(pendingEvent),
attachments
});
return pendingEvent;
}
enableEncryption(roomEncryption) {
this._roomEncryption = roomEncryption;
2019-06-28 00:52:54 +02:00
}
2019-07-01 10:00:29 +02:00
async _sendLoop() {
2019-07-26 22:03:57 +02:00
this._isSending = true;
try {
for (let i = 0; i < this._pendingEvents.length; i += 1) {
const pendingEvent = this._pendingEvents.get(i);
try {
await this._sendEvent(pendingEvent);
} catch(err) {
if (err instanceof ConnectionError) {
this._offline = true;
break;
} else {
pendingEvent.setError(err);
2020-11-11 13:06:03 +01:00
}
}
2019-06-28 00:52:54 +02:00
}
2019-07-26 22:03:57 +02:00
} finally {
this._isSending = false;
2019-06-28 00:52:54 +02:00
}
}
async _sendEvent(pendingEvent) {
if (pendingEvent.needsUpload) {
await pendingEvent.uploadAttachments(this._hsApi);
console.log("attachments upload, content is now", pendingEvent.content);
await this._tryUpdateEvent(pendingEvent);
}
if (pendingEvent.needsEncryption) {
pendingEvent.setEncrypting();
const {type, content} = await this._roomEncryption.encrypt(
pendingEvent.eventType, pendingEvent.content, this._hsApi);
pendingEvent.setEncrypted(type, content);
await this._tryUpdateEvent(pendingEvent);
}
if (pendingEvent.needsSending) {
await pendingEvent.send(this._hsApi);
console.log("writing remoteId");
await this._tryUpdateEvent(pendingEvent);
}
}
removeRemoteEchos(events, txn) {
const removed = [];
for (const event of events) {
const txnId = event.unsigned && event.unsigned.transaction_id;
let idx;
if (txnId) {
idx = this._pendingEvents.array.findIndex(pe => pe.txnId === txnId);
} else {
idx = this._pendingEvents.array.findIndex(pe => pe.remoteId === event.event_id);
}
if (idx !== -1) {
const pendingEvent = this._pendingEvents.get(idx);
txn.pendingEvents.remove(pendingEvent.roomId, pendingEvent.queueIndex);
removed.push(pendingEvent);
}
}
return removed;
}
2019-06-28 00:52:54 +02:00
async _removeEvent(pendingEvent) {
const idx = this._pendingEvents.array.indexOf(pendingEvent);
if (idx !== -1) {
const txn = this._storage.readWriteTxn([this._storage.storeNames.pendingEvents]);
try {
txn.pendingEvents.remove(pendingEvent.roomId, pendingEvent.queueIndex);
} catch (err) {
txn.abort();
}
await txn.complete();
this._pendingEvents.remove(idx);
}
pendingEvent.dispose();
}
emitRemovals(pendingEvents) {
for (const pendingEvent of pendingEvents) {
const idx = this._pendingEvents.array.indexOf(pendingEvent);
if (idx !== -1) {
this._pendingEvents.remove(idx);
}
pendingEvent.dispose();
2019-07-26 22:03:57 +02:00
}
2019-06-28 00:52:54 +02:00
}
2019-07-26 22:03:57 +02:00
resumeSending() {
this._offline = false;
if (!this._isSending) {
this._sendLoop();
}
2019-06-28 00:52:54 +02:00
}
2019-07-01 10:00:29 +02:00
2020-11-13 17:19:19 +01:00
async enqueueEvent(eventType, content, attachments) {
const pendingEvent = await this._createAndStoreEvent(eventType, content, attachments);
2019-07-26 22:03:57 +02:00
this._pendingEvents.set(pendingEvent);
2019-09-15 12:25:14 +02:00
console.log("added to _pendingEvents set", this._pendingEvents.length);
2019-07-26 22:03:57 +02:00
if (!this._isSending && !this._offline) {
this._sendLoop();
}
2019-07-01 10:00:29 +02:00
}
2019-06-28 00:52:54 +02:00
2019-07-26 22:03:57 +02:00
get pendingEvents() {
return this._pendingEvents;
2019-07-01 10:00:29 +02:00
}
2019-07-26 22:03:57 +02:00
async _tryUpdateEvent(pendingEvent) {
const txn = this._storage.readWriteTxn([this._storage.storeNames.pendingEvents]);
console.log("_tryUpdateEvent: got txn");
2019-07-26 22:03:57 +02:00
try {
// pendingEvent might have been removed already here
// by a racing remote echo, so check first so we don't recreate it
console.log("_tryUpdateEvent: before exists");
2019-07-26 22:03:57 +02:00
if (await txn.pendingEvents.exists(pendingEvent.roomId, pendingEvent.queueIndex)) {
console.log("_tryUpdateEvent: inside if exists");
2019-07-26 22:03:57 +02:00
txn.pendingEvents.update(pendingEvent.data);
}
console.log("_tryUpdateEvent: after exists");
2019-07-26 22:03:57 +02:00
} catch (err) {
txn.abort();
console.log("_tryUpdateEvent: error", err);
2019-07-26 22:03:57 +02:00
throw err;
}
console.log("_tryUpdateEvent: try complete");
2019-07-26 22:03:57 +02:00
await txn.complete();
}
2019-07-01 10:00:29 +02:00
2020-11-13 17:19:19 +01:00
async _createAndStoreEvent(eventType, content, attachments) {
2019-09-15 12:25:14 +02:00
console.log("_createAndStoreEvent");
const txn = this._storage.readWriteTxn([this._storage.storeNames.pendingEvents]);
2019-07-26 22:03:57 +02:00
let pendingEvent;
try {
const pendingEventsStore = txn.pendingEvents;
2019-09-15 12:25:14 +02:00
console.log("_createAndStoreEvent getting maxQueueIndex");
2019-07-26 22:03:57 +02:00
const maxQueueIndex = await pendingEventsStore.getMaxQueueIndex(this._roomId) || 0;
2019-09-15 12:25:14 +02:00
console.log("_createAndStoreEvent got maxQueueIndex", maxQueueIndex);
2019-07-26 22:03:57 +02:00
const queueIndex = maxQueueIndex + 1;
pendingEvent = this._createPendingEvent({
2019-07-26 22:03:57 +02:00
roomId: this._roomId,
queueIndex,
eventType,
content,
txnId: makeTxnId(),
needsEncryption: !!this._roomEncryption,
needsUpload: !!attachments
2020-11-13 17:19:19 +01:00
}, attachments);
2019-09-15 12:25:14 +02:00
console.log("_createAndStoreEvent: adding to pendingEventsStore");
2019-07-26 22:03:57 +02:00
pendingEventsStore.add(pendingEvent.data);
} catch (err) {
txn.abort();
throw err;
}
2019-07-01 10:00:29 +02:00
await txn.complete();
2019-07-26 22:03:57 +02:00
return pendingEvent;
2019-07-01 10:00:29 +02:00
}
dispose() {
for (const pe in this._pendingEvents.array) {
pe.dispose();
}
}
2019-06-28 00:52:54 +02:00
}