dweiss commented on a change in pull request #668: URL: https://github.com/apache/lucene/pull/668#discussion_r802961615
########## File path: lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/nodes/intervalfn/FuzzyTerm.java ########## @@ -0,0 +1,59 @@ +/* + * 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.lucene.queryparser.flexible.standard.nodes.intervalfn; + +import java.util.Locale; +import org.apache.lucene.analysis.Analyzer; +import org.apache.lucene.index.Term; +import org.apache.lucene.queries.intervals.Intervals; +import org.apache.lucene.queries.intervals.IntervalsSource; +import org.apache.lucene.search.FuzzyQuery; + +/** + * An interval function equivalent to {@link FuzzyQuery}. A fuzzy term expands to a disjunction of + * intervals of terms that are within the specified {@code maxEdits} from the provided term. A limit + * of {@code maxExpansions} prevents the internal implementation from blowing up on too many + * potential candidate terms. + */ +public class FuzzyTerm extends IntervalFunction { + private final String term; + private final int maxEdits; + private final Integer maxExpansions; + + public FuzzyTerm(String term, Integer maxEdits, Integer maxExpansions) { + this.term = term; + this.maxEdits = maxEdits == null ? FuzzyQuery.defaultMaxEdits : maxEdits; + this.maxExpansions = maxExpansions == null ? Intervals.DEFAULT_MAX_EXPANSIONS : maxExpansions; + } + + @Override + public IntervalsSource toIntervalSource(String field, Analyzer analyzer) { + var fuzzyQuery = new FuzzyQuery(new Term(field, term), maxEdits); Review comment: > Maybe we should just make FuzzyAutomatonBuilder public? I'm +1 for this as it'd make the API more complete - we could move this logic to Intervals.fuzzyTerm(). I can make FuzzyAutomatonBuilder public or make a public static method exposing its result (an automaton for a term, maxEdits pair) on FuzzyQuery. Let me know which one works for you better and I'll reshape the code under this PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org