All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.
com.github.jnthnclt.os.lab.collections.lh.LHash Maven / Gradle / Ivy
package com.github.jnthnclt.os.lab.collections.lh;
import java.util.concurrent.Semaphore;
/**
*
* @author jonathan.colt
*/
public class LHash {
private volatile LHMapState< V> state;
public LHash(LHMapState state) {
this.state = state;
}
public long size() {
return state.size();
}
public void clear() {
state = state.allocate(0);
}
public V get(long key) {
return get(Long.hashCode(key), key);
}
public V get(long hashCode, long key) {
LHMapState< V> s = state;
long nil = s.nil();
long skipped = s.skipped();
if (key == nil || key == skipped) {
return null;
}
if (s.size() == 0) {
return null;
}
long capacity = s.capacity();
long start = hash(s, hashCode);
for (long i = start, j = 0, k = capacity; // stack vars for efficiency
j < k; // max search for key
i = (++i) % k, j++) { // wraps around table
long storedKey = s.key(i);
if (storedKey == skipped) {
continue;
}
if (storedKey == nil) {
return null;
}
if (storedKey == key) {
return s.value(i);
}
}
return null;
}
public void remove(long key) {
remove(Long.hashCode(key), key);
}
@SuppressWarnings("unchecked")
public void remove(long hashCode, long key) {
LHMapState s = state;
long nil = s.nil();
long skipped = s.skipped();
if (key == nil || key == skipped) {
return;
}
if (s.size() == 0) {
return;
}
long capacity = s.capacity();
long start = hash(s, hashCode);
for (long i = start, j = 0, k = capacity; // stack vars for efficiency
j < k; // max search for key
i = (++i) % k, j++) { // wraps around table
long storedKey = s.key(i);
if (storedKey == skipped) {
continue;
}
if (storedKey == nil) {
return;
}
if (storedKey == key) {
long next = (i + 1) % k;
s.remove(i, skipped, null);
if (s.key(next) == nil) {
for (long z = i, y = 0; y < capacity; z = (z + capacity - 1) % k, y++) {
if (s.key(z) != skipped) {
break;
}
s.clear(z);
}
}
return;
}
}
}
public void put(long key, V value) {
put(Long.hashCode(key), key, value);
}
@SuppressWarnings("unchecked")
public void put(long hashCode, long key, V value) {
LHMapState s = state;
long capacity = s.capacity();
if (s.size() * 2 >= capacity) {
LHMapState to = s.allocate(s.capacity() * 2);
rehash(s, to);
state = to;
s = to;
}
internalPut(s, hashCode, key, value);
}
private void internalPut(LHMapState s, long hashCode, long key, V value) {
long capacity = s.capacity();
long start = hash(s, hashCode);
long nil = s.nil();
long skipped = s.skipped();
for (long i = start, j = 0, k = capacity; // stack vars for efficiency
j < k; // max search for available slot
i = (++i) % k, j++) {
// wraps around table
long storedKey = s.key(i);
if (storedKey == nil || storedKey == skipped) {
s.link(i, key, value);
return;
}
if (storedKey == key) {
s.update(i, key, value);
return;
}
}
}
private void rehash(LHMapState from, LHMapState to) {
long i = from.first();
long nil = to.nil();
long skipped = to.skipped();
while (i != -1) {
long storedKey = from.key(i);
if (storedKey != nil && storedKey != skipped) {
long hash = Long.hashCode(storedKey);
internalPut(to, hash, storedKey, from.value(i));
}
i = from.next(i);
}
}
private long hash(LHMapState state, long keyShuffle) {
keyShuffle += keyShuffle >> 8; // shuffle bits to avoid worst case clustering
if (keyShuffle < 0) {
keyShuffle = -keyShuffle;
}
return keyShuffle % state.capacity();
}
public boolean stream(Semaphore semaphore, LHashValueStream stream) throws Exception {
LHMapState s = state;
long c = s.capacity();
if (c <= 0) {
return true;
}
long nil = s.nil();
long skipped = s.skipped();
long i = s.first();
while (i != -1) {
long key;
V value = null;
semaphore.acquire();
try {
key = s.key(i);
if (key != nil && key != skipped) {
value = s.value(i);
}
} finally {
semaphore.release();
}
if (key != nil && key != skipped) {
if (!stream.keyValue(key, value)) {
return false;
}
}
i = s.next(i);
}
return true;
}
}