*Switch to a different, simpler method of syncing protomux state
This commit is contained in:
parent
2e62597cd6
commit
1bd159c19e
108
src/index.ts
108
src/index.ts
|
@ -12,7 +12,6 @@ import { logErr } from "libkmodule/dist";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import Protomux from "protomux";
|
import Protomux from "protomux";
|
||||||
import { Mutex } from "async-mutex";
|
import { Mutex } from "async-mutex";
|
||||||
import defer from "p-defer";
|
|
||||||
|
|
||||||
const MAX_PEER_LISTENERS = 20;
|
const MAX_PEER_LISTENERS = 20;
|
||||||
|
|
||||||
|
@ -38,6 +37,7 @@ let moduleReady: Promise<void> = new Promise((resolve) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
onmessage = handleMessage;
|
onmessage = handleMessage;
|
||||||
|
|
||||||
function idFactory(start = 1) {
|
function idFactory(start = 1) {
|
||||||
let id = start;
|
let id = start;
|
||||||
|
|
||||||
|
@ -75,6 +75,7 @@ addHandler("socketClose", handleCloseSocketEvent);
|
||||||
addHandler("syncProtomux", handleSyncProtomux, {
|
addHandler("syncProtomux", handleSyncProtomux, {
|
||||||
receiveUpdates: true,
|
receiveUpdates: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
async function handlePresentSeed(aq: ActiveQuery) {
|
async function handlePresentSeed(aq: ActiveQuery) {
|
||||||
const pubkey = await ed.getPublicKey(aq.callerInput.rootKey);
|
const pubkey = await ed.getPublicKey(aq.callerInput.rootKey);
|
||||||
handlePresentSeedModule({
|
handlePresentSeedModule({
|
||||||
|
@ -295,6 +296,7 @@ async function handleJoin(aq: ActiveQuery) {
|
||||||
swarm.join(topic, { server: false });
|
swarm.join(topic, { server: false });
|
||||||
aq.respond();
|
aq.respond();
|
||||||
}
|
}
|
||||||
|
|
||||||
async function handleGetPeerByPubkey(aq: ActiveQuery) {
|
async function handleGetPeerByPubkey(aq: ActiveQuery) {
|
||||||
const { pubkey = null } = aq.callerInput;
|
const { pubkey = null } = aq.callerInput;
|
||||||
|
|
||||||
|
@ -333,6 +335,7 @@ async function handleInit(aq: ActiveQuery) {
|
||||||
|
|
||||||
aq.respond();
|
aq.respond();
|
||||||
}
|
}
|
||||||
|
|
||||||
async function handleReady(aq: ActiveQuery) {
|
async function handleReady(aq: ActiveQuery) {
|
||||||
const swarm = await getSwarm(aq);
|
const swarm = await getSwarm(aq);
|
||||||
|
|
||||||
|
@ -346,6 +349,7 @@ async function handleReady(aq: ActiveQuery) {
|
||||||
aq.respond();
|
aq.respond();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function handleListenConnections(aq: ActiveQuery) {
|
async function handleListenConnections(aq: ActiveQuery) {
|
||||||
const swarm = await getSwarm(aq);
|
const swarm = await getSwarm(aq);
|
||||||
const swarmId = getSwarmToSwarmId(swarm);
|
const swarmId = getSwarmToSwarmId(swarm);
|
||||||
|
@ -415,62 +419,69 @@ async function handleSyncProtomux(aq: ActiveQuery) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!("action" in aq.callerInput)) {
|
||||||
|
aq.reject("action required");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!("data" in aq.callerInput)) {
|
||||||
|
aq.reject("data required");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isNaN(parseInt(aq.callerInput))) {
|
||||||
|
aq.reject("data must be a number");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const mux = Protomux.from(socket);
|
const mux = Protomux.from(socket);
|
||||||
const mutex: Mutex = mux.mutex ?? new Mutex();
|
let mutex: Mutex | null = null;
|
||||||
if (!mux.mutex) {
|
if (mux.mutex) {
|
||||||
|
mutex = mux.mutex;
|
||||||
|
}
|
||||||
|
if (!mutex) {
|
||||||
|
mutex = new Mutex();
|
||||||
mux.mutex = mutex;
|
mux.mutex = mutex;
|
||||||
}
|
}
|
||||||
|
|
||||||
socket.once("close", () => {
|
await mutex.acquire();
|
||||||
socket.off("syncProtomux", sync);
|
|
||||||
aq.respond();
|
|
||||||
});
|
|
||||||
|
|
||||||
const send = (mux: any) => {
|
const data = aq.callerInput.data;
|
||||||
aq.sendUpdate({
|
|
||||||
remote: Object.keys(mux._remote),
|
|
||||||
local: Object.keys(mux._local),
|
|
||||||
free: mux._free,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const sync = () => send(mux);
|
let ret;
|
||||||
|
|
||||||
if (!mux.syncState) {
|
switch (aq.callerInput.action) {
|
||||||
mux.syncState = socket.emit.bind(socket, "syncProtomux");
|
case "popFree":
|
||||||
|
if (mux._free.includes(data)) {
|
||||||
|
mux._free[mux._free.indexOf(data)] = null;
|
||||||
|
mux._free = mux._free.filter((item: number) => item !== null);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "pushFree":
|
||||||
|
mux._free.push(data);
|
||||||
|
mux._free = Array.from(new Set(mux._free));
|
||||||
|
break;
|
||||||
|
case "pushLocal":
|
||||||
|
if (typeof mux._local[data] === "undefined") {
|
||||||
|
mux._local[data] = null;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "pushRemote":
|
||||||
|
if (typeof mux._remote[data] === "undefined") {
|
||||||
|
mux._remote[data] = null;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "pullFree":
|
||||||
|
ret = Object.values(mux._free);
|
||||||
|
break;
|
||||||
|
case "pullLocal":
|
||||||
|
ret = Object.keys(mux._local);
|
||||||
|
break;
|
||||||
|
case "pullRemote":
|
||||||
|
ret = Object.keys(mux._remote);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
socket.on("syncProtomux", sync);
|
aq.respond(ret);
|
||||||
|
|
||||||
aq.setReceiveUpdate?.(async (data: any) => {
|
|
||||||
await mutex.acquire();
|
|
||||||
|
|
||||||
["remote", "local"].forEach((field) => {
|
|
||||||
const rField = `_${field}`;
|
|
||||||
data[field].forEach((item: any) => {
|
|
||||||
item = parseInt(item);
|
|
||||||
if (typeof mux[rField][item] === "undefined") {
|
|
||||||
while (item > mux[rField].length) {
|
|
||||||
mux[rField].push(null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (typeof mux[rField][item] === "undefined") {
|
|
||||||
mux[rField][item] = null;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
data.free.forEach((index: number) => {
|
|
||||||
if (mux._free[index] === null) {
|
|
||||||
mux._free[index] = undefined;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
mux._free = mux._free.filter((item: any) => item !== undefined);
|
|
||||||
aq.sendUpdate(true);
|
|
||||||
socket.emit("syncProtomux");
|
|
||||||
|
|
||||||
mutex.release();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getSwarmToSocketConnectionId(socket: any) {
|
function getSwarmToSocketConnectionId(socket: any) {
|
||||||
|
@ -482,6 +493,7 @@ function getSwarmToSocketConnectionId(socket: any) {
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getSwarmToSwarmId(swarm: any) {
|
function getSwarmToSwarmId(swarm: any) {
|
||||||
for (const swarmInstance of swarmInstances) {
|
for (const swarmInstance of swarmInstances) {
|
||||||
if (swarmInstance[1] === swarm) {
|
if (swarmInstance[1] === swarm) {
|
||||||
|
|
Loading…
Reference in New Issue