Package org.hibernate.search.spatial.impl

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

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* JBoss, Home of Professional Open Source
* Copyright 2012-2014 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 java.io.IOException;

import org.apache.lucene.index.AtomicReader;
import org.apache.lucene.index.AtomicReaderContext;
import org.apache.lucene.search.Collector;
import org.apache.lucene.search.FieldCache;
import org.apache.lucene.search.FieldCache.Doubles;
import org.apache.lucene.search.Scorer;
import org.apache.lucene.facet.collections.IntToDoubleMap;
import org.hibernate.search.spatial.Coordinates;

public class DistanceCollector extends Collector {

  private Collector delegate;
  private boolean acceptsDocsOutOfOrder;

  private Point center;
  private String latitudeField;
  private String longitudeField;
  private int docBase = 0;
  private IntToDoubleMap distances;
  private IntToDoubleMap latitudeValues;
  private IntToDoubleMap longitudeValues;

  public DistanceCollector(Collector delegate, Coordinates centerCoordinates, int hitsCount, String fieldname) {
    this.delegate = delegate;
    this.acceptsDocsOutOfOrder = delegate.acceptsDocsOutOfOrder();
    this.center = Point.fromCoordinates( centerCoordinates );
    this.distances = new IntToDoubleMap( hitsCount );
    this.latitudeValues = new IntToDoubleMap( hitsCount );
    this.longitudeValues = new IntToDoubleMap( hitsCount );
    this.latitudeField = SpatialHelper.formatLatitude( fieldname );
    this.longitudeField = SpatialHelper.formatLongitude( fieldname );
  }

  @Override
  public void setScorer(final Scorer scorer) throws IOException {
    delegate.setScorer( scorer );
  }

  @Override
  public void collect(final int doc) throws IOException {
    delegate.collect( doc );
    final int absolute = docBase + doc;
    distances.put( absolute, center.getDistanceTo( latitudeValues.get( absolute ), longitudeValues.get( absolute ) ) );
  }

  @Override
  public void setNextReader(AtomicReaderContext newContext) throws IOException {
    delegate.setNextReader( newContext );
    final AtomicReader atomicReader = newContext.reader();
    final int numDocs = atomicReader.numDocs();
    final Doubles unbasedLatitudeValues = FieldCache.DEFAULT.getDoubles( atomicReader, latitudeField, false );
    final Doubles unbasedLongitudeValues = FieldCache.DEFAULT.getDoubles( atomicReader, longitudeField, false );

    this.docBase = newContext.docBase;
    for ( int i = 0 ; i < numDocs; i ++ ) {
      //TODO avoid fully copying this structure - HSEARCH-1499
      latitudeValues.put( this.docBase + i, unbasedLatitudeValues.get( i ) );
      longitudeValues.put( this.docBase + i, unbasedLongitudeValues.get( i ) );
    }
  }

  @Override
  public boolean acceptsDocsOutOfOrder() {
    return acceptsDocsOutOfOrder;
  }

  public double getDistance(final int index) {
    return distances.get( index );
  }
}
TOP

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

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.