All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.trino.sql.tree.Query Maven / Gradle / Ivy

There is a newer version: 465
Show newest version
/*
 * 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 static com.google.common.base.MoreObjects.toStringHelper;
import static com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;

public class Query
        extends Statement
{
    private final List functions;
    private final Optional with;
    private final QueryBody queryBody;
    private final Optional orderBy;
    private final Optional offset;
    private final Optional limit;

    public Query(
            List functions,
            Optional with,
            QueryBody queryBody,
            Optional orderBy,
            Optional offset,
            Optional limit)
    {
        this(Optional.empty(), functions, with, queryBody, orderBy, offset, limit);
    }

    public Query(
            NodeLocation location,
            List functions,
            Optional with,
            QueryBody queryBody,
            Optional orderBy,
            Optional offset,
            Optional limit)
    {
        this(Optional.of(location), functions, with, queryBody, orderBy, offset, limit);
    }

    private Query(
            Optional location,
            List functions,
            Optional with,
            QueryBody queryBody,
            Optional orderBy,
            Optional offset,
            Optional limit)
    {
        super(location);
        requireNonNull(functions, "function si snull");
        requireNonNull(with, "with is null");
        requireNonNull(queryBody, "queryBody is null");
        requireNonNull(orderBy, "orderBy is null");
        requireNonNull(offset, "offset is null");
        requireNonNull(limit, "limit is null");
        checkArgument(!limit.isPresent() || limit.get() instanceof FetchFirst || limit.get() instanceof Limit, "limit must be optional of either FetchFirst or Limit type");

        this.functions = ImmutableList.copyOf(functions);
        this.with = with;
        this.queryBody = queryBody;
        this.orderBy = orderBy;
        this.offset = offset;
        this.limit = limit;
    }

    public List getFunctions()
    {
        return functions;
    }

    public Optional getWith()
    {
        return with;
    }

    public QueryBody getQueryBody()
    {
        return queryBody;
    }

    public Optional getOrderBy()
    {
        return orderBy;
    }

    public Optional getOffset()
    {
        return offset;
    }

    public Optional getLimit()
    {
        return limit;
    }

    @Override
    public  R accept(AstVisitor visitor, C context)
    {
        return visitor.visitQuery(this, context);
    }

    @Override
    public List getChildren()
    {
        ImmutableList.Builder nodes = ImmutableList.builder();
        nodes.addAll(functions);
        with.ifPresent(nodes::add);
        nodes.add(queryBody);
        orderBy.ifPresent(nodes::add);
        offset.ifPresent(nodes::add);
        limit.ifPresent(nodes::add);
        return nodes.build();
    }

    @Override
    public String toString()
    {
        return toStringHelper(this)
                .add("functions", functions.isEmpty() ? null : functions)
                .add("with", with.orElse(null))
                .add("queryBody", queryBody)
                .add("orderBy", orderBy)
                .add("offset", offset.orElse(null))
                .add("limit", limit.orElse(null))
                .omitNullValues()
                .toString();
    }

    @Override
    public boolean equals(Object obj)
    {
        if (this == obj) {
            return true;
        }
        if ((obj == null) || (getClass() != obj.getClass())) {
            return false;
        }
        Query o = (Query) obj;
        return Objects.equals(functions, o.functions) &&
                Objects.equals(with, o.with) &&
                Objects.equals(queryBody, o.queryBody) &&
                Objects.equals(orderBy, o.orderBy) &&
                Objects.equals(offset, o.offset) &&
                Objects.equals(limit, o.limit);
    }

    @Override
    public int hashCode()
    {
        return Objects.hash(functions, with, queryBody, orderBy, offset, limit);
    }

    @Override
    public boolean shallowEquals(Node other)
    {
        return sameClass(this, other);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy