blob: 09a2f4869b4ec7932469e0765b7b011a40222787 [file] [log] [blame]
/*
// Licensed to Julian Hyde under one or more contributor license
// agreements. See the NOTICE file distributed with this work for
// additional information regarding copyright ownership.
//
// Julian Hyde licenses this file to you 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 net.hydromatic.linq4j.expressions;
import java.util.List;
/**
* Represents an expression that has a conditional operator.
*
* <p>With an odd number of expressions
* {c0, e0, c1, e1, ..., c<sub>n-1</sub>, e<sub>n-1</sub>, e<sub>n</sub>}
* represents "if (c0) e0 else if (c1) e1 ... else e<sub>n</sub>";
* with an even number of expressions
* {c0, e0, c1, e1, ..., c<sub>n-1</sub>, e<sub>n-1</sub>}
* represents
* "if (c0) e0 else if (c1) e1 ... else if (c<sub>n-1</sub>) e<sub>n-1</sub>".
* </p>
*/
public class ConditionalStatement extends Statement {
public final List<Node> expressionList;
public ConditionalStatement(List<Node> expressionList) {
super(ExpressionType.Conditional, Void.TYPE);
assert expressionList != null : "expressionList should not be null";
this.expressionList = expressionList;
}
@Override
public Statement accept(Visitor visitor) {
List<Node> list = Expressions.acceptNodes(expressionList, visitor);
return visitor.visit(this, list);
}
@Override
void accept0(ExpressionWriter writer) {
for (int i = 0; i < expressionList.size() - 1; i += 2) {
if (i > 0) {
writer.backUp();
writer.append(" else ");
}
writer.append("if (")
.append(expressionList.get(i))
.append(") ")
.append(Blocks.toBlock(expressionList.get(i + 1)));
}
if (expressionList.size() % 2 == 1) {
writer.backUp();
writer.append(" else ")
.append(Blocks.toBlock(last(expressionList)));
}
}
private static <E> E last(List<E> collection) {
return collection.get(collection.size() - 1);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
ConditionalStatement that = (ConditionalStatement) o;
if (!expressionList.equals(that.expressionList)) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + expressionList.hashCode();
return result;
}
}
// End ConditionalStatement.java