blob: 328d5f38679b9cd23004190e64f7c6e9e1856d96 [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.schema;
import org.apache.iotdb.db.queryengine.execution.operator.Operator;
import org.apache.iotdb.db.queryengine.execution.operator.OperatorContext;
import org.apache.iotdb.db.queryengine.execution.operator.process.ProcessOperator;
import com.google.common.util.concurrent.ListenableFuture;
import org.apache.tsfile.enums.TSDataType;
import org.apache.tsfile.read.common.block.TsBlock;
import org.apache.tsfile.read.common.block.TsBlockBuilder;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.NoSuchElementException;
import static com.google.common.util.concurrent.Futures.successfulAsList;
public class CountMergeOperator implements ProcessOperator {
private final OperatorContext operatorContext;
private final TsBlock[] childrenTsBlocks;
private List<TsBlock> resultTsBlockList;
private int currentIndex = 0;
private final List<Operator> children;
public CountMergeOperator(OperatorContext operatorContext, List<Operator> children) {
this.operatorContext = operatorContext;
this.children = children;
childrenTsBlocks = new TsBlock[children.size()];
}
@Override
public OperatorContext getOperatorContext() {
return operatorContext;
}
@Override
public ListenableFuture<?> isBlocked() {
List<ListenableFuture<?>> listenableFutureList = new ArrayList<>(children.size());
for (int i = 0; i < children.size(); i++) {
if (childrenTsBlocks[i] == null) {
ListenableFuture<?> blocked = children.get(i).isBlocked();
if (!blocked.isDone()) {
listenableFutureList.add(blocked);
}
}
}
return listenableFutureList.isEmpty() ? NOT_BLOCKED : successfulAsList(listenableFutureList);
}
@Override
public TsBlock next() throws Exception {
if (!hasNext()) {
throw new NoSuchElementException();
}
if (resultTsBlockList != null) {
currentIndex++;
return resultTsBlockList.get(currentIndex - 1);
}
boolean allChildrenReady = true;
for (int i = 0; i < children.size(); i++) {
if (childrenTsBlocks[i] == null && children.get(i).hasNextWithTimer()) {
// when this operator is not blocked, it means all children that have not return TsBlock is
// not blocked.
TsBlock tsBlock = children.get(i).nextWithTimer();
if (tsBlock == null || tsBlock.isEmpty()) {
allChildrenReady = false;
} else {
childrenTsBlocks[i] = tsBlock;
}
}
}
if (allChildrenReady) {
generateResultTsBlockList();
currentIndex++;
return resultTsBlockList.get(currentIndex - 1);
} else {
return null;
}
}
private void generateResultTsBlockList() {
long totalCount = 0;
for (TsBlock tsBlock : childrenTsBlocks) {
long count = tsBlock.getColumn(0).getLong(0);
totalCount += count;
}
TsBlockBuilder tsBlockBuilder = new TsBlockBuilder(Collections.singletonList(TSDataType.INT64));
tsBlockBuilder.getTimeColumnBuilder().writeLong(0L);
tsBlockBuilder.getColumnBuilder(0).writeLong(totalCount);
tsBlockBuilder.declarePosition();
this.resultTsBlockList = Collections.singletonList(tsBlockBuilder.build());
}
@Override
public boolean hasNext() throws Exception {
return resultTsBlockList == null || currentIndex < resultTsBlockList.size();
}
@Override
public boolean isFinished() throws Exception {
return !hasNextWithTimer();
}
@Override
public long calculateMaxPeekMemory() {
long childrenMaxPeekMemory = 0;
for (Operator child : children) {
childrenMaxPeekMemory = Math.max(childrenMaxPeekMemory, child.calculateMaxPeekMemory());
}
return childrenMaxPeekMemory;
}
@Override
public long calculateMaxReturnSize() {
long childrenMaxReturnSize = 0;
for (Operator child : children) {
childrenMaxReturnSize = Math.max(childrenMaxReturnSize, child.calculateMaxReturnSize());
}
return childrenMaxReturnSize;
}
@Override
public long calculateRetainedSizeAfterCallingNext() {
long retainedSize = 0L;
for (Operator child : children) {
retainedSize += child.calculateRetainedSizeAfterCallingNext();
}
return retainedSize;
}
@Override
public void close() throws Exception {
for (Operator child : children) {
child.close();
}
}
}