blob: c71c8406b4ba6cb9e6a31207cfdadadb6338ca6d [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.channels;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.plan.executionplan.Channel;
import org.apache.wayang.core.plan.wayangplan.OutputSlot;
import org.apache.wayang.core.platform.AbstractChannelInstance;
import org.apache.wayang.core.platform.ChannelDescriptor;
import org.apache.wayang.core.platform.Executor;
import org.apache.wayang.java.operators.JavaExecutionOperator;
import java.util.Collection;
import java.util.stream.Stream;
/**
* {@link Channel} between two {@link JavaExecutionOperator}s using an intermediate {@link Collection}.
*/
public class CollectionChannel extends Channel {
public static final ChannelDescriptor DESCRIPTOR = new ChannelDescriptor(CollectionChannel.class, true, true);
public CollectionChannel(ChannelDescriptor channelDescriptor, OutputSlot<?> outputSlot) {
super(channelDescriptor, outputSlot);
assert channelDescriptor == DESCRIPTOR;
}
private CollectionChannel(CollectionChannel parent) {
super(parent);
}
@Override
public CollectionChannel copy() {
return new CollectionChannel(this);
}
@Override
public Instance createInstance(Executor executor,
OptimizationContext.OperatorContext producerOperatorContext,
int producerOutputIndex) {
return new Instance(executor, producerOperatorContext, producerOutputIndex);
}
/**
* {@link JavaChannelInstance} implementation for the {@link CollectionChannel}.
*/
public class Instance extends AbstractChannelInstance implements JavaChannelInstance {
private Collection<?> collection;
public Instance(Executor executor, OptimizationContext.OperatorContext producerOperatorContext, int producerOutputIndex) {
super(executor, producerOperatorContext, producerOutputIndex);
}
public void accept(Collection<?> collection) {
this.collection = collection;
this.setMeasuredCardinality(this.collection.size());
}
@SuppressWarnings("unchecked")
public <T> Collection<T> provideCollection() {
return (Collection<T>) this.collection;
}
@Override
@SuppressWarnings("unchecked")
public <T> Stream<T> provideStream() {
return (Stream<T>) this.collection.stream();
}
@Override
public Channel getChannel() {
return CollectionChannel.this;
}
@Override
protected void doDispose() {
logger.debug("Free {}.", this);
this.collection = null;
}
}
}