Package org.hibernate.search.spatial.impl

Source Code of org.hibernate.search.spatial.impl.QuadTreeFilter

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* JBoss, Home of Professional Open Source
* Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA  02110-1301, USA.
*/
package org.hibernate.search.spatial.impl;

import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.Term;
import org.apache.lucene.index.TermDocs;
import org.apache.lucene.search.DocIdSet;
import org.apache.lucene.search.Filter;
import org.apache.lucene.util.OpenBitSet;

import java.io.IOException;
import java.util.List;

/**
* Lucene Filter for filtering documents which have been indexed with Hibernate Search Spatial SpatialFieldBridge
* Use denormalized Quad Tree Cell Ids to return a sub set of documents near the center
*
* @author Nicolas Helleringer <nicolas.helleringer@novacodex.net>
* @see org.hibernate.search.spatial.SpatialFieldBridgeByQuadTree
* @see org.hibernate.search.spatial.Coordinates
*/
public final class QuadTreeFilter extends Filter {

  private final List<String> quadTreeCellsIds;
  private final String fieldName;

  public QuadTreeFilter(List<String> quadTreeCellsIds, String fieldName) {
    this.quadTreeCellsIds = quadTreeCellsIds;
    this.fieldName = fieldName;
  }

  /**
   * Returns Doc Ids by searching the index for document having the correct Qud Tree Cell Id at given qud tree level
   *
   * @param reader reader to the index
   */
  @Override
  public DocIdSet getDocIdSet(IndexReader reader) throws IOException {
    if ( quadTreeCellsIds.size() == 0 ) {
      return null;
    }

    OpenBitSet matchedDocumentsIds = new OpenBitSet( reader.maxDoc() );
    Boolean found = false;
    for ( int i = 0; i < quadTreeCellsIds.size(); i++ ) {
      Term quadTreeCellTerm = new Term( fieldName, quadTreeCellsIds.get( i ) );
      TermDocs quadTreeCellsDocs = reader.termDocs( quadTreeCellTerm );
      if ( quadTreeCellsDocs != null ) {
        while ( quadTreeCellsDocs.next() ) {
          matchedDocumentsIds.fastSet( quadTreeCellsDocs.doc() );
          found = true;
        }
      }
    }

    if ( found ) {
      return matchedDocumentsIds;
    }
    else {
      return null;
    }
  }

  @Override
  public String toString() {
    final StringBuilder sb = new StringBuilder();
    sb.append( "QuadTreeFilter" );
    sb.append( "{quadTreeCellsIds=" ).append( quadTreeCellsIds );
    sb.append( ", fieldName='" ).append( fieldName ).append( '\'' );
    sb.append( '}' );
    return sb.toString();
  }
}
TOP

Related Classes of org.hibernate.search.spatial.impl.QuadTreeFilter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.