All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nz.co.gregs.dbvolution.operators.DBBetweenInclusiveExclusiveOperator Maven / Gradle / Ivy

/*
 * Copyright 2014 Gregory Graham.
 *
 * 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 nz.co.gregs.dbvolution.operators;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import nz.co.gregs.dbvolution.databases.definitions.DBDefinition;
import nz.co.gregs.dbvolution.datatypes.QueryableDatatypeSyncer;
import nz.co.gregs.dbvolution.expressions.BooleanExpression;
import nz.co.gregs.dbvolution.expressions.DBExpression;
import nz.co.gregs.dbvolution.expressions.DateExpression;
import nz.co.gregs.dbvolution.expressions.IntegerExpression;
import nz.co.gregs.dbvolution.results.DateResult;
import nz.co.gregs.dbvolution.expressions.NumberExpression;
import nz.co.gregs.dbvolution.results.NumberResult;
import nz.co.gregs.dbvolution.expressions.StringExpression;
import nz.co.gregs.dbvolution.results.IntegerResult;
import nz.co.gregs.dbvolution.results.StringResult;

/**
 * Implements a type agnostic comparison that finds items between the 2 values
 * including the first value but not the second.
 *
 * 

* This is the standard comparison for times, for instance an event that runs * from 1PM until 3PM will not be running during the 3PM hour. As comparison an * event that runs from the 1st until the 3rd will run during the 3rd day. * *

Support DBvolution at * Patreon

* * @author Gregory Graham */ public class DBBetweenInclusiveExclusiveOperator extends DBOperator { private static final long serialVersionUID = 1L; /** * Implements a type agnostic comparison that finds items between the 2 values * including the first value but not the second. * *

* This is the standard comparison for times, for instance an event that runs * from 1PM until 3PM will not be running during the 3PM hour. As comparison * an event that runs from the 1st until the 3rd will run during the 3rd day. * * @param lowValue * @param highValue */ @SuppressFBWarnings( value = "NP_LOAD_OF_KNOWN_NULL_VALUE", justification = "Null is a valid value in databases") public DBBetweenInclusiveExclusiveOperator(DBExpression lowValue, DBExpression highValue) { super(lowValue == null ? lowValue : lowValue.copy(), highValue == null ? highValue : highValue.copy()); } @Override public DBBetweenInclusiveExclusiveOperator copyAndAdapt(QueryableDatatypeSyncer.DBSafeInternalQDTAdaptor typeAdaptor) { DBBetweenInclusiveExclusiveOperator op = new DBBetweenInclusiveExclusiveOperator(typeAdaptor.convert(getFirstValue()), typeAdaptor.convert(getSecondValue())); op.invertOperator = this.invertOperator; op.includeNulls = this.includeNulls; return op; } @Override public BooleanExpression generateWhereExpression(DBDefinition db, DBExpression column) { DBExpression genericExpression = column; BooleanExpression betweenOp = BooleanExpression.trueExpression(); if (genericExpression instanceof StringExpression) { StringExpression stringExpression = (StringExpression) genericExpression; StringResult firstStringExpr = null; StringResult secondStringExpr = null; if (getFirstValue() instanceof NumberResult) { NumberResult numberResult = (NumberResult) getFirstValue(); firstStringExpr = new NumberExpression(numberResult).stringResult(); } else if (getFirstValue() instanceof IntegerResult) { IntegerResult integerResult = (IntegerResult) getFirstValue(); firstStringExpr = new IntegerExpression(integerResult).stringResult(); } else if (getFirstValue() instanceof StringResult) { firstStringExpr = (StringResult) getFirstValue(); } if (getSecondValue() instanceof NumberResult) { NumberResult numberResult = (NumberResult) getSecondValue(); secondStringExpr = new NumberExpression(numberResult).stringResult(); } else if (getSecondValue() instanceof IntegerResult) { IntegerResult integerResult = (IntegerResult) getSecondValue(); secondStringExpr = new IntegerExpression(integerResult).stringResult(); } else if (getSecondValue() instanceof StringResult) { secondStringExpr = (StringResult) getSecondValue(); } if (firstStringExpr != null && secondStringExpr != null) { betweenOp = stringExpression.bracket().isBetween(firstStringExpr, secondStringExpr); } } else if ((genericExpression instanceof NumberExpression) && (getFirstValue() instanceof NumberResult) && (getSecondValue() instanceof NumberResult)) { NumberExpression numberExpression = (NumberExpression) genericExpression; betweenOp = numberExpression.isBetween((NumberResult) getFirstValue(), (NumberResult) getSecondValue()); } else if ((genericExpression instanceof IntegerExpression) && (getFirstValue() instanceof IntegerResult) && (getSecondValue() instanceof IntegerResult)) { IntegerExpression numberExpression = (IntegerExpression) genericExpression; betweenOp = numberExpression.isBetween((IntegerResult) getFirstValue(), (IntegerResult) getSecondValue()); } else if ((genericExpression instanceof DateExpression) && (getFirstValue() instanceof DateResult) && (getSecondValue() instanceof DateResult)) { DateExpression dateExpression = (DateExpression) genericExpression; betweenOp = dateExpression.isBetween((DateResult) getFirstValue(), (DateResult) getSecondValue()); } return this.invertOperator ? betweenOp.not() : betweenOp; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy