blob: 1bd42d26a045c5430d83133c02e0845aacbb0539 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.jackrabbit.oak.plugins.index.lucene.util;
import org.apache.jackrabbit.oak.plugins.index.search.FieldNames;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.spell.DirectSpellChecker;
import org.apache.lucene.search.spell.SuggestWord;
/**
* Helper class for getting spellcheck results for a given term, calling a {@link DirectSpellChecker}
* under the hood.
*/
public class SpellcheckHelper {
private static final DirectSpellChecker spellChecker = new DirectSpellChecker();
public static SuggestWord[] getSpellcheck(SpellcheckQuery spellcheckQuery) {
try {
return spellChecker.suggestSimilar(spellcheckQuery.getTerm(), spellcheckQuery.getCount(), spellcheckQuery.getReader());
} catch (Exception e) {
throw new RuntimeException("could not handle Spellcheck query " + spellcheckQuery, e);
}
}
public static SpellcheckQuery getSpellcheckQuery(String spellcheckQueryString, IndexReader reader) {
String text = null;
for (String param : spellcheckQueryString.split("&")) {
String[] keyValuePair = param.split("=");
if (keyValuePair.length != 2 || keyValuePair[0] == null || keyValuePair[1] == null) {
throw new RuntimeException("Unparsable native Lucene Spellcheck query: " + spellcheckQueryString);
} else {
if ("term".equals(keyValuePair[0])) {
text = keyValuePair[1];
}
}
}
return new SpellcheckHelper.SpellcheckQuery(new Term(FieldNames.SPELLCHECK, text), 10, reader);
}
public static class SpellcheckQuery {
private final Term term;
private final int count;
private final IndexReader reader;
public SpellcheckQuery(Term term, int count, IndexReader reader) {
this.term = term;
this.count = count;
this.reader = reader;
}
public Term getTerm() {
return term;
}
public int getCount() {
return count;
}
public IndexReader getReader() {
return reader;
}
@Override
public String toString() {
return "SpellcheckQuery{" +
"term=" + term +
", count=" + count +
'}';
}
}
}