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

com.facebook.presto.sql.tree.FunctionCall Maven / Gradle / Ivy

There is a newer version: 0.290
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 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 java.util.Objects.requireNonNull;

public class FunctionCall
        extends Expression
{
    private final QualifiedName name;
    private final Optional window;
    private final Optional filter;
    private final Optional orderBy;
    private final boolean distinct;
    private final boolean ignoreNulls;
    private final List arguments;

    public FunctionCall(QualifiedName name, List arguments)
    {
        this(Optional.empty(), name, Optional.empty(), Optional.empty(), Optional.empty(), false, false, arguments);
    }

    public FunctionCall(NodeLocation location, QualifiedName name, List arguments)
    {
        this(Optional.of(location), name, Optional.empty(), Optional.empty(), Optional.empty(), false, false, arguments);
    }

    public FunctionCall(QualifiedName name, boolean distinct, List arguments)
    {
        this(Optional.empty(), name, Optional.empty(), Optional.empty(), Optional.empty(), distinct, false, arguments);
    }

    public FunctionCall(QualifiedName name, boolean distinct, List arguments, Optional filter)
    {
        this(Optional.empty(), name, Optional.empty(), filter, Optional.empty(), distinct, false, arguments);
    }

    public FunctionCall(QualifiedName name, Optional window, boolean distinct, boolean ignoreNulls, List arguments)
    {
        this(Optional.empty(), name, window, Optional.empty(), Optional.empty(), distinct, ignoreNulls, arguments);
    }

    public FunctionCall(QualifiedName name, Optional window, Optional filter, Optional orderBy, boolean distinct, List arguments)
    {
        this(Optional.empty(), name, window, filter, orderBy, distinct, false, arguments);
    }

    public FunctionCall(QualifiedName name, Optional window, Optional filter, Optional orderBy, boolean distinct, boolean ignoreNulls, List arguments)
    {
        this(Optional.empty(), name, window, filter, orderBy, distinct, ignoreNulls, arguments);
    }

    public FunctionCall(NodeLocation location, QualifiedName name, Optional window, Optional filter, Optional orderBy, boolean distinct, List arguments)
    {
        this(Optional.of(location), name, window, filter, orderBy, distinct, false, arguments);
    }

    public FunctionCall(NodeLocation location, QualifiedName name, Optional window, Optional filter, Optional orderBy, boolean distinct, boolean ignoreNulls, List arguments)
    {
        this(Optional.of(location), name, window, filter, orderBy, distinct, ignoreNulls, arguments);
    }

    private FunctionCall(Optional location, QualifiedName name, Optional window, Optional filter, Optional orderBy, boolean distinct, boolean ignoreNulls, List arguments)
    {
        super(location);
        requireNonNull(name, "name is null");
        requireNonNull(window, "window is null");
        requireNonNull(filter, "filter is null");
        requireNonNull(orderBy, "orderBy is null");
        requireNonNull(arguments, "arguments is null");

        this.name = name;
        this.window = window;
        this.filter = filter;
        this.orderBy = orderBy;
        this.distinct = distinct;
        this.ignoreNulls = ignoreNulls;
        this.arguments = arguments;
    }

    public QualifiedName getName()
    {
        return name;
    }

    public Optional getWindow()
    {
        return window;
    }

    public Optional getOrderBy()
    {
        return orderBy;
    }

    public boolean isDistinct()
    {
        return distinct;
    }

    public boolean isIgnoreNulls()
    {
        return ignoreNulls;
    }

    public List getArguments()
    {
        return arguments;
    }

    public Optional getFilter()
    {
        return filter;
    }

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

    @Override
    public List getChildren()
    {
        ImmutableList.Builder nodes = ImmutableList.builder();
        window.ifPresent(nodes::add);
        filter.ifPresent(nodes::add);
        orderBy.map(OrderBy::getSortItems).map(nodes::addAll);
        nodes.addAll(arguments);
        return nodes.build();
    }

    @Override
    public boolean equals(Object obj)
    {
        if (this == obj) {
            return true;
        }
        if ((obj == null) || (getClass() != obj.getClass())) {
            return false;
        }
        FunctionCall o = (FunctionCall) obj;
        return Objects.equals(name, o.name) &&
                Objects.equals(window, o.window) &&
                Objects.equals(filter, o.filter) &&
                Objects.equals(orderBy, o.orderBy) &&
                Objects.equals(distinct, o.distinct) &&
                Objects.equals(ignoreNulls, o.ignoreNulls) &&
                Objects.equals(arguments, o.arguments);
    }

    @Override
    public int hashCode()
    {
        return Objects.hash(name, distinct, ignoreNulls, window, filter, orderBy, arguments);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy