blob: 1fffb1daf40558cb4aa9ede21b84e2f49c21bf60 [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.GlobalMaterializedGroupOperator;
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.execution.JavaExecutor;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* Java implementation of the {@link GlobalMaterializedGroupOperator}.
*/
public class JavaGlobalMaterializedGroupOperator<Type>
extends GlobalMaterializedGroupOperator<Type>
implements JavaExecutionOperator {
public JavaGlobalMaterializedGroupOperator(DataSetType<Type> inputType, DataSetType<Iterable<Type>> outputType) {
super(inputType, outputType);
}
public JavaGlobalMaterializedGroupOperator(Class<Type> typeClass) {
super(typeClass);
}
/**
* Copies an instance (exclusive of broadcasts).
*
* @param that that should be copied
*/
public JavaGlobalMaterializedGroupOperator(GlobalMaterializedGroupOperator<Type> that) {
super(that);
}
@Override
public Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> evaluate(
ChannelInstance[] inputs,
ChannelInstance[] outputs,
JavaExecutor javaExecutor,
OptimizationContext.OperatorContext operatorContext) {
assert inputs.length == 1;
assert outputs.length == 1;
CollectionChannel.Instance inputChannelInstance = (CollectionChannel.Instance) inputs[0];
final Collection<?> dataQuanta = inputChannelInstance.provideCollection();
Collection<Iterable<?>> dataQuantaGroup = new ArrayList<>(1);
dataQuantaGroup.add(dataQuanta);
CollectionChannel.Instance outputChannelInstance = (CollectionChannel.Instance) outputs[0];
outputChannelInstance.accept(dataQuantaGroup);
return ExecutionOperator.modelEagerExecution(inputs, outputs, operatorContext);
}
@Override
public List<ChannelDescriptor> getSupportedInputChannels(int index) {
return Collections.singletonList(CollectionChannel.DESCRIPTOR);
}
@Override
public List<ChannelDescriptor> getSupportedOutputChannels(int index) {
return Collections.singletonList(CollectionChannel.DESCRIPTOR);
}
@Override
public String getLoadProfileEstimatorConfigurationKey() {
return "wayang.java.globalgroup.load";
}
@Override
protected ExecutionOperator createCopy() {
return new JavaGlobalMaterializedGroupOperator<>(this.getInputType(), this.getOutputType());
}
}