-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
executable file
·58 lines (52 loc) · 1.55 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env -S deno run
import { readline } from "https://deno.land/x/[email protected]/mod.ts";
import { AllInputMessagesSchema } from "./message.ts";
import { match } from "npm:ts-pattern";
import {
handleEchoMessage,
handleGenerateMessage,
handleInitMessage,
handleTopologyMessage,
} from "./handler/index.ts";
import { handleBroadcast, handleRead } from "./handler/broadcast.ts";
const stdlin = Deno.stdin;
export type NodeData = {
nodeId?: string;
allNodes: Array<string>;
sequence: number;
topology: Array<string>;
msgId: number;
uniqueMsgId(): number;
};
const nodeData: NodeData = {
sequence: 0,
allNodes: [],
topology: [],
msgId: 0,
uniqueMsgId() {
return this.msgId++;
},
};
for await (const encodedLine of readline(stdlin)) {
const line = new TextDecoder().decode(encodedLine);
console.error(line);
const message = AllInputMessagesSchema.parse(JSON.parse(line));
match(message)
.with({ body: { type: "init" } }, (message) => {
const { nodeId, allNodes } = handleInitMessage(message);
nodeData.nodeId = nodeId;
nodeData.allNodes = allNodes;
})
.with({ body: { type: "echo" } }, handleEchoMessage)
.with({ body: { type: "generate" } }, (message) => {
handleGenerateMessage(message, nodeData);
})
.with({ body: { type: "topology" } }, (message) => {
handleTopologyMessage(message, nodeData);
})
.with({ body: { type: "broadcast" } }, (message) => {
handleBroadcast(message, nodeData);
})
.with({ body: { type: "read" } }, handleRead)
.exhaustive();
}