/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch 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.elasticsearch.search.aggregations.bucket.script; import org.elasticsearch.common.Nullable; import org.elasticsearch.script.ExecutableScript; import org.elasticsearch.script.NativeScriptFactory; import java.util.Map; import java.util.Objects; public class NativeSignificanceScoreScriptWithParams extends TestScript { public static final String NATIVE_SIGNIFICANCE_SCORE_SCRIPT_WITH_PARAMS = "native_significance_score_script_with_params"; double factor = 0.0; public static class Factory implements NativeScriptFactory { @Override public ExecutableScript newScript(@Nullable Map<String, Object> params) { return new NativeSignificanceScoreScriptWithParams(params); } @Override public boolean needsScores() { return false; } @Override public String getName() { return NATIVE_SIGNIFICANCE_SCORE_SCRIPT_WITH_PARAMS; } } private NativeSignificanceScoreScriptWithParams(Map<String, Object> params) { factor = ((Number) params.get("param")).doubleValue(); } @Override public Object run() { checkParams(); Objects.requireNonNull(factor, "factor"); return factor * (_subset_freq.longValue() + _subset_size.longValue() + _superset_freq.longValue() + _superset_size.longValue()) / factor; } }