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

org.elasticsearch.index.codec.postingsformat.PostingsFormatService Maven / Gradle / Ivy

There is a newer version: 8.14.1
Show newest version
/*
 * Licensed to ElasticSearch and Shay Banon 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.codec.postingsformat;

import com.google.common.collect.ImmutableMap;
import org.elasticsearch.ElasticSearchIllegalArgumentException;
import org.elasticsearch.common.collect.MapBuilder;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.settings.ImmutableSettings;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.index.AbstractIndexComponent;
import org.elasticsearch.index.Index;
import org.elasticsearch.index.codec.CodecService;
import org.elasticsearch.index.settings.IndexSettings;

import java.util.Map;

/**
 * The {@link PostingsFormatService} provides access to
 * all configured {@link PostingsFormatProvider} instances by
 * {@link PostingsFormatProvider#name() name}. 
 * 
 * @see CodecService 
 * 
 */
public class PostingsFormatService extends AbstractIndexComponent {

    private final ImmutableMap providers;

    public PostingsFormatService(Index index) {
        this(index, ImmutableSettings.Builder.EMPTY_SETTINGS);
    }

    public PostingsFormatService(Index index, @IndexSettings Settings indexSettings) {
        this(index, indexSettings, ImmutableMap.of());
    }

    @Inject
    public PostingsFormatService(Index index, @IndexSettings Settings indexSettings, Map postingFormatFactories) {
        super(index, indexSettings);

        MapBuilder providers = MapBuilder.newMapBuilder();

        Map postingsFormatSettings = indexSettings.getGroups(PostingsFormatProvider.POSTINGS_FORMAT_SETTINGS_PREFIX);
        for (Map.Entry entry : postingFormatFactories.entrySet()) {
            String name = entry.getKey();
            PostingsFormatProvider.Factory factory = entry.getValue();

            Settings settings = postingsFormatSettings.get(name);
            if (settings == null) {
                settings = ImmutableSettings.Builder.EMPTY_SETTINGS;
            }
            providers.put(name, factory.create(name, settings));
        }

        // even though we have this logic in the cache module (where it should be, so posting format with delegates will work properly wiht the pre initialized map)
        // we do it here as well so we can use just this instance for tests
        for (PreBuiltPostingsFormatProvider.Factory factory : PostingFormats.listFactories()) {
            if (providers.containsKey(factory.name())) {
                continue;
            }
            providers.put(factory.name(), factory.get());
        }

        this.providers = providers.immutableMap();
    }

    public PostingsFormatProvider get(String name) throws ElasticSearchIllegalArgumentException {
        PostingsFormatProvider provider = providers.get(name);
        if (provider == null) {
            throw new ElasticSearchIllegalArgumentException("failed to find postings_format [" + name + "]");
        }
        return provider;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy