aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/component/chain/dependencies/Dependencies.java
blob: 21e0f3ccad6a7e30cf0cc692a693c786a46f8c33 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.component.chain.dependencies;

import java.util.*;

import com.google.common.collect.ImmutableSet;

/**
 * Constraints for ordering ChainedComponents in chains. Immutable.
 *
 * @author Tony Vaagenes
 */
public class Dependencies {

    private final Set<String> provides;
    private final Set<String> before;
    private final Set<String> after;

    /**
     * Create from collections of strings, typically from config.
     */
    public Dependencies(Collection<String> provides, Collection<String> before, Collection<String> after) {
        this.provides = immutableSet(provides);
        this.before = immutableSet(before);
        this.after = immutableSet(after);
    }

    public static Dependencies emptyDependencies() {
        return new Dependencies(null, null, null);
    }

    public Dependencies union(Dependencies dependencies) {
        return new Dependencies(
                union(provides, dependencies.provides),
                union(before, dependencies.before),
                union(after, dependencies.after));
    }

    private Set<String> immutableSet(Collection<String> set) {
        if (set == null) return ImmutableSet.of();
        return ImmutableSet.copyOf(set);
    }

    private Set<String> union(Set<String> s1, Set<String> s2) {
        Set<String> result = new LinkedHashSet<>(s1);
        result.addAll(s2);
        return result;
    }

    @Override
    public String toString() {
        return "Dependencies{" +
                "provides=" + provides +
                ", before=" + before +
                ", after=" + after +
                '}';
    }

    public Set<String> provides() {
        return provides;
    }

    public Set<String> before() {
        return before;
    }

    public Set<String> after() {
        return after;
    }

}