blob: e33f59bfe1132f3ccb7d4a884a5b31b3be282d18 [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.hyracks.dataflow.std.collectors;
import java.util.ArrayList;
import java.util.List;
import org.apache.hyracks.api.channels.IInputChannel;
import org.apache.hyracks.api.comm.IFrameReader;
import org.apache.hyracks.api.exceptions.HyracksDataException;
import org.apache.hyracks.api.partitions.PartitionId;
public class NonDeterministicPartitionBatchManager implements IPartitionBatchManager {
private final IInputChannel[] channels;
private List<IFrameReader> partitions;
private List<IFrameReader> batch;
private int requiredSize;
public NonDeterministicPartitionBatchManager(int nSenders) {
channels = new IInputChannel[nSenders];
partitions = new ArrayList<IFrameReader>();
}
@Override
public synchronized void addPartition(PartitionId pid, IInputChannel channel) {
channels[pid.getSenderIndex()] = channel;
InputChannelFrameReader channelReader = new InputChannelFrameReader(channel);
channel.registerMonitor(channelReader);
if (batch != null && batch.size() < requiredSize) {
batch.add(channelReader);
if (batch.size() == requiredSize) {
notifyAll();
}
} else {
partitions.add(channelReader);
}
}
@Override
public synchronized void getNextBatch(List<IFrameReader> batch, int size) throws HyracksDataException {
if (partitions.size() <= size) {
batch.addAll(partitions);
partitions.clear();
} else if (partitions.size() > size) {
List<IFrameReader> sublist = partitions.subList(0, size);
batch.addAll(sublist);
sublist.clear();
}
if (batch.size() == size) {
return;
}
this.batch = batch;
this.requiredSize = size;
while (batch.size() < size) {
try {
wait();
} catch (InterruptedException e) {
throw new HyracksDataException(e);
}
}
this.batch = null;
}
}