aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ContentNodeStatsBuilder.java
blob: 9d4664a9362993d6eb8d905ddc6149892bcbea22 (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
// 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.HashMap;
import java.util.Map;

public class ContentNodeStatsBuilder {

    private final int nodeIndex;
    private final Map<String, ContentNodeStats.BucketSpaceStats> stats = new HashMap<>();

    private ContentNodeStatsBuilder(int nodeIndex) {
        this.nodeIndex = nodeIndex;
    }

    static ContentNodeStatsBuilder forNode(int nodeIndex) {
        return new ContentNodeStatsBuilder(nodeIndex);
    }

    public ContentNodeStatsBuilder add(String bucketSpace, long bucketsTotal, long bucketsPending) {
        return add(bucketSpace, ContentNodeStats.BucketSpaceStats.of(bucketsTotal, bucketsPending));
    }

    public ContentNodeStatsBuilder add(String bucketSpace, ContentNodeStats.BucketSpaceStats bucketSpaceStats) {
        stats.put(bucketSpace, bucketSpaceStats);
        return this;
    }

    ContentNodeStats build() {
        return new ContentNodeStats(nodeIndex, stats);
    }
}