summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ApacheGatewayConnectionFactory.java
blob: 31ec8aa06a2afc42f11c9f3193f3b9c7ee7f17a2 (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
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.core.communication;

import com.yahoo.vespa.http.client.config.ConnectionParams;
import com.yahoo.vespa.http.client.config.Endpoint;
import com.yahoo.vespa.http.client.config.FeedParams;

import java.net.InetAddress;
import java.net.UnknownHostException;
import java.time.Clock;
import java.util.Objects;

/**
 * @author bratseth
 */
public class ApacheGatewayConnectionFactory implements GatewayConnectionFactory {

    private final Endpoint endpoint;
    private final FeedParams feedParams;
    private final String clusterSpecificRoute;
    private final ConnectionParams connectionParams;
    private final ApacheGatewayConnection.HttpClientFactory httpClientFactory;
    private final String clientId;
    private final Clock clock;

    public ApacheGatewayConnectionFactory(Endpoint endpoint,
                                          FeedParams feedParams,
                                          String clusterSpecificRoute,
                                          ConnectionParams connectionParams,
                                          ApacheGatewayConnection.HttpClientFactory httpClientFactory,
                                          String clientId,
                                          Clock clock) {
        this.endpoint = validate(endpoint);
        this.feedParams = feedParams;
        this.clusterSpecificRoute = clusterSpecificRoute;
        this.httpClientFactory = httpClientFactory;
        this.connectionParams = connectionParams;
        this.clientId = Objects.requireNonNull(clientId, "clientId cannot be null");
        this.clock = clock;
    }

    private static Endpoint validate(Endpoint endpoint) {
        try {
            InetAddress.getByName(endpoint.getHostname());
            return endpoint;
        }
        catch (UnknownHostException e) {
            throw new IllegalArgumentException("Unknown host: " + endpoint);
        }
    }

    @Override
    public GatewayConnection newConnection() {
        return new ApacheGatewayConnection(endpoint,
                                           feedParams,
                                           clusterSpecificRoute,
                                           connectionParams,
                                           httpClientFactory,
                                           clientId,
                                           clock);
    }

}