aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedDirectTarget.java
blob: 2417cd1b86a152631d1842423830310f4cebbf85 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.dns;

import com.yahoo.config.provision.zone.ZoneId;

import java.util.Objects;

/**
 * An implementation of {@link DirectTarget} where is requests are answered based on the weight assigned to the
 * record, as a proportion of the total weight for all records having the same DNS name.
 * <p>
 * The portion of received traffic is calculated as follows: (record weight / sum of the weights of all records).
 *
 * @author freva
 */
public final class WeightedDirectTarget extends DirectTarget {

    static final String TARGET_TYPE = "weighted";

    private final long weight;

    public WeightedDirectTarget(RecordData recordData,  ZoneId zone, long weight) {
        super(recordData, zone.value());
        this.weight = weight;
        if (weight < 0) throw new IllegalArgumentException("Weight cannot be negative");
    }

    /** The weight of this target */
    public long weight() {
        return weight;
    }

    @Override
    public RecordData pack() {
        return RecordData.from(String.join("/", TARGET_TYPE, recordData().asString(), id(), Long.toString(weight)));
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        if (!super.equals(o)) return false;
        WeightedDirectTarget that = (WeightedDirectTarget) o;
        return weight == that.weight;
    }

    @Override
    public int hashCode() {
        return Objects.hash(super.hashCode(), weight);
    }

    @Override
    public String toString() {
        return "weighted target for " + recordData() + "[id=" + id() + ",weight=" + weight + "]";
    }

    /** Unpack weighted alias from given record data */
    public static WeightedDirectTarget unpack(RecordData data) {
        var parts = data.asString().split("/");
        if (parts.length != 4) {
            throw new IllegalArgumentException("Expected data to be on format target-type/record-data/zone-id/weight, " +
                                               "but got " + data.asString());
        }
        if (!TARGET_TYPE.equals(parts[0])) {
            throw new IllegalArgumentException("Unexpected type '" + parts[0] + "'");
        }
        return new WeightedDirectTarget(RecordData.from(parts[1]), ZoneId.from(parts[2]), Long.parseLong(parts[3]));
    }

}