Files
scylladb/compaction/compaction_strategy_state.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

40 lines
928 B
C++

/*
* Copyright (C) 2023-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
*/
#pragma once
#include "time_window_compaction_strategy.hh"
#include "leveled_compaction_strategy.hh"
#include <utility>
#include <variant>
namespace compaction {
class compaction_strategy_state {
public:
struct default_empty_state {};
using states_variant = std::variant<default_empty_state, leveled_compaction_strategy_state_ptr, time_window_compaction_strategy_state_ptr>;
private:
states_variant _state;
public:
explicit compaction_strategy_state(states_variant state) : _state(std::move(state)) {
}
template <typename StateType>
requires requires (StateType st) {
{ states_variant{} = st };
}
StateType& get() noexcept {
return std::get<StateType>(_state);
}
static compaction_strategy_state make(const compaction_strategy& cs);
};
}