CanonicalPlanFragment.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;
import com.facebook.presto.common.plan.PlanCanonicalizationStrategy;
import com.facebook.presto.spi.ConnectorSplit;
import com.facebook.presto.spi.plan.PlanNode;
import com.facebook.presto.sql.planner.CanonicalTableScanNode.CanonicalTableHandle;
import com.facebook.presto.sql.planner.plan.SimplePlanRewriter;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
import java.util.Optional;
import static com.facebook.presto.sql.planner.plan.SimplePlanRewriter.rewriteWith;
import static com.google.common.base.MoreObjects.toStringHelper;
import static java.util.Objects.requireNonNull;
public class CanonicalPlanFragment
{
private final CanonicalPlan plan;
private final CanonicalPartitioningScheme partitioningScheme;
@JsonCreator
public CanonicalPlanFragment(
@JsonProperty("plan") CanonicalPlan plan,
@JsonProperty("partitionScheme") CanonicalPartitioningScheme partitioningScheme)
{
this.plan = requireNonNull(plan, "plan is null");
this.partitioningScheme = requireNonNull(partitioningScheme, "partitioningScheme is null");
}
@JsonProperty
public CanonicalPlan getPlan()
{
return plan;
}
@JsonProperty
public CanonicalPartitioningScheme getPartitioningScheme()
{
return partitioningScheme;
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CanonicalPlanFragment that = (CanonicalPlanFragment) o;
return Objects.equals(plan, that.plan) &&
Objects.equals(partitioningScheme, that.partitioningScheme);
}
@Override
public int hashCode()
{
return Objects.hash(plan, partitioningScheme);
}
@Override
public String toString()
{
return toStringHelper(this)
.add("plan", plan)
.add("partitioningScheme", partitioningScheme)
.toString();
}
public CanonicalPlanFragment updateRuntimeInformation(ConnectorSplit split)
{
return new CanonicalPlanFragment(new CanonicalPlan(rewriteWith(new RuntimeInformationRewriter(split), plan.getPlan()), plan.getStrategy()), partitioningScheme);
}
private static class RuntimeInformationRewriter
extends SimplePlanRewriter<Void>
{
private final ConnectorSplit split;
public RuntimeInformationRewriter(ConnectorSplit split)
{
this.split = requireNonNull(split, "split is null");
}
@Override
public PlanNode visitCanonicalTableScan(CanonicalTableScanNode node, RewriteContext<Void> context)
{
CanonicalTableHandle originalTableHandle = node.getTable();
Optional<Object> newLayoutIdentifier = originalTableHandle.getLayoutHandle().map(handle -> handle.getIdentifier(Optional.of(split), PlanCanonicalizationStrategy.DEFAULT));
return new CanonicalTableScanNode(
node.getSourceLocation(),
node.getId(),
new CanonicalTableHandle(
originalTableHandle.getConnectorId(),
originalTableHandle.getTableHandle(),
newLayoutIdentifier),
node.getOutputVariables(),
node.getAssignments());
}
}
}