blob: a9a8f55178dc984dbc111e66b9e60a6e60d2feb2 [file] [log] [blame]
/*
* Copyright 2009-2010 by The Regents of the University of California
* 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 from
*
* 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 edu.uci.ics.hyracks.algebricks.core.algebra.operators.logical;
import java.util.ArrayList;
import org.apache.commons.lang3.mutable.Mutable;
import edu.uci.ics.hyracks.algebricks.common.exceptions.AlgebricksException;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.ILogicalOperator;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.LogicalOperatorTag;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.LogicalVariable;
import edu.uci.ics.hyracks.algebricks.core.algebra.expressions.IVariableTypeEnvironment;
import edu.uci.ics.hyracks.algebricks.core.algebra.properties.TypePropagationPolicy;
import edu.uci.ics.hyracks.algebricks.core.algebra.properties.VariablePropagationPolicy;
import edu.uci.ics.hyracks.algebricks.core.algebra.typing.ITypeEnvPointer;
import edu.uci.ics.hyracks.algebricks.core.algebra.typing.ITypingContext;
import edu.uci.ics.hyracks.algebricks.core.algebra.typing.PropagatingTypeEnvironment;
import edu.uci.ics.hyracks.algebricks.core.algebra.visitors.ILogicalExpressionReferenceTransform;
import edu.uci.ics.hyracks.algebricks.core.algebra.visitors.ILogicalOperatorVisitor;
public class NestedTupleSourceOperator extends AbstractLogicalOperator {
private final Mutable<ILogicalOperator> dataSourceReference;
public NestedTupleSourceOperator(Mutable<ILogicalOperator> dataSourceReference) {
this.dataSourceReference = dataSourceReference;
}
public ILogicalOperator getSourceOperator() {
return dataSourceReference.getValue().getInputs().get(0).getValue();
}
@Override
public LogicalOperatorTag getOperatorTag() {
return LogicalOperatorTag.NESTEDTUPLESOURCE;
}
public Mutable<ILogicalOperator> getDataSourceReference() {
return dataSourceReference;
}
@Override
public void recomputeSchema() {
schema = new ArrayList<LogicalVariable>();
ILogicalOperator topOp = dataSourceReference.getValue();
for (Mutable<ILogicalOperator> i : topOp.getInputs()) {
schema.addAll(i.getValue().getSchema());
}
}
@Override
public VariablePropagationPolicy getVariablePropagationPolicy() {
return VariablePropagationPolicy.ALL;
}
@Override
public boolean acceptExpressionTransform(ILogicalExpressionReferenceTransform visitor) {
// do nothing
return false;
}
@Override
public <R, T> R accept(ILogicalOperatorVisitor<R, T> visitor, T arg) throws AlgebricksException {
return visitor.visitNestedTupleSourceOperator(this, arg);
}
@Override
public boolean isMap() {
return false;
}
@Override
public IVariableTypeEnvironment computeOutputTypeEnvironment(final ITypingContext ctx) throws AlgebricksException {
ITypeEnvPointer[] p = new ITypeEnvPointer[1];
p[0] = new ITypeEnvPointer() {
@Override
public IVariableTypeEnvironment getTypeEnv() {
ILogicalOperator op = dataSourceReference.getValue().getInputs().get(0).getValue();
return ctx.getOutputTypeEnvironment(op);
}
};
return new PropagatingTypeEnvironment(ctx.getExpressionTypeComputer(), ctx.getNullableTypeComputer(),
ctx.getMetadataProvider(), TypePropagationPolicy.ALL, p);
}
@Override
public IVariableTypeEnvironment computeInputTypeEnvironment(ITypingContext ctx) throws AlgebricksException {
return computeOutputTypeEnvironment(ctx);
}
}