io.trino.sql.planner.ExpressionSymbolInliner 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.planner;
import com.google.common.collect.HashMultiset;
import com.google.common.collect.Multiset;
import io.trino.sql.tree.Expression;
import io.trino.sql.tree.ExpressionRewriter;
import io.trino.sql.tree.ExpressionTreeRewriter;
import io.trino.sql.tree.LambdaArgumentDeclaration;
import io.trino.sql.tree.LambdaExpression;
import io.trino.sql.tree.SymbolReference;
import java.util.Map;
import java.util.function.Function;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.base.Verify.verify;
public final class ExpressionSymbolInliner
{
public static Expression inlineSymbols(Map mapping, Expression expression)
{
return inlineSymbols(mapping::get, expression);
}
public static Expression inlineSymbols(Function mapping, Expression expression)
{
return new ExpressionSymbolInliner(mapping).rewrite(expression);
}
private final Function mapping;
private ExpressionSymbolInliner(Function mapping)
{
this.mapping = mapping;
}
private Expression rewrite(Expression expression)
{
return ExpressionTreeRewriter.rewriteWith(new Visitor(), expression);
}
private class Visitor
extends ExpressionRewriter
{
private final Multiset excludedNames = HashMultiset.create();
@Override
public Expression rewriteSymbolReference(SymbolReference node, Void context, ExpressionTreeRewriter treeRewriter)
{
if (excludedNames.contains(node.getName())) {
return node;
}
Expression expression = mapping.apply(Symbol.from(node));
checkState(expression != null, "Cannot resolve symbol %s", node.getName());
return expression;
}
@Override
public Expression rewriteLambdaExpression(LambdaExpression node, Void context, ExpressionTreeRewriter treeRewriter)
{
for (LambdaArgumentDeclaration argument : node.getArguments()) {
excludedNames.add(argument.getName().getValue());
}
Expression result = treeRewriter.defaultRewrite(node, context);
for (LambdaArgumentDeclaration argument : node.getArguments()) {
verify(excludedNames.remove(argument.getName().getValue()));
}
return result;
}
}
}