aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/FleetControllerId.java
blob: 7e346c221e6c627a3f6fe184a2967865f840b805 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

import java.util.Objects;

/**
 * Uniquely identifies a running FleetController: cluster name + index.
 *
 * @author hakon
 */
public class FleetControllerId {
    private final String clusterName;
    private final int index;

    public static FleetControllerId fromOptions(FleetControllerOptions options) {
        return new FleetControllerId(options.clusterName(), options.fleetControllerIndex());
    }

    public FleetControllerId(String clusterName, int index) {
        this.clusterName = clusterName;
        this.index = index;
    }

    public String clusterName() { return clusterName; }
    public int index() { return index; }

    @Override
    public String toString() {
        return "FleetController " + index + " for cluster '" + clusterName + '\'';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        FleetControllerId that = (FleetControllerId) o;
        return index == that.index && Objects.equals(clusterName, that.clusterName);
    }

    @Override
    public int hashCode() {
        return Objects.hash(clusterName, index);
    }
}