blob: f2f24b06af467f7181ea7923e81d49275bd50656 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.internal.jpa.parsing;
import org.eclipse.persistence.expressions.*;
/**
* INTERNAL
* <p><b>Purpose</b>: Represent a LOCATE
* <p><b>Responsibilities</b>:<ul>
* <li> Generate the correct expression for a LOCATE
* </ul>
* @author Jon Driscoll and Joel Lucuik
* @since TopLink 4.0
*/
public class LocateNode extends ArithmeticFunctionNode {
private Node find = null;
private Node findIn = null;
private Node startPosition = null;
/**
* Return a new LocateNode.
*/
public LocateNode() {
super();
}
/**
* INTERNAL
* Check the child nodes for an unqualified field access and if so,
* replace them by a qualified field access.
*/
@Override
public Node qualifyAttributeAccess(ParseTreeContext context) {
if (find != null) {
find = find.qualifyAttributeAccess(context);
}
if (findIn != null) {
findIn = findIn.qualifyAttributeAccess(context);
}
if (startPosition != null) {
startPosition = startPosition.qualifyAttributeAccess(context);
}
return this;
}
/**
* INTERNAL
* Validate node and calculate its type.
*/
@Override
public void validate(ParseTreeContext context) {
TypeHelper typeHelper = context.getTypeHelper();
if (findIn != null) {
findIn.validate(context);
findIn.validateParameter(context, typeHelper.getStringType());
}
if (find != null) {
find.validate(context);
find.validateParameter(context, typeHelper.getStringType());
}
if (startPosition != null) {
startPosition.validate(context);
startPosition.validateParameter(context, typeHelper.getIntType());
}
setType(typeHelper.getIntType());
}
/**
* INTERNAL
* Generate the EclipseLink expression for this node
*/
@Override
public Expression generateExpression(GenerationContext context) {
Expression whereClause = getFindIn().generateExpression(context);
Expression findExpr = getFind().generateExpression(context);
if (startPosition != null) {
whereClause = whereClause.locate(findExpr, getStartPosition().generateExpression(context));
} else {
whereClause = whereClause.locate(findExpr);
}
return whereClause;
}
// Accessors
public Node getFind() {
return find;
}
public Node getFindIn() {
return findIn;
}
public void setFind(Node newFind) {
find = newFind;
}
public void setFindIn(Node newFindIn) {
findIn = newFindIn;
}
public Node getStartPosition() {
return startPosition;
}
public void setStartPosition(Node newStartPosition) {
startPosition = newStartPosition;
}
}