one.microstream.persistence.binary.jdk8.java.util.BinaryHandlerHashtable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microstream-persistence-binary-jdk8 Show documentation
Show all versions of microstream-persistence-binary-jdk8 Show documentation
MicroStream Persistence Specialized Type Handlers
package one.microstream.persistence.binary.jdk8.java.util;
/*-
* #%L
* microstream-persistence-binary-jdk8
* %%
* Copyright (C) 2019 - 2022 MicroStream Software
* %%
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 2
* with the GNU Classpath Exception which is
* available at https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
* #L%
*/
import java.util.Hashtable;
import one.microstream.X;
import one.microstream.collections.old.KeyValueFlatCollector;
import one.microstream.collections.old.OldCollections;
import one.microstream.persistence.binary.internal.AbstractBinaryHandlerCustomCollection;
import one.microstream.persistence.binary.jdk8.types.SunJdk8Internals;
import one.microstream.persistence.binary.types.Binary;
import one.microstream.persistence.types.Persistence;
import one.microstream.persistence.types.PersistenceFunction;
import one.microstream.persistence.types.PersistenceLoadHandler;
import one.microstream.persistence.types.PersistenceReferenceLoader;
import one.microstream.persistence.types.PersistenceStoreHandler;
public final class BinaryHandlerHashtable extends AbstractBinaryHandlerCustomCollection>
{
///////////////////////////////////////////////////////////////////////////
// constants //
//////////////
static final long BINARY_OFFSET_LOAD_FACTOR = 0;
static final long BINARY_OFFSET_ELEMENTS = BINARY_OFFSET_LOAD_FACTOR + Float.BYTES;
///////////////////////////////////////////////////////////////////////////
// static methods //
///////////////////
@SuppressWarnings({"unchecked", "rawtypes"})
private static Class> handledType()
{
return (Class)Hashtable.class; // no idea how to get ".class" to work otherwise
}
static final float getLoadFactor(final Binary bytes)
{
return bytes.read_float(BINARY_OFFSET_LOAD_FACTOR);
}
static final int getElementCount(final Binary bytes)
{
return X.checkArrayRange(bytes.getListElementCountKeyValue(BINARY_OFFSET_ELEMENTS));
}
public static BinaryHandlerHashtable New()
{
return new BinaryHandlerHashtable();
}
///////////////////////////////////////////////////////////////////////////
// constructors //
/////////////////
BinaryHandlerHashtable()
{
super(
handledType(),
keyValuesFields(
CustomField(float.class, "loadFactor")
)
);
}
///////////////////////////////////////////////////////////////////////////
// methods //
////////////
@Override
public final void store(
final Binary bytes ,
final Hashtable, ?> instance,
final long objectId,
final PersistenceStoreHandler handler
)
{
// store elements simply as array binary form
bytes.storeMapEntrySet(
this.typeId() ,
objectId ,
BINARY_OFFSET_ELEMENTS,
instance.entrySet() ,
handler
);
// store load factor as (sole) header value
bytes.store_float(
BINARY_OFFSET_LOAD_FACTOR,
SunJdk8Internals.getLoadFactor(instance)
);
}
@Override
public final Hashtable, ?> create(final Binary bytes, final PersistenceLoadHandler idResolver)
{
return new Hashtable<>(
getElementCount(bytes),
getLoadFactor(bytes)
);
}
@Override
public final void updateState(final Binary bytes, final Hashtable, ?> instance, final PersistenceLoadHandler idResolver)
{
instance.clear();
final int elementCount = getElementCount(bytes);
final KeyValueFlatCollector