
org.apache.asterix.optimizer.rules.ByNameToByHandleFieldAccessRule Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.asterix.optimizer.rules;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang3.mutable.Mutable;
import org.apache.commons.lang3.mutable.MutableObject;
import org.apache.asterix.algebra.base.AsterixOperatorAnnotations;
import org.apache.asterix.aql.util.FunctionUtils;
import org.apache.asterix.om.functions.AsterixBuiltinFunctions;
import org.apache.hyracks.algebricks.core.algebra.base.ILogicalExpression;
import org.apache.hyracks.algebricks.core.algebra.base.ILogicalOperator;
import org.apache.hyracks.algebricks.core.algebra.base.IOptimizationContext;
import org.apache.hyracks.algebricks.core.algebra.base.LogicalExpressionTag;
import org.apache.hyracks.algebricks.core.algebra.base.LogicalOperatorTag;
import org.apache.hyracks.algebricks.core.algebra.base.LogicalVariable;
import org.apache.hyracks.algebricks.core.algebra.expressions.AbstractFunctionCallExpression;
import org.apache.hyracks.algebricks.core.algebra.expressions.ScalarFunctionCallExpression;
import org.apache.hyracks.algebricks.core.algebra.expressions.VariableReferenceExpression;
import org.apache.hyracks.algebricks.core.algebra.operators.logical.AbstractLogicalOperator;
import org.apache.hyracks.algebricks.core.algebra.operators.logical.AssignOperator;
import org.apache.hyracks.algebricks.core.rewriter.base.IAlgebraicRewriteRule;
public class ByNameToByHandleFieldAccessRule implements IAlgebraicRewriteRule {
@Override
public boolean rewritePre(Mutable opRef, IOptimizationContext context) {
return false;
}
@Override
public boolean rewritePost(Mutable opRef, IOptimizationContext context) {
AbstractLogicalOperator op = (AbstractLogicalOperator) opRef.getValue();
if (op.getOperatorTag() != LogicalOperatorTag.ASSIGN) {
return false;
}
AssignOperator assign = (AssignOperator) op;
if (assign.getAnnotations().get(AsterixOperatorAnnotations.PUSHED_FIELD_ACCESS) == null) {
return false;
}
byNameToByHandle(assign, context);
return true;
}
private static void byNameToByHandle(AssignOperator fieldAccessOp, IOptimizationContext context) {
Mutable opUnder = fieldAccessOp.getInputs().get(0);
AbstractFunctionCallExpression fce = (AbstractFunctionCallExpression) fieldAccessOp.getExpressions().get(0)
.getValue();
ILogicalExpression a1 = fce.getArguments().get(0).getValue();
VariableReferenceExpression x;
if (a1.getExpressionTag() == LogicalExpressionTag.VARIABLE) {
x = (VariableReferenceExpression) a1;
} else {
LogicalVariable var1 = context.newVar();
ArrayList varArray = new ArrayList(1);
varArray.add(var1);
ArrayList> exprArray = new ArrayList>(1);
exprArray.add(new MutableObject(a1));
AssignOperator assignVar = new AssignOperator(varArray, exprArray);
x = new VariableReferenceExpression(var1);
assignVar.getInputs().add(opUnder);
opUnder = new MutableObject(assignVar);
}
// let $t := type-of(x)
LogicalVariable t = context.newVar();
AbstractFunctionCallExpression typeOf = new ScalarFunctionCallExpression(
FunctionUtils.getFunctionInfo(AsterixBuiltinFunctions.TYPE_OF));
typeOf.getArguments().add(new MutableObject(x));
AssignOperator typAssign = new AssignOperator(t, new MutableObject(typeOf));
typAssign.getInputs().add(opUnder);
// let $w := get-handle($t, path-expression)
LogicalVariable w = context.newVar();
AbstractFunctionCallExpression getHandle = new ScalarFunctionCallExpression(
FunctionUtils.getFunctionInfo(AsterixBuiltinFunctions.GET_HANDLE));
getHandle.getArguments().add(new MutableObject(new VariableReferenceExpression(t)));
// the accessed field
getHandle.getArguments().add(new MutableObject(fce.getArguments().get(1).getValue()));
AssignOperator handleAssign = new AssignOperator(w, new MutableObject(getHandle));
handleAssign.getInputs().add(new MutableObject(typAssign));
// let $y := get-data(x, $w)
AbstractFunctionCallExpression getData = new ScalarFunctionCallExpression(
FunctionUtils.getFunctionInfo(AsterixBuiltinFunctions.GET_DATA));
VariableReferenceExpression ref2 = new VariableReferenceExpression(x.getVariableReference());
getData.getArguments().add(new MutableObject(ref2));
getData.getArguments().add(new MutableObject(new VariableReferenceExpression(w)));
fieldAccessOp.getExpressions().get(0).setValue(getData);
List> faInputs = fieldAccessOp.getInputs();
faInputs.clear();
faInputs.add(new MutableObject(handleAssign));
// fieldAccess.setAnnotation(OperatorAnnotation.FIELD_ACCESS,
// fce.getArguments().get(0));
fieldAccessOp.removeAnnotation(AsterixOperatorAnnotations.PUSHED_FIELD_ACCESS);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy