CanonicalizeExpressionRewriter.java
/*
* 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.planner.iterative.rule;
import com.facebook.presto.sql.tree.CurrentTime;
import com.facebook.presto.sql.tree.Expression;
import com.facebook.presto.sql.tree.ExpressionRewriter;
import com.facebook.presto.sql.tree.ExpressionTreeRewriter;
import com.facebook.presto.sql.tree.Extract;
import com.facebook.presto.sql.tree.FunctionCall;
import com.facebook.presto.sql.tree.IsNotNullPredicate;
import com.facebook.presto.sql.tree.IsNullPredicate;
import com.facebook.presto.sql.tree.NotExpression;
import com.facebook.presto.sql.tree.QualifiedName;
import com.google.common.collect.ImmutableList;
@Deprecated
public class CanonicalizeExpressionRewriter
{
private CanonicalizeExpressionRewriter() {}
public static Expression canonicalizeExpression(Expression expression)
{
return ExpressionTreeRewriter.rewriteWith(new Visitor(), expression);
}
private static class Visitor
extends ExpressionRewriter<Void>
{
@Override
public Expression rewriteIsNotNullPredicate(IsNotNullPredicate node, Void context, ExpressionTreeRewriter<Void> treeRewriter)
{
Expression value = treeRewriter.rewrite(node.getValue(), context);
return new NotExpression(new IsNullPredicate(value));
}
@Override
public Expression rewriteCurrentTime(CurrentTime node, Void context, ExpressionTreeRewriter<Void> treeRewriter)
{
if (node.getPrecision() != null) {
throw new UnsupportedOperationException("not yet implemented: non-default precision");
}
switch (node.getFunction()) {
case DATE:
return new FunctionCall(QualifiedName.of("current_date"), ImmutableList.of());
case TIME:
return new FunctionCall(QualifiedName.of("current_time"), ImmutableList.of());
case LOCALTIME:
return new FunctionCall(QualifiedName.of("localtime"), ImmutableList.of());
case TIMESTAMP:
return new FunctionCall(QualifiedName.of("current_timestamp"), ImmutableList.of());
case LOCALTIMESTAMP:
return new FunctionCall(QualifiedName.of("localtimestamp"), ImmutableList.of());
default:
throw new UnsupportedOperationException("not yet implemented: " + node.getFunction());
}
}
@Override
public Expression rewriteExtract(Extract node, Void context, ExpressionTreeRewriter<Void> treeRewriter)
{
Expression value = treeRewriter.rewrite(node.getExpression(), context);
switch (node.getField()) {
case YEAR:
return new FunctionCall(QualifiedName.of("year"), ImmutableList.of(value));
case QUARTER:
return new FunctionCall(QualifiedName.of("quarter"), ImmutableList.of(value));
case MONTH:
return new FunctionCall(QualifiedName.of("month"), ImmutableList.of(value));
case WEEK:
return new FunctionCall(QualifiedName.of("week"), ImmutableList.of(value));
case DAY:
case DAY_OF_MONTH:
return new FunctionCall(QualifiedName.of("day"), ImmutableList.of(value));
case DAY_OF_WEEK:
case DOW:
return new FunctionCall(QualifiedName.of("day_of_week"), ImmutableList.of(value));
case DAY_OF_YEAR:
case DOY:
return new FunctionCall(QualifiedName.of("day_of_year"), ImmutableList.of(value));
case YEAR_OF_WEEK:
case YOW:
return new FunctionCall(QualifiedName.of("year_of_week"), ImmutableList.of(value));
case HOUR:
return new FunctionCall(QualifiedName.of("hour"), ImmutableList.of(value));
case MINUTE:
return new FunctionCall(QualifiedName.of("minute"), ImmutableList.of(value));
case SECOND:
return new FunctionCall(QualifiedName.of("second"), ImmutableList.of(value));
case TIMEZONE_MINUTE:
return new FunctionCall(QualifiedName.of("timezone_minute"), ImmutableList.of(value));
case TIMEZONE_HOUR:
return new FunctionCall(QualifiedName.of("timezone_hour"), ImmutableList.of(value));
}
throw new UnsupportedOperationException("not yet implemented: " + node.getField());
}
}
}