org.graylog2.indexer.IndexMappingFactory Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.indexer;
import org.graylog2.indexer.cluster.Node;
import org.graylog2.indexer.indexset.IndexSetConfig;
import org.graylog2.storage.SearchVersion;
import javax.annotation.Nonnull;
import javax.inject.Inject;
import javax.inject.Singleton;
import java.util.Map;
import static org.graylog2.shared.utilities.StringUtils.f;
@Singleton
public class IndexMappingFactory {
private final Node node;
private final Map providers;
@Inject
public IndexMappingFactory(Node node, Map providers) {
this.node = node;
this.providers = providers;
}
@Nonnull
public IndexMappingTemplate createIndexMapping(@Nonnull IndexSetConfig indexSetConfig) throws IgnoreIndexTemplate {
final SearchVersion elasticsearchVersion = node.getVersion()
.orElseThrow(() -> new ElasticsearchException("Unable to retrieve Elasticsearch version."));
final String templateType = indexSetConfig
.indexTemplateType()
.orElse(IndexSetConfig.DEFAULT_INDEX_TEMPLATE_TYPE);
return resolveIndexMappingTemplateProvider(templateType)
.create(elasticsearchVersion, indexSetConfig);
}
private IndexTemplateProvider resolveIndexMappingTemplateProvider(@Nonnull String templateType) {
if (providers.containsKey(templateType)) {
return providers.get(templateType);
} else {
throw new IllegalStateException(f("No index template provider found for type '%s'", templateType));
}
}
}