blob: 048f7d2e2c28771e115b1aff08cc8d7c62b22c67 [file] [log] [blame]
/*
* 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.wayang.java.operators;
import org.apache.wayang.basic.operators.DoWhileOperator;
import org.apache.wayang.basic.operators.RepeatOperator;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.plan.wayangplan.ExecutionOperator;
import org.apache.wayang.core.platform.ChannelDescriptor;
import org.apache.wayang.core.platform.ChannelInstance;
import org.apache.wayang.core.platform.lineage.ExecutionLineageNode;
import org.apache.wayang.core.types.DataSetType;
import org.apache.wayang.core.util.Tuple;
import org.apache.wayang.java.channels.CollectionChannel;
import org.apache.wayang.java.channels.JavaChannelInstance;
import org.apache.wayang.java.channels.StreamChannel;
import org.apache.wayang.java.execution.JavaExecutor;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* Java implementation of the {@link DoWhileOperator}.
*/
public class JavaRepeatOperator<Type>
extends RepeatOperator<Type>
implements JavaExecutionOperator {
/**
* Keeps track of the current iteration number.
*/
private int iterationCounter;
/**
* Creates a new instance.
*/
public JavaRepeatOperator(int numIterations, DataSetType<Type> type) {
super(numIterations, type);
}
public JavaRepeatOperator(RepeatOperator<Type> that) {
super(that);
}
@Override
@SuppressWarnings("unchecked")
public Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> evaluate(
ChannelInstance[] inputs,
ChannelInstance[] outputs,
JavaExecutor javaExecutor,
OptimizationContext.OperatorContext operatorContext) {
assert inputs.length == this.getNumInputs();
assert outputs.length == this.getNumOutputs();
final ExecutionLineageNode executionLineageNode = new ExecutionLineageNode(operatorContext);
executionLineageNode.addAtomicExecutionFromOperatorContext();
final JavaChannelInstance input;
switch (this.getState()) {
case NOT_STARTED:
assert inputs[INITIAL_INPUT_INDEX] != null;
this.iterationCounter = 0;
input = (JavaChannelInstance) inputs[INITIAL_INPUT_INDEX];
break;
case RUNNING:
assert inputs[ITERATION_INPUT_INDEX] != null;
this.iterationCounter++;
input = (JavaChannelInstance) inputs[ITERATION_INPUT_INDEX];
break;
default:
throw new IllegalStateException(String.format("%s is finished, yet executed.", this));
}
if (this.iterationCounter >= this.getNumIterations()) {
// final loop output
JavaExecutionOperator.forward(input, outputs[FINAL_OUTPUT_INDEX]);
outputs[ITERATION_OUTPUT_INDEX] = null;
this.setState(State.FINISHED);
} else {
outputs[FINAL_OUTPUT_INDEX] = null;
JavaExecutionOperator.forward(input, outputs[ITERATION_OUTPUT_INDEX]);
this.setState(State.RUNNING);
}
return executionLineageNode.collectAndMark();
}
@Override
public String getLoadProfileEstimatorConfigurationKey() {
return "wayang.java.repeat.load";
}
@Override
protected ExecutionOperator createCopy() {
return new JavaRepeatOperator<>(this);
}
@Override
public List<ChannelDescriptor> getSupportedInputChannels(int index) {
assert index <= this.getNumInputs() || (index == 0 && this.getNumInputs() == 0);
switch (index) {
case INITIAL_INPUT_INDEX:
case ITERATION_INPUT_INDEX:
return Arrays.asList(StreamChannel.DESCRIPTOR, CollectionChannel.DESCRIPTOR);
default:
throw new IllegalStateException(String.format("%s has no %d-th input.", this, index));
}
}
@Override
public List<ChannelDescriptor> getSupportedOutputChannels(int index) {
assert index <= this.getNumOutputs() || (index == 0 && this.getNumOutputs() == 0);
return Collections.singletonList(StreamChannel.DESCRIPTOR);
}
}