All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cosylab.epics.caj.util.IntHashMap Maven / Gradle / Ivy

There is a newer version: 1.1.15
Show newest version
/*
 * Copyright (c) 2004 by Cosylab
 *
 * The full license specifying the redistribution, modification, usage and other
 * rights and obligations is included with the distribution of this project in
 * the file "LICENSE-CAJ". If the license is not included visit Cosylab web site,
 * .
 *
 * THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND, NOT EVEN THE
 * IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR OF THIS SOFTWARE, ASSUMES
 * _NO_ RESPONSIBILITY FOR ANY CONSEQUENCE RESULTING FROM THE USE, MODIFICATION,
 * OR REDISTRIBUTION OF THIS SOFTWARE.
 */

package com.cosylab.epics.caj.util;

import java.util.ArrayList;

/**
 * 

A hash map that uses primitive ints for the key instead of objects. Also Entry objects are reusable.

* NOTE: this implementatio is not synced, client has to care of that. * *

This implemenation is based on original java implementation.

* @author Matej Sekoranja * @version $id$ * @see java.util.HashMap */ public class IntHashMap { /** * The hash table data. */ private transient Entry table[]; /** * The total number of entries in the hash table. */ private transient int count; /** * The table is rehashed when its size exceeds this threshold. (The * value of this field is (int)(capacity * loadFactor).) * * @serial */ private int threshold; /** * The load factor for the hashtable. * * @serial */ private float loadFactor; /** * Entry object pool. * */ private transient EntryObjectPool pool; /** *

Innerclass that acts as a datastructure to create a new entry in the * table.

*/ private static class Entry { int hash; int key; Object value; Entry next; /** *

Create a new entry with the given values.

* * @param hash The code used to hash the object with * @param key The key used to enter this in the table * @param value The value for this key * @param next A reference to the next entry in the table */ protected Entry(int hash, int key, Object value, Entry next) { initialize(hash, key, value, next); } /** *

Set given values.

* * @param hash The code used to hash the object with * @param key The key used to enter this in the table * @param value The value for this key * @param next A reference to the next entry in the table */ public void initialize(int hash, int key, Object value, Entry next) { this.hash = hash; this.key = key; this.value = value; this.next = next; } } /** *

Object pool implemenation for Entry class.

*/ // TODO timed clean-up private static class EntryObjectPool { /** * Pool of reusable objects. */ // TODO get rid of class casts private ArrayList pool; private int lastPos = -1; /** * Constructor. * @param initialCapacity initial capacity of the pool. */ public EntryObjectPool(int initialCapacity) { pool = new ArrayList(initialCapacity); } /** * Get Entry object from the object pool. * * @param hash The code used to hash the object with * @param key The key used to enter this in the table * @param value The value for this key * @param next A reference to the next entry in the table * @return Entry instance. */ public Entry getEntry(int hash, int key, Object value, Entry next) { if (lastPos == -1) { return new Entry(hash, key, value, next); } else { Entry entry = (Entry)pool.remove(lastPos--); entry.initialize(hash, key, value, next); return entry; } } /** * Put (return) Entry object to the object pool. * @param entry entry to put. */ public void putEntry(Entry entry) { // NOTE: be sure that entry.value and entry.next are null pool.add(entry); lastPos++; } } /** *

Constructs a new, empty hashtable with a default capacity and load * factor, which is 20 and 0.75 respectively.

*/ public IntHashMap() { this(20, 0.75f); } /** *

Constructs a new, empty hashtable with the specified initial capacity * and default load factor, which is 0.75.

* * @param initialCapacity the initial capacity of the hashtable. * @throws IllegalArgumentException if the initial capacity is less * than zero. */ public IntHashMap(int initialCapacity) { this(initialCapacity, 0.75f); } /** *

Constructs a new, empty hashtable with the specified initial * capacity and the specified load factor.

* * @param initialCapacity the initial capacity of the hashtable. * @param loadFactor the load factor of the hashtable. * @throws IllegalArgumentException if the initial capacity is less * than zero, or if the load factor is nonpositive. */ public IntHashMap(int initialCapacity, float loadFactor) { super(); if (initialCapacity < 0) { throw new IllegalArgumentException("Illegal Capacity: " + initialCapacity); } if (loadFactor <= 0) { throw new IllegalArgumentException("Illegal Load: " + loadFactor); } if (initialCapacity == 0) { initialCapacity = 1; } this.loadFactor = loadFactor; table = new Entry[initialCapacity]; threshold = (int) (initialCapacity * loadFactor); pool = new EntryObjectPool(initialCapacity); } /** *

Returns the number of keys in this hashtable.

* * @return the number of keys in this hashtable. */ public int size() { return count; } /** *

Tests if this hashtable maps no keys to values.

* * @return true if this hashtable maps no keys to values; * false otherwise. */ public boolean isEmpty() { return count == 0; } /** *

Tests if some key maps into the specified value in this hashtable. * This operation is more expensive than the containsKey * method.

* *

Note that this method is identical in functionality to containsValue, * (which is part of the Map interface in the collections framework).

* * @param value a value to search for. * @return true if and only if some key maps to the * value argument in this hashtable as * determined by the equals method; * false otherwise. * @throws NullPointerException if the value is null. * @see #containsKey(int) * @see #containsValue(Object) * @see java.util.Map */ public boolean contains(Object value) { if (value == null) { throw new NullPointerException(); } Entry tab[] = table; for (int i = tab.length; i-- > 0;) { for (Entry e = tab[i]; e != null; e = e.next) { if (e.value.equals(value)) { return true; } } } return false; } /** *

Returns true if this HashMap maps one or more keys * to this value.

* *

Note that this method is identical in functionality to contains * (which predates the Map interface).

* * @param value value whose presence in this HashMap is to be tested. * @return boolean true if the value is contained * @see java.util.Map * @since JDK1.2 */ public boolean containsValue(Object value) { return contains(value); } /** *

Tests if the specified object is a key in this hashtable.

* * @param key possible key. * @return true if and only if the specified object is a * key in this hashtable, as determined by the equals * method; false otherwise. * @see #contains(Object) */ public boolean containsKey(int key) { Entry tab[] = table; int hash = key; int index = (hash & 0x7FFFFFFF) % tab.length; for (Entry e = tab[index]; e != null; e = e.next) { if (e.hash == hash) { return true; } } return false; } /** *

Returns the value to which the specified key is mapped in this map.

* * @param key a key in the hashtable. * @return the value to which the key is mapped in this hashtable; * null if the key is not mapped to any value in * this hashtable. * @see #put(int, Object) */ public Object get(int key) { Entry tab[] = table; int hash = key; int index = (hash & 0x7FFFFFFF) % tab.length; for (Entry e = tab[index]; e != null; e = e.next) { if (e.hash == hash) { return e.value; } } return null; } /** *

Increases the capacity of and internally reorganizes this * hashtable, in order to accommodate and access its entries more * efficiently.

* *

This method is called automatically when the number of keys * in the hashtable exceeds this hashtable's capacity and load * factor.

*/ protected void rehash() { int oldCapacity = table.length; Entry oldMap[] = table; int newCapacity = oldCapacity * 2 + 1; Entry newMap[] = new Entry[newCapacity]; threshold = (int) (newCapacity * loadFactor); table = newMap; for (int i = oldCapacity; i-- > 0;) { for (Entry old = oldMap[i]; old != null;) { Entry e = old; old = old.next; int index = (e.hash & 0x7FFFFFFF) % newCapacity; e.next = newMap[index]; newMap[index] = e; } } } /** *

Maps the specified key to the specified * value in this hashtable. The key cannot be * null.

* *

The value can be retrieved by calling the get method * with a key that is equal to the original key.

* * @param key the hashtable key. * @param value the value. * @return the previous value of the specified key in this hashtable, * or null if it did not have one. * @throws NullPointerException if the key is null. * @see #get(int) */ public Object put(int key, Object value) { // Makes sure the key is not already in the hashtable. Entry tab[] = table; int hash = key; int index = (hash & 0x7FFFFFFF) % tab.length; for (Entry e = tab[index]; e != null; e = e.next) { if (e.hash == hash) { Object old = e.value; e.value = value; return old; } } if (count >= threshold) { // Rehash the table if the threshold is exceeded rehash(); tab = table; index = (hash & 0x7FFFFFFF) % tab.length; } // Creates the new entry. //Entry e = new Entry(hash, key, value, tab[index]); Entry e = pool.getEntry(hash, key, value, tab[index]); tab[index] = e; count++; return null; } /** *

Removes the key (and its corresponding value) from this * hashtable.

* *

This method does nothing if the key is not present in the * hashtable.

* * @param key the key that needs to be removed. * @return the value to which the key had been mapped in this hashtable, * or null if the key did not have a mapping. */ public Object remove(int key) { Entry tab[] = table; int hash = key; int index = (hash & 0x7FFFFFFF) % tab.length; for (Entry e = tab[index], prev = null; e != null; prev = e, e = e.next) { if (e.hash == hash) { if (prev != null) { prev.next = e.next; } else { tab[index] = e.next; } count--; Object oldValue = e.value; e.value = null; e.next = null; pool.putEntry(e); return oldValue; } } return null; } /** *

Clears this hashtable so that it contains no keys.

*/ public void clear() { Entry tab[] = table; for (int index = tab.length; --index >= 0;) { Entry e = tab[index]; if (e != null) { e.value = null; e.next = null; pool.putEntry(e); } tab[index] = null; } count = 0; } /** *

Copies values to array. Note that array capacity has to be large enough.

* @param arr array to be filled, new instance returned if given not large enough or null. * @return array of values. */ public Object[] toArray(Object[] arr) { if (arr == null || arr.length < count) { arr = new Object[count]; } int pos = 0; Entry tab[] = table; for (int i = tab.length; i-- > 0;) for (Entry e = tab[i]; e != null; e = e.next) arr[pos++] = e.value; return arr; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy