com.epam.deltix.util.collections.generated.DecimalHashMapBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timebase-collections Show documentation
Show all versions of timebase-collections Show documentation
Timebase Common utilities and collections
The newest version!
/*
* Copyright 2021 EPAM Systems, Inc
*
* See the NOTICE file distributed with this work for additional information
* regarding copyright ownership. 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 com.epam.deltix.util.collections.generated;
import com.epam.deltix.util.collections.*;
import com.epam.deltix.util.collections.hash.*;
import java.util.*;
import com.epam.deltix.dfp.Decimal64;
/**
* Base class for Decimal to anything hash maps.
*/
@SuppressWarnings ("unchecked")
public abstract class DecimalHashMapBase extends VLinkHashMapBase {
protected Decimal64 [] keys;
public DecimalHashMapBase () {
super ();
}
public DecimalHashMapBase (int cap) {
super (cap);
}
public DecimalHashMapBase (int cap, HashCodeComputer hashCodeComputer) {
super (cap, hashCodeComputer);
}
protected void putKey (int idx, Decimal64 key) {
keys [idx] = key;
}
@Override
public long getSizeInMemory () {
return (
super.getSizeInMemory () + (SIZE_OF_POINTER + ARRAY_OVERHEAD) +
keys.length * SIZE_OF_POINTER
);
}
@Override
protected void allocTable (int cap) {
super.allocTable (cap);
keys = new Decimal64 [cap];
}
protected final int hashIndex (Decimal64 key) {
return (hashCodeComputer.modHashCode (key, hashIndex.length));
}
public boolean remove (Decimal64 key) {
int idx = find (key);
if (idx == NULL)
return (false);
free (idx);
return (true);
}
protected int find (Decimal64 key) {
return (find (hashIndex (key), key));
}
protected int find (int hidx, Decimal64 key) {
for (int chain = hashIndex [hidx]; chain != NULL; chain = next [chain]) {
assert hashIndex (keys [chain]) == hidx;
if (keys [chain] == key)
return (chain);
}
return (NULL);
}
/**
* Quick test for the presence of the specified key.
*
* @param key The key to search.
*/
public boolean containsKey (Decimal64 key) {
return (find (key) != NULL);
}
public final boolean isEmpty () {
return (count == 0);
}
protected final class KeyEnumeration implements DecimalEnumeration {
private int pos = -1;
public KeyEnumeration () {
move ();
}
private void move () {
do {
pos++;
} while (pos < keys.length && isEmpty (pos));
}
@Override
public boolean hasMoreElements () {
return (pos < keys.length);
}
@Override
public void reset() {
pos = -1;
move();
}
@Override
public Decimal64 nextDecimalElement () {
Decimal64 ret = keys [pos];
move ();
return (ret);
}
@Override
public Decimal64 nextElement () {
return (nextDecimalElement ());
}
}
public DecimalEnumeration keys () {
return (new KeyEnumeration ());
}
public final Decimal64 [] keysToArray (Decimal64 [] ret) {
if (ret == null || ret.length < count)
ret = new Decimal64 [count];
int retIdx = 0;
for (int ii = 0; ii < keys.length; ii++)
if (isFilled (ii))
ret [retIdx++] = keys [ii];
assert retIdx == count;
return (ret);
}
static final long serialVersionUID = 1L;
private void writeObject (java.io.ObjectOutputStream out)
throws java.io.IOException
{
out.writeShort (1);
}
private void readObject (java.io.ObjectInputStream in)
throws java.io.IOException, ClassNotFoundException
{
@SuppressWarnings("unused")
short readSerialVersion = in.readShort();
}
}