aboutsummaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/Tags.java
blob: 285c01ecf6efd00327d9ae8907b8d06e94301ad8 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;

import java.util.Set;
import java.util.stream.Collectors;

/**
 * A deployment may have a list of tags associated with it. Config files may have variants for these tags similar
 * to how they may have variants for instance and zone.
 *
 * @author bratseth
 */
public class Tags {

    private final Set<String> tags;

    public Tags(Set<String> tags) {
        this.tags = Set.copyOf(tags);
    }

    public boolean contains(String tag) {
        return tags.contains(tag);
    }

    public boolean intersects(Tags other) {
        return this.tags.stream().anyMatch(other::contains);
    }

    public boolean isEmpty() { return tags.isEmpty(); }

    public boolean containsAll(Tags other) { return tags.containsAll(other.tags); }

    /** Returns this as a space-separated string which can be used to recreate this by calling fromString(). */
    public String asString() {
        return tags.stream().sorted().collect(Collectors.joining(" "));
    }

    @Override
    public String toString() {
        return asString();
    }

    @Override
    public boolean equals(Object other) {
        if (other == this) return true;
        if (other == null || other.getClass() != getClass()) return false;
        return tags.equals(((Tags)other).tags);
    }

    @Override
    public int hashCode() {
        return tags.hashCode();
    }

    public static Tags empty() { return new Tags(Set.of()); }

    /**
     * Creates this from a space-separated string or null. */
    public static Tags fromString(String tagsString) {
        if (tagsString == null || tagsString.isBlank()) return empty();
        return new Tags(Set.of(tagsString.trim().split(" +")));
    }

}