aboutsummaryrefslogtreecommitdiffstats
path: root/socket_test/src/main/java/com/yahoo/socket/test/SocketTestApp.java
blob: 870ca8d7dacff14ab194eb1754018e624af4d174 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.socket.test;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;

/**
 * @author Simon Thoresen Hult
 */
public class SocketTestApp {

    private final static byte[] REQUEST = "foo".getBytes(StandardCharsets.UTF_8);
    private final static byte[] RESPONSE = "bar".getBytes(StandardCharsets.UTF_8);
    private static volatile int numRequests = 0;

    public static void main(String[] args) throws IOException {
        final boolean soLingerOn = Boolean.valueOf(args[0]);
        final int soLingerTime = Integer.valueOf(args[1]);
        final int numClients = Integer.valueOf(args[2]);
        final int sleepMillis = Integer.valueOf(args[3]);

        System.out.println("soLingerOn = " + soLingerOn);
        System.out.println("soLingerTime = " + soLingerTime);
        System.out.println("numClients = " + numClients);
        System.out.println("sleepMillis = " + sleepMillis);

        ServerSocket serverSocket = new ServerSocket(0);
        for (int i = 0; i < numClients; ++i) {
            new Client(serverSocket.getLocalPort()).start();
        }

        Executor workers = Executors.newFixedThreadPool(numClients);
        long prev = System.currentTimeMillis();
        while (true) {
            long next = System.currentTimeMillis();
            if (next > prev + 1000) {
                System.err.println((numRequests * 1000) / (next - prev));
                numRequests = 0;
                prev = next;
            }
            final Socket clientSocket = serverSocket.accept();
            clientSocket.setSoLinger(soLingerOn, soLingerTime);
            workers.execute(new Runnable() {

                @Override
                public void run() {
                    try {
                        InputStream in = clientSocket.getInputStream();
                        for (byte expected : REQUEST) {
                            int actual = in.read();
                            if (actual != expected) {
                                throw new AssertionError("Expected '" + expected + "', got '" + actual + "'.");
                            }
                        }
                        Thread.sleep(sleepMillis);
                        OutputStream out = clientSocket.getOutputStream();
                        out.write(RESPONSE);
                    } catch (Throwable t) {
                        t.printStackTrace();
                    } finally {
                        try {
                            clientSocket.close();
                        } catch (IOException e) {
                            e.printStackTrace();
                        }
                    }
                }
            });
        }
    }

    private static class Client extends Thread {

        final int port;

        Client(int port) throws IOException {
            this.port = port;
        }

        @Override
        public void run() {
            try {
                while (!isInterrupted()) {
                    Socket socket = new Socket("localhost", port);
                    OutputStream out = socket.getOutputStream();
                    out.write(REQUEST);

                    InputStream in = socket.getInputStream();
                    for (byte expected : RESPONSE) {
                        int actual = in.read();
                        if (actual != expected) {
                            throw new AssertionError("Expected '" + expected + "', got '" + actual + "'.");
                        }
                    }
                    socket.close();
                    ++numRequests;
                }
            } catch (Throwable t) {
                t.printStackTrace();
            }
        }
    }
}