aboutsummaryrefslogtreecommitdiff
path: root/bench/snippets/tcp-echo.node.mjs
blob: 3362b5a3c798f8049c5789a8a236cd754fbe4a43 (plain) (blame)
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
import { createRequire } from "node:module";
const net = createRequire(import.meta.url)("net");

const buffer = Buffer.from("Hello World!");
var counter = 0;
const handlers = {
  open() {
    if (!socket.data?.isServer) {
      if (!this.write(buffer)) {
        socket.data = { pending: buffer };
      }
    }
  },
  data(buffer) {
    if (!this.write(buffer)) {
      this.data = { pending: buffer.slice() };
      return;
    }
    counter++;
  },
  drain() {
    const pending = this.data?.pending;
    if (!pending) return;
    if (this.write(pending)) {
      this.data = undefined;
      counter++;
      return;
    }
  },
};

const server = net.createServer(function (socket) {
  socket.data = { isServer: true };
  socket.on("connection", handlers.open.bind(socket));
  socket.on("data", handlers.data.bind(socket));
  socket.on("drain", handlers.drain.bind(socket));
  socket.setEncoding("binary");
});

setInterval(() => {
  console.log("Wrote", counter, "messages");
  counter = 0;
}, 1000);

server.listen(8000);

const socket = net.connect({ host: "localhost", port: 8000 }, () => {});
socket.on("connection", handlers.open.bind(socket));
socket.on("data", handlers.data.bind(socket));
socket.on("drain", handlers.drain.bind(socket));
socket.setEncoding("binary");
socket.write(buffer);