org.apache.druid.query.aggregation.NullableNumericAggregateCombiner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid-processing Show documentation
Show all versions of druid-processing Show documentation
A module that is everything required to understands Druid Segments
/*
* 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.druid.query.aggregation;
import org.apache.druid.guice.annotations.PublicApi;
import org.apache.druid.segment.ColumnValueSelector;
import javax.annotation.Nullable;
/**
* Null-aware numeric {@link AggregateCombiner}.
*
* Used by {@link NullableNumericAggregatorFactory#makeAggregateCombiner()} to wrap non-null aware combiners. This
* class is only used when SQL compatible null handling is enabled.
*
* @see NullableNumericAggregatorFactory#makeAggregateCombiner()
*/
@PublicApi
public final class NullableNumericAggregateCombiner implements AggregateCombiner
{
private boolean isNullResult = true;
private final AggregateCombiner delegate;
public NullableNumericAggregateCombiner(AggregateCombiner delegate)
{
this.delegate = delegate;
}
@Override
public void reset(ColumnValueSelector selector)
{
if (selector.isNull()) {
isNullResult = true;
} else {
isNullResult = false;
delegate.reset(selector);
}
}
@Override
public void fold(ColumnValueSelector selector)
{
boolean isNotNull = !selector.isNull();
if (isNotNull) {
if (isNullResult) {
isNullResult = false;
delegate.reset(selector);
} else {
delegate.fold(selector);
}
}
}
@Override
public float getFloat()
{
if (isNullResult) {
throw new IllegalStateException("Cannot return primitive float for Null Value");
}
return delegate.getFloat();
}
@Override
public double getDouble()
{
if (isNullResult) {
throw new IllegalStateException("Cannot return double for Null Value");
}
return delegate.getDouble();
}
@Override
public long getLong()
{
if (isNullResult) {
throw new IllegalStateException("Cannot return long for Null Value");
}
return delegate.getLong();
}
@Override
public boolean isNull()
{
return isNullResult || delegate.isNull();
}
@Nullable
@Override
public T getObject()
{
return isNullResult ? null : delegate.getObject();
}
@Override
public Class classOfObject()
{
return delegate.classOfObject();
}
}