io.trino.sql.planner.SubPlan Maven / Gradle / Ivy
/*
* 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 io.trino.sql.planner;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Multiset;
import com.google.errorprone.annotations.Immutable;
import io.trino.sql.planner.plan.PlanFragmentId;
import io.trino.sql.planner.plan.RemoteSourceNode;
import java.util.List;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.collect.ImmutableMultiset.toImmutableMultiset;
import static java.util.Objects.requireNonNull;
@Immutable
public class SubPlan
{
private final PlanFragment fragment;
private final List children;
public SubPlan(PlanFragment fragment, List children)
{
requireNonNull(fragment, "fragment is null");
requireNonNull(children, "children is null");
this.fragment = fragment;
this.children = ImmutableList.copyOf(children);
}
public PlanFragment getFragment()
{
return fragment;
}
public List getChildren()
{
return children;
}
/**
* Flattens the subplan and returns all PlanFragments in the tree
*/
public List getAllFragments()
{
ImmutableList.Builder fragments = ImmutableList.builder();
fragments.add(getFragment());
for (SubPlan child : getChildren()) {
fragments.addAll(child.getAllFragments());
}
return fragments.build();
}
public void sanityCheck()
{
Multiset exchangeIds = fragment.getRemoteSourceNodes().stream()
.map(RemoteSourceNode::getSourceFragmentIds)
.flatMap(List::stream)
.collect(toImmutableMultiset());
Multiset childrenIds = children.stream()
.map(SubPlan::getFragment)
.map(PlanFragment::getId)
.collect(toImmutableMultiset());
checkState(exchangeIds.equals(childrenIds), "Subplan exchange ids don't match child fragment ids (%s vs %s)", exchangeIds, childrenIds);
for (SubPlan child : children) {
child.sanityCheck();
}
}
}