aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/vespa/config/UrlDownloader.java
blob: 976fe5573ecbcc701055d491754984d81b4e595a (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config;

import com.yahoo.config.UrlReference;
import com.yahoo.jrt.Request;
import com.yahoo.jrt.Spec;
import com.yahoo.jrt.StringValue;
import com.yahoo.jrt.Supervisor;
import com.yahoo.jrt.Target;
import com.yahoo.jrt.Transport;
import com.yahoo.vespa.defaults.Defaults;

import java.io.File;
import java.time.Duration;
import java.util.logging.Logger;

import static java.util.logging.Level.FINE;

/**
 * @author lesters
 */
public class UrlDownloader {

    private static final Logger log = Logger.getLogger(UrlDownloader.class.getName());

    private static final int BASE_ERROR_CODE = 0x10000;
    public  static final int DOES_NOT_EXIST = BASE_ERROR_CODE + 1;
    public  static final int INTERNAL_ERROR = BASE_ERROR_CODE + 2;
    public  static final int HTTP_ERROR = BASE_ERROR_CODE + 3;

    private final Supervisor supervisor = new Supervisor(new Transport("url-downloader"));
    private final Spec spec;
    private Target target;

    public UrlDownloader() {
        spec = new Spec(Defaults.getDefaults().vespaHostname(), Defaults.getDefaults().vespaConfigProxyRpcPort());
    }

    public void shutdown() {
        supervisor.transport().shutdown().join();
    }

    private void connect() {
        int timeRemaining = 5000;
        try {
            while (timeRemaining > 0) {
                target = supervisor.connect(spec);
                // ping to check if connection is working
                Request request = new Request("frt.rpc.ping");
                target.invokeSync(request, Duration.ofSeconds(5));
                if (! request.isError()) {
                    log.log(FINE, () -> "Successfully connected to '" + spec + "', this = " + System.identityHashCode(this));
                    return;
                } else {
                    target.close();
                }
                Thread.sleep(500);
                timeRemaining -= 500;
            }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    public boolean isValid() {
        return target != null && target.isValid();
    }

   public File waitFor(UrlReference urlReference, Duration timeout) {
        if (! isValid())
            connect();

       Request request = new Request("url.waitFor");
       request.parameters().add(new StringValue(urlReference.value()));

       double rpcTimeout = timeout.toSeconds();
       log.log(FINE, () -> "InvokeSync waitFor " + urlReference + " with " + rpcTimeout + " seconds timeout");
       target.invokeSync(request, rpcTimeout);

       if (request.checkReturnTypes("s")) {
           return new File(request.returnValues().get(0).asString());
       } else if (! request.isError()) {
           throw new RuntimeException("Invalid response: " + request.returnValues());
       } else {
           throw new RuntimeException("Wait for " + urlReference + " failed: " + request.errorMessage() + " (" + request.errorCode() + ")");
       }
    }

}