org.apache.lucene.search.RegexpQuery Maven / Gradle / Ivy
Show all versions of aem-sdk-api Show documentation
/*
* COPIED FROM APACHE LUCENE 4.7.2
*
* Git URL: [email protected]:apache/lucene.git, tag: releases/lucene-solr/4.7.2, path: lucene/core/src/java
*
* (see https://issues.apache.org/jira/browse/OAK-10786 for details)
*/
package org.apache.lucene.search;
import org.apache.lucene.index.Term;
import org.apache.lucene.util.ToStringUtils;
import org.apache.lucene.util.automaton.Automaton;
import org.apache.lucene.util.automaton.AutomatonProvider;
import org.apache.lucene.util.automaton.RegExp;
/*
* 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.
*/
/**
* 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
*/
private static AutomatonProvider defaultProvider = new AutomatonProvider() {
@Override
public Automaton getAutomaton(String name) {
return 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, defaultProvider);
}
/**
* Constructs a query for terms matching term
.
*
* @param term regular expression.
* @param flags optional RegExp features from {@link RegExp}
* @param provider custom AutomatonProvider for named automata
*/
public RegexpQuery(Term term, int flags, AutomatonProvider provider) {
super(term, new RegExp(term.text(), flags).toAutomaton(provider));
}
/** 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('/');
buffer.append(ToStringUtils.boost(getBoost()));
return buffer.toString();
}
}