/* Copyright (c) 2008-2015, Avian Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. There is NO WARRANTY for this software. See license.txt for details. */ package java.util; import avian.Data; public class HashMap implements Map { private static final int MinimumCapacity = 16; private int size; private Cell[] array; private final Helper helper; public HashMap(int capacity, Helper helper) { if (capacity > 0) { array = new Cell[Data.nextPowerOfTwo(capacity)]; } this.helper = helper; } public HashMap(int capacity) { this(capacity, new MyHelper()); } public HashMap() { this(0); } public HashMap(Map map) { this(map.size()); for (Map.Entry entry : map.entrySet()) { put(entry.getKey(), entry.getValue()); } } public String toString() { return avian.Data.toString(this); } public boolean isEmpty() { return size() == 0; } public int size() { return size; } private void grow() { if (array == null || size >= array.length * 2) { resize(array == null ? MinimumCapacity : array.length * 2); } } private void shrink() { if (array.length / 2 >= MinimumCapacity && size <= array.length / 3) { resize(array.length / 2); } } private void resize(int capacity) { Cell[] newArray = null; if (capacity != 0) { capacity = Data.nextPowerOfTwo(capacity); if (array != null && array.length == capacity) { return; } newArray = new Cell[capacity]; if (array != null) { for (int i = 0; i < array.length; ++i) { Cell next; for (Cell c = array[i]; c != null; c = next) { next = c.next(); int index = c.hashCode() & (capacity - 1); c.setNext(newArray[index]); newArray[index] = c; } } } } array = newArray; } protected Cell find(Object key) { if (array != null) { int index = helper.hash(key) & (array.length - 1); for (Cell c = array[index]; c != null; c = c.next()) { if (helper.equal(key, c.getKey())) { return c; } } } return null; } private void insert(Cell cell) { ++ size; grow(); int index = cell.hashCode() & (array.length - 1); cell.setNext(array[index]); array[index] = cell; } public void remove(Cell cell) { int index = cell.hashCode() & (array.length - 1); Cell p = null; for (Cell c = array[index]; c != null; c = c.next()) { if (c == cell) { if (p == null) { array[index] = c.next(); } else { p.setNext(c.next()); } -- size; break; } } shrink(); } private Cell putCell(K key, V value) { Cell c = find(key); if (c == null) { insert(helper.make(key, value, null)); } else { c.setValue(value); } return c; } public boolean containsKey(Object key) { return find(key) != null; } public boolean containsValue(Object value) { if (array != null) { for (int i = 0; i < array.length; ++i) { for (Cell c = array[i]; c != null; c = c.next()) { if (helper.equal(value, c.getValue())) { return true; } } } } return false; } public V get(Object key) { Cell c = find(key); return (c == null ? null : c.getValue()); } public Cell removeCell(Object key) { Cell old = null; if (array != null) { int index = helper.hash(key) & (array.length - 1); Cell p = null; for (Cell c = array[index]; c != null; c = c.next()) { if (helper.equal(key, c.getKey())) { old = c; if (p == null) { array[index] = c.next(); } else { p.setNext(c.next()); } -- size; break; } p = c; } shrink(); } return old; } public V put(K key, V value) { Cell c = find(key); if (c == null) { insert(helper.make(key, value, null)); return null; } else { V old = c.getValue(); c.setValue(value); return old; } } public void putAll(Map elts) { for (Map.Entry entry : elts.entrySet()) { put(entry.getKey(), entry.getValue()); } } public V remove(Object key) { Cell c = removeCell((K)key); return (c == null ? null : c.getValue()); } public void clear() { array = null; size = 0; } public Set> entrySet() { return new Data.EntrySet(new MyEntryMap()); } public Set keySet() { return new Data.KeySet(new MyEntryMap()); } public Collection values() { return new Data.Values(new MyEntryMap()); } Iterator> iterator() { return new MyIterator(); } private class MyEntryMap implements Data.EntryMap { public int size() { return HashMap.this.size(); } public Entry find(Object key) { return HashMap.this.find(key); } public Entry remove(Object key) { return removeCell(key); } public void clear() { HashMap.this.clear(); } public Iterator> iterator() { return HashMap.this.iterator(); } } interface Cell extends Entry { public HashMap.Cell next(); public void setNext(HashMap.Cell next); } interface Helper { public Cell make(K key, V value, Cell next); public int hash(K key); public boolean equal(K a, K b); } private static class MyCell implements Cell { public final K key; public V value; public Cell next; public int hashCode; public MyCell(K key, V value, Cell next, int hashCode) { this.key = key; this.value = value; this.next = next; this.hashCode = hashCode; } public K getKey() { return key; } public V getValue() { return value; } public V setValue(V value) { V old = this.value; this.value = value; return old; } public HashMap.Cell next() { return next; } public void setNext(HashMap.Cell next) { this.next = next; } public int hashCode() { return hashCode; } } static class MyHelper implements Helper { public Cell make(K key, V value, Cell next) { return new MyCell(key, value, next, hash(key)); } public int hash(K a) { return (a == null ? 0 : a.hashCode()); } public boolean equal(K a, K b) { return (a == null && b == null) || (a != null && a.equals(b)); } } private class MyIterator implements Iterator> { private int currentIndex = -1; private int nextIndex = -1; private Cell previousCell; private Cell currentCell; private Cell nextCell; public MyIterator() { hasNext(); } public Entry next() { if (hasNext()) { if (currentCell != null) { if (currentCell.next() != null) { previousCell = currentCell; } else { previousCell = null; } } currentCell = nextCell; currentIndex = nextIndex; nextCell = nextCell.next(); return currentCell; } else { throw new NoSuchElementException(); } } public boolean hasNext() { if (array != null) { while (nextCell == null && ++ nextIndex < array.length) { if (array[nextIndex] != null) { nextCell = array[nextIndex]; return true; } } } return nextCell != null; } public void remove() { if (currentCell != null) { if (previousCell == null) { array[currentIndex] = currentCell.next(); } else { previousCell.setNext(currentCell.next()); if (previousCell.next() == null) { previousCell = null; } } currentCell = null; -- size; } else { throw new IllegalStateException(); } } } }