use of io.dropwizard.jersey.params.LongParam in project graphhopper by graphhopper.
the class IsochroneResource method doGet.
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response doGet(@Context UriInfo uriInfo, @QueryParam("profile") String profileName, @QueryParam("buckets") @Range(min = 1, max = 20) @DefaultValue("1") IntParam nBuckets, @QueryParam("reverse_flow") @DefaultValue("false") boolean reverseFlow, @QueryParam("point") @NotNull GHPointParam point, @QueryParam("time_limit") @DefaultValue("600") LongParam timeLimitInSeconds, @QueryParam("distance_limit") @DefaultValue("-1") LongParam distanceLimitInMeter, @QueryParam("weight_limit") @DefaultValue("-1") LongParam weightLimit, @QueryParam("type") @DefaultValue("json") ResponseType respType, @QueryParam("tolerance") @DefaultValue("0") double toleranceInMeter, @QueryParam("full_geometry") @DefaultValue("false") boolean fullGeometry) {
StopWatch sw = new StopWatch().start();
PMap hintsMap = new PMap();
RouteResource.initHints(hintsMap, uriInfo.getQueryParameters());
hintsMap.putObject(Parameters.CH.DISABLE, true);
hintsMap.putObject(Parameters.Landmark.DISABLE, true);
if (Helper.isEmpty(profileName)) {
profileName = profileResolver.resolveProfile(hintsMap).getName();
removeLegacyParameters(hintsMap);
}
errorIfLegacyParameters(hintsMap);
Profile profile = graphHopper.getProfile(profileName);
if (profile == null)
throw new IllegalArgumentException("The requested profile '" + profileName + "' does not exist");
LocationIndex locationIndex = graphHopper.getLocationIndex();
Graph graph = graphHopper.getGraphHopperStorage();
Weighting weighting = graphHopper.createWeighting(profile, hintsMap);
BooleanEncodedValue inSubnetworkEnc = graphHopper.getEncodingManager().getBooleanEncodedValue(Subnetwork.key(profileName));
if (hintsMap.has(Parameters.Routing.BLOCK_AREA)) {
GraphEdgeIdFinder.BlockArea blockArea = GraphEdgeIdFinder.createBlockArea(graph, locationIndex, Collections.singletonList(point.get()), hintsMap, new FiniteWeightFilter(weighting));
weighting = new BlockAreaWeighting(weighting, blockArea);
}
Snap snap = locationIndex.findClosest(point.get().lat, point.get().lon, new DefaultSnapFilter(weighting, inSubnetworkEnc));
if (!snap.isValid())
throw new IllegalArgumentException("Point not found:" + point);
QueryGraph queryGraph = QueryGraph.create(graph, snap);
TraversalMode traversalMode = profile.isTurnCosts() ? EDGE_BASED : NODE_BASED;
ShortestPathTree shortestPathTree = new ShortestPathTree(queryGraph, queryGraph.wrapWeighting(weighting), reverseFlow, traversalMode);
double limit;
if (weightLimit.get() > 0) {
limit = weightLimit.get();
shortestPathTree.setWeightLimit(limit + Math.max(limit * 0.14, 2_000));
} else if (distanceLimitInMeter.get() > 0) {
limit = distanceLimitInMeter.get();
shortestPathTree.setDistanceLimit(limit + Math.max(limit * 0.14, 2_000));
} else {
limit = timeLimitInSeconds.get() * 1000;
shortestPathTree.setTimeLimit(limit + Math.max(limit * 0.14, 200_000));
}
ArrayList<Double> zs = new ArrayList<>();
double delta = limit / nBuckets.get();
for (int i = 0; i < nBuckets.get(); i++) {
zs.add((i + 1) * delta);
}
ToDoubleFunction<ShortestPathTree.IsoLabel> fz;
if (weightLimit.get() > 0) {
fz = l -> l.weight;
} else if (distanceLimitInMeter.get() > 0) {
fz = l -> l.distance;
} else {
fz = l -> l.time;
}
Triangulator.Result result = triangulator.triangulate(snap, queryGraph, shortestPathTree, fz, degreesFromMeters(toleranceInMeter));
ContourBuilder contourBuilder = new ContourBuilder(result.triangulation);
ArrayList<Geometry> isochrones = new ArrayList<>();
for (Double z : zs) {
logger.info("Building contour z={}", z);
MultiPolygon isochrone = contourBuilder.computeIsoline(z, result.seedEdges);
if (fullGeometry) {
isochrones.add(isochrone);
} else {
Polygon maxPolygon = heuristicallyFindMainConnectedComponent(isochrone, isochrone.getFactory().createPoint(new Coordinate(point.get().lon, point.get().lat)));
isochrones.add(isochrone.getFactory().createPolygon(((LinearRing) maxPolygon.getExteriorRing())));
}
}
ArrayList<JsonFeature> features = new ArrayList<>();
for (Geometry isochrone : isochrones) {
JsonFeature feature = new JsonFeature();
HashMap<String, Object> properties = new HashMap<>();
properties.put("bucket", features.size());
if (respType == geojson) {
properties.put("copyrights", ResponsePathSerializer.COPYRIGHTS);
}
feature.setProperties(properties);
feature.setGeometry(isochrone);
features.add(feature);
}
ObjectNode json = JsonNodeFactory.instance.objectNode();
sw.stop();
ObjectNode finalJson = null;
if (respType == geojson) {
json.put("type", "FeatureCollection");
json.putPOJO("features", features);
finalJson = json;
} else {
json.putPOJO("polygons", features);
final ObjectNode info = json.putObject("info");
info.putPOJO("copyrights", ResponsePathSerializer.COPYRIGHTS);
info.put("took", Math.round((float) sw.getMillis()));
finalJson = json;
}
logger.info("took: " + sw.getSeconds() + ", visited nodes:" + shortestPathTree.getVisitedNodes());
return Response.ok(finalJson).header("X-GH-Took", "" + sw.getSeconds() * 1000).build();
}
use of io.dropwizard.jersey.params.LongParam in project keywhiz by square.
the class AutomationGroupResourceTest method findGroupById.
@Test
public void findGroupById() {
Group group = new Group(50, "testGroup", "testing group", now, "automation client", now, "automation client", ImmutableMap.of("app", "keywhiz"));
when(groupDAO.getGroupById(50)).thenReturn(Optional.of(group));
when(aclDAO.getClientsFor(group)).thenReturn(ImmutableSet.of());
when(aclDAO.getSanitizedSecretsFor(group)).thenReturn(ImmutableSet.of());
GroupDetailResponse expectedResponse = GroupDetailResponse.fromGroup(group, ImmutableList.of(), ImmutableList.of());
GroupDetailResponse response = resource.getGroupById(automation, new LongParam("50"));
assertThat(response).isEqualTo(expectedResponse);
}
use of io.dropwizard.jersey.params.LongParam in project keywhiz by square.
the class SecretsResourceTest method setCurrentSecretVersionBySecretId.
@Test
public void setCurrentSecretVersionBySecretId() {
when(secretController.getSecretById(1)).thenReturn(Optional.of(secret));
Response response = resource.updateCurrentSecretVersion(user, new LongParam(Long.toString(1)), new LongParam(Long.toString(10)));
verify(secretDAO).setCurrentSecretVersionBySecretId(1, 10, "user");
assertThat(response.getStatus()).isEqualTo(204);
}
use of io.dropwizard.jersey.params.LongParam in project keywhiz by square.
the class SecretsResourceTest method includesTheSecret.
@Test
public void includesTheSecret() {
when(secretController.getSecretById(22)).thenReturn(Optional.of(secret));
when(aclDAO.getGroupsFor(secret)).thenReturn(Collections.emptySet());
when(aclDAO.getClientsFor(secret)).thenReturn(Collections.emptySet());
SecretDetailResponse response = resource.retrieveSecret(user, new LongParam("22"));
assertThat(response.id).isEqualTo(secret.getId());
assertThat(response.name).isEqualTo(secret.getName());
assertThat(response.description).isEqualTo(secret.getDescription());
assertThat(response.createdAt).isEqualTo(secret.getCreatedAt());
assertThat(response.createdBy).isEqualTo(secret.getCreatedBy());
assertThat(response.updatedAt).isEqualTo(secret.getUpdatedAt());
assertThat(response.updatedBy).isEqualTo(secret.getUpdatedBy());
assertThat(response.metadata).isEqualTo(secret.getMetadata());
}
use of io.dropwizard.jersey.params.LongParam in project keywhiz by square.
the class SecretsResourceTest method rollbackSuccess.
@Test
public void rollbackSuccess() {
Secret secret1 = new Secret(1, "name1", null, "desc", () -> "secret", "checksum", NOW, "user", NOW, "user", emptyMap, null, null, 1136214245, 125L, NOW, "user");
when(secretController.getSecretByName("name1")).thenReturn(Optional.of(secret1));
Response response = resource.resetSecretVersion(user, "name1", new LongParam("125"));
assertThat(response.getStatus()).isEqualTo(HttpStatus.SC_CREATED);
}
Aggregations