2024-02-25 14:46:47 +00:00
|
|
|
#pragma once
|
2023-06-20 04:33:09 +00:00
|
|
|
|
|
|
|
#include "StarString.hpp"
|
|
|
|
#include "StarByteArray.hpp"
|
|
|
|
|
|
|
|
#define XXH_STATIC_LINKING_ONLY
|
2023-06-21 05:57:05 +00:00
|
|
|
#define XXH_INLINE_ALL
|
2023-06-20 04:33:09 +00:00
|
|
|
#include "xxhash.h"
|
2023-06-21 05:57:05 +00:00
|
|
|
#include "xxh3.h"
|
2023-06-20 04:33:09 +00:00
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
class XXHash32 {
|
|
|
|
public:
|
|
|
|
XXHash32(uint32_t seed = 0);
|
|
|
|
|
|
|
|
void push(char const* data, size_t length);
|
|
|
|
uint32_t digest();
|
|
|
|
|
|
|
|
private:
|
|
|
|
XXH32_state_s state;
|
|
|
|
};
|
|
|
|
|
|
|
|
class XXHash64 {
|
|
|
|
public:
|
|
|
|
XXHash64(uint64_t seed = 0);
|
|
|
|
|
|
|
|
void push(char const* data, size_t length);
|
|
|
|
uint64_t digest();
|
|
|
|
|
|
|
|
private:
|
|
|
|
XXH64_state_s state;
|
|
|
|
};
|
|
|
|
|
2023-06-21 05:57:05 +00:00
|
|
|
class XXHash3 {
|
|
|
|
public:
|
|
|
|
XXHash3();
|
|
|
|
|
|
|
|
void push(char const* data, size_t length);
|
|
|
|
uint64_t digest();
|
|
|
|
|
|
|
|
private:
|
|
|
|
XXH3_state_s state;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
uint32_t xxHash32(char const* source, size_t length);
|
|
|
|
uint32_t xxHash32(ByteArray const& in);
|
|
|
|
uint32_t xxHash32(String const& in);
|
|
|
|
|
|
|
|
uint64_t xxHash64(char const* source, size_t length);
|
|
|
|
uint64_t xxHash64(ByteArray const& in);
|
|
|
|
uint64_t xxHash64(String const& in);
|
|
|
|
|
2023-06-21 05:57:05 +00:00
|
|
|
uint64_t xxHash3(char const* source, size_t length);
|
|
|
|
uint64_t xxHash3(ByteArray const& in);
|
|
|
|
uint64_t xxHash3(String const& in);
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
#define XXHASH32_PRIMITIVE(TYPE, CAST_TYPE) \
|
|
|
|
inline void xxHash32Push(XXHash32& hash, TYPE const& v) { \
|
|
|
|
CAST_TYPE cv = v; \
|
|
|
|
cv = toLittleEndian(cv); \
|
|
|
|
hash.push((char const*)(&cv), sizeof(cv)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define XXHASH64_PRIMITIVE(TYPE, CAST_TYPE) \
|
|
|
|
inline void xxHash64Push(XXHash64& hash, TYPE const& v) { \
|
|
|
|
CAST_TYPE cv = v; \
|
|
|
|
cv = toLittleEndian(cv); \
|
|
|
|
hash.push((char const*)(&cv), sizeof(cv)); \
|
|
|
|
}
|
|
|
|
|
2023-06-21 05:57:05 +00:00
|
|
|
#define XXHASH3_PRIMITIVE(TYPE, CAST_TYPE) \
|
|
|
|
inline void xxHash3Push(XXHash3& hash, TYPE const& v) { \
|
|
|
|
CAST_TYPE cv = v; \
|
|
|
|
cv = toLittleEndian(cv); \
|
|
|
|
hash.push((char const*)(&cv), sizeof(cv)); \
|
|
|
|
}
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
XXHASH32_PRIMITIVE(bool, bool);
|
|
|
|
XXHASH32_PRIMITIVE(int, int32_t);
|
|
|
|
XXHASH32_PRIMITIVE(long, int64_t);
|
|
|
|
XXHASH32_PRIMITIVE(long long, int64_t);
|
|
|
|
XXHASH32_PRIMITIVE(unsigned int, uint32_t);
|
|
|
|
XXHASH32_PRIMITIVE(unsigned long, uint64_t);
|
|
|
|
XXHASH32_PRIMITIVE(unsigned long long, uint64_t);
|
|
|
|
XXHASH32_PRIMITIVE(float, float);
|
|
|
|
XXHASH32_PRIMITIVE(double, double);
|
|
|
|
|
|
|
|
XXHASH64_PRIMITIVE(bool, bool);
|
|
|
|
XXHASH64_PRIMITIVE(int, int32_t);
|
|
|
|
XXHASH64_PRIMITIVE(long, int64_t);
|
|
|
|
XXHASH64_PRIMITIVE(long long, int64_t);
|
|
|
|
XXHASH64_PRIMITIVE(unsigned int, uint32_t);
|
|
|
|
XXHASH64_PRIMITIVE(unsigned long, uint64_t);
|
|
|
|
XXHASH64_PRIMITIVE(unsigned long long, uint64_t);
|
|
|
|
XXHASH64_PRIMITIVE(float, float);
|
|
|
|
XXHASH64_PRIMITIVE(double, double);
|
|
|
|
|
2023-06-21 05:57:05 +00:00
|
|
|
XXHASH3_PRIMITIVE(bool, bool);
|
|
|
|
XXHASH3_PRIMITIVE(int, int32_t);
|
|
|
|
XXHASH3_PRIMITIVE(long, int64_t);
|
|
|
|
XXHASH3_PRIMITIVE(long long, int64_t);
|
|
|
|
XXHASH3_PRIMITIVE(unsigned int, uint32_t);
|
|
|
|
XXHASH3_PRIMITIVE(unsigned long, uint64_t);
|
|
|
|
XXHASH3_PRIMITIVE(unsigned long long, uint64_t);
|
|
|
|
XXHASH3_PRIMITIVE(float, float);
|
|
|
|
XXHASH3_PRIMITIVE(double, double);
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
inline void xxHash32Push(XXHash32& hash, char const* str) {
|
|
|
|
hash.push(str, strlen(str));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void xxHash32Push(XXHash32& hash, String const& str) {
|
|
|
|
hash.push(str.utf8Ptr(), str.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void xxHash64Push(XXHash64& hash, char const* str) {
|
|
|
|
hash.push(str, strlen(str));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void xxHash64Push(XXHash64& hash, String const& str) {
|
|
|
|
hash.push(str.utf8Ptr(), str.size());
|
|
|
|
}
|
|
|
|
|
2023-06-21 05:57:05 +00:00
|
|
|
inline void xxHash3Push(XXHash3& hash, char const* str) {
|
|
|
|
hash.push(str, strlen(str));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void xxHash3Push(XXHash3& hash, String const& str) {
|
|
|
|
hash.push(str.utf8Ptr(), str.size());
|
|
|
|
}
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
inline XXHash32::XXHash32(uint32_t seed) {
|
|
|
|
XXH32_reset(&state, seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void XXHash32::push(char const* data, size_t length) {
|
|
|
|
XXH32_update(&state, data, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint32_t XXHash32::digest() {
|
|
|
|
return XXH32_digest(&state);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline XXHash64::XXHash64(uint64_t seed) {
|
|
|
|
XXH64_reset(&state, seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void XXHash64::push(char const* data, size_t length) {
|
|
|
|
XXH64_update(&state, data, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t XXHash64::digest() {
|
|
|
|
return XXH64_digest(&state);
|
|
|
|
}
|
|
|
|
|
2023-06-21 05:57:05 +00:00
|
|
|
inline XXHash3::XXHash3() {
|
|
|
|
XXH3_64bits_reset(&state);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void XXHash3::push(char const* data, size_t length) {
|
|
|
|
XXH3_64bits_update(&state, data, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t XXHash3::digest() {
|
|
|
|
return XXH3_64bits_digest(&state);
|
|
|
|
}
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
inline uint32_t xxHash32(char const* source, size_t length) {
|
|
|
|
return XXH32(source, length, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint32_t xxHash32(ByteArray const& in) {
|
|
|
|
return xxHash32(in.ptr(), in.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint32_t xxHash32(String const& in) {
|
|
|
|
return xxHash32(in.utf8Ptr(), in.utf8Size());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t xxHash64(char const* source, size_t length) {
|
|
|
|
return XXH64(source, length, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t xxHash64(ByteArray const& in) {
|
|
|
|
return xxHash64(in.ptr(), in.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t xxHash64(String const& in) {
|
|
|
|
return xxHash64(in.utf8Ptr(), in.utf8Size());
|
|
|
|
}
|
|
|
|
|
2023-06-21 05:57:05 +00:00
|
|
|
inline uint64_t xxHash3(char const* source, size_t length) {
|
|
|
|
return XXH3_64bits(source, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t xxHash3(ByteArray const& in) {
|
|
|
|
return xxHash3(in.ptr(), in.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t xxHash3(String const& in) {
|
|
|
|
return xxHash3(in.utf8Ptr(), in.utf8Size());
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|