Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.facebook.presto.sql.tree.QuerySpecification 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 QuerySpecification
extends QueryBody
{
private final Select select;
private final Optional from;
private final Optional where;
private final Optional groupBy;
private final Optional having;
private final Optional orderBy;
private final Optional limit;
public QuerySpecification(
Select select,
Optional from,
Optional where,
Optional groupBy,
Optional having,
Optional orderBy,
Optional limit)
{
this(Optional.empty(), select, from, where, groupBy, having, orderBy, limit);
}
public QuerySpecification(
NodeLocation location,
Select select,
Optional from,
Optional where,
Optional groupBy,
Optional having,
Optional orderBy,
Optional limit)
{
this(Optional.of(location), select, from, where, groupBy, having, orderBy, limit);
}
private QuerySpecification(
Optional location,
Select select,
Optional from,
Optional where,
Optional groupBy,
Optional having,
Optional orderBy,
Optional limit)
{
super(location);
requireNonNull(select, "select is null");
requireNonNull(from, "from is null");
requireNonNull(where, "where is null");
requireNonNull(groupBy, "groupBy is null");
requireNonNull(having, "having is null");
requireNonNull(orderBy, "orderBy is null");
requireNonNull(limit, "limit is null");
this.select = select;
this.from = from;
this.where = where;
this.groupBy = groupBy;
this.having = having;
this.orderBy = orderBy;
this.limit = limit;
}
public Select getSelect()
{
return select;
}
public Optional getFrom()
{
return from;
}
public Optional getWhere()
{
return where;
}
public Optional getGroupBy()
{
return groupBy;
}
public Optional getHaving()
{
return having;
}
public Optional getOrderBy()
{
return orderBy;
}
public Optional getLimit()
{
return limit;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitQuerySpecification(this, context);
}
@Override
public List getChildren()
{
ImmutableList.Builder nodes = ImmutableList.builder();
nodes.add(select);
from.ifPresent(nodes::add);
where.ifPresent(nodes::add);
groupBy.ifPresent(nodes::add);
having.ifPresent(nodes::add);
orderBy.ifPresent(nodes::add);
return nodes.build();
}
@Override
public String toString()
{
return toStringHelper(this)
.add("select", select)
.add("from", from)
.add("where", where.orElse(null))
.add("groupBy", groupBy)
.add("having", having.orElse(null))
.add("orderBy", orderBy)
.add("limit", limit.orElse(null))
.toString();
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if ((obj == null) || (getClass() != obj.getClass())) {
return false;
}
QuerySpecification o = (QuerySpecification) obj;
return Objects.equals(select, o.select) &&
Objects.equals(from, o.from) &&
Objects.equals(where, o.where) &&
Objects.equals(groupBy, o.groupBy) &&
Objects.equals(having, o.having) &&
Objects.equals(orderBy, o.orderBy) &&
Objects.equals(limit, o.limit);
}
@Override
public int hashCode()
{
return Objects.hash(select, from, where, groupBy, having, orderBy, limit);
}
}