aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client-api/src/main/java/ai/vespa/feed/client/Helper.java
blob: 59c12077bef0577a97a05754bd415b99591585a4 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.feed.client;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import java.util.stream.Collectors;

/**
 * @author bjorncs
 */
class Helper {

    private Helper() {}

    @SafeVarargs
    static List<Result> await(CompletableFuture<Result>... promises) throws MultiFeedException {
        List<CompletableFuture<Result>> list = new ArrayList<>();
        for (CompletableFuture<Result> p : promises) list.add(p);
        return await(list);
    }

    static List<Result> await(List<CompletableFuture<Result>> promises) throws MultiFeedException {
        try {
            CompletableFuture.allOf(promises.toArray(new CompletableFuture<?>[0])).join();
            return promises.stream()
                    .map(p -> Objects.requireNonNull(p.getNow(null)))
                    .collect(Collectors.toList());
        } catch (CompletionException e) {
            List<FeedException> exceptions = new ArrayList<>();
            for (CompletableFuture<Result> promise : promises) {
                if (promise.isCompletedExceptionally()) {
                    // Lambda is executed on this thread since the future is already completed
                    promise.whenComplete((__, error) -> exceptions.add((FeedException) error));
                }
            }
            throw new MultiFeedException(exceptions);
        }
    }
}