Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
57 lines
922 B
C++
57 lines
922 B
C++
/*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2016-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <unordered_map>
|
|
|
|
#include "replay_position.hh"
|
|
|
|
namespace db {
|
|
|
|
class rp_set {
|
|
public:
|
|
typedef std::unordered_map<segment_id_type, uint64_t> usage_map;
|
|
|
|
rp_set()
|
|
{}
|
|
rp_set(const replay_position & rp)
|
|
{
|
|
put(rp);
|
|
}
|
|
rp_set(rp_set&&) = default;
|
|
|
|
rp_set& operator=(rp_set&&) = default;
|
|
|
|
void put(const replay_position& rp) {
|
|
_usage[rp.id]++;
|
|
}
|
|
void put(rp_handle && h) {
|
|
if (h) {
|
|
put(h.rp());
|
|
}
|
|
h.release();
|
|
}
|
|
|
|
size_t size() const {
|
|
return _usage.size();
|
|
}
|
|
bool empty() const {
|
|
return _usage.empty();
|
|
}
|
|
|
|
const usage_map& usage() const {
|
|
return _usage;
|
|
}
|
|
private:
|
|
usage_map _usage;
|
|
};
|
|
|
|
}
|