All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.search.RegexpQuery Maven / Gradle / Ivy

There is a newer version: 6.4.2_1
Show newest version
/*
 * 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;

import org.apache.lucene.index.Term;
import org.apache.lucene.util.automaton.Automaton;
import org.apache.lucene.util.automaton.AutomatonProvider;
import org.apache.lucene.util.automaton.Operations;
import org.apache.lucene.util.automaton.RegExp;

/**
 * A fast regular expression query based on the {@link org.apache.lucene.util.automaton} package.
 *
 * 
    *
  • Comparisons are fast *
  • The term dictionary is enumerated in an intelligent way, to avoid comparisons. See {@link * AutomatonQuery} for more details. *
* *

The supported syntax is documented in the {@link RegExp} class. Note this might be different * than other regular expression implementations. For some alternatives with different syntax, look * under the sandbox. * *

Note this query can be slow, as it needs to iterate over many terms. In order to prevent * extremely slow RegexpQueries, a Regexp term should not start with the expression .* * * @see RegExp * @lucene.experimental */ public class RegexpQuery extends AutomatonQuery { /** A provider that provides no named automata */ public static final AutomatonProvider DEFAULT_PROVIDER = name -> null; /** * Constructs a query for terms matching term. * *

By default, all regular expression features are enabled. * * @param term regular expression. */ public RegexpQuery(Term term) { this(term, RegExp.ALL); } /** * Constructs a query for terms matching term. * * @param term regular expression. * @param flags optional RegExp features from {@link RegExp} */ public RegexpQuery(Term term, int flags) { this(term, flags, DEFAULT_PROVIDER, Operations.DEFAULT_DETERMINIZE_WORK_LIMIT); } /** * Constructs a query for terms matching term. * * @param term regular expression. * @param flags optional RegExp syntax features from {@link RegExp} * @param determinizeWorkLimit maximum effort to spend while compiling the automaton from this * regexp. Set higher to allow more complex queries and lower to prevent memory exhaustion. * Use {@link Operations#DEFAULT_DETERMINIZE_WORK_LIMIT} as a decent default if you don't * otherwise know what to specify. */ public RegexpQuery(Term term, int flags, int determinizeWorkLimit) { this(term, flags, DEFAULT_PROVIDER, determinizeWorkLimit); } /** * Constructs a query for terms matching term. * * @param term regular expression. * @param syntaxFlags optional RegExp syntax features from {@link RegExp} automaton for the regexp * can result in. Set higher to allow more complex queries and lower to prevent memory * exhaustion. * @param matchFlags boolean 'or' of match behavior options such as case insensitivity * @param determinizeWorkLimit maximum effort to spend while compiling the automaton from this * regexp. Set higher to allow more complex queries and lower to prevent memory exhaustion. * Use {@link Operations#DEFAULT_DETERMINIZE_WORK_LIMIT} as a decent default if you don't * otherwise know what to specify. */ public RegexpQuery(Term term, int syntaxFlags, int matchFlags, int determinizeWorkLimit) { this( term, syntaxFlags, matchFlags, DEFAULT_PROVIDER, determinizeWorkLimit, CONSTANT_SCORE_BLENDED_REWRITE); } /** * Constructs a query for terms matching term. * * @param term regular expression. * @param syntaxFlags optional RegExp features from {@link RegExp} * @param provider custom AutomatonProvider for named automata * @param determinizeWorkLimit maximum effort to spend while compiling the automaton from this * regexp. Set higher to allow more complex queries and lower to prevent memory exhaustion. * Use {@link Operations#DEFAULT_DETERMINIZE_WORK_LIMIT} as a decent default if you don't * otherwise know what to specify. */ public RegexpQuery( Term term, int syntaxFlags, AutomatonProvider provider, int determinizeWorkLimit) { this(term, syntaxFlags, 0, provider, determinizeWorkLimit, CONSTANT_SCORE_BLENDED_REWRITE); } /** * Constructs a query for terms matching term. * * @param term regular expression. * @param syntaxFlags optional RegExp features from {@link RegExp} * @param matchFlags boolean 'or' of match behavior options such as case insensitivity * @param provider custom AutomatonProvider for named automata * @param determinizeWorkLimit maximum effort to spend while compiling the automaton from this * regexp. Set higher to allow more complex queries and lower to prevent memory exhaustion. * Use {@link Operations#DEFAULT_DETERMINIZE_WORK_LIMIT} as a decent default if you don't * otherwise know what to specify. * @param rewriteMethod the rewrite method to use to build the final query */ public RegexpQuery( Term term, int syntaxFlags, int matchFlags, AutomatonProvider provider, int determinizeWorkLimit, RewriteMethod rewriteMethod) { this(term, syntaxFlags, matchFlags, provider, determinizeWorkLimit, rewriteMethod, true); } /** * Constructs a query for terms matching term. * * @param term regular expression. * @param syntaxFlags optional RegExp features from {@link RegExp} * @param matchFlags boolean 'or' of match behavior options such as case insensitivity * @param provider custom AutomatonProvider for named automata * @param determinizeWorkLimit maximum effort to spend while compiling the automaton from this * regexp. Set higher to allow more complex queries and lower to prevent memory exhaustion. * Use {@link Operations#DEFAULT_DETERMINIZE_WORK_LIMIT} as a decent default if you don't * otherwise know what to specify. * @param rewriteMethod the rewrite method to use to build the final query * @param doDeterminization whether do determinization to force the query to use DFA as * runAutomaton, if false, the query will not try to determinize the generated automaton from * regexp such that it might or might not be a DFA. In case it is an NFA, the query will * eventually use {@link org.apache.lucene.util.automaton.NFARunAutomaton} to execute. Notice * that {@link org.apache.lucene.util.automaton.NFARunAutomaton} is not thread-safe, so better * to avoid rewritten method like {@link #CONSTANT_SCORE_BLENDED_REWRITE} when searcher is * configured with an executor service */ public RegexpQuery( Term term, int syntaxFlags, int matchFlags, AutomatonProvider provider, int determinizeWorkLimit, RewriteMethod rewriteMethod, boolean doDeterminization) { super( term, toAutomaton( new RegExp(term.text(), syntaxFlags, matchFlags), determinizeWorkLimit, provider, doDeterminization), false, rewriteMethod); } private static Automaton toAutomaton( RegExp regexp, int determinizeWorkLimit, AutomatonProvider provider, boolean doDeterminization) { if (doDeterminization) { return Operations.determinize(regexp.toAutomaton(provider), determinizeWorkLimit); } else { return regexp.toAutomaton(provider); } } /** Returns the regexp of this query wrapped in a Term. */ public Term getRegexp() { return term; } /** Prints a user-readable version of this query. */ @Override public String toString(String field) { StringBuilder buffer = new StringBuilder(); if (!term.field().equals(field)) { buffer.append(term.field()); buffer.append(":"); } buffer.append('/'); buffer.append(term.text()); buffer.append('/'); return buffer.toString(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy