Files
scylladb/tombstone.hh
Duarte Nunes d216c3dbd2 tombstone: Extract out relational operators
This patch extracts out the relational operators in struct tombstone
to a class capable of generating them from a tri-compare function.

Signed-off-by: Duarte Nunes <duarte@scylladb.com>
2017-04-25 11:43:04 +02:00

105 lines
2.8 KiB
C++

/*
* Copyright (C) 2015 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Scylla is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <functional>
#include "timestamp.hh"
#include "gc_clock.hh"
#include "hashing.hh"
#include "utils/with_relational_operators.hh"
/**
* Represents deletion operation. Can be commuted with other tombstones via apply() method.
* Can be empty.
*/
struct tombstone final : public with_relational_operators<tombstone> {
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, {})
{ }
int compare(const tombstone& t) const {
if (timestamp < t.timestamp) {
return -1;
} else if (timestamp > t.timestamp) {
return 1;
} else if (deletion_time < t.deletion_time) {
return -1;
} else if (deletion_time > t.deletion_time) {
return 1;
} else {
return 0;
}
}
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);
}
friend std::ostream& operator<<(std::ostream& out, const tombstone& t) {
if (t) {
return out << "{tombstone: timestamp=" << t.timestamp << ", deletion_time=" << t.deletion_time.time_since_epoch().count() << "}";
} else {
return out << "{tombstone: none}";
}
}
};
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);
}
};
// Determines whether tombstone may be GC-ed.
using can_gc_fn = std::function<bool(tombstone)>;
static can_gc_fn always_gc = [] (tombstone) { return true; };