
eu.stratosphere.compiler.plan.SolutionSetPlanNode Maven / Gradle / Ivy
/***********************************************************************************************************************
* Copyright (C) 2010-2013 by the Stratosphere project (http://stratosphere.eu)
*
* 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 eu.stratosphere.compiler.plan;
import static eu.stratosphere.compiler.plan.PlanNode.SourceAndDamReport.FOUND_SOURCE;
import static eu.stratosphere.compiler.plan.PlanNode.SourceAndDamReport.NOT_FOUND;
import java.util.Collections;
import java.util.Iterator;
import eu.stratosphere.compiler.costs.Costs;
import eu.stratosphere.compiler.dag.SolutionSetNode;
import eu.stratosphere.compiler.dataproperties.GlobalProperties;
import eu.stratosphere.compiler.dataproperties.LocalProperties;
import eu.stratosphere.pact.runtime.task.DriverStrategy;
import eu.stratosphere.util.Visitor;
/**
* Plan candidate node for partial solution of a bulk iteration.
*/
public class SolutionSetPlanNode extends PlanNode {
private static final Costs NO_COSTS = new Costs();
private WorksetIterationPlanNode containingIterationNode;
public Object postPassHelper;
public SolutionSetPlanNode(SolutionSetNode template, String nodeName, GlobalProperties gProps, LocalProperties lProps) {
super(template, nodeName, DriverStrategy.NONE);
this.globalProps = gProps;
this.localProps = lProps;
// the node incurs no cost
this.nodeCosts = NO_COSTS;
this.cumulativeCosts = NO_COSTS;
}
// --------------------------------------------------------------------------------------------
public SolutionSetNode getSolutionSetNode() {
return (SolutionSetNode) this.template;
}
public WorksetIterationPlanNode getContainingIterationNode() {
return this.containingIterationNode;
}
public void setContainingIterationNode(WorksetIterationPlanNode containingIterationNode) {
this.containingIterationNode = containingIterationNode;
}
// --------------------------------------------------------------------------------------------
@Override
public void accept(Visitor visitor) {
if (visitor.preVisit(this)) {
visitor.postVisit(this);
}
}
@Override
public Iterator getPredecessors() {
return Collections.emptyList().iterator();
}
@Override
public Iterator getInputs() {
return Collections.emptyList().iterator();
}
@Override
public SourceAndDamReport hasDamOnPathDownTo(PlanNode source) {
if (source == this) {
return FOUND_SOURCE;
} else {
return NOT_FOUND;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy