Files
scylladb/mutation/tombstone.hh
Benny Halevy b6fabd98c6 tombstone: can_gc_fn: move declaration to compaction_garbage_collector.hh
And define `never_gc` globally, same as `always_gc`

Before adding a new, is_shadowable parameter to it.

Since it is used in the context of compaction
it better fits compaction_garbage_collector header
rather than tombstone.hh

Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
2024-09-10 19:05:57 +03:00

94 lines
2.3 KiB
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
#include <functional>
#include <compare>
#include "timestamp.hh"
#include "gc_clock.hh"
#include "utils/hashing.hh"
/**
* Represents deletion operation. Can be commuted with other tombstones via apply() method.
* Can be empty.
*/
struct tombstone final {
api::timestamp_type timestamp;
gc_clock::time_point deletion_time;
tombstone(api::timestamp_type timestamp, gc_clock::time_point deletion_time)
: timestamp(timestamp)
, deletion_time(deletion_time)
{ }
tombstone()
: tombstone(api::missing_timestamp, {})
{ }
std::strong_ordering operator<=>(const tombstone& t) const = default;
bool operator==(const tombstone&) const = default;
explicit operator bool() const {
return timestamp != api::missing_timestamp;
}
void apply(const tombstone& t) noexcept {
if (*this < t) {
*this = t;
}
}
// See reversibly_mergeable.hh
void apply_reversibly(tombstone& t) noexcept {
std::swap(*this, t);
apply(t);
}
// See reversibly_mergeable.hh
void revert(tombstone& t) noexcept {
std::swap(*this, t);
}
tombstone operator+(const tombstone& t) {
auto result = *this;
result.apply(t);
return result;
}
};
template <>
struct fmt::formatter<tombstone> : fmt::formatter<string_view> {
template <typename FormatContext>
auto format(const tombstone& t, FormatContext& ctx) const {
if (t) {
return fmt::format_to(ctx.out(),
"{{tombstone: timestamp={}, deletion_time={}}}",
t.timestamp, t.deletion_time.time_since_epoch().count());
} else {
return fmt::format_to(ctx.out(),
"{{tombstone: none}}");
}
}
};
static inline std::ostream& operator<<(std::ostream& out, const tombstone& t) {
fmt::print(out, "{}", t);
return out;
}
template<>
struct appending_hash<tombstone> {
template<typename Hasher>
void operator()(Hasher& h, const tombstone& t) const {
feed_hash(h, t.timestamp);
feed_hash(h, t.deletion_time);
}
};