aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/common/alloc_strategy.cpp
blob: 32ac249f7e1df2c9a60145587ff4f0fbea50e9c7 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "alloc_strategy.h"
#include <iostream>

using search::GrowStrategy;

namespace proton {

AllocStrategy::AllocStrategy(const GrowStrategy& grow_strategy,
                             const CompactionStrategy& compaction_strategy,
                             uint32_t amortize_count)
    : _grow_strategy(grow_strategy),
      _compaction_strategy(compaction_strategy),
      _amortize_count(amortize_count)
{
}

AllocStrategy::AllocStrategy()
    : AllocStrategy(GrowStrategy(), CompactionStrategy(), 10000)
{
}

AllocStrategy::~AllocStrategy() = default;

bool
AllocStrategy::operator==(const AllocStrategy &rhs) const noexcept
{
    return ((_grow_strategy == rhs._grow_strategy) &&
            (_compaction_strategy == rhs._compaction_strategy) &&
            (_amortize_count == rhs._amortize_count));
}

std::ostream& operator<<(std::ostream& os, const AllocStrategy&alloc_strategy)
{
    os << "{ grow_strategy=" << alloc_strategy.get_grow_strategy() << ", compaction_strategy=" << alloc_strategy.get_compaction_strategy() << ", amortize_count=" << alloc_strategy.get_amortize_count() << "}";
    return os;
}

}