summaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/main/java/com/yahoo/config/provision/ZoneId.java
blob: 169c513313024e8d11442e63d554cce6f9cac38a (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;

import java.util.Objects;

/**
 * Unique identifier for a Zone; use when referencing them.
 *
 * Serialised form is 'environment.region'.
 *
 * @author jvenstad
 */
public class ZoneId {

    protected final Environment environment;
    protected final RegionName region;

    public ZoneId(Environment environment, RegionName region) {
        this.environment = Objects.requireNonNull(environment);
        this.region = Objects.requireNonNull(region);
    }

    public static ZoneId from(Environment environment, RegionName region) {
        return new ZoneId(environment, region);
    }

    public static ZoneId from(String environment, String region) {
        return from(Environment.from(environment), RegionName.from(region));
    }

    public static ZoneId from(String value) {
        String[] parts = value.split("\\.");
        return from(parts[0], parts[1]);
    }

    public Environment environment() {
        return environment;
    }

    public RegionName region() {
        return region;
    }

    public String value() {
        return environment + "." + region;
    }

    @Override
    public String toString() {
        return "zone " + value();
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if ( ! (o instanceof ZoneId)) return false;
        ZoneId id = (ZoneId) o;
        return environment == id.environment &&
               Objects.equals(region, id.region);
    }

    @Override
    public int hashCode() {
        return Objects.hash(environment, region);
    }

}