com.facebook.presto.jdbc.internal.spi.relation.SpecialFormExpression Maven / Gradle / Ivy
The 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.jdbc.internal.spi.relation;
import com.facebook.presto.jdbc.internal.common.type.Type;
import com.facebook.presto.jdbc.internal.spi.SourceLocation;
import com.facebook.presto.jdbc.internal.jackson.annotation.JsonCreator;
import com.facebook.presto.jdbc.internal.jackson.annotation.JsonProperty;
import com.facebook.presto.jdbc.internal.javax.annotation.concurrent.Immutable;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import static java.util.Collections.unmodifiableList;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toList;
@Immutable
public class SpecialFormExpression
extends RowExpression
{
private final Form form;
private final Type returnType;
private final List arguments;
public SpecialFormExpression(Optional sourceLocation, Form form, Type returnType, RowExpression... arguments)
{
this(sourceLocation, form, returnType, unmodifiableList(Arrays.asList(arguments)));
}
public SpecialFormExpression(Form form, Type returnType, RowExpression... arguments)
{
this(form, returnType, unmodifiableList(Arrays.asList(arguments)));
}
public SpecialFormExpression(Form form, Type returnType, List arguments)
{
this(arguments.stream()
.map(x -> x.getSourceLocation())
.filter(Optional::isPresent)
.findFirst()
.map(x -> x.get()),
form, returnType, arguments);
}
@JsonCreator
public SpecialFormExpression(
@JsonProperty("sourceLocation") Optional sourceLocation,
@JsonProperty("form") Form form,
@JsonProperty("returnType") Type returnType,
@JsonProperty("arguments") List arguments)
{
super(sourceLocation);
this.form = requireNonNull(form, "form is null");
this.returnType = requireNonNull(returnType, "returnType is null");
this.arguments = requireNonNull(arguments, "arguments is null");
}
@JsonProperty
public Form getForm()
{
return form;
}
@Override
@JsonProperty("returnType")
public Type getType()
{
return returnType;
}
@Override
public List getChildren()
{
return arguments;
}
@JsonProperty
public List getArguments()
{
return arguments;
}
@Override
public String toString()
{
return form.name() + "(" + String.join(", ", arguments.stream().map(RowExpression::toString).collect(toList())) + ")";
}
@Override
public int hashCode()
{
return Objects.hash(form, arguments);
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
SpecialFormExpression other = (SpecialFormExpression) obj;
return this.form == other.form &&
Objects.equals(this.arguments, other.arguments);
}
@Override
public R accept(RowExpressionVisitor visitor, C context)
{
return visitor.visitSpecialForm(this, context);
}
@Override
public RowExpression canonicalize()
{
return getSourceLocation().isPresent() ? new SpecialFormExpression(Optional.empty(), form, returnType, arguments) : this;
}
public enum Form
{
IF,
NULL_IF,
SWITCH,
WHEN,
IS_NULL,
COALESCE,
IN,
AND,
OR,
DEREFERENCE,
ROW_CONSTRUCTOR,
BIND,
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy