![JAR search and dependency download from the Maven repository](/logo.png)
com.gs.fw.common.mithra.finder.doubleop.DoubleNotInOperation 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.doubleop;
import com.gs.collections.api.iterator.DoubleIterator;
import com.gs.collections.api.set.primitive.DoubleSet;
import com.gs.fw.common.mithra.attribute.DoubleAttribute;
import com.gs.fw.common.mithra.databasetype.DatabaseType;
import com.gs.fw.common.mithra.extractor.DoubleExtractor;
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.Arrays;
import java.util.TimeZone;
public class DoubleNotInOperation extends NotInOperation implements SqlParameterSetter
{
private DoubleSet set;
private transient volatile double[] copiedArray;
public DoubleNotInOperation(DoubleAttribute attribute, DoubleSet doubleSet)
{
super(attribute);
this.set = doubleSet.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.setDouble(startIndex++, copiedArray[i]);
}
return numberToSet;
}
@Override
public double getSetValueAsDouble(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 hashCode()
{
return ~(this.getAttribute().hashCode() ^ this.set.hashCode());
}
public boolean equals(Object obj)
{
if (obj == this) return true;
if (obj instanceof DoubleNotInOperation)
{
DoubleNotInOperation other = (DoubleNotInOperation) 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(((DoubleExtractor)extractor).doubleValueOf(holder));
}
@Override
protected ShapeMatchResult shapeMatchSet(NotInOperation existingOperation)
{
if (existingOperation.getSetSize() < MAX_SHAPE_MATCH_SIZE)
{
DoubleNotInOperation loopOp = (DoubleNotInOperation) existingOperation;
DoubleIterator doubleIterator = loopOp.set.doubleIterator();
while(doubleIterator.hasNext())
{
if (!this.set.contains(doubleIterator.next()))
{
return NoMatchSmr.INSTANCE;
}
}
return (this.getSetSize() == loopOp.getSetSize()) ? ExactMatchSmr.INSTANCE : new SuperMatchSmr(existingOperation, this);
}
return NoMatchSmr.INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy