com.facebook.presto.sql.tree.Window 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 com.facebook.presto.sql.tree;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import static com.google.common.base.MoreObjects.toStringHelper;
import static java.util.Objects.requireNonNull;
public class Window
extends Node
{
private final List partitionBy;
private final Optional orderBy;
private final Optional frame;
public Window(List partitionBy, Optional orderBy, Optional frame)
{
this(Optional.empty(), partitionBy, orderBy, frame);
}
public Window(NodeLocation location, List partitionBy, Optional orderBy, Optional frame)
{
this(Optional.of(location), partitionBy, orderBy, frame);
}
private Window(Optional location, List partitionBy, Optional orderBy, Optional frame)
{
super(location);
this.partitionBy = requireNonNull(partitionBy, "partitionBy is null");
this.orderBy = requireNonNull(orderBy, "orderBy is null");
this.frame = requireNonNull(frame, "frame is null");
}
public List getPartitionBy()
{
return partitionBy;
}
public Optional getOrderBy()
{
return orderBy;
}
public Optional getFrame()
{
return frame;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitWindow(this, context);
}
@Override
public List getChildren()
{
ImmutableList.Builder nodes = ImmutableList.builder();
nodes.addAll(partitionBy);
orderBy.ifPresent(nodes::add);
frame.ifPresent(nodes::add);
return nodes.build();
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if ((obj == null) || (getClass() != obj.getClass())) {
return false;
}
Window o = (Window) obj;
return Objects.equals(partitionBy, o.partitionBy) &&
Objects.equals(orderBy, o.orderBy) &&
Objects.equals(frame, o.frame);
}
@Override
public int hashCode()
{
return Objects.hash(partitionBy, orderBy, frame);
}
@Override
public String toString()
{
return toStringHelper(this)
.add("partitionBy", partitionBy)
.add("orderBy", orderBy)
.add("frame", frame)
.toString();
}
}