
io.airlift.jcodings.util.Hash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joni Show documentation
Show all versions of joni Show documentation
Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma
that uses byte arrays directly instead of java Strings and chars
/*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package io.airlift.jcodings.util;
import java.util.Iterator;
import io.airlift.jcodings.exception.InternalException;
public abstract class Hash implements Iterable {
protected HashEntry[]table;
protected int size;
private static final int PRIMES[] = {
8 + 3, 16 + 3, 32 + 5, 64 + 3, 128 + 3, 256 + 27, 512 + 9, 1024 + 9, 2048 + 5, 4096 + 3,
8192 + 27, 16384 + 43, 32768 + 3, 65536 + 45, 131072 + 29, 262144 + 3, 524288 + 21, 1048576 + 7,
2097152 + 17, 4194304 + 15, 8388608 + 9, 16777216 + 43, 33554432 + 35, 67108864 + 15,
134217728 + 29, 268435456 + 3, 536870912 + 11, 1073741824 + 85, 0
};
private static final int INITIAL_CAPACITY = PRIMES[0];
private static final int MAXIMUM_CAPACITY = 1 << 30;
public Hash() {
table = new HashEntry[INITIAL_CAPACITY];
init();
}
protected HashEntry head;
protected abstract void init();
public Hash(int size) {
for (int i=0, n=MIN_CAPA; i size) {
table = new HashEntry[PRIMES[i]];
init();
return;
}
}
throw new InternalException("run out of polynomials");
}
public final int size() {
return size;
}
public static class HashEntry {
final int hash;
protected HashEntry next, before, after;
public V value;
HashEntry(int hash, HashEntry next, V value, HashEntry head) {
this.hash = hash;
this.next = next;
this.value = value;
after = head;
before = head.before;
before.after = this;
after.before = this;
}
void remove() {
before.after = after;
after.before = before;
}
HashEntry() {
hash = 0;
before = after = this;
}
public int getHash() {
return hash;
}
}
private static final int MIN_CAPA = 8;
// private static final int DENSITY = 5;
protected final void checkResize() {
if (size == table.length) { // size / table.length > DENSITY
int forSize = table.length + 1; // size + 1;
for (int i=0, newCapacity = MIN_CAPA; i < PRIMES.length; i++, newCapacity <<= 1) {
if (newCapacity > forSize) {
resize(PRIMES[i]);
return;
}
}
return;
}
}
protected final void resize(int newCapacity) {
final HashEntry[] oldTable = table;
final HashEntry[] newTable = new HashEntry[newCapacity];
for (int j = 0; j < oldTable.length; j++) {
HashEntry entry = oldTable[j];
oldTable[j] = null;
while (entry != null) {
HashEntry next = entry.next;
int i = bucketIndex(entry.hash, newCapacity);
entry.next = newTable[i];
newTable[i] = entry;
entry = next;
}
}
table = newTable;
}
protected static int bucketIndex(final int h, final int length) {
return (h % length);
}
private static final int HASH_SIGN_BIT_MASK = ~(1 << 31);
protected static int hashValue(int h) {
return h & HASH_SIGN_BIT_MASK;
}
public Iterator iterator() {
return new HashIterator();
}
public class HashIterator implements Iterator {
HashEntry next;
public HashIterator() {
next = head.after;
}
public boolean hasNext() {
return next != head;
}
public V next() {
HashEntry e = next;
next = e.after;
return e.value;
}
public void remove() {
throw new InternalException("not supported operation exception");
}
}
public HashEntryIterator entryIterator() {
return new HashEntryIterator();
}
public class HashEntryIterator implements Iterator>, Iterable> {
HashEntry next;
public HashEntryIterator() {
next = head.after;
}
public Iterator> iterator() {
return this;
}
public boolean hasNext() {
return next != head;
}
public HashEntry next() {
HashEntry e = next;
next = e.after;
return e;
}
public void remove() {
throw new InternalException("not supported operation exception");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy