org.elasticsearch.util.gnu.trove.TDoubleByteHashMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch subproject :server
/*
* Licensed to Elastic Search and Shay Banon under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Elastic Search licenses this
* file to you 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.elasticsearch.util.gnu.trove;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Arrays;
//////////////////////////////////////////////////
// THIS IS A GENERATED CLASS. DO NOT HAND EDIT! //
//////////////////////////////////////////////////
/**
* An open addressed Map implementation for double keys and byte values.
*
* Created: Sun Nov 4 08:52:45 2001
*
* @author Eric D. Friedman
*/
public class TDoubleByteHashMap extends TDoubleHash implements Externalizable {
static final long serialVersionUID = 1L;
private final TDoubleByteProcedure PUT_ALL_PROC = new TDoubleByteProcedure() {
public boolean execute(double key, byte value) {
put(key, value);
return true;
}
};
/**
* the values of the map
*/
protected transient byte[] _values;
/**
* Creates a new TDoubleByteHashMap
instance with the default
* capacity and load factor.
*/
public TDoubleByteHashMap() {
super();
}
/**
* Creates a new TDoubleByteHashMap
instance with a prime
* capacity equal to or greater than initialCapacity and
* with the default load factor.
*
* @param initialCapacity an int
value
*/
public TDoubleByteHashMap(int initialCapacity) {
super(initialCapacity);
}
/**
* Creates a new TDoubleByteHashMap
instance with a prime
* capacity equal to or greater than initialCapacity and
* with the specified load factor.
*
* @param initialCapacity an int
value
* @param loadFactor a float
value
*/
public TDoubleByteHashMap(int initialCapacity, float loadFactor) {
super(initialCapacity, loadFactor);
}
/**
* Creates a new TDoubleByteHashMap
instance with the default
* capacity and load factor.
*
* @param strategy used to compute hash codes and to compare keys.
*/
public TDoubleByteHashMap(TDoubleHashingStrategy strategy) {
super(strategy);
}
/**
* Creates a new TDoubleByteHashMap
instance whose capacity
* is the next highest prime above initialCapacity + 1
* unless that value is already prime.
*
* @param initialCapacity an int
value
* @param strategy used to compute hash codes and to compare keys.
*/
public TDoubleByteHashMap(int initialCapacity, TDoubleHashingStrategy strategy) {
super(initialCapacity, strategy);
}
/**
* Creates a new TDoubleByteHashMap
instance with a prime
* value at or near the specified capacity and load factor.
*
* @param initialCapacity used to find a prime capacity for the table.
* @param loadFactor used to calculate the threshold over which
* rehashing takes place.
* @param strategy used to compute hash codes and to compare keys.
*/
public TDoubleByteHashMap(int initialCapacity, float loadFactor, TDoubleHashingStrategy strategy) {
super(initialCapacity, loadFactor, strategy);
}
/**
* @return a deep clone of this collection
*/
public Object clone() {
TDoubleByteHashMap m = (TDoubleByteHashMap) super.clone();
m._values = (byte[]) this._values.clone();
return m;
}
/**
* @return a TDoubleByteIterator with access to this map's keys and values
*/
public TDoubleByteIterator iterator() {
return new TDoubleByteIterator(this);
}
/**
* initializes the hashtable to a prime capacity which is at least
* initialCapacity + 1.
*
* @param initialCapacity an int
value
* @return the actual capacity chosen
*/
protected int setUp(int initialCapacity) {
int capacity;
capacity = super.setUp(initialCapacity);
_values = new byte[capacity];
return capacity;
}
/**
* Inserts a key/value pair into the map.
*
* @param key an double
value
* @param value an byte
value
* @return the previous value associated with key,
* or (double)0 if none was found.
*/
public byte put(double key, byte value) {
int index = insertionIndex(key);
return doPut(key, value, index);
}
/**
* Inserts a key/value pair into the map if the specified key is not already
* associated with a value.
*
* @param key an double
value
* @param value an byte
value
* @return the previous value associated with key,
* or (double)0 if none was found.
*/
public byte putIfAbsent(double key, byte value) {
int index = insertionIndex(key);
if (index < 0)
return _values[-index - 1];
return doPut(key, value, index);
}
private byte doPut(double key, byte value, int index) {
byte previousState;
byte previous = (byte) 0;
boolean isNewMapping = true;
if (index < 0) {
index = -index - 1;
previous = _values[index];
isNewMapping = false;
}
previousState = _states[index];
_set[index] = key;
_states[index] = FULL;
_values[index] = value;
if (isNewMapping) {
postInsertHook(previousState == FREE);
}
return previous;
}
/**
* Put all the entries from the given map into this map.
*
* @param map The map from which entries will be obtained to put into this map.
*/
public void putAll(TDoubleByteHashMap map) {
map.forEachEntry(PUT_ALL_PROC);
}
/**
* rehashes the map to the new capacity.
*
* @param newCapacity an int
value
*/
protected void rehash(int newCapacity) {
int oldCapacity = _set.length;
double oldKeys[] = _set;
byte oldVals[] = _values;
byte oldStates[] = _states;
_set = new double[newCapacity];
_values = new byte[newCapacity];
_states = new byte[newCapacity];
for (int i = oldCapacity; i-- > 0;) {
if (oldStates[i] == FULL) {
double o = oldKeys[i];
int index = insertionIndex(o);
_set[index] = o;
_values[index] = oldVals[i];
_states[index] = FULL;
}
}
}
/**
* retrieves the value for key
*
* @param key an double
value
* @return the value of key or (double)0 if no such mapping exists.
*/
public byte get(double key) {
int index = index(key);
return index < 0 ? (byte) 0 : _values[index];
}
/**
* Empties the map.
*/
public void clear() {
super.clear();
double[] keys = _set;
byte[] vals = _values;
byte[] states = _states;
Arrays.fill(_set, 0, _set.length, (double) 0);
Arrays.fill(_values, 0, _values.length, (byte) 0);
Arrays.fill(_states, 0, _states.length, FREE);
}
/**
* Deletes a key/value pair from the map.
*
* @param key an double
value
* @return an byte
value, or (double)0 if no mapping for key exists
*/
public byte remove(double key) {
byte prev = (byte) 0;
int index = index(key);
if (index >= 0) {
prev = _values[index];
removeAt(index); // clear key,state; adjust size
}
return prev;
}
/**
* Compares this map with another map for equality of their stored
* entries.
*
* @param other an Object
value
* @return a boolean
value
*/
public boolean equals(Object other) {
if (!(other instanceof TDoubleByteHashMap)) {
return false;
}
TDoubleByteHashMap that = (TDoubleByteHashMap) other;
if (that.size() != this.size()) {
return false;
}
return forEachEntry(new EqProcedure(that));
}
public int hashCode() {
HashProcedure p = new HashProcedure();
forEachEntry(p);
return p.getHashCode();
}
private final class HashProcedure implements TDoubleByteProcedure {
private int h = 0;
public int getHashCode() {
return h;
}
public final boolean execute(double key, byte value) {
h += (_hashingStrategy.computeHashCode(key) ^ HashFunctions.hash(value));
return true;
}
}
private static final class EqProcedure implements TDoubleByteProcedure {
private final TDoubleByteHashMap _otherMap;
EqProcedure(TDoubleByteHashMap otherMap) {
_otherMap = otherMap;
}
public final boolean execute(double key, byte value) {
int index = _otherMap.index(key);
if (index >= 0 && eq(value, _otherMap.get(key))) {
return true;
}
return false;
}
/**
* Compare two bytes for equality.
*/
private final boolean eq(byte v1, byte v2) {
return v1 == v2;
}
}
/**
* removes the mapping at index from the map.
*
* @param index an int
value
*/
protected void removeAt(int index) {
_values[index] = (byte) 0;
super.removeAt(index); // clear key, state; adjust size
}
/**
* Returns the values of the map.
*
* @return a Collection
value
*/
public byte[] getValues() {
byte[] vals = new byte[size()];
byte[] v = _values;
byte[] states = _states;
for (int i = v.length, j = 0; i-- > 0;) {
if (states[i] == FULL) {
vals[j++] = v[i];
}
}
return vals;
}
/**
* returns the keys of the map.
*
* @return a Set
value
*/
public double[] keys() {
double[] keys = new double[size()];
double[] k = _set;
byte[] states = _states;
for (int i = k.length, j = 0; i-- > 0;) {
if (states[i] == FULL) {
keys[j++] = k[i];
}
}
return keys;
}
/**
* returns the keys of the map.
*
* @param a the array into which the elements of the list are to
* be stored, if it is big enough; otherwise, a new array of the
* same type is allocated for this purpose.
* @return a Set
value
*/
public double[] keys(double[] a) {
int size = size();
if (a.length < size) {
a = (double[]) java.lang.reflect.Array.newInstance(
a.getClass().getComponentType(), size);
}
double[] k = (double[]) _set;
byte[] states = _states;
for (int i = k.length, j = 0; i-- > 0;) {
if (states[i] == FULL) {
a[j++] = k[i];
}
}
return a;
}
/**
* checks for the presence of val in the values of the map.
*
* @param val an byte
value
* @return a boolean
value
*/
public boolean containsValue(byte val) {
byte[] states = _states;
byte[] vals = _values;
for (int i = vals.length; i-- > 0;) {
if (states[i] == FULL && val == vals[i]) {
return true;
}
}
return false;
}
/**
* checks for the present of key in the keys of the map.
*
* @param key an double
value
* @return a boolean
value
*/
public boolean containsKey(double key) {
return contains(key);
}
/**
* Executes procedure for each key in the map.
*
* @param procedure a TDoubleProcedure
value
* @return false if the loop over the keys terminated because
* the procedure returned false for some key.
*/
public boolean forEachKey(TDoubleProcedure procedure) {
return forEach(procedure);
}
/**
* Executes procedure for each value in the map.
*
* @param procedure a TByteProcedure
value
* @return false if the loop over the values terminated because
* the procedure returned false for some value.
*/
public boolean forEachValue(TByteProcedure procedure) {
byte[] states = _states;
byte[] values = _values;
for (int i = values.length; i-- > 0;) {
if (states[i] == FULL && !procedure.execute(values[i])) {
return false;
}
}
return true;
}
/**
* Executes procedure for each key/value entry in the
* map.
*
* @param procedure a TODoubleByteProcedure
value
* @return false if the loop over the entries terminated because
* the procedure returned false for some entry.
*/
public boolean forEachEntry(TDoubleByteProcedure procedure) {
byte[] states = _states;
double[] keys = _set;
byte[] values = _values;
for (int i = keys.length; i-- > 0;) {
if (states[i] == FULL && !procedure.execute(keys[i], values[i])) {
return false;
}
}
return true;
}
/**
* Retains only those entries in the map for which the procedure
* returns a true value.
*
* @param procedure determines which entries to keep
* @return true if the map was modified.
*/
public boolean retainEntries(TDoubleByteProcedure procedure) {
boolean modified = false;
byte[] states = _states;
double[] keys = _set;
byte[] values = _values;
// Temporarily disable compaction. This is a fix for bug #1738760
tempDisableAutoCompaction();
try {
for (int i = keys.length; i-- > 0;) {
if (states[i] == FULL && !procedure.execute(keys[i], values[i])) {
removeAt(i);
modified = true;
}
}
}
finally {
reenableAutoCompaction(true);
}
return modified;
}
/**
* Transform the values in this map using function.
*
* @param function a TByteFunction
value
*/
public void transformValues(TByteFunction function) {
byte[] states = _states;
byte[] values = _values;
for (int i = values.length; i-- > 0;) {
if (states[i] == FULL) {
values[i] = function.execute(values[i]);
}
}
}
/**
* Increments the primitive value mapped to key by 1
*
* @param key the key of the value to increment
* @return true if a mapping was found and modified.
*/
public boolean increment(double key) {
return adjustValue(key, (byte) 1);
}
/**
* Adjusts the primitive value mapped to key.
*
* @param key the key of the value to increment
* @param amount the amount to adjust the value by.
* @return true if a mapping was found and modified.
*/
public boolean adjustValue(double key, byte amount) {
int index = index(key);
if (index < 0) {
return false;
} else {
_values[index] += amount;
return true;
}
}
/**
* Adjusts the primitive value mapped to the key if the key is present in the map.
* Otherwise, the initial_value is put in the map.
*
* @param key the key of the value to increment
* @param adjust_amount the amount to adjust the value by
* @param put_amount the value put into the map if the key is not initial present
* @return the value present in the map after the adjustment or put operation
* @since 2.0b1
*/
public byte adjustOrPutValue(final double key, final byte adjust_amount, final byte put_amount) {
int index = insertionIndex(key);
final boolean isNewMapping;
final byte newValue;
if (index < 0) {
index = -index - 1;
newValue = (_values[index] += adjust_amount);
isNewMapping = false;
} else {
newValue = (_values[index] = put_amount);
isNewMapping = true;
}
byte previousState = _states[index];
_set[index] = key;
_states[index] = FULL;
if (isNewMapping) {
postInsertHook(previousState == FREE);
}
return newValue;
}
public void writeExternal(ObjectOutput out) throws IOException {
// VERSION
out.writeByte(0);
// NUMBER OF ENTRIES
out.writeInt(_size);
// ENTRIES
SerializationProcedure writeProcedure = new SerializationProcedure(out);
if (!forEachEntry(writeProcedure)) {
throw writeProcedure.exception;
}
}
public void readExternal(ObjectInput in)
throws IOException, ClassNotFoundException {
// VERSION
in.readByte();
// NUMBER OF ENTRIES
int size = in.readInt();
setUp(size);
// ENTRIES
while (size-- > 0) {
double key = in.readDouble();
byte val = in.readByte();
put(key, val);
}
}
public String toString() {
final StringBuilder buf = new StringBuilder("{");
forEachEntry(new TDoubleByteProcedure() {
private boolean first = true;
public boolean execute(double key, byte value) {
if (first) first = false;
else buf.append(",");
buf.append(key);
buf.append("=");
buf.append(value);
return true;
}
});
buf.append("}");
return buf.toString();
}
} // TDoubleByteHashMap