/*
 * 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.search.suggest.document;

import java.io.IOException;

import org.apache.lucene.index.Term;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.QueryVisitor;
import org.apache.lucene.search.ScoreMode;
import org.apache.lucene.search.Weight;
import org.apache.lucene.search.suggest.BitsProducer;
import org.apache.lucene.util.automaton.Automata;
import org.apache.lucene.util.automaton.Automaton;
import org.apache.lucene.util.automaton.Operations;
import org.apache.lucene.util.automaton.RegExp;

A CompletionQuery which takes a regular expression as the prefix of the query term.

Example usage of querying a prefix of 'sug' and 'sub' as a regular expression against a suggest field 'suggest_field':

 CompletionQuery query = new RegexCompletionQuery(new Term("suggest_field", "su[g|b]"));

See RegExp for the supported regular expression syntax

@lucene.experimental
/** * A {@link CompletionQuery} which takes a regular expression * as the prefix of the query term. * * <p> * Example usage of querying a prefix of 'sug' and 'sub' * as a regular expression against a suggest field 'suggest_field': * * <pre class="prettyprint"> * CompletionQuery query = new RegexCompletionQuery(new Term("suggest_field", "su[g|b]")); * </pre> * * <p> * See {@link RegExp} for the supported regular expression * syntax * * @lucene.experimental */
public class RegexCompletionQuery extends CompletionQuery { private final int flags; private final int maxDeterminizedStates; /** * Calls {@link RegexCompletionQuery#RegexCompletionQuery(Term, BitsProducer)} * with no filter */ public RegexCompletionQuery(Term term) { this(term, null); }
Calls RegexCompletionQuery(Term, int, int, BitsProducer) enabling all optional regex syntax and maxDeterminizedStates of 10000
/** * Calls {@link RegexCompletionQuery#RegexCompletionQuery(Term, int, int, BitsProducer)} * enabling all optional regex syntax and <code>maxDeterminizedStates</code> of * {@value Operations#DEFAULT_MAX_DETERMINIZED_STATES} */
public RegexCompletionQuery(Term term, BitsProducer filter) { this(term, RegExp.ALL, Operations.DEFAULT_MAX_DETERMINIZED_STATES, filter); } /** * Calls {@link RegexCompletionQuery#RegexCompletionQuery(Term, int, int, BitsProducer)} * with no filter */ public RegexCompletionQuery(Term term, int flags, int maxDeterminizedStates) { this(term, flags, maxDeterminizedStates, null); }
Constructs a regular expression completion query
Params:
/** * Constructs a regular expression completion query * * @param term query is run against {@link Term#field()} and {@link Term#text()} * is interpreted as a regular expression * @param flags used as syntax_flag in {@link RegExp#RegExp(String, int)} * @param maxDeterminizedStates used in {@link RegExp#toAutomaton(int)} * @param filter used to query on a sub set of documents */
public RegexCompletionQuery(Term term, int flags, int maxDeterminizedStates, BitsProducer filter) { super(term, filter); this.flags = flags; this.maxDeterminizedStates = maxDeterminizedStates; } @Override public Weight createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost) throws IOException { // If an empty regex is provided, we return an automaton that matches nothing. This ensures // consistency with PrefixCompletionQuery, which returns no results for an empty term. Automaton automaton = getTerm().text().isEmpty() ? Automata.makeEmpty() : new RegExp(getTerm().text(), flags).toAutomaton(maxDeterminizedStates); return new CompletionWeight(this, automaton); }
Get the regex flags
/** * Get the regex flags */
public int getFlags() { return flags; }
Get the maximum number of states permitted in the determinized automaton
/** * Get the maximum number of states permitted in the determinized automaton */
public int getMaxDeterminizedStates() { return maxDeterminizedStates; } @Override public boolean equals(Object o) { throw new UnsupportedOperationException(); } @Override public int hashCode() { throw new UnsupportedOperationException(); } @Override public void visit(QueryVisitor visitor) { visitor.visitLeaf(this); } }