summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/same/benchmark/HttpClientBenchmark.java
blob: fc315c4c7f5f053b04cc73f8c80a0b97ffbd04d9 (plain)
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
package com.orbekk.same.benchmark;

import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.CountDownLatch;

import com.google.protobuf.RpcCallback;
import com.googlecode.jsonrpc4j.ProxyUtil;
import com.orbekk.net.MyJsonRpcHttpClient;
import com.orbekk.protobuf.Rpc;
import com.orbekk.protobuf.RpcChannel;
import com.orbekk.same.benchmark.Example.Data;

public class HttpClientBenchmark {
    private final HttpExampleService service;
    private final int warmupIterations;
    private final int iterations;
    
    public static void benchmark(String url, int warmupIterations,
            int iterations) throws InterruptedException {
        MyJsonRpcHttpClient client;
        try {
            client = new MyJsonRpcHttpClient(
                    new URL(url), 2000, 2000);
        } catch (MalformedURLException e) {
            e.printStackTrace();
            throw new RuntimeException(e);
        }
        HttpExampleService service = ProxyUtil.createProxy(
                HttpClientBenchmark.class.getClassLoader(),
                HttpExampleService.class,
                client);
        HttpClientBenchmark benchmark = new HttpClientBenchmark(
                service, warmupIterations, iterations);
        benchmark.benchmark();
    }
    
    public HttpClientBenchmark(HttpExampleService service,
            int warmupIterations, int iterations) {
        this.service = service;
        this.warmupIterations = warmupIterations;
        this.iterations = iterations;
    }
    
    private void runBenchmark(int iterations) throws InterruptedException {
        final CountDownLatch finished =
                new CountDownLatch(iterations);
        
        for (int i = 0; i < iterations; i++) {
            service.methodA("", iterations, 0);
            finished.countDown();
        }
        
        finished.await();
    }
    
    public void benchmark() throws InterruptedException {
        long warmupStart = System.currentTimeMillis();
        runBenchmark(warmupIterations);
        long warmupFinished = System.currentTimeMillis();
        System.out.println("Warmup: " + warmupIterations + " in " +
                (warmupFinished - warmupStart) + "ms. ");
        long start = System.currentTimeMillis();
        runBenchmark(iterations);
        long finished = System.currentTimeMillis();
        System.out.println("Benchmark: " + iterations+ " in " +
                (finished - start) + "ms. ");
    }
    
    public static void main(String[] args) {
        if (args.length < 1) {
            System.err.println("Usage: ClientBenchmark <url>");
            System.exit(1);
        }
        String url = args[0];
        try {
            benchmark(url, 1000, 10000);
        } catch (InterruptedException e) {
            System.out.println("Benchmark failed.");
        }
    }
}