HepRelVertex.java
/*
* 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.calcite.plan.hep;
import org.apache.calcite.plan.RelOptCost;
import org.apache.calcite.plan.RelOptPlanner;
import org.apache.calcite.plan.RelTraitSet;
import org.apache.calcite.rel.AbstractRelNode;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.RelWriter;
import org.apache.calcite.rel.metadata.DelegatingMetadataRel;
import org.apache.calcite.rel.metadata.RelMetadataQuery;
import org.apache.calcite.rel.type.RelDataType;
import org.checkerframework.checker.nullness.qual.Nullable;
import java.util.List;
import static com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;
/**
* HepRelVertex wraps a real {@link RelNode} as a vertex in a DAG representing
* the entire query expression.
*/
public class HepRelVertex extends AbstractRelNode implements DelegatingMetadataRel {
//~ Instance fields --------------------------------------------------------
/**
* Wrapped rel currently chosen for implementation of expression.
*/
private RelNode currentRel;
//~ Constructors -----------------------------------------------------------
HepRelVertex(RelNode rel) {
super(rel.getCluster(), rel.getTraitSet());
currentRel = requireNonNull(rel, "rel");
checkArgument(!(rel instanceof HepRelVertex));
}
//~ Methods ----------------------------------------------------------------
@Override public void explain(RelWriter pw) {
currentRel.explain(pw);
}
@Override public RelNode copy(RelTraitSet traitSet, List<RelNode> inputs) {
assert traitSet.equals(this.traitSet);
assert inputs.equals(this.getInputs());
return this;
}
@Override public @Nullable RelOptCost computeSelfCost(RelOptPlanner planner,
RelMetadataQuery mq) {
// HepRelMetadataProvider is supposed to intercept this
// and redirect to the real rels. But sometimes it doesn't.
return planner.getCostFactory().makeTinyCost();
}
@Override public double estimateRowCount(RelMetadataQuery mq) {
return mq.getRowCount(currentRel);
}
@Override protected RelDataType deriveRowType() {
return currentRel.getRowType();
}
/**
* Replaces the implementation for this expression with a new one.
*
* @param newRel new expression
*/
void replaceRel(RelNode newRel) {
currentRel = newRel;
}
/**
* Returns current implementation chosen for this vertex.
*/
public RelNode getCurrentRel() {
return currentRel;
}
@Override public RelNode stripped() {
return currentRel;
}
/**
* Returns {@link RelNode} for metadata.
*/
@Override public RelNode getMetadataDelegateRel() {
return currentRel;
}
@Override public boolean deepEquals(@Nullable Object obj) {
return this == obj
|| (obj instanceof HepRelVertex
&& currentRel == ((HepRelVertex) obj).currentRel);
}
@Override public int deepHashCode() {
return currentRel.getId();
}
@Override public String getDigest() {
return "HepRelVertex(" + currentRel + ')';
}
}