blob: b605d2aa0392f4dba40e99a1fa37510811d20225 [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.iotdb.db.queryengine.execution.operator.sink;
import org.apache.iotdb.commons.utils.TestOnly;
import org.apache.iotdb.db.queryengine.execution.exchange.sink.DownStreamChannelIndex;
import org.apache.iotdb.db.queryengine.execution.exchange.sink.ISinkHandle;
import org.apache.iotdb.db.queryengine.execution.operator.Operator;
import org.apache.iotdb.db.queryengine.execution.operator.OperatorContext;
import org.apache.iotdb.tsfile.read.common.block.TsBlock;
import com.google.common.util.concurrent.ListenableFuture;
import java.util.List;
public class IdentitySinkOperator implements Operator {
private final OperatorContext operatorContext;
private final List<Operator> children;
private final DownStreamChannelIndex downStreamChannelIndex;
private final ISinkHandle sinkHandle;
private boolean needToReturnNull = false;
private boolean isFinished = false;
public IdentitySinkOperator(
OperatorContext operatorContext,
List<Operator> children,
DownStreamChannelIndex downStreamChannelIndex,
ISinkHandle sinkHandle) {
this.operatorContext = operatorContext;
this.children = children;
this.downStreamChannelIndex = downStreamChannelIndex;
this.sinkHandle = sinkHandle;
}
@Override
public boolean hasNext() throws Exception {
int currentIndex = downStreamChannelIndex.getCurrentIndex();
boolean currentChannelClosed = sinkHandle.isChannelClosed(currentIndex);
if (!currentChannelClosed && children.get(currentIndex).hasNextWithTimer()) {
return true;
} else if (currentChannelClosed) {
// we close the child directly. The child could be an ExchangeOperator which is the downstream
// of an ISinkChannel of a pipeline driver.
closeCurrentChild(currentIndex);
} else {
// current child has no more data
closeCurrentChild(currentIndex);
sinkHandle.setNoMoreTsBlocksOfOneChannel(downStreamChannelIndex.getCurrentIndex());
}
// increment the index
currentIndex++;
if (currentIndex >= children.size()) {
isFinished = true;
return false;
}
downStreamChannelIndex.setCurrentIndex(currentIndex);
// if we reach here, it means that isBlocked() is called on a different child
// we need to ensure that this child is not blocked. We set this field to true here so that we
// can begin another loop in Driver.
needToReturnNull = true;
// tryOpenChannel first
sinkHandle.tryOpenChannel(currentIndex);
return true;
}
private void closeCurrentChild(int index) throws Exception {
children.get(index).close();
children.set(index, null);
}
@Override
public TsBlock next() throws Exception {
if (needToReturnNull) {
needToReturnNull = false;
return null;
}
return children.get(downStreamChannelIndex.getCurrentIndex()).nextWithTimer();
}
@Override
public ListenableFuture<?> isBlocked() {
return children.get(downStreamChannelIndex.getCurrentIndex()).isBlocked();
}
@Override
public boolean isFinished() throws Exception {
return isFinished;
}
@Override
public OperatorContext getOperatorContext() {
return operatorContext;
}
@Override
public void close() throws Exception {
for (int i = downStreamChannelIndex.getCurrentIndex(), n = children.size(); i < n; i++) {
Operator currentChild = children.get(i);
if (currentChild != null) {
currentChild.close();
}
}
}
@Override
public long calculateMaxPeekMemory() {
long maxPeekMemory = 0;
for (Operator child : children) {
maxPeekMemory = Math.max(maxPeekMemory, child.calculateMaxPeekMemoryWithCounter());
}
return maxPeekMemory;
}
@Override
public long calculateMaxReturnSize() {
long maxReturnSize = 0;
for (Operator child : children) {
maxReturnSize = Math.max(maxReturnSize, child.calculateMaxReturnSize());
}
return maxReturnSize;
}
@Override
public long calculateRetainedSizeAfterCallingNext() {
return 0L;
}
@TestOnly
public List<Operator> getChildren() {
return children;
}
}