158 lines
3.8 KiB
TypeScript
158 lines
3.8 KiB
TypeScript
import AsyncLock from "async-lock";
|
|
import { Utils } from "./utils";
|
|
|
|
import type {
|
|
IncrementsRepository,
|
|
CLIENT_INCREMENT,
|
|
CLIENT_MESSAGE,
|
|
PULL_PAYLOAD,
|
|
PUSH_PAYLOAD,
|
|
RELAY_PAYLOAD,
|
|
SERVER_MESSAGE,
|
|
SERVER_INCREMENT,
|
|
} from "./protocol";
|
|
|
|
// CFDO: message could be binary (cbor, protobuf, etc.)
|
|
|
|
/**
|
|
* Core excalidraw sync logic.
|
|
*/
|
|
export class ExcalidrawSyncServer {
|
|
private readonly lock: AsyncLock = new AsyncLock();
|
|
private readonly sessions: Set<WebSocket> = new Set();
|
|
|
|
constructor(private readonly incrementsRepository: IncrementsRepository) {}
|
|
|
|
public onConnect(client: WebSocket) {
|
|
this.sessions.add(client);
|
|
}
|
|
|
|
public onDisconnect(client: WebSocket) {
|
|
this.sessions.delete(client);
|
|
}
|
|
|
|
public onMessage(client: WebSocket, message: string) {
|
|
const [result, error] = Utils.try<CLIENT_MESSAGE>(() =>
|
|
JSON.parse(message),
|
|
);
|
|
|
|
if (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
|
|
const { type, payload } = result;
|
|
switch (type) {
|
|
case "relay":
|
|
return this.relay(client, payload);
|
|
case "pull":
|
|
return this.pull(client, payload);
|
|
case "push":
|
|
// apply each one-by-one to avoid race conditions
|
|
// CFDO: in theory we do not need to block ephemeral appState changes
|
|
return this.lock.acquire("push", () => this.push(client, payload));
|
|
default:
|
|
console.error(`Unknown message type: ${type}`);
|
|
}
|
|
}
|
|
|
|
private pull(client: WebSocket, payload: PULL_PAYLOAD) {
|
|
// CFDO: test for invalid payload
|
|
const lastAcknowledgedClientVersion = payload.lastAcknowledgedVersion;
|
|
const lastAcknowledgedServerVersion =
|
|
this.incrementsRepository.getLastVersion();
|
|
|
|
const versionΔ =
|
|
lastAcknowledgedServerVersion - lastAcknowledgedClientVersion;
|
|
|
|
if (versionΔ < 0) {
|
|
// CFDO: restore the client from the snapshot / deltas?
|
|
console.error(
|
|
`Panic! Client claims to have higher acknowledged version than the latest one on the server!`,
|
|
);
|
|
return;
|
|
}
|
|
|
|
const increments: SERVER_INCREMENT[] = [];
|
|
|
|
if (versionΔ > 0) {
|
|
increments.push(
|
|
...this.incrementsRepository.getSinceVersion(
|
|
lastAcknowledgedClientVersion,
|
|
),
|
|
);
|
|
}
|
|
|
|
this.send(client, {
|
|
type: "acknowledged",
|
|
payload: {
|
|
increments,
|
|
},
|
|
});
|
|
}
|
|
|
|
private push(client: WebSocket, payload: PUSH_PAYLOAD) {
|
|
const { type, increments } = payload;
|
|
|
|
switch (type) {
|
|
case "ephemeral":
|
|
return this.relay(client, { increments });
|
|
case "durable":
|
|
// CFDO: try to apply the increments to the snapshot
|
|
const [acknowledged, error] = Utils.try(() =>
|
|
this.incrementsRepository.saveAll(increments),
|
|
);
|
|
|
|
if (error) {
|
|
// everything should be automatically rolled-back -> double-check
|
|
return this.send(client, {
|
|
type: "rejected",
|
|
payload: {
|
|
message: error.message,
|
|
increments,
|
|
},
|
|
});
|
|
}
|
|
|
|
return this.broadcast({
|
|
type: "acknowledged",
|
|
payload: {
|
|
increments: acknowledged,
|
|
},
|
|
});
|
|
default:
|
|
console.error(`Unknown message type: ${type}`);
|
|
}
|
|
}
|
|
|
|
private relay(
|
|
client: WebSocket,
|
|
payload: { increments: Array<CLIENT_INCREMENT> } | RELAY_PAYLOAD,
|
|
) {
|
|
return this.broadcast(
|
|
{
|
|
type: "relayed",
|
|
payload,
|
|
},
|
|
client,
|
|
);
|
|
}
|
|
|
|
private send(client: WebSocket, message: SERVER_MESSAGE) {
|
|
const msg = JSON.stringify(message);
|
|
client.send(msg);
|
|
}
|
|
|
|
private broadcast(message: SERVER_MESSAGE, exclude?: WebSocket) {
|
|
const msg = JSON.stringify(message);
|
|
|
|
for (const ws of this.sessions) {
|
|
if (ws === exclude) {
|
|
continue;
|
|
}
|
|
|
|
ws.send(msg);
|
|
}
|
|
}
|
|
}
|