Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.openhft.hashing.XxHash Maven / Gradle / Ivy
/*
* Copyright 2015 Higher Frequency Trading http://www.higherfrequencytrading.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.openhft.hashing;
import static java.nio.ByteOrder.LITTLE_ENDIAN;
import static net.openhft.hashing.LongHashFunction.NATIVE_LITTLE_ENDIAN;
/**
* Adapted version of xxHash implementation from https://github.com/Cyan4973/xxHash.
* This implementation provides endian-independant hash values, but it's slower on big-endian platforms.
*/
class XxHash {
private static final XxHash INSTANCE = new XxHash();
private static final XxHash NATIVE_XX = NATIVE_LITTLE_ENDIAN ?
XxHash.INSTANCE : BigEndian.INSTANCE;
// Primes if treated as unsigned
private static final long P1 = -7046029288634856825L;
private static final long P2 = -4417276706812531889L;
private static final long P3 = 1609587929392839161L;
private static final long P4 = -8796714831421723037L;
private static final long P5 = 2870177450012600261L;
private XxHash() {}
long fetch64(Access access, T in, long off) {
return access.getLong(in, off);
}
// long because of unsigned nature of original algorithm
long fetch32(Access access, T in, long off) {
return access.getUnsignedInt(in, off);
}
// int because of unsigned nature of original algorithm
private int fetch8(Access access, T in, long off) {
return access.getUnsignedByte(in, off);
}
long toLittleEndian(long v) {
return v;
}
int toLittleEndian(int v) {
return v;
}
short toLittleEndian(short v) {
return v;
}
long xxHash64(long seed, T input, Access access, long off, long length) {
long hash;
long remaining = length;
if (remaining >= 32) {
long v1 = seed + P1 + P2;
long v2 = seed + P2;
long v3 = seed;
long v4 = seed - P1;
do {
v1 += fetch64(access, input, off) * P2;
v1 = Long.rotateLeft(v1, 31);
v1 *= P1;
v2 += fetch64(access, input, off + 8) * P2;
v2 = Long.rotateLeft(v2, 31);
v2 *= P1;
v3 += fetch64(access, input, off + 16) * P2;
v3 = Long.rotateLeft(v3, 31);
v3 *= P1;
v4 += fetch64(access, input, off + 24) * P2;
v4 = Long.rotateLeft(v4, 31);
v4 *= P1;
off += 32;
remaining -= 32;
} while (remaining >= 32);
hash = Long.rotateLeft(v1, 1)
+ Long.rotateLeft(v2, 7)
+ Long.rotateLeft(v3, 12)
+ Long.rotateLeft(v4, 18);
v1 *= P2;
v1 = Long.rotateLeft(v1, 31);
v1 *= P1;
hash ^= v1;
hash = hash * P1 + P4;
v2 *= P2;
v2 = Long.rotateLeft(v2, 31);
v2 *= P1;
hash ^= v2;
hash = hash * P1 + P4;
v3 *= P2;
v3 = Long.rotateLeft(v3, 31);
v3 *= P1;
hash ^= v3;
hash = hash * P1 + P4;
v4 *= P2;
v4 = Long.rotateLeft(v4, 31);
v4 *= P1;
hash ^= v4;
hash = hash * P1 + P4;
} else {
hash = seed + P5;
}
hash += length;
while (remaining >= 8) {
long k1 = fetch64(access, input, off);
k1 *= P2;
k1 = Long.rotateLeft(k1, 31);
k1 *= P1;
hash ^= k1;
hash = Long.rotateLeft(hash, 27) * P1 + P4;
off += 8;
remaining -= 8;
}
if (remaining >= 4) {
hash ^= fetch32(access, input, off) * P1;
hash = Long.rotateLeft(hash, 23) * P2 + P3;
off += 4;
remaining -= 4;
}
while (remaining != 0) {
hash ^= fetch8(access, input, off) * P5;
hash = Long.rotateLeft(hash, 11) * P1;
--remaining;
++off;
}
return finalize(hash);
}
private static long finalize(long hash) {
hash ^= hash >>> 33;
hash *= P2;
hash ^= hash >>> 29;
hash *= P3;
hash ^= hash >>> 32;
return hash;
}
private static class BigEndian extends XxHash {
private static final BigEndian INSTANCE = new BigEndian();
private BigEndian() {}
@Override
long fetch64(Access access, T in, long off) {
return Long.reverseBytes(super.fetch64(access, in, off));
}
@Override
long fetch32(Access access, T in, long off) {
return Primitives.unsignedInt(Integer.reverseBytes(access.getInt(in, off)));
}
// fetch8 is not overloaded, because endianness doesn't matter for single byte
@Override
long toLittleEndian(long v) {
return Long.reverseBytes(v);
}
@Override
int toLittleEndian(int v) {
return Integer.reverseBytes(v);
}
@Override
short toLittleEndian(short v) {
return Short.reverseBytes(v);
}
}
static LongHashFunction asLongHashFunctionWithoutSeed() {
return AsLongHashFunction.SEEDLESS_INSTANCE;
}
private static class AsLongHashFunction extends LongHashFunction {
private static final long serialVersionUID = 0L;
static final AsLongHashFunction SEEDLESS_INSTANCE = new AsLongHashFunction();
private static final long VOID_HASH = XxHash.finalize(P5);
private Object readResolve() {
return SEEDLESS_INSTANCE;
}
public long seed() {
return 0L;
}
@Override
public long hashLong(long input) {
input = NATIVE_XX.toLittleEndian(input);
long hash = seed() + P5 + 8;
input *= P2;
input = Long.rotateLeft(input, 31);
input *= P1;
hash ^= input;
hash = Long.rotateLeft(hash, 27) * P1 + P4;
return XxHash.finalize(hash);
}
@Override
public long hashInt(int input) {
input = NATIVE_XX.toLittleEndian(input);
long hash = seed() + P5 + 4;
hash ^= Primitives.unsignedInt(input) * P1;
hash = Long.rotateLeft(hash, 23) * P2 + P3;
return XxHash.finalize(hash);
}
@Override
public long hashShort(short input) {
input = NATIVE_XX.toLittleEndian(input);
long hash = seed() + P5 + 2;
hash ^= Primitives.unsignedByte(input) * P5;
hash = Long.rotateLeft(hash, 11) * P1;
hash ^= Primitives.unsignedByte(input >> 8) * P5;
hash = Long.rotateLeft(hash, 11) * P1;
return XxHash.finalize(hash);
}
@Override
public long hashChar(char input) {
return hashShort((short) input);
}
@Override
public long hashByte(byte input) {
long hash = seed() + P5 + 1;
hash ^= Primitives.unsignedByte(input) * P5;
hash = Long.rotateLeft(hash, 11) * P1;
return XxHash.finalize(hash);
}
@Override
public long hashVoid() {
return VOID_HASH;
}
@Override
public long hash(T input, Access access, long off, long len) {
long seed = seed();
if (access.byteOrder(input) == LITTLE_ENDIAN) {
return XxHash.INSTANCE.xxHash64(seed, input, access, off, len);
} else {
return BigEndian.INSTANCE.xxHash64(seed, input, access, off, len);
}
}
}
static LongHashFunction asLongHashFunctionWithSeed(long seed) {
return new AsLongHashFunctionSeeded(seed);
}
private static class AsLongHashFunctionSeeded extends AsLongHashFunction {
private static final long serialVersionUID = 0L;
private final long seed;
private final transient long voidHash;
private AsLongHashFunctionSeeded(long seed) {
this.seed = seed;
voidHash = XxHash.finalize(seed + P5);
}
@Override
public long seed() {
return seed;
}
@Override
public long hashVoid() {
return voidHash;
}
}
}