blob: e6f1321643283f322f5b17ef7ce3f6e109256de3 [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.solr.analytics.function.reduction;
import java.util.function.UnaryOperator;
import org.apache.solr.analytics.ExpressionFactory.CreatorFunction;
import org.apache.solr.analytics.function.ReductionFunction;
import org.apache.solr.analytics.function.reduction.data.CountCollector.ExpressionCountCollector;
import org.apache.solr.analytics.value.AnalyticsValueStream;
import org.apache.solr.analytics.value.LongValue.AbstractLongValue;
import org.apache.solr.analytics.function.reduction.data.ReductionDataCollector;
import org.apache.solr.common.SolrException;
import org.apache.solr.common.SolrException.ErrorCode;
/**
* A reduction function which returns the number of documents for which the given expression does not exist.
*/
public class MissingFunction extends AbstractLongValue implements ReductionFunction {
private ExpressionCountCollector collector;
public static final String name = "missing";
private final String exprStr;
public static final CreatorFunction creatorFunction = (params -> {
if (params.length != 1) {
throw new SolrException(ErrorCode.BAD_REQUEST,"The "+name+" function requires 1 paramater, " + params.length + " found.");
}
return new MissingFunction(params[0]);
});
public MissingFunction(AnalyticsValueStream param) {
this.collector = new ExpressionCountCollector(param);
this.exprStr = AnalyticsValueStream.createExpressionString(name,param);
}
@Override
public long getLong() {
return collector.missing();
}
@Override
public boolean exists() {
return true;
}
@Override
public void synchronizeDataCollectors(UnaryOperator<ReductionDataCollector<?>> sync) {
collector = (ExpressionCountCollector)sync.apply(collector);
}
@Override
public String getExpressionStr() {
return exprStr;
}
@Override
public String getName() {
return name;
}
@Override
public ExpressionType getExpressionType() {
return ExpressionType.REDUCTION;
}
}