org.apache.calcite.linq4j.tree.ForStatement Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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 org.apache.calcite.linq4j.tree;
import org.apache.calcite.linq4j.Ord;
import org.checkerframework.checker.nullness.qual.Nullable;
import java.util.List;
import java.util.Objects;
/**
* Represents an infinite loop. It can be exited with "break".
*/
public class ForStatement extends Statement {
public final List declarations;
public final @Nullable Expression condition;
public final @Nullable Expression post;
public final Statement body;
/** Cached hash code for the expression. */
private int hash;
public ForStatement(List declarations,
@Nullable Expression condition, @Nullable Expression post, Statement body) {
super(ExpressionType.For, Void.TYPE);
assert declarations != null;
assert body != null;
this.declarations = declarations; // may be empty, not null
this.condition = condition; // may be null
this.post = post; // may be null
this.body = body; // may be empty block, not null
}
@Override public ForStatement accept(Shuttle shuttle) {
shuttle = shuttle.preVisit(this);
List decls1 =
Expressions.acceptDeclarations(declarations, shuttle);
final Expression condition1 =
condition == null ? null : condition.accept(shuttle);
final Expression post1 = post == null ? null : post.accept(shuttle);
final Statement body1 = body.accept(shuttle);
return shuttle.visit(this, decls1, condition1, post1, body1);
}
@Override public R accept(Visitor visitor) {
return visitor.visit(this);
}
@Override void accept0(ExpressionWriter writer) {
writer.append("for (");
for (Ord declaration : Ord.zip(declarations)) {
declaration.e.accept2(writer, declaration.i == 0);
}
writer.append("; ");
if (condition != null) {
writer.append(condition);
}
writer.append("; ");
if (post != null) {
writer.append(post);
}
writer.append(") ").append(Blocks.toBlock(body));
}
@Override public boolean equals(@Nullable Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
ForStatement that = (ForStatement) o;
if (!body.equals(that.body)) {
return false;
}
if (condition != null ? !condition.equals(that.condition) : that
.condition != null) {
return false;
}
if (!declarations.equals(that.declarations)) {
return false;
}
if (post != null ? !post.equals(that.post) : that.post != null) {
return false;
}
return true;
}
@Override public int hashCode() {
int result = hash;
if (result == 0) {
result =
Objects.hash(nodeType, type, declarations, condition, post, body);
if (result == 0) {
result = 1;
}
hash = result;
}
return result;
}
}