com.gs.fw.common.mithra.cache.offheap.OffHeapCharExtractorWithOffset Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reladomo Show documentation
Show all versions of reladomo Show documentation
Reladomo is an object-relational mapping framework.
/*
Copyright 2016 Goldman Sachs.
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.gs.fw.common.mithra.cache.offheap;
import com.gs.fw.common.mithra.extractor.CharExtractor;
import com.gs.fw.common.mithra.extractor.Extractor;
import com.gs.fw.common.mithra.util.HashUtil;
import com.gs.fw.common.mithra.util.MithraUnsafe;
import sun.misc.Unsafe;
public class OffHeapCharExtractorWithOffset implements OffHeapCharExtractor
{
private static Unsafe UNSAFE = MithraUnsafe.getUnsafe();
private final int fieldOffset;
private final int nullBitsOffset;
private final int nullBitsPosition;
public OffHeapCharExtractorWithOffset(int fieldOffset, int nullBitsOffset, int nullBitsPosition)
{
this.fieldOffset = fieldOffset;
this.nullBitsOffset = nullBitsOffset;
this.nullBitsPosition = nullBitsPosition;
}
@Override
public char charValueOf(OffHeapDataStorage dataStorage, int dataOffset)
{
return dataStorage.getChar(dataOffset, fieldOffset);
}
@Override
public boolean isAttributeNull(OffHeapDataStorage dataStorage, int dataOffset)
{
return nullBitsOffset >= 0 && (dataStorage.getInt(dataOffset, nullBitsOffset) & (1 << nullBitsPosition)) != 0;
}
@Override
public int computeHashFromValue(Object key)
{
if (key == null)
{
return HashUtil.NULL_HASH;
}
return HashUtil.hash(((Character)key).charValue());
}
@Override
public boolean valueEquals(OffHeapDataStorage dataStorage, int dataOffset, long otherDataAddress)
{
if (isAttributeNull(dataStorage, dataOffset))
{
return (UNSAFE.getInt(otherDataAddress + nullBitsOffset) & (1 << nullBitsPosition)) != 0;
}
return charValueOf(dataStorage, dataOffset) == UNSAFE.getChar(otherDataAddress + fieldOffset);
}
@Override
public boolean valueEquals(OffHeapDataStorage dataStorage, int dataOffset, int secondOffset)
{
return isAttributeNull(dataStorage, dataOffset) ? isAttributeNull(dataStorage, secondOffset) :
charValueOf(dataStorage, dataOffset) == charValueOf(dataStorage, secondOffset);
}
@Override
public boolean valueEquals(OffHeapDataStorage dataStorage, int dataOffset, Object key)
{
if (key == null)
{
return isAttributeNull(dataStorage, dataOffset);
}
return charValueOf(dataStorage, dataOffset) == ((Character)key).charValue();
}
@Override
public int computeHashFromOnHeapExtractor(Object valueHolder, Extractor onHeapExtractor)
{
return onHeapExtractor.valueHashCode(valueHolder);
}
@Override
public boolean equals(OffHeapDataStorage dataStorage, int dataOffset, Object valueHolder, Extractor extractor)
{
if (extractor.isAttributeNull(valueHolder))
{
return isAttributeNull(dataStorage, dataOffset);
}
return charValueOf(dataStorage, dataOffset) == ((CharExtractor)extractor).charValueOf(valueHolder);
}
@Override
public int computeHash(OffHeapDataStorage dataStorage, int dataOffset)
{
if (isAttributeNull(dataStorage, dataOffset))
{
return HashUtil.NULL_HASH;
}
return HashUtil.hash(charValueOf(dataStorage, dataOffset));
}
}