/* * 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.index.similarity; import com.google.common.collect.ImmutableMap; import org.apache.lucene.search.similarities.*; import org.elasticsearch.common.collect.MapBuilder; import org.elasticsearch.common.inject.Inject; import org.elasticsearch.common.inject.assistedinject.Assisted; import org.elasticsearch.common.settings.Settings; /** * {@link SimilarityProvider} for {@link DFRSimilarity}. * <p> * Configuration options available: * <ul> * <li>basic_model</li> * <li>after_effect</li> * <li>normalization</li> * </ul> * @see DFRSimilarity For more information about configuration */ public class DFRSimilarityProvider extends AbstractSimilarityProvider { private static final ImmutableMap<String, BasicModel> BASIC_MODELS; private static final ImmutableMap<String, AfterEffect> AFTER_EFFECTS; static { MapBuilder<String, BasicModel> models = MapBuilder.newMapBuilder(); models.put("be", new BasicModelBE()); models.put("d", new BasicModelD()); models.put("g", new BasicModelG()); models.put("if", new BasicModelIF()); models.put("in", new BasicModelIn()); models.put("ine", new BasicModelIne()); models.put("p", new BasicModelP()); BASIC_MODELS = models.immutableMap(); MapBuilder<String, AfterEffect> effects = MapBuilder.newMapBuilder(); effects.put("no", new AfterEffect.NoAfterEffect()); effects.put("b", new AfterEffectB()); effects.put("l", new AfterEffectL()); AFTER_EFFECTS = effects.immutableMap(); } private final DFRSimilarity similarity; @Inject public DFRSimilarityProvider(@Assisted String name, @Assisted Settings settings) { super(name); BasicModel basicModel = parseBasicModel(settings); AfterEffect afterEffect = parseAfterEffect(settings); Normalization normalization = parseNormalization(settings); this.similarity = new DFRSimilarity(basicModel, afterEffect, normalization); } /** * Parses the given Settings and creates the appropriate {@link BasicModel} * * @param settings Settings to parse * @return {@link BasicModel} referred to in the Settings */ protected BasicModel parseBasicModel(Settings settings) { String basicModel = settings.get("basic_model"); BasicModel model = BASIC_MODELS.get(basicModel); if (model == null) { throw new IllegalArgumentException("Unsupported BasicModel [" + basicModel + "]"); } return model; } /** * Parses the given Settings and creates the appropriate {@link AfterEffect} * * @param settings Settings to parse * @return {@link AfterEffect} referred to in the Settings */ protected AfterEffect parseAfterEffect(Settings settings) { String afterEffect = settings.get("after_effect"); AfterEffect effect = AFTER_EFFECTS.get(afterEffect); if (effect == null) { throw new IllegalArgumentException("Unsupported AfterEffect [" + afterEffect + "]"); } return effect; } /** * {@inheritDoc} */ @Override public Similarity get() { return similarity; } }