com.gs.fw.common.mithra.finder.byteop.ByteNotInOperation 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.finder.byteop;
import com.gs.collections.api.iterator.ByteIterator;
import com.gs.collections.api.set.primitive.ByteSet;
import com.gs.fw.common.mithra.attribute.ByteAttribute;
import com.gs.fw.common.mithra.databasetype.DatabaseType;
import com.gs.fw.common.mithra.extractor.ByteExtractor;
import com.gs.fw.common.mithra.extractor.Extractor;
import com.gs.fw.common.mithra.finder.NotInOperation;
import com.gs.fw.common.mithra.finder.SqlParameterSetter;
import com.gs.fw.common.mithra.finder.ToStringContext;
import com.gs.fw.common.mithra.finder.sqcache.ExactMatchSmr;
import com.gs.fw.common.mithra.finder.sqcache.NoMatchSmr;
import com.gs.fw.common.mithra.finder.sqcache.ShapeMatchResult;
import com.gs.fw.common.mithra.finder.sqcache.SuperMatchSmr;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.TimeZone;
public class ByteNotInOperation extends NotInOperation implements SqlParameterSetter
{
private ByteSet set;
private transient volatile byte[] copiedArray;
public ByteNotInOperation(ByteAttribute attribute, ByteSet byteSet)
{
super(attribute);
this.set = byteSet.freeze();
}
protected int setSqlParameters(PreparedStatement pstmt, int startIndex, TimeZone timeZone, int setStart, int numberToSet, DatabaseType databaseType) throws SQLException
{
populateCopiedArray();
for(int i=setStart;i< setStart + numberToSet;i++)
{
pstmt.setByte(startIndex++, copiedArray[i]);
}
return numberToSet;
}
@Override
public byte getSetValueAsByte(int index)
{
return this.copiedArray[index];
}
@Override
protected void appendSetToString(ToStringContext toStringContext)
{
toStringContext.append(this.set.toString());
}
protected void populateCopiedArray()
{
if (this.copiedArray == null)
{
synchronized (this)
{
if (this.copiedArray == null) this.copiedArray = this.set.toArray();
}
}
}
public int hashCode()
{
return ~(this.getAttribute().hashCode() ^ this.set.hashCode());
}
public boolean equals(Object obj)
{
if (obj == this) return true;
if (obj instanceof ByteNotInOperation)
{
ByteNotInOperation other = (ByteNotInOperation) obj;
return this.getAttribute().equals(other.getAttribute()) && this.set.equals(other.set);
}
return false;
}
public int getSetSize()
{
return this.set.size();
}
@Override
public boolean setContains(Object holder, Extractor extractor)
{
return this.set.contains(((ByteExtractor)extractor).byteValueOf(holder));
}
@Override
protected ShapeMatchResult shapeMatchSet(NotInOperation existingOperation)
{
if (existingOperation.getSetSize() < MAX_SHAPE_MATCH_SIZE)
{
ByteNotInOperation loopOp = (ByteNotInOperation) existingOperation;
ByteIterator byteIterator = loopOp.set.byteIterator();
while(byteIterator.hasNext())
{
if (!this.set.contains(byteIterator.next()))
{
return NoMatchSmr.INSTANCE;
}
}
return (this.getSetSize() == loopOp.getSetSize()) ? ExactMatchSmr.INSTANCE : new SuperMatchSmr(existingOperation, this);
}
return NoMatchSmr.INSTANCE;
}
}