⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 modifiedentryfilter.java

📁 lucene2.2.0版本
💻 JAVA
字号:
/**  * Copyright 2004 The Apache Software Foundation  *  * Licensed 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.gdata.utils;  import java.io.IOException;import java.util.BitSet;import org.apache.lucene.index.IndexReader;import org.apache.lucene.index.Term;import org.apache.lucene.index.TermDocs;import org.apache.lucene.search.Filter; /**  * The {@link ModifiedEntryFilter} filters the given entryIds from the lucene  * {@link org.apache.lucene.search.Hits} set. This filter is used to prevent the  * storage from retrieving already deleted or updated entries still remaining in  * the {@link org.apache.lucene.gdata.storage.lucenestorage.StorageBuffer}.  *   * @see org.apache.lucene.search.Filter  *   * @author Simon Willnauer  *   */ public class ModifiedEntryFilter extends Filter {     /*     * implements Serializable      */     private static final long serialVersionUID = -1551686287704213591L;      private final String[] entyIds;     private final String searchField;    /**      * Creates a new {@link ModifiedEntryFilter}      * @param entryIds the entry id's to filter       * @param field - the field, the id is stored      *       */     public ModifiedEntryFilter(final String[] entryIds,String field) {         super();         this.searchField = field;        this.entyIds = entryIds;     }      /**      * @see org.apache.lucene.search.Filter#bits(org.apache.lucene.index.IndexReader)      */     @Override     public BitSet bits(IndexReader reader) throws IOException {         BitSet bitSet = new BitSet(reader.maxDoc());         bitSet.flip(0, reader.maxDoc()); // set all documents          int[] docs = new int[1];         int[] freq = new int[1];         for (String id : this.entyIds) {             if (id != null) {                 TermDocs termDocs = reader.termDocs(new Term(                         this.searchField, id));                 int count = termDocs.read(docs, freq);                 if (count == 1)                     bitSet.flip(docs[0]);              }         }          return bitSet;     }  } 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -