Add parsing for InternalGeoBounds (#24365)

This commit is contained in:
Christoph Büscher 2017-04-28 12:10:16 +02:00 committed by GitHub
parent 9cb3666f0a
commit a6c38b8f8a
4 changed files with 153 additions and 15 deletions

View File

@ -19,6 +19,7 @@
package org.elasticsearch.search.aggregations.metrics.geobounds; package org.elasticsearch.search.aggregations.metrics.geobounds;
import org.elasticsearch.common.ParseField;
import org.elasticsearch.common.geo.GeoPoint; import org.elasticsearch.common.geo.GeoPoint;
import org.elasticsearch.common.io.stream.StreamInput; import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.common.io.stream.StreamOutput;
@ -32,6 +33,14 @@ import java.util.Map;
import java.util.Objects; import java.util.Objects;
public class InternalGeoBounds extends InternalAggregation implements GeoBounds { public class InternalGeoBounds extends InternalAggregation implements GeoBounds {
final static ParseField BOUNDS_FIELD = new ParseField("bounds");
final static ParseField TOP_LEFT_FIELD = new ParseField("top_left");
final static ParseField BOTTOM_RIGHT_FIELD = new ParseField("bottom_right");
final static ParseField LAT_FIELD = new ParseField("lat");
final static ParseField LON_FIELD = new ParseField("lon");
final double top; final double top;
final double bottom; final double bottom;
final double posLeft; final double posLeft;
@ -170,14 +179,14 @@ public class InternalGeoBounds extends InternalAggregation implements GeoBounds
GeoPoint topLeft = topLeft(); GeoPoint topLeft = topLeft();
GeoPoint bottomRight = bottomRight(); GeoPoint bottomRight = bottomRight();
if (topLeft != null) { if (topLeft != null) {
builder.startObject("bounds"); builder.startObject(BOUNDS_FIELD.getPreferredName());
builder.startObject("top_left"); builder.startObject(TOP_LEFT_FIELD.getPreferredName());
builder.field("lat", topLeft.lat()); builder.field(LAT_FIELD.getPreferredName(), topLeft.lat());
builder.field("lon", topLeft.lon()); builder.field(LON_FIELD.getPreferredName(), topLeft.lon());
builder.endObject(); builder.endObject();
builder.startObject("bottom_right"); builder.startObject(BOTTOM_RIGHT_FIELD.getPreferredName());
builder.field("lat", bottomRight.lat()); builder.field(LAT_FIELD.getPreferredName(), bottomRight.lat());
builder.field("lon", bottomRight.lon()); builder.field(LON_FIELD.getPreferredName(), bottomRight.lon());
builder.endObject(); builder.endObject();
builder.endObject(); builder.endObject();
} }

View File

@ -0,0 +1,105 @@
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch 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.
*/
package org.elasticsearch.search.aggregations.metrics.geobounds;
import org.elasticsearch.common.collect.Tuple;
import org.elasticsearch.common.geo.GeoPoint;
import org.elasticsearch.common.xcontent.ConstructingObjectParser;
import org.elasticsearch.common.xcontent.ObjectParser;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.common.xcontent.XContentParser;
import org.elasticsearch.search.aggregations.ParsedAggregation;
import java.io.IOException;
import static org.elasticsearch.common.xcontent.ConstructingObjectParser.constructorArg;
import static org.elasticsearch.search.aggregations.metrics.geobounds.InternalGeoBounds.BOTTOM_RIGHT_FIELD;
import static org.elasticsearch.search.aggregations.metrics.geobounds.InternalGeoBounds.BOUNDS_FIELD;
import static org.elasticsearch.search.aggregations.metrics.geobounds.InternalGeoBounds.LAT_FIELD;
import static org.elasticsearch.search.aggregations.metrics.geobounds.InternalGeoBounds.LON_FIELD;
import static org.elasticsearch.search.aggregations.metrics.geobounds.InternalGeoBounds.TOP_LEFT_FIELD;
public class ParsedGeoBounds extends ParsedAggregation implements GeoBounds {
private GeoPoint topLeft;
private GeoPoint bottomRight;
@Override
public String getType() {
return GeoBoundsAggregationBuilder.NAME;
}
@Override
public XContentBuilder doXContentBody(XContentBuilder builder, Params params) throws IOException {
if (topLeft != null) {
builder.startObject("bounds");
builder.startObject("top_left");
builder.field("lat", topLeft.getLat());
builder.field("lon", topLeft.getLon());
builder.endObject();
builder.startObject("bottom_right");
builder.field("lat", bottomRight.getLat());
builder.field("lon", bottomRight.getLon());
builder.endObject();
builder.endObject();
}
return builder;
}
@Override
public GeoPoint topLeft() {
return topLeft;
}
@Override
public GeoPoint bottomRight() {
return bottomRight;
}
private static final ObjectParser<ParsedGeoBounds, Void> PARSER = new ObjectParser<>(ParsedGeoBounds.class.getSimpleName(), true,
ParsedGeoBounds::new);
private static final ConstructingObjectParser<Tuple<GeoPoint, GeoPoint>, Void> BOUNDS_PARSER =
new ConstructingObjectParser<>(ParsedGeoBounds.class.getSimpleName() + "_BOUNDS", true,
args -> new Tuple<>((GeoPoint) args[0], (GeoPoint) args[1]));
private static final ObjectParser<GeoPoint, Void> GEO_POINT_PARSER = new ObjectParser<>(
ParsedGeoBounds.class.getSimpleName() + "_POINT", true, GeoPoint::new);
static {
declareAggregationFields(PARSER);
PARSER.declareObject((agg, bbox) -> {
agg.topLeft = bbox.v1();
agg.bottomRight = bbox.v2();
}, BOUNDS_PARSER, BOUNDS_FIELD);
BOUNDS_PARSER.declareObject(constructorArg(), GEO_POINT_PARSER, TOP_LEFT_FIELD);
BOUNDS_PARSER.declareObject(constructorArg(), GEO_POINT_PARSER, BOTTOM_RIGHT_FIELD);
GEO_POINT_PARSER.declareDouble(GeoPoint::resetLat, LAT_FIELD);
GEO_POINT_PARSER.declareDouble(GeoPoint::resetLon, LON_FIELD);
}
public static ParsedGeoBounds fromXContent(XContentParser parser, final String name) {
ParsedGeoBounds geoBounds = PARSER.apply(parser, null);
geoBounds.setName(name);
return geoBounds;
}
}

View File

@ -38,6 +38,8 @@ import org.elasticsearch.search.aggregations.metrics.avg.AvgAggregationBuilder;
import org.elasticsearch.search.aggregations.metrics.avg.ParsedAvg; import org.elasticsearch.search.aggregations.metrics.avg.ParsedAvg;
import org.elasticsearch.search.aggregations.metrics.cardinality.CardinalityAggregationBuilder; import org.elasticsearch.search.aggregations.metrics.cardinality.CardinalityAggregationBuilder;
import org.elasticsearch.search.aggregations.metrics.cardinality.ParsedCardinality; import org.elasticsearch.search.aggregations.metrics.cardinality.ParsedCardinality;
import org.elasticsearch.search.aggregations.metrics.geobounds.GeoBoundsAggregationBuilder;
import org.elasticsearch.search.aggregations.metrics.geobounds.ParsedGeoBounds;
import org.elasticsearch.search.aggregations.metrics.max.MaxAggregationBuilder; import org.elasticsearch.search.aggregations.metrics.max.MaxAggregationBuilder;
import org.elasticsearch.search.aggregations.metrics.max.ParsedMax; import org.elasticsearch.search.aggregations.metrics.max.ParsedMax;
import org.elasticsearch.search.aggregations.metrics.min.MinAggregationBuilder; import org.elasticsearch.search.aggregations.metrics.min.MinAggregationBuilder;
@ -113,7 +115,9 @@ public abstract class InternalAggregationTestCase<T extends InternalAggregation>
namedXContents.put(StatsAggregationBuilder.NAME, (p, c) -> ParsedStats.fromXContent(p, (String) c)); namedXContents.put(StatsAggregationBuilder.NAME, (p, c) -> ParsedStats.fromXContent(p, (String) c));
namedXContents.put(StatsBucketPipelineAggregationBuilder.NAME, (p, c) -> ParsedStatsBucket.fromXContent(p, (String) c)); namedXContents.put(StatsBucketPipelineAggregationBuilder.NAME, (p, c) -> ParsedStatsBucket.fromXContent(p, (String) c));
namedXContents.put(ExtendedStatsAggregationBuilder.NAME, (p, c) -> ParsedExtendedStats.fromXContent(p, (String) c)); namedXContents.put(ExtendedStatsAggregationBuilder.NAME, (p, c) -> ParsedExtendedStats.fromXContent(p, (String) c));
namedXContents.put(ExtendedStatsBucketPipelineAggregationBuilder.NAME, (p, c) -> ParsedExtendedStatsBucket.fromXContent(p, (String) c)); namedXContents.put(ExtendedStatsBucketPipelineAggregationBuilder.NAME,
(p, c) -> ParsedExtendedStatsBucket.fromXContent(p, (String) c));
namedXContents.put(GeoBoundsAggregationBuilder.NAME, (p, c) -> ParsedGeoBounds.fromXContent(p, (String) c));
return namedXContents.entrySet().stream() return namedXContents.entrySet().stream()
.map(entry -> new NamedXContentRegistry.Entry(Aggregation.class, new ParseField(entry.getKey()), entry.getValue())) .map(entry -> new NamedXContentRegistry.Entry(Aggregation.class, new ParseField(entry.getKey()), entry.getValue()))

View File

@ -21,6 +21,7 @@ package org.elasticsearch.search.aggregations.metrics.geobounds;
import org.elasticsearch.common.io.stream.Writeable; import org.elasticsearch.common.io.stream.Writeable;
import org.elasticsearch.search.aggregations.InternalAggregationTestCase; import org.elasticsearch.search.aggregations.InternalAggregationTestCase;
import org.elasticsearch.search.aggregations.ParsedAggregation;
import org.elasticsearch.search.aggregations.pipeline.PipelineAggregator; import org.elasticsearch.search.aggregations.pipeline.PipelineAggregator;
import java.util.Collections; import java.util.Collections;
@ -35,8 +36,10 @@ public class InternalGeoBoundsTests extends InternalAggregationTestCase<Internal
@Override @Override
protected InternalGeoBounds createTestInstance(String name, List<PipelineAggregator> pipelineAggregators, protected InternalGeoBounds createTestInstance(String name, List<PipelineAggregator> pipelineAggregators,
Map<String, Object> metaData) { Map<String, Object> metaData) {
// we occasionally want to test top = Double.NEGATIVE_INFINITY since this triggers empty xContent object
double top = frequently() ? randomDouble() : Double.NEGATIVE_INFINITY;
InternalGeoBounds geo = new InternalGeoBounds(name, InternalGeoBounds geo = new InternalGeoBounds(name,
randomDouble(), randomDouble(), randomDouble(), randomDouble(), top, randomDouble(), randomDouble(), randomDouble(),
randomDouble(), randomDouble(), randomBoolean(), randomDouble(), randomDouble(), randomBoolean(),
pipelineAggregators, Collections.emptyMap()); pipelineAggregators, Collections.emptyMap());
return geo; return geo;
@ -70,12 +73,29 @@ public class InternalGeoBoundsTests extends InternalAggregationTestCase<Internal
negRight = bounds.negRight; negRight = bounds.negRight;
} }
} }
assertThat(reduced.top, closeTo(top, GEOHASH_TOLERANCE)); assertValueClose(reduced.top, top);
assertThat(reduced.bottom, closeTo(bottom, GEOHASH_TOLERANCE)); assertValueClose(reduced.bottom, bottom);
assertThat(reduced.posLeft, closeTo(posLeft, GEOHASH_TOLERANCE)); assertValueClose(reduced.posLeft, posLeft);
assertThat(reduced.posRight, closeTo(posRight, GEOHASH_TOLERANCE)); assertValueClose(reduced.posRight, posRight);
assertThat(reduced.negLeft, closeTo(negLeft, GEOHASH_TOLERANCE)); assertValueClose(reduced.negLeft, negLeft);
assertThat(reduced.negRight, closeTo(negRight, GEOHASH_TOLERANCE)); assertValueClose(reduced.negRight, negRight);
}
private static void assertValueClose(double expected, double actual) {
if (Double.isInfinite(expected) == false) {
assertThat(expected, closeTo(actual, GEOHASH_TOLERANCE));
} else {
assertTrue(Double.isInfinite(actual));
}
}
@Override
protected void assertFromXContent(InternalGeoBounds aggregation, ParsedAggregation parsedAggregation) {
assertTrue(parsedAggregation instanceof ParsedGeoBounds);
ParsedGeoBounds parsed = (ParsedGeoBounds) parsedAggregation;
assertEquals(aggregation.topLeft(), parsed.topLeft());
assertEquals(aggregation.bottomRight(), parsed.bottomRight());
} }
@Override @Override