All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.index.query.xcontent.XContentQueryParserRegistry Maven / Gradle / Ivy

There is a newer version: 8.13.4
Show newest version
/*
 * Licensed to Elastic Search and Shay Banon under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. Elastic Search 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.query.xcontent;

import org.apache.lucene.util.StringHelper;
import org.elasticsearch.index.Index;
import org.elasticsearch.index.analysis.AnalysisService;
import org.elasticsearch.index.settings.IndexSettings;
import org.elasticsearch.util.collect.ImmutableMap;
import org.elasticsearch.util.settings.Settings;

import javax.annotation.Nullable;
import java.util.Map;

import static org.elasticsearch.util.collect.Maps.*;

/**
 * @author kimchy (shay.banon)
 */
public class XContentQueryParserRegistry {

    private final Map queryParsers;

    private final Map filterParsers;

    public XContentQueryParserRegistry(Index index,
                                       @IndexSettings Settings indexSettings,
                                       AnalysisService analysisService,
                                       @Nullable Iterable queryParsers,
                                       @Nullable Iterable filterParsers) {

        Map queryParsersMap = newHashMap();
        // add defaults
        add(queryParsersMap, new DisMaxQueryParser(index, indexSettings));
        add(queryParsersMap, new MatchAllQueryParser(index, indexSettings));
        add(queryParsersMap, new QueryStringQueryParser(index, indexSettings, analysisService));
        add(queryParsersMap, new BoolQueryParser(index, indexSettings));
        add(queryParsersMap, new TermQueryParser(index, indexSettings));
        add(queryParsersMap, new FieldQueryParser(index, indexSettings, analysisService));
        add(queryParsersMap, new RangeQueryParser(index, indexSettings));
        add(queryParsersMap, new PrefixQueryParser(index, indexSettings));
        add(queryParsersMap, new WildcardQueryParser(index, indexSettings));
        add(queryParsersMap, new FilteredQueryParser(index, indexSettings));
        add(queryParsersMap, new ConstantScoreQueryParser(index, indexSettings));
        add(queryParsersMap, new CustomBoostFactorQueryParser(index, indexSettings));
        add(queryParsersMap, new SpanTermQueryParser(index, indexSettings));
        add(queryParsersMap, new SpanNotQueryParser(index, indexSettings));
        add(queryParsersMap, new SpanFirstQueryParser(index, indexSettings));
        add(queryParsersMap, new SpanNearQueryParser(index, indexSettings));
        add(queryParsersMap, new SpanOrQueryParser(index, indexSettings));
        add(queryParsersMap, new MoreLikeThisQueryParser(index, indexSettings));
        add(queryParsersMap, new MoreLikeThisFieldQueryParser(index, indexSettings));
        add(queryParsersMap, new FuzzyLikeThisQueryParser(index, indexSettings));
        add(queryParsersMap, new FuzzyLikeThisFieldQueryParser(index, indexSettings));

        // now, copy over the ones provided
        if (queryParsers != null) {
            for (XContentQueryParser queryParser : queryParsers) {
                add(queryParsersMap, queryParser);
            }
        }
        this.queryParsers = ImmutableMap.copyOf(queryParsersMap);

        Map filterParsersMap = newHashMap();
        // add defaults
        add(filterParsersMap, new TermFilterParser(index, indexSettings));
        add(filterParsersMap, new TermsFilterParser(index, indexSettings));
        add(filterParsersMap, new RangeFilterParser(index, indexSettings));
        add(filterParsersMap, new PrefixFilterParser(index, indexSettings));
        add(filterParsersMap, new QueryFilterParser(index, indexSettings));
        add(filterParsersMap, new BoolFilterParser(index, indexSettings));

        if (filterParsers != null) {
            for (XContentFilterParser filterParser : filterParsers) {
                add(filterParsersMap, filterParser);
            }
        }
        this.filterParsers = ImmutableMap.copyOf(filterParsersMap);
    }

    public XContentQueryParser queryParser(String name) {
        return queryParsers.get(name);
    }

    public XContentFilterParser filterParser(String name) {
        return filterParsers.get(name);
    }

    private void add(Map map, XContentFilterParser filterParser) {
        for (String name : filterParser.names()) {
            map.put(StringHelper.intern(name), filterParser);
        }
    }

    private void add(Map map, XContentQueryParser queryParser) {
        for (String name : queryParser.names()) {
            map.put(StringHelper.intern(name), queryParser);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy