mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-23 01:50:35 +00:00
Ideally we would like tokens to be trivially destructible, so that we can easily dispose of giant vectors holding them. While that is hard to do with our current infrastructure, we can introduce a token_view, which holds a bytes_view elements instead of the real data - making it trivially destructible. The comparators are then changed to take a token_view, and an implicit conversion function is provided from tokens so they get compared. Signed-off-by: Glauber Costa <glauber@scylladb.com>
81 lines
2.9 KiB
C++
81 lines
2.9 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 "i_partitioner.hh"
|
|
#include "bytes.hh"
|
|
|
|
#include "sstables/key.hh"
|
|
|
|
namespace dht {
|
|
|
|
class byte_ordered_partitioner final : public i_partitioner {
|
|
public:
|
|
byte_ordered_partitioner(unsigned shard_count = smp::count, unsigned ignore_msb = 0) : i_partitioner(shard_count) {}
|
|
virtual const sstring name() const { return "org.apache.cassandra.dht.ByteOrderedPartitioner"; }
|
|
virtual token get_token(const schema& s, partition_key_view key) override {
|
|
auto&& legacy = key.legacy_form(s);
|
|
return token(token::kind::key, bytes(legacy.begin(), legacy.end()));
|
|
}
|
|
virtual token get_token(const sstables::key_view& key) override {
|
|
auto v = bytes_view(key);
|
|
if (v.empty()) {
|
|
return minimum_token();
|
|
}
|
|
return token(token::kind::key, bytes(v.begin(), v.end()));
|
|
}
|
|
virtual token get_random_token() override;
|
|
virtual bool preserves_order() override { return true; }
|
|
virtual std::map<token, float> describe_ownership(const std::vector<token>& sorted_tokens) override;
|
|
virtual data_type get_token_validator() override { return bytes_type; }
|
|
virtual int tri_compare(token_view t1, token_view t2) const override {
|
|
return compare_unsigned(t1._data, t2._data);
|
|
}
|
|
virtual token midpoint(const token& t1, const token& t2) const;
|
|
virtual sstring to_sstring(const dht::token& t) const override {
|
|
if (t._kind == dht::token::kind::before_all_keys) {
|
|
return sstring();
|
|
} else {
|
|
return to_hex(t._data);
|
|
}
|
|
}
|
|
virtual dht::token from_sstring(const sstring& t) const override {
|
|
if (t.empty()) {
|
|
return minimum_token();
|
|
} else {
|
|
auto data = from_hex(t);
|
|
return token(token::kind::key, bytes(data.begin(), data.end()));
|
|
}
|
|
}
|
|
virtual dht::token from_bytes(bytes_view bytes) const override {
|
|
if (bytes.empty()) {
|
|
return minimum_token();
|
|
} else {
|
|
return token(token::kind::key, bytes);
|
|
}
|
|
}
|
|
virtual unsigned shard_of(const token& t) const override;
|
|
virtual token token_for_next_shard(const token& t, shard_id shard, unsigned spans) const override;
|
|
};
|
|
|
|
}
|