blob: a3d0ec9a3a442edab6fb3347aaee4647fd2f0ea0 [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.aggregation;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import org.apache.iotdb.tsfile.file.metadata.statistics.Statistics;
import org.apache.iotdb.tsfile.read.common.block.column.Column;
import org.apache.iotdb.tsfile.read.common.block.column.ColumnBuilder;
import org.apache.iotdb.tsfile.utils.BitMap;
import static com.google.common.base.Preconditions.checkArgument;
public class MinTimeAccumulator implements Accumulator {
protected boolean hasCandidateResult;
protected long minTime = Long.MAX_VALUE;
public MinTimeAccumulator() {}
// Column should be like: | Time | Value |
// Value is used to judge isNull()
@Override
public void addInput(Column[] columns, BitMap bitMap) {
int count = columns[0].getPositionCount();
for (int i = 0; i < count; i++) {
if (bitMap != null && !bitMap.isMarked(i)) {
continue;
}
if (!columns[1].isNull(i)) {
updateMinTime(columns[0].getLong(i));
return;
}
}
}
// partialResult should be like: | partialMinTimeValue |
@Override
public void addIntermediate(Column[] partialResult) {
checkArgument(partialResult.length == 1, "partialResult of MinTime should be 1");
if (partialResult[0].isNull(0)) {
return;
}
updateMinTime(partialResult[0].getLong(0));
}
@Override
public void addStatistics(Statistics statistics) {
if (statistics == null) {
return;
}
updateMinTime(statistics.getStartTime());
}
// finalResult should be single column, like: | finalMinTime |
@Override
public void setFinal(Column finalResult) {
if (finalResult.isNull(0)) {
return;
}
hasCandidateResult = true;
minTime = finalResult.getLong(0);
}
// columnBuilder should be single in minTimeAccumulator
@Override
public void outputIntermediate(ColumnBuilder[] columnBuilders) {
checkArgument(columnBuilders.length == 1, "partialResult of MinTime should be 1");
if (!hasCandidateResult) {
columnBuilders[0].appendNull();
} else {
columnBuilders[0].writeLong(minTime);
}
}
@Override
public void outputFinal(ColumnBuilder columnBuilder) {
if (!hasCandidateResult) {
columnBuilder.appendNull();
} else {
columnBuilder.writeLong(minTime);
}
}
@Override
public void reset() {
hasCandidateResult = false;
this.minTime = Long.MAX_VALUE;
}
@Override
public boolean hasFinalResult() {
return hasCandidateResult;
}
@Override
public TSDataType[] getIntermediateType() {
return new TSDataType[] {TSDataType.INT64};
}
@Override
public TSDataType getFinalType() {
return TSDataType.INT64;
}
protected void updateMinTime(long curTime) {
hasCandidateResult = true;
minTime = Math.min(minTime, curTime);
}
}