/******************************************************************************* * Copyright (c) 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Zend Technologies *******************************************************************************/ package org.eclipse.php.core.ast.nodes; import java.util.ArrayList; import java.util.Collections; import java.util.List; import org.eclipse.php.core.PHPVersion; import org.eclipse.php.core.ast.match.ASTMatcher; import org.eclipse.php.core.ast.visitor.Visitor; /** * Represents conditional expression Holds the condition, if true expression and * if false expression each on e can be any expression * * <pre> * e.g. (bool) $a ? 3 : 4 * $a > 0 ? $a : -$a * </pre> * * The node supports also the new notation introduced in PHP 5.3: * * <pre> * $a ? : $b * </pre> * * The node supports also the new notation introduced in PHP 7: * * <pre> * $a ?? 0 * </pre> */ public class ConditionalExpression extends Expression { // ?: public static final int OP_TERNARY = 0; // ?? public static final int OP_COALESCE = 1; private Expression condition; private Expression ifTrue; private Expression ifFalse; private int operatorType; /** * The "expression" structural property of this node type. */ public static final ChildPropertyDescriptor CONDITION_PROPERTY = new ChildPropertyDescriptor( ConditionalExpression.class, "condition", Expression.class, //$NON-NLS-1$ MANDATORY, CYCLE_RISK); public static final ChildPropertyDescriptor IF_TRUE_PROPERTY = new ChildPropertyDescriptor( ConditionalExpression.class, "ifTrue", Expression.class, OPTIONAL, //$NON-NLS-1$ CYCLE_RISK); public static final ChildPropertyDescriptor IF_FALSE_PROPERTY = new ChildPropertyDescriptor( ConditionalExpression.class, "ifFalse", Expression.class, MANDATORY, //$NON-NLS-1$ CYCLE_RISK); public static final SimplePropertyDescriptor OPERATOR_TYPE_PROPERTY = new SimplePropertyDescriptor( ConditionalExpression.class, "operatorType", Integer.class, //$NON-NLS-1$ MANDATORY); /** * A list of property descriptors (element type: * {@link StructuralPropertyDescriptor}), or null if uninitialized. */ private static final List<StructuralPropertyDescriptor> PROPERTY_DESCRIPTORS; static { List<StructuralPropertyDescriptor> list = new ArrayList<StructuralPropertyDescriptor>(3); list.add(CONDITION_PROPERTY); list.add(IF_TRUE_PROPERTY); list.add(IF_FALSE_PROPERTY); list.add(OPERATOR_TYPE_PROPERTY); PROPERTY_DESCRIPTORS = Collections.unmodifiableList(list); } public ConditionalExpression(AST ast) { super(ast); } /** * Constructor for Ternary Operator */ public ConditionalExpression(int start, int end, AST ast, Expression condition, Expression ifTrue, Expression ifFalse) { super(start, end, ast); if (condition == null || (ast.apiLevel().isLessThan(PHPVersion.PHP5_3) && ifTrue == null) || ifFalse == null) { throw new IllegalArgumentException(); } setCondition(condition); setIfTrue(ifTrue); setIfFalse(ifFalse); operatorType = OP_TERNARY; } /** * Constructor for Null Coalesce Operator */ public ConditionalExpression(int start, int end, AST ast, Expression expression, Expression ifNull) { super(start, end, ast); if (expression == null || ast.apiLevel().isLessThan(PHPVersion.PHP7_0) || ifNull == null) { throw new IllegalArgumentException(); } setCondition(expression); setIfTrue(ifNull); setIfFalse(null); operatorType = OP_COALESCE; } public void accept0(Visitor visitor) { final boolean visit = visitor.visit(this); if (visit) { childrenAccept(visitor); } visitor.endVisit(this); } public void childrenAccept(Visitor visitor) { condition.accept(visitor); if (ifTrue != null) { ifTrue.accept(visitor); } if (ifFalse != null) { ifFalse.accept(visitor); } } public void traverseTopDown(Visitor visitor) { accept(visitor); condition.traverseTopDown(visitor); if (ifTrue != null) { ifTrue.traverseTopDown(visitor); } if (ifFalse != null) { ifFalse.traverseTopDown(visitor); } } public void traverseBottomUp(Visitor visitor) { condition.traverseBottomUp(visitor); if (ifTrue != null) { ifTrue.traverseBottomUp(visitor); } if (ifFalse != null) { ifFalse.traverseBottomUp(visitor); } accept(visitor); } public void toString(StringBuffer buffer, String tab) { buffer.append(tab).append("<ConditionalExpression"); //$NON-NLS-1$ appendInterval(buffer); buffer.append(" operatorType='" + operatorType + "'"); buffer.append(">\n"); //$NON-NLS-1$ buffer.append(TAB).append(tab).append("<Condition>\n"); //$NON-NLS-1$ condition.toString(buffer, TAB + TAB + tab); buffer.append("\n").append(TAB).append(tab).append("</Condition>\n"); //$NON-NLS-1$ //$NON-NLS-2$ if (operatorType == OP_TERNARY) { if (ifTrue != null) { buffer.append(TAB).append(tab).append("<IfTrue>\n"); //$NON-NLS-1$ ifTrue.toString(buffer, TAB + TAB + tab); buffer.append("\n").append(TAB).append(tab) //$NON-NLS-1$ .append("</IfTrue>\n"); //$NON-NLS-1$ } if (ifFalse != null) { buffer.append(TAB).append(tab).append("<IfFalse>\n"); //$NON-NLS-1$ ifFalse.toString(buffer, TAB + TAB + tab); buffer.append("\n").append(TAB).append(tab) //$NON-NLS-1$ .append("</IfFalse>\n"); //$NON-NLS-1$ } } else if (operatorType == OP_COALESCE) { buffer.append(TAB).append(tab).append("<IfNull>\n"); //$NON-NLS-1$ ifTrue.toString(buffer, TAB + TAB + tab); buffer.append("\n").append(TAB).append(tab).append("</IfNull>\n"); //$NON-NLS-1$ //$NON-NLS-2$ } buffer.append(tab).append("</ConditionalExpression>"); //$NON-NLS-1$ } public int getType() { return ASTNode.CONDITIONAL_EXPRESSION; } /** * Returns the condition of this conditional expression. * * @return the condition node */ public Expression getCondition() { return this.condition; } /** * Sets the condition of this conditional expression. * * @param expression * the condition node * @exception IllegalArgumentException * if: * <ul> * <li>the node belongs to a different AST</li> * <li>the node already has a parent</li> * <li>a cycle in would be created</li> * </ul> */ public void setCondition(Expression expression) { if (expression == null) { throw new IllegalArgumentException(); } ASTNode oldChild = this.condition; preReplaceChild(oldChild, expression, CONDITION_PROPERTY); this.condition = expression; postReplaceChild(oldChild, expression, CONDITION_PROPERTY); } /** * Returns the "then" part of this conditional expression. * * @return the "then" expression node. This method may return * <code>null</code> for PHP 5.3 and greater. */ public Expression getIfTrue() { return ifTrue; } /** * Sets the "then" part of this conditional expression. * * @param expression * the "then" expression node * @exception IllegalArgumentException * if: * <ul> * <li>the node belongs to a different AST</li> * <li>the node already has a parent</li> * <li>a cycle in would be created</li> * </ul> */ public void setIfTrue(Expression expression) { if (ast.apiLevel().isLessThan(PHPVersion.PHP5_3) && expression == null) { throw new IllegalArgumentException(); } ASTNode oldChild = this.ifTrue; preReplaceChild(oldChild, expression, IF_TRUE_PROPERTY); this.ifTrue = expression; postReplaceChild(oldChild, expression, IF_TRUE_PROPERTY); } /** * Returns the "else" part of this conditional expression. * * @return the "else" expression node */ public Expression getIfFalse() { if (getOperatorType() == OP_COALESCE) { return condition; } return ifFalse; } /** * Sets the "else" part of this conditional expression. * * @param expression * the "else" expression node * @exception IllegalArgumentException * if: * <ul> * <li>the node belongs to a different AST</li> * <li>the node already has a parent</li> * <li>a cycle in would be created</li> * </ul> */ public void setIfFalse(Expression expression) { if (expression == null && ast.apiLevel().isLessThan(PHPVersion.PHP7_0)) { throw new IllegalArgumentException(); } ASTNode oldChild = this.ifFalse; preReplaceChild(oldChild, expression, IF_FALSE_PROPERTY); this.ifFalse = expression; postReplaceChild(oldChild, expression, IF_FALSE_PROPERTY); } public void setOperatorType(int operatorType) { preValueChange(OPERATOR_TYPE_PROPERTY); this.operatorType = operatorType; postValueChange(OPERATOR_TYPE_PROPERTY); } public int getOperatorType() { return operatorType; } /* * Method declared on ASTNode. */ public boolean subtreeMatch(ASTMatcher matcher, Object other) { // dispatch to correct overloaded match method return matcher.match(this, other); } final ASTNode internalGetSetChildProperty(ChildPropertyDescriptor property, boolean get, ASTNode child) { if (property == CONDITION_PROPERTY) { if (get) { return getCondition(); } else { setCondition((Expression) child); return null; } } if (property == IF_TRUE_PROPERTY) { if (get) { return getIfTrue(); } else { setIfTrue((Expression) child); return null; } } if (property == IF_FALSE_PROPERTY) { if (get) { return getIfFalse(); } else { setIfFalse((Expression) child); return null; } } // allow default implementation to flag the error return super.internalGetSetChildProperty(property, get, child); } final int internalGetSetIntProperty(SimplePropertyDescriptor property, boolean get, int value) { if (property == OPERATOR_TYPE_PROPERTY) { if (get) { return getOperatorType(); } else { setOperatorType(value); return 0; } } // allow default implementation to flag the error return super.internalGetSetIntProperty(property, get, value); } @Override ASTNode clone0(AST target) { final Expression condition = ASTNode.copySubtree(target, this.getCondition()); final Expression ifTrue = ASTNode.copySubtree(target, this.getIfTrue()); final Expression ifFalse = ASTNode.copySubtree(target, this.getIfTrue()); if (this.operatorType == OP_TERNARY) { return new ConditionalExpression(this.getStart(), this.getEnd(), target, condition, ifTrue, ifFalse); } else { return new ConditionalExpression(this.getStart(), this.getEnd(), target, condition, ifTrue); } } @Override List<StructuralPropertyDescriptor> internalStructuralPropertiesForType(PHPVersion apiLevel) { return PROPERTY_DESCRIPTORS; } }