aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/ContentClusterStats.java
blob: a10f6ada338a7ebc7306f5966f5449d74ec8e2bb (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
// 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.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Objects;
import java.util.Set;

/**
 * Class for storing pending content node stats for all content nodes in the cluster.
 *
 * @author hakonhall
 */
public class ContentClusterStats implements Iterable<ContentNodeStats> {

    // Maps a content node index to the content node's stats.
    private final Map<Integer, ContentNodeStats> mapToNodeStats;

    public ContentClusterStats(Set<Integer> storageNodes) {
        mapToNodeStats = new HashMap<>(storageNodes.size());
        for (Integer index : storageNodes) {
            mapToNodeStats.put(index, new ContentNodeStats(index));
        }
    }

    public ContentClusterStats(Map<Integer, ContentNodeStats> mapToNodeStats) {
        this.mapToNodeStats = mapToNodeStats;
    }

    @Override
    public Iterator<ContentNodeStats> iterator() {
        return mapToNodeStats.values().iterator();
    }

    public ContentNodeStats getNodeStats(Integer index) { return mapToNodeStats.get(index);}

    public int size() {
        return mapToNodeStats.size();
    }

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

    @Override
    public int hashCode() {
        return Objects.hash(mapToNodeStats);
    }

    @Override
    public String toString() {
        return String.format("{mapToNodeStats=[%s]}", Arrays.toString(mapToNodeStats.entrySet().toArray()));
    }
}