/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* 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.
*
* The initial idea for this class is from "org.apache.commons.lang.IntHashMap";
* http://commons.apache.org/commons-lang-2.6-src.zip
*
*/
package scouter.util;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Enumeration;
import java.util.NoSuchElementException;
/**
* @author Paul Kim (sjkim@whatap.io)
*/
public class IntKeyLinkedMap<V> {
private static final int DEFAULT_CAPACITY = 101;
private static final float DEFAULT_LOAD_FACTOR = 0.75f;
private IntKeyLinkedEntry<V> table[];
private IntKeyLinkedEntry<V> header;
private int count;
private int threshold;
private float loadFactor;
public IntKeyLinkedMap(int initCapacity, float loadFactor) {
if (initCapacity < 0)
throw new RuntimeException("Capacity Error: " + initCapacity);
if (loadFactor <= 0)
throw new RuntimeException("Load Count Error: " + loadFactor);
if (initCapacity == 0)
initCapacity = 1;
this.loadFactor = loadFactor;
this.table = new IntKeyLinkedEntry[initCapacity];
this.header = new IntKeyLinkedEntry(0, null, null);
this.header.link_next = header.link_prev = header;
threshold = (int) (initCapacity * loadFactor);
}
public IntKeyLinkedMap() {
this(DEFAULT_CAPACITY, DEFAULT_LOAD_FACTOR);
}
public int size() {
return count;
}
public int[] keyArray() {
int[] _keys = new int[this.size()];
IntEnumer en = this.keys();
for (int i = 0; i < _keys.length; i++)
_keys[i] = en.nextInt();
return _keys;
}
public synchronized IntEnumer keys() {
return new Enumer(TYPE.KEYS);
}
public synchronized Enumeration<V> values() {
return new Enumer<V>(TYPE.VALUES);
}
public synchronized Enumeration<IntKeyLinkedEntry<V>> entries() {
return new Enumer<IntKeyLinkedEntry>(TYPE.ENTRIES);
}
public synchronized boolean containsValue(Object value) {
if (value == null) {
throw new NullPointerException();
}
IntKeyLinkedEntry tab[] = table;
int i = tab.length;
while (i-- > 0) {
for (IntKeyLinkedEntry e = tab[i]; e != null; e = e.next) {
if (CompareUtil.equals(e.value, value)) {
return true;
}
}
}
return false;
}
public synchronized boolean containsKey(int key) {
IntKeyLinkedEntry tab[] = table;
int index = hash(key) % tab.length;
for (IntKeyLinkedEntry e = tab[index]; e != null; e = e.next) {
if (CompareUtil.equals(e.key, key)) {
return true;
}
}
return false;
}
public synchronized V get(int key) {
IntKeyLinkedEntry<V> tab[] = table;
int index = hash(key) % tab.length;
for (IntKeyLinkedEntry<V> e = tab[index]; e != null; e = e.next) {
if (CompareUtil.equals(e.key, key)) {
return e.value;
}
}
return null;
}
public synchronized int getFirstKey() {
return this.header.link_next.key;
}
public synchronized int getLastKey() {
return this.header.link_prev.key;
}
public synchronized V getFirstValue() {
return this.header.link_next.value;
}
public synchronized V getLastValue() {
return this.header.link_prev.value;
}
protected void overflowed(int key, V value) {
}
protected V create(int key) {
throw new RuntimeException("not implemented create()");
}
public V intern(int key) {
return _intern(key, MODE.LAST);
}
private synchronized V _intern(int key, MODE m) {
IntKeyLinkedEntry tab[] = table;
int index = hash(key) % tab.length;
for (IntKeyLinkedEntry<V> e = tab[index]; e != null; e = e.next) {
if (CompareUtil.equals(e.key, key)) {
return e.value;
}
}
V value = create(key);
if (value == null)
return null;
if (max > 0) {
switch (m) {
case FORCE_FIRST:
case FIRST:
while (count >= max) {
int k = header.link_prev.key;
V v = remove(k);
overflowed(k, v);
}
break;
case FORCE_LAST:
case LAST:
while (count >= max) {
int k = header.link_next.key;
V v = remove(k);
overflowed(k, v);
}
break;
}
}
if (count >= threshold) {
rehash();
tab = table;
index = hash(key) % tab.length;
}
IntKeyLinkedEntry<V> e = new IntKeyLinkedEntry<V>(key, value, tab[index]);
tab[index] = e;
switch (m) {
case FORCE_FIRST:
case FIRST:
chain(header, header.link_next, e);
break;
case FORCE_LAST:
case LAST:
chain(header.link_prev, header, e);
break;
}
count++;
return value;
}
private int hash(int key) {
return key & Integer.MAX_VALUE;
}
protected void rehash() {
int oldCapacity = table.length;
IntKeyLinkedEntry oldMap[] = table;
int newCapacity = oldCapacity * 2 + 1;
IntKeyLinkedEntry newMap[] = new IntKeyLinkedEntry[newCapacity];
threshold = (int) (newCapacity * loadFactor);
table = newMap;
for (int i = oldCapacity; i-- > 0;) {
IntKeyLinkedEntry<V> old = oldMap[i];
while (old != null) {
IntKeyLinkedEntry<V> e = old;
old = old.next;
int key = e.key;
int index = hash(key) % newCapacity;
e.next = newMap[index];
newMap[index] = e;
}
}
}
private int max;
public IntKeyLinkedMap<V> setMax(int max) {
this.max = max;
return this;
}
private static enum MODE {
FORCE_FIRST, FORCE_LAST, FIRST, LAST
};
public V put(int key, V value) {
return _put(key, value, MODE.LAST);
}
public V putLast(int key, V value) {
return _put(key, value, MODE.FORCE_LAST);
}
public V putFirst(int key, V value) {
return _put(key, value, MODE.FORCE_FIRST);
}
private synchronized V _put(int key, V value, MODE m) {
IntKeyLinkedEntry tab[] = table;
int index = hash(key) % tab.length;
for (IntKeyLinkedEntry<V> e = tab[index]; e != null; e = e.next) {
if (CompareUtil.equals(e.key, key)) {
V old = e.value;
e.value = value;
switch (m) {
case FORCE_FIRST:
if (header.link_next != e) {
unchain(e);
chain(header, header.link_next, e);
}
break;
case FORCE_LAST:
if (header.link_prev != e) {
unchain(e);
chain(header.link_prev, header, e);
}
break;
}
return old;
}
}
if (max > 0) {
switch (m) {
case FORCE_FIRST:
case FIRST:
while (count >= max) {
// removeLast();
int k = header.link_prev.key;
V v = remove(k);
overflowed(k, v);
}
break;
case FORCE_LAST:
case LAST:
while (count >= max) {
// removeFirst();
int k = header.link_next.key;
V v = remove(k);
overflowed(k, v);
}
break;
}
}
if (count >= threshold) {
rehash();
tab = table;
index = hash(key) % tab.length;
}
IntKeyLinkedEntry<V> e = new IntKeyLinkedEntry<V>(key, value, tab[index]);
tab[index] = e;
switch (m) {
case FORCE_FIRST:
case FIRST:
chain(header, header.link_next, e);
break;
case FORCE_LAST:
case LAST:
chain(header.link_prev, header, e);
break;
}
count++;
return null;
}
public synchronized V remove(int key) {
IntKeyLinkedEntry tab[] = table;
int index = hash(key) % tab.length;
for (IntKeyLinkedEntry<V> e = tab[index], prev = null; e != null; prev = e, e = e.next) {
if (CompareUtil.equals(e.key, key)) {
if (prev != null) {
prev.next = e.next;
} else {
tab[index] = e.next;
}
count--;
V oldValue = e.value;
e.value = null;
//
unchain(e);
return oldValue;
}
}
return null;
}
public synchronized V removeFirst() {
if (isEmpty())
return null;
return remove(header.link_next.key);
}
public synchronized V removeLast() {
if (isEmpty())
return null;
return remove(header.link_prev.key);
}
public boolean isEmpty() {
return size() == 0;
}
public synchronized void clear() {
IntKeyLinkedEntry tab[] = table;
for (int index = tab.length; --index >= 0;)
tab[index] = null;
this.header.link_next = header.link_prev = header;
count = 0;
}
public String toString() {
StringBuffer buf = new StringBuffer();
Enumeration it = entries();
buf.append("{");
for (int i = 0; it.hasMoreElements(); i++) {
IntKeyLinkedEntry e = (IntKeyLinkedEntry) (it.nextElement());
if (i > 0)
buf.append(", ");
buf.append(e.getKey() + "=" + e.getValue());
}
buf.append("}");
return buf.toString();
}
public String toFormatString() {
StringBuffer buf = new StringBuffer();
Enumeration it = entries();
buf.append("{\n");
while (it.hasMoreElements()) {
IntKeyLinkedEntry e = (IntKeyLinkedEntry) it.nextElement();
buf.append("\t").append(e.getKey() + "=" + e.getValue()).append("\n");
}
buf.append("}");
return buf.toString();
}
private enum TYPE {
KEYS, VALUES, ENTRIES
}
private class Enumer<V> implements Enumeration, IntEnumer {
TYPE type;
IntKeyLinkedEntry entry = IntKeyLinkedMap.this.header.link_next;
Enumer(TYPE type) {
this.type = type;
}
public boolean hasMoreElements() {
return header != entry && entry != null;
}
public V nextElement() {
if (hasMoreElements()) {
IntKeyLinkedEntry e = entry;
entry = e.link_next;
switch (type) {
case KEYS:
return (V) new Long(e.key);
case VALUES:
return (V) e.value;
default:
return (V) e;
}
}
throw new NoSuchElementException("no more next");
}
public int nextInt() {
if (hasMoreElements()) {
IntKeyLinkedEntry e = entry;
entry = e.link_next;
return e.key;
}
throw new NoSuchElementException("no more next");
}
}
private void chain(IntKeyLinkedEntry link_prev, IntKeyLinkedEntry link_next, IntKeyLinkedEntry e) {
e.link_prev = link_prev;
e.link_next = link_next;
link_prev.link_next = e;
link_next.link_prev = e;
}
private void unchain(IntKeyLinkedEntry e) {
e.link_prev.link_next = e.link_next;
e.link_next.link_prev = e.link_prev;
e.link_prev = null;
e.link_next = null;
}
public static class IntKeyLinkedEntry<V> {
int key;
V value;
IntKeyLinkedEntry<V> next;
IntKeyLinkedEntry<V> link_next, link_prev;
protected IntKeyLinkedEntry(int key, V value, IntKeyLinkedEntry<V> next) {
this.key = key;
this.value = value;
this.next = next;
}
protected Object clone() {
return new IntKeyLinkedEntry<V>(key, value, (next == null ? null : (IntKeyLinkedEntry<V>) next.clone()));
}
public int getKey() {
return key;
}
public V getValue() {
return value;
}
public V setValue(V value) {
if (value == null)
throw new NullPointerException();
V oldValue = this.value;
this.value = value;
return oldValue;
}
public boolean equals(Object o) {
if (!(o instanceof IntKeyLinkedEntry))
return false;
IntKeyLinkedEntry e = (IntKeyLinkedEntry) o;
return CompareUtil.equals(e.key, key) && CompareUtil.equals(e.value, value);
}
public int hashCode() {
return key ^ (value == null ? 0 : value.hashCode());
}
public String toString() {
return key + "=" + value;
}
}
public synchronized void sort(Comparator<IntKeyLinkedEntry<V>> c) {
ArrayList<IntKeyLinkedEntry<V>> list = new ArrayList<IntKeyLinkedEntry<V>>(this.size());
Enumeration<IntKeyLinkedEntry<V>> en = this.entries();
while (en.hasMoreElements()) {
list.add(en.nextElement());
}
Collections.sort(list, c);
this.clear();
for (int i = 0; i < list.size(); i++) {
IntKeyLinkedEntry<V> e = list.get(i);
this.put(e.getKey(), e.getValue());
}
}
public static void main(String[] args) {
IntKeyLinkedMap<Integer> m = new IntKeyLinkedMap<Integer>();
for (int i = 0; i < 10; i++) {
m.put(i, i);
}
System.out.println(m);
m.sort(new Comparator<IntKeyLinkedEntry<Integer>>() {
@Override
public int compare(IntKeyLinkedEntry<Integer> o1, IntKeyLinkedEntry<Integer> o2) {
return CompareUtil.compareTo(o2.getKey(), o1.getKey());
}
});
System.out.println(m);
}
}