com.gs.fw.common.mithra.finder.integer.IntegerNotInOperation 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.integer;
import com.gs.collections.api.iterator.IntIterator;
import com.gs.collections.api.set.primitive.IntSet;
import com.gs.fw.common.mithra.attribute.IntegerAttribute;
import com.gs.fw.common.mithra.databasetype.DatabaseType;
import com.gs.fw.common.mithra.extractor.Extractor;
import com.gs.fw.common.mithra.extractor.IntExtractor;
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.Arrays;
import java.util.TimeZone;
public class IntegerNotInOperation extends NotInOperation implements SqlParameterSetter
{
private IntSet set;
private transient volatile int[] copiedArray;
public IntegerNotInOperation(IntegerAttribute attribute, IntSet intSet)
{
super(attribute);
this.set = intSet.freeze();
}
protected int setSqlParameters(PreparedStatement pstmt, int startIndex, TimeZone timeZone, int setStart, int numberToSet, DatabaseType databaseType) throws SQLException
{
this.populateCopiedArray();
for(int i=setStart;i< setStart + numberToSet;i++)
{
pstmt.setInt(startIndex++, copiedArray[i]);
}
return numberToSet;
}
public int hashCode()
{
return ~(this.getAttribute().hashCode() ^ this.set.hashCode());
}
public boolean equals(Object obj)
{
if (obj == this) return true;
if (obj instanceof IntegerNotInOperation)
{
IntegerNotInOperation other = (IntegerNotInOperation) obj;
return this.getAttribute().equals(other.getAttribute()) && this.set.equals(other.set);
}
return false;
}
@Override
public int getSetValueAsInt(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();
Arrays.sort(this.copiedArray);
}
}
}
}
public int getSetSize()
{
return this.set.size();
}
@Override
public boolean setContains(Object holder, Extractor extractor)
{
return this.set.contains(((IntExtractor)extractor).intValueOf(holder));
}
@Override
protected ShapeMatchResult shapeMatchSet(NotInOperation existingOperation)
{
if (existingOperation.getSetSize() < MAX_SHAPE_MATCH_SIZE)
{
IntegerNotInOperation loopOp = (IntegerNotInOperation) existingOperation;
IntIterator intIterator = loopOp.set.intIterator();
while(intIterator.hasNext())
{
if (!this.set.contains(intIterator.next()))
{
return NoMatchSmr.INSTANCE;
}
}
return (this.getSetSize() == loopOp.getSetSize()) ? ExactMatchSmr.INSTANCE : new SuperMatchSmr(existingOperation, this);
}
return NoMatchSmr.INSTANCE;
}
}