org.teiid.query.sql.proc.WhileStatement Maven / Gradle / Ivy
/*
* Copyright Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags and
* the COPYRIGHT.txt file distributed with this work.
*
* 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 org.teiid.query.sql.proc;
import org.teiid.core.util.EquivalenceUtil;
import org.teiid.core.util.HashCodeUtil;
import org.teiid.core.util.StringUtil;
import org.teiid.query.sql.LanguageVisitor;
import org.teiid.query.sql.lang.Criteria;
import org.teiid.query.sql.proc.Statement.Labeled;
/**
* This class represents a while statement in the storedprocedure language.
* It extends the Statement
that could part of a block. This statement has
* a block and a criteria that
* determines when to exit the while loop.
*/
public class WhileStatement extends Statement implements Labeled {
private Block whileBlock;
private String label;
// criteria on the if block
private Criteria condition;
/**
* Constructor for IfStatement.
* @param criteria The criteria determining which block should be executed
* @param ifBlock The IF Block
object.
* @param ifBlock The ELSE Block
object.
*/
public WhileStatement(Criteria criteria, Block block) {
this.whileBlock = block;
this.condition = criteria;
}
public void setLabel(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
/**
* Get the condition that determines which block needs to be executed.
* @return The Criteria
to determine block execution
*/
public Criteria getCondition() {
return condition;
}
/**
* Set the condition that determines which block needs to be executed.
* @param criteria The Criteria
to determine block execution
*/
public void setCondition(Criteria criteria) {
this.condition = criteria;
}
/**
* @return
*/
public Block getBlock() {
return whileBlock;
}
/**
* @param block
*/
public void setBlock(Block block) {
whileBlock = block;
}
/**
* Return the type for this statement, this is one of the types
* defined on the statement object.
* @return The statement type
*/
public int getType() {
return Statement.TYPE_WHILE;
}
// =========================================================================
// P R O C E S S I N G M E T H O D S
// =========================================================================
public void acceptVisitor(LanguageVisitor visitor) {
visitor.visit(this);
}
/**
* Deep clone statement to produce a new identical statement.
* @return Deep clone
*/
public Object clone() {
Block otherBlock = this.whileBlock.clone();
Criteria otherCrit = (Criteria) this.condition.clone();
WhileStatement ws = new WhileStatement(otherCrit, otherBlock);
ws.setLabel(label);
return ws;
}
/**
* Compare two WhileStatements for equality. They will only evaluate to equal if
* they are IDENTICAL: the block is same and the condition on is same.
* @param obj Other object
* @return True if equal
*/
public boolean equals(Object obj) {
// Quick same object test
if(this == obj) {
return true;
}
// Quick fail tests
if(!(obj instanceof WhileStatement)) {
return false;
}
WhileStatement other = (WhileStatement) obj;
return
// Compare the condition
EquivalenceUtil.areEqual(getCondition(), other.getCondition()) &&
// Compare the if block
EquivalenceUtil.areEqual(whileBlock, other.whileBlock)
&& StringUtil.equalsIgnoreCase(this.label, other.label);
}
/**
* Get hashcode for WhileStatement. WARNING: This hash code relies on the
* hash codes of the block and the criteria. Hash code is only valid after the block has been
* completely constructed.
* @return Hash code
*/
public int hashCode() {
// This hash code relies on the blocks and criteria for this statement
int myHash = 0;
myHash = HashCodeUtil.hashCode(myHash, this.getCondition());
myHash = HashCodeUtil.hashCode(myHash, this.getBlock());
return myHash;
}
}