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

package com.yahoo.vespa.filedistribution;

import com.yahoo.config.FileReference;

import java.io.File;
import java.util.Objects;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;

public class FileReferenceDownload {

    private final FileReference fileReference;
    private final CompletableFuture<Optional<File>> future;
    // If a config server wants to download from another config server (because it does not have the
    // file itself) we set this flag to false to avoid an eternal loop
    private final boolean downloadFromOtherSourceIfNotFound;
    private final String client;

    public FileReferenceDownload(FileReference fileReference, String client) {
        this(fileReference, client, true);
    }

    public FileReferenceDownload(FileReference fileReference, String client, boolean downloadFromOtherSourceIfNotFound) {
        Objects.requireNonNull(fileReference, "file reference cannot be null");
        this.fileReference = fileReference;
        this.future = new CompletableFuture<>();
        this.downloadFromOtherSourceIfNotFound = downloadFromOtherSourceIfNotFound;
        this.client = client;
    }

    public FileReference fileReference() {
        return fileReference;
    }

    CompletableFuture<Optional<File>> future() {
        return future;
    }

    public boolean downloadFromOtherSourceIfNotFound() {
        return downloadFromOtherSourceIfNotFound;
    }

    public String client() { return client;  }

    @Override
    public String toString() {
        return fileReference + ", client: " + client;
    }

}