aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/resource_usage_state.h
blob: 3a5b2c52ee0a50bff91921e1ff9daed1e49457b9 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace proton {

/**
 * Class representing the state of an resource (e.g. disk or memory) with its limit and current usage:
 *   - usage: How much of this resource is currently used (number between 0 and 1).
 *   - limit: How much of this resource is allowed to use (number between 0 and 1).
 *   - utilization: How much of the allowed part of this resource is used (usage/limit).
 */
class ResourceUsageState
{
private:
    double _limit;
    double _usage;

public:
    ResourceUsageState()
        : _limit(1.0),
          _usage(0)
    {
    }
    ResourceUsageState(double limit_, double usage_)
        : _limit(limit_),
          _usage(usage_)
    {
    }
    bool operator==(const ResourceUsageState &rhs) const {
        return ((_limit == rhs._limit) &&
                (_usage == rhs._usage));
    }
    bool operator!=(const ResourceUsageState &rhs) const {
        return ! ((*this) == rhs);
    }
    double limit() const { return _limit; }
    double usage() const { return _usage; }
    double utilization() const { return _usage/_limit; }
    bool aboveLimit() const {
        return aboveLimit(1.0);
    }
    bool aboveLimit(double lowWatermarkFactor) const {
        return usage() > (limit() * lowWatermarkFactor);
    }
};

} // namespace proton