these unused includes were identified by clangd. see https://clangd.llvm.org/guides/include-cleaner#unused-include-warning for more details on the "Unused include" warning. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#16707
40 lines
927 B
C++
40 lines
927 B
C++
/*
|
|
* Copyright (C) 2023-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#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, sstables::leveled_compaction_strategy_state, sstables::time_window_compaction_strategy_state>;
|
|
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 sstables::compaction_strategy& cs);
|
|
};
|
|
|
|
}
|