2019-02-27 22:50:08 +01:00
|
|
|
import EventEmitter from "../../EventEmitter.js";
|
2019-02-10 21:25:29 +01:00
|
|
|
import RoomSummary from "./summary.js";
|
2019-06-01 15:40:21 +02:00
|
|
|
import SyncWriter from "./timeline/persistence/SyncWriter.js";
|
2019-05-12 20:26:03 +02:00
|
|
|
import Timeline from "./timeline/Timeline.js";
|
2019-05-12 20:24:06 +02:00
|
|
|
import FragmentIdComparer from "./timeline/FragmentIdComparer.js";
|
2019-07-26 22:33:33 +02:00
|
|
|
import SendQueue from "./sending/SendQueue.js";
|
2018-12-21 14:35:24 +01:00
|
|
|
|
2019-02-20 23:48:16 +01:00
|
|
|
export default class Room extends EventEmitter {
|
2019-07-26 22:33:33 +02:00
|
|
|
constructor({roomId, storage, hsApi, emitCollectionChange, sendScheduler, pendingEvents}) {
|
2019-02-20 23:48:16 +01:00
|
|
|
super();
|
2019-03-08 20:03:18 +01:00
|
|
|
this._roomId = roomId;
|
|
|
|
this._storage = storage;
|
|
|
|
this._hsApi = hsApi;
|
2019-02-10 21:25:29 +01:00
|
|
|
this._summary = new RoomSummary(roomId);
|
2019-05-12 20:24:06 +02:00
|
|
|
this._fragmentIdComparer = new FragmentIdComparer([]);
|
2019-06-01 15:40:21 +02:00
|
|
|
this._syncWriter = new SyncWriter({roomId, storage, fragmentIdComparer: this._fragmentIdComparer});
|
2019-02-20 23:48:16 +01:00
|
|
|
this._emitCollectionChange = emitCollectionChange;
|
2019-07-26 22:33:33 +02:00
|
|
|
this._sendQueue = new SendQueue({roomId, storage, sendScheduler, pendingEvents});
|
2019-02-27 22:50:08 +01:00
|
|
|
this._timeline = null;
|
2018-12-21 14:35:24 +01:00
|
|
|
}
|
|
|
|
|
2019-06-02 00:49:47 +02:00
|
|
|
async persistSync(roomResponse, membership, txn) {
|
2019-02-27 22:50:08 +01:00
|
|
|
const summaryChanged = this._summary.applySync(roomResponse, membership, txn);
|
2019-06-02 00:49:47 +02:00
|
|
|
const newTimelineEntries = await this._syncWriter.writeSync(roomResponse, txn);
|
2019-07-26 22:33:33 +02:00
|
|
|
let removedPendingEvents;
|
|
|
|
if (roomResponse.timeline && roomResponse.timeline.events) {
|
|
|
|
removedPendingEvents = this._sendQueue.removeRemoteEchos(roomResponse.timeline.events, txn);
|
|
|
|
}
|
|
|
|
return {summaryChanged, newTimelineEntries, removedPendingEvents};
|
2019-02-27 19:27:45 +01:00
|
|
|
}
|
|
|
|
|
2019-07-26 22:33:33 +02:00
|
|
|
emitSync({summaryChanged, newTimelineEntries, removedPendingEvents}) {
|
2019-02-27 22:50:08 +01:00
|
|
|
if (summaryChanged) {
|
2019-02-20 23:48:16 +01:00
|
|
|
this.emit("change");
|
2019-02-27 23:22:47 +01:00
|
|
|
this._emitCollectionChange(this);
|
2019-02-20 23:48:16 +01:00
|
|
|
}
|
2019-02-27 22:50:08 +01:00
|
|
|
if (this._timeline) {
|
|
|
|
this._timeline.appendLiveEntries(newTimelineEntries);
|
|
|
|
}
|
2019-07-26 22:33:33 +02:00
|
|
|
if (removedPendingEvents) {
|
|
|
|
this._sendQueue.emitRemovals(removedPendingEvents);
|
|
|
|
}
|
2018-12-21 14:35:24 +01:00
|
|
|
}
|
|
|
|
|
2019-07-26 22:40:39 +02:00
|
|
|
resumeSending() {
|
|
|
|
this._sendQueue.resumeSending();
|
|
|
|
}
|
|
|
|
|
2019-02-10 21:25:29 +01:00
|
|
|
load(summary, txn) {
|
|
|
|
this._summary.load(summary);
|
2019-06-01 15:40:21 +02:00
|
|
|
return this._syncWriter.load(txn);
|
2018-12-21 14:35:24 +01:00
|
|
|
}
|
2019-02-26 22:45:58 +01:00
|
|
|
|
2019-07-26 22:33:33 +02:00
|
|
|
sendEvent(eventType, content) {
|
|
|
|
this._sendQueue.enqueueEvent(eventType, content);
|
|
|
|
}
|
|
|
|
|
2019-02-26 22:45:58 +01:00
|
|
|
get name() {
|
|
|
|
return this._summary.name;
|
|
|
|
}
|
2019-02-26 23:27:06 +01:00
|
|
|
|
|
|
|
get id() {
|
|
|
|
return this._roomId;
|
|
|
|
}
|
2019-02-27 22:50:08 +01:00
|
|
|
|
|
|
|
async openTimeline() {
|
|
|
|
if (this._timeline) {
|
|
|
|
throw new Error("not dealing with load race here for now");
|
|
|
|
}
|
|
|
|
this._timeline = new Timeline({
|
|
|
|
roomId: this.id,
|
|
|
|
storage: this._storage,
|
2019-03-08 20:03:18 +01:00
|
|
|
hsApi: this._hsApi,
|
2019-05-12 20:26:03 +02:00
|
|
|
fragmentIdComparer: this._fragmentIdComparer,
|
2019-07-26 22:33:33 +02:00
|
|
|
pendingEvents: this._sendQueue.pendingEvents,
|
2019-02-27 22:50:08 +01:00
|
|
|
closeCallback: () => this._timeline = null,
|
|
|
|
});
|
|
|
|
await this._timeline.load();
|
|
|
|
return this._timeline;
|
|
|
|
}
|
2019-02-20 23:48:16 +01:00
|
|
|
}
|
2019-02-27 22:50:08 +01:00
|
|
|
|