mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 08:30:35 +00:00
40 lines
928 B
C++
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);
|
|
};
|
|
|
|
}
|