blob: 1976b4c88989498b45af915659dfe82cc7436996 [file] [log] [blame]
Index: src/java/org/apache/lucene/search/SingleTermsEnum.java
===================================================================
--- src/java/org/apache/lucene/search/SingleTermsEnum.java (revision 0)
+++ src/java/org/apache/lucene/search/SingleTermsEnum.java (revision 0)
@@ -0,0 +1,80 @@
+package org.apache.lucene.search;
+
+/**
+ * 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.
+ */
+
+import java.io.IOException;
+
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.Term;
+import org.apache.lucene.index.TermRef;
+import org.apache.lucene.index.Terms;
+
+/**
+ * Subclass of FilteredTermsEnum for enumerating a single term.
+ * <p>
+ * This can be used by {@link MultiTermQuery}s that need only visit one term,
+ * but want to preserve MultiTermQuery semantics such as
+ * {@link MultiTermQuery#rewriteMethod}.
+ */
+public class SingleTermsEnum extends FilteredTermsEnum {
+ private final Term singleTerm;
+ private final TermRef singleRef;
+ private final boolean empty;
+
+ /**
+ * Creates a new <code>SingleTermEnum</code>.
+ * <p>
+ * After calling the constructor the enumeration is already pointing to the term,
+ * if it exists.
+ */
+ public SingleTermsEnum(IndexReader reader, Term singleTerm) throws IOException {
+ this.singleTerm = singleTerm;
+ Terms terms = reader.fields().terms(singleTerm.field());
+ if (terms != null) {
+ singleRef = new TermRef(singleTerm.text());
+ empty = setEnum(terms.iterator(), singleRef) == null;
+ } else {
+ empty = true;
+ singleRef = null;
+ }
+ }
+
+ @Override
+ protected AcceptStatus accept(TermRef term) {
+ if (term.equals(singleRef)) {
+ return AcceptStatus.YES;
+ } else {
+ return AcceptStatus.END;
+ }
+ }
+
+ @Override
+ public float difference() {
+ return 1.0F;
+ }
+
+ @Override
+ public boolean empty() {
+ return empty;
+ }
+
+ @Override
+ public String field() {
+ return singleTerm.field();
+ }
+}
Property changes on: src\java\org\apache\lucene\search\SingleTermsEnum.java
___________________________________________________________________
Added: svn:eol-style
+ native
Index: src/java/org/apache/lucene/search/WildcardQuery.java
===================================================================
--- src/java/org/apache/lucene/search/WildcardQuery.java (revision 887262)
+++ src/java/org/apache/lucene/search/WildcardQuery.java (working copy)
@@ -50,11 +50,12 @@
&& (text.indexOf('*') == text.length() - 1);
}
- // nocommit: needs singletermenum stuff
@Override
protected FilteredTermsEnum getTermsEnum(IndexReader reader) throws IOException {
- //nocommit: handle singletermenum
- return new WildcardTermsEnum(reader, getTerm());
+ if (termContainsWildcard)
+ return new WildcardTermsEnum(reader, getTerm());
+ else
+ return new SingleTermsEnum(reader, getTerm());
}
// @deprecated see getTermsEnum