Files
scylladb/sstables/checksum_utils.hh
Avi Kivity a4c44cab88 treewide: update concepts language from the Concepts TS to C++20
Seastar recently lost support for the experimental Concepts Technical
Specification (TS) and gained support for C++20 concepts. Re-enable
concepts in Scylla by updating our use of concepts to the C++20
standard.

This change:
 - peels off uses of the GCC6_CONCEPT macro
 - removes inclusions of <seastar/gcc6-concepts.hh>
 - replaces function-style concepts (no longer supported) with
   equation-style concepts
 - semicolons added and removed as needed
 - deprecated std::is_pod replaced by recommended replacement
 - updates return type constraints to use concepts instead of
   type names (either std::same_as or std::convertible_to, with
   std::same_as chosen when possible)

No attempt is made to improve the concepts; this is a specification
update only.
Message-Id: <20200531110254.2555854-1-avi@scylladb.com>
2020-06-02 09:12:21 +03:00

135 lines
4.6 KiB
C++

/*
* Copyright (C) 2018 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 <zlib.h>
#include "libdeflate/libdeflate.h"
#include "utils/gz/crc_combine.hh"
template<typename Checksum>
concept ChecksumUtils = requires(const char* input, size_t size, uint32_t checksum) {
{ Checksum::init_checksum() } -> std::same_as<uint32_t>;
{ Checksum::checksum(input, size) } -> std::same_as<uint32_t>;
{ Checksum::checksum(checksum, input, size) } -> std::same_as<uint32_t>;
{ Checksum::checksum_combine(checksum, checksum, size) } -> std::same_as<uint32_t>;
// Tells whether checksum_combine() should be preferred over checksum().
// For same checksummers it's faster to re-feed the buffer to checksum() than to
// combine the checksum of the buffer.
{ Checksum::prefer_combine() } -> std::same_as<bool>;
};
struct adler32_utils {
inline static uint32_t init_checksum() {
return adler32(0, Z_NULL, 0);
}
inline static uint32_t checksum(const char* input, size_t input_len) {
auto init = adler32(0, Z_NULL, 0);
return checksum(init, input, input_len);
}
inline static uint32_t checksum(uint32_t prev, const char* input, size_t input_len) {
// yuck, zlib uses unsigned char while we use char :-(
return adler32(prev, reinterpret_cast<const unsigned char *>(input),
input_len);
}
inline static uint32_t checksum_combine(uint32_t first, uint32_t second, size_t input_len2) {
return adler32_combine(first, second, input_len2);
}
static constexpr bool prefer_combine() { return true; }
};
struct zlib_crc32_checksummer {
inline static uint32_t init_checksum() {
return crc32(0, Z_NULL, 0);
}
inline static uint32_t checksum(const char* input, size_t input_len) {
auto init = crc32(0, Z_NULL, 0);
return checksum(init, input, input_len);
}
inline static uint32_t checksum(uint32_t prev, const char* input, size_t input_len) {
// yuck, zlib uses unsigned char while we use char :-(
return crc32(prev, reinterpret_cast<const unsigned char *>(input),
input_len);
}
inline static uint32_t checksum_combine(uint32_t first, uint32_t second, size_t input_len2) {
return crc32_combine(first, second, input_len2);
}
static constexpr bool prefer_combine() { return false; } // crc32_combine() is very slow
};
struct libdeflate_crc32_checksummer {
static uint32_t init_checksum() {
return 0;
}
static uint32_t checksum(const char* input, size_t input_len) {
return checksum(init_checksum(), input, input_len);
}
static uint32_t checksum(uint32_t prev, const char* input, size_t input_len) {
return libdeflate_crc32(prev, input, input_len);
}
static uint32_t checksum_combine(uint32_t first, uint32_t second, size_t input_len2) {
return zlib_crc32_checksummer::checksum_combine(first, second, input_len2);
}
static constexpr bool prefer_combine() { return false; }
};
template<typename Checksum>
inline uint32_t checksum_combine_or_feed(uint32_t first, uint32_t second, const char* input, size_t input_len) {
if constexpr (Checksum::prefer_combine()) {
return Checksum::checksum_combine(first, second, input_len);
} else {
return Checksum::checksum(first, input, input_len);
}
}
struct crc32_utils {
static uint32_t init_checksum() { return libdeflate_crc32_checksummer::init_checksum(); }
static uint32_t checksum(const char* input, size_t input_len) {
return libdeflate_crc32_checksummer::checksum(input, input_len);
}
static uint32_t checksum(uint32_t prev, const char* input, size_t input_len) {
return libdeflate_crc32_checksummer::checksum(prev, input, input_len);
}
static uint32_t checksum_combine(uint32_t first, uint32_t second, size_t input_len2) {
return fast_crc32_combine(first, second, input_len2);
}
static constexpr bool prefer_combine() {
return fast_crc32_combine_optimized();
}
};