io.trino.sql.tree.AllColumns 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 io.trino.sql.tree;
import com.google.common.base.Joiner;
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 AllColumns
extends SelectItem
{
private final List aliases;
private final Optional target;
public AllColumns()
{
this(Optional.empty(), Optional.empty(), ImmutableList.of());
}
public AllColumns(Expression target)
{
this(Optional.empty(), Optional.of(target), ImmutableList.of());
}
public AllColumns(Expression target, List aliases)
{
this(Optional.empty(), Optional.of(target), aliases);
}
public AllColumns(NodeLocation location, Optional target, List aliases)
{
this(Optional.of(location), target, aliases);
}
public AllColumns(Optional location, Optional target, List aliases)
{
super(location);
this.aliases = ImmutableList.copyOf(requireNonNull(aliases, "aliases is null"));
this.target = requireNonNull(target, "target is null");
}
public List getAliases()
{
return aliases;
}
public Optional getTarget()
{
return target;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitAllColumns(this, context);
}
@Override
public List getChildren()
{
return target.map(ImmutableList::of)
.orElse(ImmutableList.of());
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AllColumns other = (AllColumns) o;
return Objects.equals(aliases, other.aliases) &&
Objects.equals(target, other.target);
}
@Override
public int hashCode()
{
return Objects.hash(aliases, target);
}
@Override
public String toString()
{
StringBuilder builder = new StringBuilder();
target.ifPresent(value -> builder.append(value).append("."));
builder.append("*");
if (!aliases.isEmpty()) {
builder.append(" (");
Joiner.on(", ").appendTo(builder, aliases);
builder.append(")");
}
return builder.toString();
}
@Override
public boolean shallowEquals(Node other)
{
if (!sameClass(this, other)) {
return false;
}
return aliases.equals(((AllColumns) other).aliases);
}
}