org.eclipse.persistence.internal.jpa.querydef.InImpl Maven / Gradle / Ivy
Show all versions of eclipselink Show documentation
/*******************************************************************************
* Copyright (c) 2011, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Gordon Yorke - Initial development
*
******************************************************************************/
package org.eclipse.persistence.internal.jpa.querydef;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.persistence.criteria.Expression;
import javax.persistence.criteria.Predicate;
import javax.persistence.criteria.CriteriaBuilder.In;
import javax.persistence.metamodel.Metamodel;
import org.eclipse.persistence.internal.expressions.CollectionExpression;
import org.eclipse.persistence.internal.expressions.CompoundExpression;
import org.eclipse.persistence.internal.expressions.FunctionExpression;
import org.eclipse.persistence.internal.expressions.LogicalExpression;
import org.eclipse.persistence.internal.expressions.RelationExpression;
import org.eclipse.persistence.internal.localization.ExceptionLocalization;
/**
*
* Purpose: Contains the implementation of the In interface of the JPA
* criteria API.
*
* Description: This class represents an In predicate.
*
*
* @see javax.persistence.criteria Join
*
* @author gyorke
* @since EclipseLink 1.2
*/
public class InImpl extends CompoundExpressionImpl implements In {
protected org.eclipse.persistence.expressions.Expression parentNode;
public InImpl(Metamodel metamodel, ExpressionImpl leftExpression, Collection values, List expressions) {
super(metamodel, ((InternalSelection)leftExpression).getCurrentNode().in(values), expressions, "in");
this.leftExpression = leftExpression;
}
public InImpl(Metamodel metamodel, ExpressionImpl leftExpression, ExpressionImpl rightExp, List expressions) {
super(metamodel,
(rightExp.isParameter()?
leftExpression.getCurrentNode().in(rightExp.getCurrentNode()):
leftExpression.getCurrentNode().equal(rightExp.getCurrentNode())),
expressions, "in");
this.leftExpression = leftExpression;
}
protected ExpressionImpl leftExpression;
/**
* Returns the expression to be tested against the
* list of values.
* @return expression
*/
public Expression getExpression(){
return this.leftExpression;
}
@Override
/**
* Return the top-level conjuncts or disjuncts of the predicate.
*
* @return list boolean expressions forming the predicate
*/
public List> getExpressions(){
List> result = new ArrayList>();
result.add(this);
return result;
}
public void findRootAndParameters(CommonAbstractCriteriaImpl query){
super.findRootAndParameters(query);
}
public boolean isPredicate(){
return true;
}
/**
* Add to list of values to be tested against.
* @param value value
* @return in predicate
*/
public In value(T value){
((Collection)((CollectionExpression)((RelationExpression)this.currentNode).getSecondChild()).getValue()).add(value);
return this;
}
/**
* Add to list of values to be tested against.
* @param value expression
* @return in predicate
*/
public In value(Expression extends T> value) {
if (!(((InternalExpression) value).isLiteral() || ((InternalExpression) value).isParameter())) {
RelationExpression baseIn = (RelationExpression) this.currentNode;
this.currentNode = baseIn.getFirstChild().in(((SubQueryImpl) value).subQuery);
if (this.parentNode != null) {
if (this.parentNode.isCompoundExpression()) {
CompoundExpression logExp = (LogicalExpression) this.parentNode;
if (logExp.getFirstChild() == baseIn) {
logExp.create(this.currentNode, logExp.getSecondChild(), logExp.getOperator());
} else {
logExp.create(logExp.getFirstChild(), this.currentNode, logExp.getOperator());
}
} else {
FunctionExpression funcExp = (FunctionExpression) this.parentNode;
funcExp.getChildren().set(funcExp.getChildren().indexOf(baseIn), this.currentNode);
}
}
} else {
if (this.currentNode.isRelationExpression()) {
RelationExpression baseIn = (RelationExpression) this.currentNode;
((InternalSelection) value).getCurrentNode().setLocalBase(baseIn.getFirstChild());
((Collection) ((CollectionExpression) baseIn.getSecondChild()).getValue()).add(((InternalSelection) value).getCurrentNode());
} else {
throw new IllegalStateException(ExceptionLocalization.buildMessage("CANNOT_ADD_CONSTANTS_TO_SUBQUERY_IN"));
}
}
this.expressions.add(value);
return this;
}
/**
* This method is used to store what will be the parent EclipseLink expression in the case the tree needs to be altered.
* Currently used for In.
*/
public void setParentNode(org.eclipse.persistence.expressions.Expression parentNode){
this.parentNode = parentNode;
}
public Predicate not(){
parentNode = this.getCurrentNode().not();
ArrayList list = new ArrayList();
list.add(this);
CompoundExpressionImpl expr = new CompoundExpressionImpl(this.metamodel, parentNode, list, "not");
expr.setIsNegated(true);
return expr;
}
}