diff --git a/src/main/java/org/elasticsearch/index/analysis/PreBuiltAnalyzerProviderFactory.java b/src/main/java/org/elasticsearch/index/analysis/PreBuiltAnalyzerProviderFactory.java index 0a2affc421080..05342ba16e46f 100644 --- a/src/main/java/org/elasticsearch/index/analysis/PreBuiltAnalyzerProviderFactory.java +++ b/src/main/java/org/elasticsearch/index/analysis/PreBuiltAnalyzerProviderFactory.java @@ -25,8 +25,6 @@ import org.elasticsearch.common.settings.Settings; import org.elasticsearch.indices.analysis.PreBuiltAnalyzers; -import java.util.Locale; - /** * */ @@ -42,8 +40,11 @@ public PreBuiltAnalyzerProviderFactory(String name, AnalyzerScope scope, Analyze public AnalyzerProvider create(String name, Settings settings) { Version indexVersion = settings.getAsVersion(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT); if (!Version.CURRENT.equals(indexVersion)) { - Analyzer analyzer = PreBuiltAnalyzers.valueOf(name.toUpperCase(Locale.ROOT)).getAnalyzer(indexVersion); - return new PreBuiltAnalyzerProvider(name, AnalyzerScope.INDICES, analyzer); + PreBuiltAnalyzers preBuiltAnalyzers = PreBuiltAnalyzers.getOrDefault(name, null); + if (preBuiltAnalyzers != null) { + Analyzer analyzer = preBuiltAnalyzers.getAnalyzer(indexVersion); + return new PreBuiltAnalyzerProvider(name, AnalyzerScope.INDICES, analyzer); + } } return analyzerProvider; diff --git a/src/main/java/org/elasticsearch/index/analysis/PreBuiltCharFilterFactoryFactory.java b/src/main/java/org/elasticsearch/index/analysis/PreBuiltCharFilterFactoryFactory.java index 47dfeae60bbfe..107bee1883e32 100644 --- a/src/main/java/org/elasticsearch/index/analysis/PreBuiltCharFilterFactoryFactory.java +++ b/src/main/java/org/elasticsearch/index/analysis/PreBuiltCharFilterFactoryFactory.java @@ -24,8 +24,6 @@ import org.elasticsearch.common.settings.Settings; import org.elasticsearch.indices.analysis.PreBuiltCharFilters; -import java.util.Locale; - public class PreBuiltCharFilterFactoryFactory implements CharFilterFactoryFactory { private final CharFilterFactory charFilterFactory; @@ -38,9 +36,12 @@ public PreBuiltCharFilterFactoryFactory(CharFilterFactory charFilterFactory) { public CharFilterFactory create(String name, Settings settings) { Version indexVersion = settings.getAsVersion(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT); if (!Version.CURRENT.equals(indexVersion)) { - return PreBuiltCharFilters.valueOf(name.toUpperCase(Locale.ROOT)).getCharFilterFactory(indexVersion); + PreBuiltCharFilters preBuiltCharFilters = PreBuiltCharFilters.getOrDefault(name, null); + if (preBuiltCharFilters != null) { + return preBuiltCharFilters.getCharFilterFactory(indexVersion); + } } return charFilterFactory; } -} \ No newline at end of file +} diff --git a/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenFilterFactoryFactory.java b/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenFilterFactoryFactory.java index b056f93819bda..9c89268d2bcbe 100644 --- a/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenFilterFactoryFactory.java +++ b/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenFilterFactoryFactory.java @@ -24,8 +24,6 @@ import org.elasticsearch.common.settings.Settings; import org.elasticsearch.indices.analysis.PreBuiltTokenFilters; -import java.util.Locale; - public class PreBuiltTokenFilterFactoryFactory implements TokenFilterFactoryFactory { private final TokenFilterFactory tokenFilterFactory; @@ -38,8 +36,11 @@ public PreBuiltTokenFilterFactoryFactory(TokenFilterFactory tokenFilterFactory) public TokenFilterFactory create(String name, Settings settings) { Version indexVersion = settings.getAsVersion(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT); if (!Version.CURRENT.equals(indexVersion)) { - return PreBuiltTokenFilters.valueOf(name.toUpperCase(Locale.ROOT)).getTokenFilterFactory(indexVersion); + PreBuiltTokenFilters preBuiltTokenFilters = PreBuiltTokenFilters.getOrDefault(name, null); + if (preBuiltTokenFilters != null) { + return preBuiltTokenFilters.getTokenFilterFactory(indexVersion); + } } return tokenFilterFactory; } -} \ No newline at end of file +} diff --git a/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenizerFactoryFactory.java b/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenizerFactoryFactory.java index 3e5b47307e076..4ee66b1d0f377 100644 --- a/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenizerFactoryFactory.java +++ b/src/main/java/org/elasticsearch/index/analysis/PreBuiltTokenizerFactoryFactory.java @@ -24,8 +24,6 @@ import org.elasticsearch.common.settings.Settings; import org.elasticsearch.indices.analysis.PreBuiltTokenizers; -import java.util.Locale; - public class PreBuiltTokenizerFactoryFactory implements TokenizerFactoryFactory { private final TokenizerFactory tokenizerFactory; @@ -38,10 +36,12 @@ public PreBuiltTokenizerFactoryFactory(TokenizerFactory tokenizerFactory) { public TokenizerFactory create(String name, Settings settings) { Version indexVersion = settings.getAsVersion(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT); if (!Version.CURRENT.equals(indexVersion)) { - TokenizerFactory versionedTokenizerFactory = PreBuiltTokenizers.valueOf(name.toUpperCase(Locale.ROOT)).getTokenizerFactory(indexVersion); - return versionedTokenizerFactory; + PreBuiltTokenizers preBuiltTokenizers = PreBuiltTokenizers.getOrDefault(name, null); + if (preBuiltTokenizers != null) { + return preBuiltTokenizers.getTokenizerFactory(indexVersion); + } } return tokenizerFactory; } -} \ No newline at end of file +} diff --git a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzers.java b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzers.java index 0f5599795a7e4..a5aae82d849f9 100644 --- a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzers.java +++ b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzers.java @@ -65,6 +65,8 @@ import org.elasticsearch.index.analysis.StandardHtmlStripAnalyzer; import org.elasticsearch.indices.analysis.PreBuiltCacheFactory.CachingStrategy; +import java.util.Locale; + /** * */ @@ -401,4 +403,17 @@ public synchronized Analyzer getAnalyzer(Version version) { return analyzer; } + /** + * Get a pre built Analyzer by its name or fallback to the default one + * @param name Analyzer name + * @param defaultAnalyzer default Analyzer if name not found + */ + public static PreBuiltAnalyzers getOrDefault(String name, PreBuiltAnalyzers defaultAnalyzer) { + try { + return valueOf(name.toUpperCase(Locale.ROOT)); + } catch (IllegalArgumentException e) { + return defaultAnalyzer; + } + } + } diff --git a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltCharFilters.java b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltCharFilters.java index 70eea07b3b40b..3e8647892e54b 100644 --- a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltCharFilters.java +++ b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltCharFilters.java @@ -67,4 +67,17 @@ public Reader create(Reader tokenStream) { return charFilterFactory; } + + /** + * Get a pre built CharFilter by its name or fallback to the default one + * @param name CharFilter name + * @param defaultCharFilter default CharFilter if name not found + */ + public static PreBuiltCharFilters getOrDefault(String name, PreBuiltCharFilters defaultCharFilter) { + try { + return valueOf(name.toUpperCase(Locale.ROOT)); + } catch (IllegalArgumentException e) { + return defaultCharFilter; + } + } } diff --git a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenFilters.java b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenFilters.java index 1d7ae7662bbdf..ce195a8aa591b 100644 --- a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenFilters.java +++ b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenFilters.java @@ -309,4 +309,16 @@ public TokenStream create(TokenStream tokenStream) { return factory; } + /** + * Get a pre built TokenFilter by its name or fallback to the default one + * @param name TokenFilter name + * @param defaultTokenFilter default TokenFilter if name not found + */ + public static PreBuiltTokenFilters getOrDefault(String name, PreBuiltTokenFilters defaultTokenFilter) { + try { + return valueOf(name.toUpperCase(Locale.ROOT)); + } catch (IllegalArgumentException e) { + return defaultTokenFilter; + } + } } diff --git a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenizers.java b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenizers.java index baa4c874e52ec..96438a8a066b5 100644 --- a/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenizers.java +++ b/src/main/java/org/elasticsearch/indices/analysis/PreBuiltTokenizers.java @@ -151,4 +151,16 @@ public Tokenizer create(Reader reader) { return tokenizerFactory; } + /** + * Get a pre built Tokenizer by its name or fallback to the default one + * @param name Tokenizer name + * @param defaultTokenizer default Tokenizer if name not found + */ + public static PreBuiltTokenizers getOrDefault(String name, PreBuiltTokenizers defaultTokenizer) { + try { + return valueOf(name.toUpperCase(Locale.ROOT)); + } catch (IllegalArgumentException e) { + return defaultTokenizer; + } + } } diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyAnalysisBinderProcessor.java b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalysisBinderProcessor.java new file mode 100644 index 0000000000000..fdb5ab05bde9f --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalysisBinderProcessor.java @@ -0,0 +1,47 @@ +/* + * 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.indices.analysis; + +import org.elasticsearch.index.analysis.AnalysisModule; + +/** + */ +public class DummyAnalysisBinderProcessor extends AnalysisModule.AnalysisBinderProcessor { + + @Override + public void processAnalyzers(AnalyzersBindings analyzersBindings) { + analyzersBindings.processAnalyzer("dummy", DummyAnalyzerProvider.class); + } + + @Override + public void processTokenFilters(TokenFiltersBindings tokenFiltersBindings) { + tokenFiltersBindings.processTokenFilter("dummy_token_filter", DummyTokenFilterFactory.class); + } + + @Override + public void processTokenizers(TokenizersBindings tokenizersBindings) { + tokenizersBindings.processTokenizer("dummy_tokenizer", DummyTokenizerFactory.class); + } + + @Override + public void processCharFilters(CharFiltersBindings charFiltersBindings) { + charFiltersBindings.processCharFilter("dummy_char_filter", DummyCharFilterFactory.class); + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyAnalysisPlugin.java b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalysisPlugin.java new file mode 100644 index 0000000000000..55d22eb8c9108 --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalysisPlugin.java @@ -0,0 +1,55 @@ +/* + * 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.indices.analysis; + +import com.google.common.collect.ImmutableList; +import org.elasticsearch.common.inject.Module; +import org.elasticsearch.index.analysis.AnalysisModule; +import org.elasticsearch.plugins.AbstractPlugin; + +import java.util.Collection; + +public class DummyAnalysisPlugin extends AbstractPlugin { + /** + * The name of the plugin. + */ + @Override + public String name() { + return "analysis-dummy"; + } + + /** + * The description of the plugin. + */ + @Override + public String description() { + return "Analysis Dummy Plugin"; + } + + @Override + public Collection> modules() { + return ImmutableList.>of(DummyIndicesAnalysisModule.class); + } + + public void onModule(AnalysisModule module) { + module.addProcessor(new DummyAnalysisBinderProcessor()); + } + +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyAnalyzer.java b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalyzer.java new file mode 100644 index 0000000000000..d413096174d7d --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalyzer.java @@ -0,0 +1,37 @@ +/* + * 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.indices.analysis; + +import org.apache.lucene.analysis.util.StopwordAnalyzerBase; +import org.apache.lucene.util.Version; + +import java.io.Reader; + +public class DummyAnalyzer extends StopwordAnalyzerBase { + + protected DummyAnalyzer(Version version) { + super(version); + } + + @Override + protected TokenStreamComponents createComponents(String fieldName, Reader reader) { + return null; + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyAnalyzerProvider.java b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalyzerProvider.java new file mode 100644 index 0000000000000..0c4b48bb40347 --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyAnalyzerProvider.java @@ -0,0 +1,41 @@ +/* + * 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.indices.analysis; + +import org.elasticsearch.common.lucene.Lucene; +import org.elasticsearch.index.analysis.AnalyzerProvider; +import org.elasticsearch.index.analysis.AnalyzerScope; + +public class DummyAnalyzerProvider implements AnalyzerProvider { + @Override + public String name() { + return "dummy"; + } + + @Override + public AnalyzerScope scope() { + return AnalyzerScope.INDICES; + } + + @Override + public DummyAnalyzer get() { + return new DummyAnalyzer(Lucene.ANALYZER_VERSION); + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyCharFilterFactory.java b/src/test/java/org/elasticsearch/indices/analysis/DummyCharFilterFactory.java new file mode 100644 index 0000000000000..8c5896e59ecbe --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyCharFilterFactory.java @@ -0,0 +1,36 @@ +/* + * 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.indices.analysis; + +import org.elasticsearch.index.analysis.CharFilterFactory; + +import java.io.Reader; + +public class DummyCharFilterFactory implements CharFilterFactory { + @Override + public String name() { + return "dummy_char_filter"; + } + + @Override + public Reader create(Reader reader) { + return null; + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyIndicesAnalysis.java b/src/test/java/org/elasticsearch/indices/analysis/DummyIndicesAnalysis.java new file mode 100644 index 0000000000000..c48edb11d3646 --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyIndicesAnalysis.java @@ -0,0 +1,43 @@ +/* + * 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.indices.analysis; + +import org.elasticsearch.common.component.AbstractComponent; +import org.elasticsearch.common.inject.Inject; +import org.elasticsearch.common.lucene.Lucene; +import org.elasticsearch.common.settings.Settings; +import org.elasticsearch.index.analysis.*; + +public class DummyIndicesAnalysis extends AbstractComponent { + + @Inject + public DummyIndicesAnalysis(Settings settings, IndicesAnalysisService indicesAnalysisService) { + super(settings); + indicesAnalysisService.analyzerProviderFactories().put("dummy", + new PreBuiltAnalyzerProviderFactory("dummy", AnalyzerScope.INDICES, + new DummyAnalyzer(Lucene.ANALYZER_VERSION))); + indicesAnalysisService.tokenFilterFactories().put("dummy_token_filter", + new PreBuiltTokenFilterFactoryFactory(new DummyTokenFilterFactory())); + indicesAnalysisService.charFilterFactories().put("dummy_char_filter", + new PreBuiltCharFilterFactoryFactory(new DummyCharFilterFactory())); + indicesAnalysisService.tokenizerFactories().put("dummy_tokenizer", + new PreBuiltTokenizerFactoryFactory(new DummyTokenizerFactory())); + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyIndicesAnalysisModule.java b/src/test/java/org/elasticsearch/indices/analysis/DummyIndicesAnalysisModule.java new file mode 100644 index 0000000000000..9d14f67ec6065 --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyIndicesAnalysisModule.java @@ -0,0 +1,30 @@ +/* + * 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.indices.analysis; + +import org.elasticsearch.common.inject.AbstractModule; + +public class DummyIndicesAnalysisModule extends AbstractModule { + + @Override + protected void configure() { + bind(DummyIndicesAnalysis.class).asEagerSingleton(); + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyTokenFilterFactory.java b/src/test/java/org/elasticsearch/indices/analysis/DummyTokenFilterFactory.java new file mode 100644 index 0000000000000..489e4dce7b850 --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyTokenFilterFactory.java @@ -0,0 +1,33 @@ +/* + * 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.indices.analysis; + +import org.apache.lucene.analysis.TokenStream; +import org.elasticsearch.index.analysis.TokenFilterFactory; + +public class DummyTokenFilterFactory implements TokenFilterFactory { + @Override public String name() { + return "dummy_token_filter"; + } + + @Override public TokenStream create(TokenStream tokenStream) { + return null; + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/DummyTokenizerFactory.java b/src/test/java/org/elasticsearch/indices/analysis/DummyTokenizerFactory.java new file mode 100644 index 0000000000000..95c6a5ed5825c --- /dev/null +++ b/src/test/java/org/elasticsearch/indices/analysis/DummyTokenizerFactory.java @@ -0,0 +1,37 @@ +/* + * 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.indices.analysis; + +import org.apache.lucene.analysis.Tokenizer; +import org.elasticsearch.index.analysis.TokenizerFactory; + +import java.io.Reader; + +public class DummyTokenizerFactory implements TokenizerFactory { + @Override + public String name() { + return "dummy_tokenizer"; + } + + @Override + public Tokenizer create(Reader reader) { + return null; + } +} diff --git a/src/test/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzerIntegrationTests.java b/src/test/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzerIntegrationTests.java index b7b880d53bfce..af5df68249e01 100644 --- a/src/test/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzerIntegrationTests.java +++ b/src/test/java/org/elasticsearch/indices/analysis/PreBuiltAnalyzerIntegrationTests.java @@ -16,6 +16,7 @@ * specific language governing permissions and limitations * under the License. */ + package org.elasticsearch.indices.analysis; import com.google.common.collect.Lists; @@ -41,8 +42,17 @@ /** * */ +@ElasticsearchIntegrationTest.ClusterScope(scope = ElasticsearchIntegrationTest.Scope.SUITE) public class PreBuiltAnalyzerIntegrationTests extends ElasticsearchIntegrationTest { + @Override + protected Settings nodeSettings(int nodeOrdinal) { + return ImmutableSettings.settingsBuilder() + .put("plugin.types", DummyAnalysisPlugin.class.getName()) + .put(super.nodeSettings(nodeOrdinal)) + .build(); + } + @Test public void testThatPreBuiltAnalyzersAreNotClosedOnIndexClose() throws Exception { Map> loadedAnalyzers = Maps.newHashMap(); @@ -108,6 +118,43 @@ public void testThatPreBuiltAnalyzersAreNotClosedOnIndexClose() throws Exception assertLuceneAnalyzersAreNotClosed(loadedAnalyzers); } + /** + * Test case for #5030: Upgrading analysis plugins fails + * See https://github.com/elasticsearch/elasticsearch/issues/5030 + */ + @Test + public void testThatPluginAnalyzersCanBeUpdated() throws Exception { + final XContentBuilder mapping = jsonBuilder().startObject() + .startObject("type") + .startObject("properties") + .startObject("foo") + .field("type", "string") + .field("analyzer", "dummy") + .endObject() + .startObject("bar") + .field("type", "string") + .field("analyzer", "my_dummy") + .endObject() + .endObject() + .endObject() + .endObject(); + + Settings versionSettings = ImmutableSettings.builder() + .put(IndexMetaData.SETTING_VERSION_CREATED, randomVersion()) + .put("index.analysis.analyzer.my_dummy.type", "custom") + .put("index.analysis.analyzer.my_dummy.filter", "my_dummy_token_filter") + .put("index.analysis.analyzer.my_dummy.char_filter", "my_dummy_char_filter") + .put("index.analysis.analyzer.my_dummy.tokenizer", "my_dummy_tokenizer") + .put("index.analysis.tokenizer.my_dummy_tokenizer.type", "dummy_tokenizer") + .put("index.analysis.filter.my_dummy_token_filter.type", "dummy_token_filter") + .put("index.analysis.char_filter.my_dummy_char_filter.type", "dummy_char_filter") + .build(); + + client().admin().indices().prepareCreate("test-analysis-dummy").addMapping("type", mapping).setSettings(versionSettings).get(); + + ensureGreen(); + } + private void assertThatAnalyzersHaveBeenLoaded(Map> expectedLoadedAnalyzers) { for (Map.Entry> entry : expectedLoadedAnalyzers.entrySet()) { for (Version version : entry.getValue()) {