com.stratio.cassandra.lucene.search.condition.GeoBBoxCondition Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2014 Stratio (http://stratio.com)
*
* 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 com.stratio.cassandra.lucene.search.condition;
import com.google.common.base.MoreObjects;
import com.spatial4j.core.shape.Rectangle;
import com.stratio.cassandra.lucene.IndexException;
import com.stratio.cassandra.lucene.common.GeospatialUtils;
import com.stratio.cassandra.lucene.schema.mapping.GeoPointMapper;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.search.Query;
import org.apache.lucene.spatial.query.SpatialArgs;
import org.apache.lucene.spatial.query.SpatialOperation;
import static com.stratio.cassandra.lucene.common.GeospatialUtils.CONTEXT;
/**
* A {@link Condition} that matches documents containing a shape contained in a certain bounding box.
*
* @author Andres de la Pena {@literal }
*/
public class GeoBBoxCondition extends SingleMapperCondition {
/** The minimum accepted latitude. */
public final double minLatitude;
/** The maximum accepted latitude. */
public final double maxLatitude;
/** The minimum accepted longitude. */
public final double minLongitude;
/** The maximum accepted longitude. */
public final double maxLongitude;
/**
* Constructor using the field name and the value to be matched.
*
* @param boost The boost for this query clause. Documents matching this clause will (in addition to the normal
* weightings) have their score multiplied by {@code boost}.
* @param field the name of the field to be matched
* @param minLatitude the minimum accepted latitude
* @param maxLatitude the maximum accepted latitude
* @param minLongitude the minimum accepted longitude
* @param maxLongitude the maximum accepted longitude
*/
public GeoBBoxCondition(Float boost,
String field,
Double minLatitude,
Double maxLatitude,
Double minLongitude,
Double maxLongitude) {
super(boost, field, GeoPointMapper.class);
this.minLatitude = GeospatialUtils.checkLatitude("min_latitude", minLatitude);
this.maxLatitude = GeospatialUtils.checkLatitude("max_latitude", maxLatitude);
this.minLongitude = GeospatialUtils.checkLongitude("min_longitude", minLongitude);
this.maxLongitude = GeospatialUtils.checkLongitude("max_longitude", maxLongitude);
if (minLongitude > maxLongitude) {
throw new IndexException("min_longitude must be lower than max_longitude");
}
if (minLatitude > maxLatitude) {
throw new IndexException("min_latitude must be lower than max_latitude");
}
}
/** {@inheritDoc} */
@Override
public Query doQuery(GeoPointMapper mapper, Analyzer analyzer) {
Rectangle rectangle = CONTEXT.makeRectangle(minLongitude, maxLongitude, minLatitude, maxLatitude);
SpatialArgs args = new SpatialArgs(SpatialOperation.Intersects, rectangle);
return mapper.strategy.makeQuery(args);
}
/** {@inheritDoc} */
@Override
public MoreObjects.ToStringHelper toStringHelper() {
return toStringHelper(this).add("minLatitude", minLatitude)
.add("maxLatitude", maxLatitude)
.add("minLongitude", minLongitude)
.add("maxLongitude", maxLongitude);
}
}