aboutsummaryrefslogtreecommitdiffstats
path: root/flags/src/main/java/com/yahoo/vespa/flags/json/Condition.java
blob: 4bc86fd96f5c7b72472461cae6e33dd53bec2f83 (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 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.flags.json;

import com.yahoo.vespa.flags.FetchVector;
import com.yahoo.vespa.flags.json.wire.WireCondition;

import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;
import java.util.function.Predicate;

/**
 * @author hakonhall
 */
public class Condition implements Predicate<FetchVector> {
    public enum Type { WHITELIST, BLACKLIST }

    private final Type type;
    private final FetchVector.Dimension dimension;
    private final Set<String> values;

    public Condition(Type type, FetchVector.Dimension dimension, String... values) {
        this(type, dimension, new HashSet<>(Arrays.asList(values)));
    }

    public Condition(Type type, FetchVector.Dimension dimension, Set<String> values) {
        this.type = type;
        this.dimension = dimension;
        this.values = values;
    }

    @Override
    public boolean test(FetchVector vector) {
        boolean isMember = vector.getValue(dimension).filter(values::contains).isPresent();

        switch (type) {
            case WHITELIST: return isMember;
            case BLACKLIST: return !isMember;
            default: throw new IllegalArgumentException("Unknown type " + type);
        }
    }

    public static Condition fromWire(WireCondition wireCondition) {
        Objects.requireNonNull(wireCondition.type);
        Type type = Type.valueOf(wireCondition.type.toUpperCase());

        Objects.requireNonNull(wireCondition.dimension);
        FetchVector.Dimension dimension = DimensionHelper.fromWire(wireCondition.dimension);

        Set<String> values = wireCondition.values == null ? Collections.emptySet() : wireCondition.values;

        return new Condition(type, dimension, values);
    }

    public WireCondition toWire() {
        WireCondition wire = new WireCondition();
        wire.type = type.name().toLowerCase();
        wire.dimension = DimensionHelper.toWire(dimension);
        wire.values = values.isEmpty() ? null : values;
        return wire;
    }
}