org.seasar.framework.util.ArrayMap Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2004-2015 the Seasar Foundation and the Others.
*
* 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 org.seasar.framework.util;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.lang.reflect.Array;
import java.util.AbstractMap;
import java.util.AbstractSet;
import java.util.Iterator;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Set;
/**
* 配列の性質を併せ持つ {@link Map}です。
*
* @author higa
*
*/
public class ArrayMap extends AbstractMap implements Map, Cloneable,
Externalizable {
static final long serialVersionUID = 1L;
private static final int INITIAL_CAPACITY = 17;
private static final float LOAD_FACTOR = 0.75f;
private transient int threshold;
private transient Entry[] mapTable;
private transient Entry[] listTable;
private transient int size = 0;
private transient Set> entrySet = null;
/**
* {@link ArrayMap}を作成します。
*/
public ArrayMap() {
this(INITIAL_CAPACITY);
}
/**
* {@link ArrayMap}を作成します。
*
* @param initialCapacity initialCapacity
*/
@SuppressWarnings("unchecked")
public ArrayMap(int initialCapacity) {
if (initialCapacity <= 0) {
initialCapacity = INITIAL_CAPACITY;
}
mapTable = new Entry[initialCapacity];
listTable = new Entry[initialCapacity];
threshold = (int) (initialCapacity * LOAD_FACTOR);
}
/**
* {@link ArrayMap}を作成します。
*
* @param map map
*/
public ArrayMap(Map map) {
this((int) (map.size() / LOAD_FACTOR) + 1);
putAll(map);
}
@Override
public final int size() {
return size;
}
@Override
public final boolean isEmpty() {
return size == 0;
}
@Override
public final boolean containsValue(Object value) {
return indexOf(value) >= 0;
}
/**
* 値に対するインデックスを返します。
*
* @param value value
* @return 値に対するインデックス
*/
public final int indexOf(Object value) {
if (value != null) {
for (int i = 0; i < size; i++) {
if (value.equals(listTable[i].value)) {
return i;
}
}
} else {
for (int i = 0; i < size; i++) {
if (listTable[i].value == null) {
return i;
}
}
}
return -1;
}
@Override
public boolean containsKey(final Object key) {
Entry[] tbl = mapTable;
if (key != null) {
int hashCode = key.hashCode();
int index = (hashCode & 0x7FFFFFFF) % tbl.length;
for (Entry e = tbl[index]; e != null; e = e.next) {
if (e.hashCode == hashCode && key.equals(e.key)) {
return true;
}
}
} else {
for (Entry e = tbl[0]; e != null; e = e.next) {
if (e.key == null) {
return true;
}
}
}
return false;
}
@Override
public V get(final Object key) {
Entry[] tbl = mapTable;
if (key != null) {
int hashCode = key.hashCode();
int index = (hashCode & 0x7FFFFFFF) % tbl.length;
for (Entry e = tbl[index]; e != null; e = e.next) {
if (e.hashCode == hashCode && key.equals(e.key)) {
return e.value;
}
}
} else {
for (Entry e = tbl[0]; e != null; e = e.next) {
if (e.key == null) {
return e.value;
}
}
}
return null;
}
/**
* indexに対応する値を返します。
*
* @param index index
* @return indexに対応する値
*/
public final V get(final int index) {
return getEntry(index).value;
}
/**
* indexに対応するキーを返します。
*
* @param index index
* @return indexに対応するキー
*/
public final K getKey(final int index) {
return getEntry(index).key;
}
/**
* indexに対応する {@link java.util.Map.Entry}を返します。
*
* @param index index
* @return indexに対応する {@link java.util.Map.Entry}
*/
public final Entry getEntry(final int index) {
if (index >= size) {
throw new IndexOutOfBoundsException("Index:" + index + ", Size:"
+ size);
}
return listTable[index];
}
@Override
public V put(final K key, final V value) {
int hashCode = 0;
int index = 0;
if (key != null) {
hashCode = key.hashCode();
index = (hashCode & 0x7FFFFFFF) % mapTable.length;
for (Entry e = mapTable[index]; e != null; e = e.next) {
if ((e.hashCode == hashCode) && key.equals(e.key)) {
return swapValue(e, value);
}
}
} else {
for (Entry e = mapTable[0]; e != null; e = e.next) {
if (e.key == null) {
return swapValue(e, value);
}
}
}
ensureCapacity();
index = (hashCode & 0x7FFFFFFF) % mapTable.length;
Entry e = new Entry<>(hashCode, key, value, mapTable[index]);
mapTable[index] = e;
listTable[size++] = e;
return null;
}
/**
* indexに対応する値を設定します。
*
* @param index index
* @param value value
*/
public final void set(final int index, final V value) {
getEntry(index).setValue(value);
}
@Override
public V remove(final Object key) {
@SuppressWarnings("unchecked")
Entry e = removeMap((K)key);
if (e != null) {
V value = e.value;
removeList(indexOf(e));
e.clear();
return value;
}
return null;
}
/**
* indexに対応する値を削除します。
*
* @param index index
* @return indexに対応する値
*/
public final V remove(int index) {
Entry e = removeList(index);
V value = e.value;
removeMap(e.key);
e.value = null;
return value;
}
@Override
public void putAll(Map extends K, ? extends V> map) {
for (@SuppressWarnings("rawtypes")
Iterator i = map.entrySet().iterator(); i.hasNext();) {
@SuppressWarnings("unchecked")
Entry e = (Entry) i.next();
put(e.getKey(), e.getValue());
}
}
@Override
public final void clear() {
for (int i = 0; i < mapTable.length; i++) {
mapTable[i] = null;
}
for (int i = 0; i < listTable.length; i++) {
listTable[i] = null;
}
size = 0;
}
/**
* 配列に変換します。
*
* @return 配列
*/
public final Object[] toArray() {
Object[] array = new Object[size];
for (int i = 0; i < array.length; i++) {
array[i] = get(i);
}
return array;
}
/**
* 配列に変換します。
*
* @param proto proto
* @return 配列
*/
public final Object[] toArray(final Object proto[]) {
Object[] array = proto;
if (proto.length < size) {
array = (Object[]) Array.newInstance(proto.getClass()
.getComponentType(), size);
}
for (int i = 0; i < array.length; i++) {
array[i] = get(i);
}
if (array.length > size) {
array[size] = null;
}
return array;
}
@Override
public final boolean equals(Object o) {
if (!getClass().isInstance(o)) {
return false;
}
@SuppressWarnings("unchecked")
ArrayMap e = (ArrayMap) o;
if (size != e.size) {
return false;
}
for (int i = 0; i < size; i++) {
if (!listTable[i].equals(e.listTable[i])) {
return false;
}
}
return true;
}
@Override
public final Set> entrySet() {
if (entrySet == null) {
entrySet = new AbstractSet<>() {
@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public Iterator iterator() {
return new ArrayMapIterator();
}
@Override
public boolean contains(Object o) {
if (!(o instanceof Entry)) {
return false;
}
@SuppressWarnings("unchecked")
Entry entry = (Entry) o;
int index = (entry.hashCode & 0x7FFFFFFF) % mapTable.length;
for (Entry e = mapTable[index]; e != null; e = e.next) {
if (e.equals(entry)) {
return true;
}
}
return false;
}
@Override
public boolean remove(Object o) {
if (!(o instanceof Entry)) {
return false;
}
@SuppressWarnings("unchecked")
Entry entry = (Entry) o;
return ArrayMap.this.remove(entry.key) != null;
}
@Override
public int size() {
return size;
}
@Override
public void clear() {
ArrayMap.this.clear();
}
};
}
return entrySet;
}
@Override
public final void writeExternal(final ObjectOutput out) throws IOException {
out.writeInt(listTable.length);
out.writeInt(size);
for (int i = 0; i < size; i++) {
out.writeObject(listTable[i].key);
out.writeObject(listTable[i].value);
}
}
@SuppressWarnings("unchecked")
@Override
public final void readExternal(final ObjectInput in) throws IOException,
ClassNotFoundException {
int num = in.readInt();
mapTable = new Entry[num];
listTable = new Entry[num];
threshold = (int) (num * LOAD_FACTOR);
int size = in.readInt();
for (int i = 0; i < size; i++) {
K key = (K)in.readObject();
V value = (V)in.readObject();
put(key, value);
}
}
@Override
public Object clone() {
ArrayMap copy = new ArrayMap<>();
copy.threshold = threshold;
copy.mapTable = mapTable;
copy.listTable = listTable;
copy.size = size;
return copy;
}
private final int indexOf(final Entry entry) {
for (int i = 0; i < size; i++) {
if (listTable[i] == entry) {
return i;
}
}
return -1;
}
private final Entry removeMap(K key) {
int hashCode = 0;
int index = 0;
if (key != null) {
hashCode = key.hashCode();
index = (hashCode & 0x7FFFFFFF) % mapTable.length;
for (Entry e = mapTable[index], prev = null; e != null; prev = e, e = e.next) {
if ((e.hashCode == hashCode) && key.equals(e.key)) {
if (prev != null) {
prev.next = e.next;
} else {
mapTable[index] = e.next;
}
return e;
}
}
} else {
for (Entry e = mapTable[index], prev = null; e != null; prev = e, e = e.next) {
if ((e.hashCode == hashCode) && e.key == null) {
if (prev != null) {
prev.next = e.next;
} else {
mapTable[index] = e.next;
}
return e;
}
}
}
return null;
}
private final Entry removeList(int index) {
Entry e = listTable[index];
int numMoved = size - index - 1;
if (numMoved > 0) {
System.arraycopy(listTable, index + 1, listTable, index, numMoved);
}
listTable[--size] = null;
return e;
}
@SuppressWarnings("unchecked")
private final void ensureCapacity() {
if (size >= threshold) {
Entry[] oldTable = listTable;
int newCapacity = oldTable.length * 2 + 1;
Entry[] newMapTable = new Entry[newCapacity];
Entry[] newListTable = new Entry[newCapacity];
threshold = (int) (newCapacity * LOAD_FACTOR);
System.arraycopy(oldTable, 0, newListTable, 0, size);
for (int i = 0; i < size; i++) {
Entry old = oldTable[i];
int index = (old.hashCode & 0x7FFFFFFF) % newCapacity;
Entry e = old;
old = old.next;
e.next = newMapTable[index];
newMapTable[index] = e;
}
mapTable = newMapTable;
listTable = newListTable;
}
}
private final V swapValue(final Entry entry, final V value) {
V old = entry.value;
entry.value = value;
return old;
}
private class ArrayMapIterator implements Iterator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy