io.trino.sql.tree.TableFunctionTableArgument Maven / Gradle / Ivy
/*
* 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 io.trino.sql.tree;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
import static io.trino.sql.ExpressionFormatter.formatSortItems;
import static java.util.Objects.requireNonNull;
public class TableFunctionTableArgument
extends Node
{
private final Relation table;
private final Optional> partitionBy; // it is allowed to partition by empty list
private final Optional orderBy;
private final Optional emptyTableTreatment;
public TableFunctionTableArgument(
NodeLocation location,
Relation table,
Optional> partitionBy,
Optional orderBy,
Optional emptyTableTreatment)
{
super(location);
this.table = requireNonNull(table, "table is null");
this.partitionBy = requireNonNull(partitionBy, "partitionBy is null");
this.orderBy = requireNonNull(orderBy, "orderBy is null");
this.emptyTableTreatment = requireNonNull(emptyTableTreatment, "emptyTableTreatment is null");
}
public Relation getTable()
{
return table;
}
public Optional> getPartitionBy()
{
return partitionBy;
}
public Optional getOrderBy()
{
return orderBy;
}
public Optional getEmptyTableTreatment()
{
return emptyTableTreatment;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitTableArgument(this, context);
}
@Override
public List extends Node> getChildren()
{
ImmutableList.Builder builder = ImmutableList.builder();
builder.add(table);
partitionBy.ifPresent(builder::addAll);
orderBy.ifPresent(builder::add);
emptyTableTreatment.ifPresent(builder::add);
return builder.build();
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TableFunctionTableArgument other = (TableFunctionTableArgument) o;
return Objects.equals(table, other.table) &&
Objects.equals(partitionBy, other.partitionBy) &&
Objects.equals(orderBy, other.orderBy) &&
Objects.equals(emptyTableTreatment, other.emptyTableTreatment);
}
@Override
public int hashCode()
{
return Objects.hash(table, partitionBy, orderBy, emptyTableTreatment);
}
@Override
public String toString()
{
StringBuilder builder = new StringBuilder();
builder.append(table);
partitionBy.ifPresent(partitioning -> builder.append(partitioning.stream()
.map(Expression::toString)
.collect(Collectors.joining(", ", " PARTITION BY (", ")"))));
orderBy.ifPresent(ordering -> builder.append(" ORDER BY (")
.append(formatSortItems(ordering.getSortItems()))
.append(")"));
return builder.toString();
}
@Override
public boolean shallowEquals(Node o)
{
return sameClass(this, o);
}
}