small refactoring

This commit is contained in:
nazar-kutz 2021-01-25 10:48:47 +02:00
parent 5097b11dfe
commit f4391b7008
7 changed files with 82 additions and 49 deletions

View file

@ -25,6 +25,8 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import static net.osmand.util.Algorithms.isEmpty;
public class OnlineRoutingHelper { public class OnlineRoutingHelper {
private static final Log LOG = PlatformUtil.getLog(OnlineRoutingHelper.class); private static final Log LOG = PlatformUtil.getLog(OnlineRoutingHelper.class);
@ -71,7 +73,15 @@ public class OnlineRoutingHelper {
return null; return null;
} }
@NonNull @Nullable
public OnlineRoutingResponse calculateRouteOnline(@Nullable String stringKey,
@NonNull List<LatLon> path,
boolean leftSideNavigation) throws IOException, JSONException {
OnlineRoutingEngine engine = getEngineByKey(stringKey);
return engine != null ? calculateRouteOnline(engine, path, leftSideNavigation) : null;
}
@Nullable
public OnlineRoutingResponse calculateRouteOnline(@NonNull OnlineRoutingEngine engine, public OnlineRoutingResponse calculateRouteOnline(@NonNull OnlineRoutingEngine engine,
@NonNull List<LatLon> path, @NonNull List<LatLon> path,
boolean leftSideNavigation) throws IOException, JSONException { boolean leftSideNavigation) throws IOException, JSONException {
@ -132,7 +142,7 @@ public class OnlineRoutingHelper {
@NonNull @NonNull
private String createEngineKeyIfNeeded(@NonNull OnlineRoutingEngine engine) { private String createEngineKeyIfNeeded(@NonNull OnlineRoutingEngine engine) {
String key = engine.get(EngineParameter.KEY); String key = engine.get(EngineParameter.KEY);
if (Algorithms.isEmpty(key)) { if (isEmpty(key)) {
key = OnlineRoutingEngine.generateKey(); key = OnlineRoutingEngine.generateKey();
engine.put(EngineParameter.KEY, key); engine.put(EngineParameter.KEY, key);
} }
@ -152,7 +162,7 @@ public class OnlineRoutingHelper {
private List<OnlineRoutingEngine> readFromSettings() { private List<OnlineRoutingEngine> readFromSettings() {
List<OnlineRoutingEngine> engines = new ArrayList<>(); List<OnlineRoutingEngine> engines = new ArrayList<>();
String jsonString = settings.ONLINE_ROUTING_ENGINES.get(); String jsonString = settings.ONLINE_ROUTING_ENGINES.get();
if (!Algorithms.isEmpty(jsonString)) { if (!isEmpty(jsonString)) {
try { try {
JSONObject json = new JSONObject(jsonString); JSONObject json = new JSONObject(jsonString);
OnlineRoutingUtils.readFromJson(json, engines); OnlineRoutingUtils.readFromJson(json, engines);
@ -164,7 +174,7 @@ public class OnlineRoutingHelper {
} }
private void saveCacheToSettings() { private void saveCacheToSettings() {
if (!Algorithms.isEmpty(cachedEngines)) { if (!isEmpty(cachedEngines)) {
try { try {
JSONObject json = new JSONObject(); JSONObject json = new JSONObject();
OnlineRoutingUtils.writeToJson(json, getEngines()); OnlineRoutingUtils.writeToJson(json, getEngines());

View file

@ -1,20 +1,20 @@
package net.osmand.plus.onlinerouting; package net.osmand.plus.onlinerouting;
import net.osmand.data.LatLon; import net.osmand.Location;
import net.osmand.plus.routing.RouteDirectionInfo; import net.osmand.plus.routing.RouteDirectionInfo;
import java.util.List; import java.util.List;
public class OnlineRoutingResponse { public class OnlineRoutingResponse {
private List<LatLon> route; private List<Location> route;
private List<RouteDirectionInfo> directions; private List<RouteDirectionInfo> directions;
public OnlineRoutingResponse(List<LatLon> route, List<RouteDirectionInfo> directions) { public OnlineRoutingResponse(List<Location> route, List<RouteDirectionInfo> directions) {
this.route = route; this.route = route;
this.directions = directions; this.directions = directions;
} }
public List<LatLon> getRoute() { public List<Location> getRoute() {
return route; return route;
} }

View file

@ -3,6 +3,7 @@ package net.osmand.plus.onlinerouting.engine;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import net.osmand.Location;
import net.osmand.data.LatLon; import net.osmand.data.LatLon;
import net.osmand.plus.R; import net.osmand.plus.R;
import net.osmand.plus.onlinerouting.EngineParameter; import net.osmand.plus.onlinerouting.EngineParameter;
@ -28,8 +29,9 @@ public class GraphhopperEngine extends OnlineRoutingEngine {
super(params); super(params);
} }
@NonNull
@Override @Override
public @NonNull EngineType getType() { public EngineType getType() {
return EngineType.GRAPHHOPPER; return EngineType.GRAPHHOPPER;
} }
@ -79,7 +81,7 @@ public class GraphhopperEngine extends OnlineRoutingEngine {
sb.append('&').append("details=").append("lanes"); sb.append('&').append("details=").append("lanes");
} }
@NonNull @Nullable
@Override @Override
public OnlineRoutingResponse parseServerResponse(@NonNull String content, public OnlineRoutingResponse parseServerResponse(@NonNull String content,
boolean leftSideNavigation) throws JSONException { boolean leftSideNavigation) throws JSONException {
@ -87,7 +89,9 @@ public class GraphhopperEngine extends OnlineRoutingEngine {
JSONObject root = obj.getJSONArray("paths").getJSONObject(0); JSONObject root = obj.getJSONArray("paths").getJSONObject(0);
String encoded = root.getString("points"); String encoded = root.getString("points");
List<LatLon> route = GeoPolylineParserUtil.parse(encoded, GeoPolylineParserUtil.PRECISION_5); List<LatLon> points = GeoPolylineParserUtil.parse(encoded, GeoPolylineParserUtil.PRECISION_5);
if (isEmpty(points)) return null;
List<Location> route = convertRouteToLocationsList(points);
JSONArray instructions = root.getJSONArray("instructions"); JSONArray instructions = root.getJSONArray("instructions");
List<RouteDirectionInfo> directions = new ArrayList<>(); List<RouteDirectionInfo> directions = new ArrayList<>();
@ -158,7 +162,7 @@ public class GraphhopperEngine extends OnlineRoutingEngine {
} else if (sign == -6) { } else if (sign == -6) {
// not yet used: leave roundabout // not yet used: leave roundabout
} else if (sign == -3) { } else if (sign == -3) {
// turn sharp left // turn sharp left
id = TurnType.TSHL; id = TurnType.TSHL;

View file

@ -5,12 +5,15 @@ import android.content.Context;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import net.osmand.GPXUtilities.WptPt;
import net.osmand.Location;
import net.osmand.data.LatLon; import net.osmand.data.LatLon;
import net.osmand.plus.R; import net.osmand.plus.R;
import net.osmand.plus.onlinerouting.EngineParameter; import net.osmand.plus.onlinerouting.EngineParameter;
import net.osmand.plus.onlinerouting.OnlineRoutingFactory; import net.osmand.plus.onlinerouting.OnlineRoutingFactory;
import net.osmand.plus.onlinerouting.OnlineRoutingResponse; import net.osmand.plus.onlinerouting.OnlineRoutingResponse;
import net.osmand.plus.onlinerouting.VehicleType; import net.osmand.plus.onlinerouting.VehicleType;
import net.osmand.plus.routing.RouteProvider;
import net.osmand.util.Algorithms; import net.osmand.util.Algorithms;
import org.json.JSONException; import org.json.JSONException;
@ -73,15 +76,6 @@ public abstract class OnlineRoutingEngine implements Cloneable {
} }
} }
@NonNull
public String getBaseUrl() {
String customUrl = get(EngineParameter.CUSTOM_URL);
if (isEmpty(customUrl)) {
return getStandardUrl();
}
return customUrl;
}
@NonNull @NonNull
public String getFullUrl(@NonNull List<LatLon> path) { public String getFullUrl(@NonNull List<LatLon> path) {
StringBuilder sb = new StringBuilder(getBaseUrl()); StringBuilder sb = new StringBuilder(getBaseUrl());
@ -93,11 +87,34 @@ public abstract class OnlineRoutingEngine implements Cloneable {
@NonNull List<LatLon> path); @NonNull List<LatLon> path);
@NonNull @NonNull
public String getBaseUrl() {
String customUrl = get(EngineParameter.CUSTOM_URL);
if (isEmpty(customUrl)) {
return getStandardUrl();
}
return customUrl;
}
@NonNull
public abstract String getStandardUrl();
@Nullable
public abstract OnlineRoutingResponse parseServerResponse(@NonNull String content, public abstract OnlineRoutingResponse parseServerResponse(@NonNull String content,
boolean leftSideNavigation) throws JSONException; boolean leftSideNavigation) throws JSONException;
@NonNull @NonNull
public abstract String getStandardUrl(); protected List<Location> convertRouteToLocationsList(@NonNull List<LatLon> route) {
List<Location> result = new ArrayList<>();
if (!isEmpty(route)) {
for (LatLon pt : route) {
WptPt wpt = new WptPt();
wpt.lat = pt.getLatitude();
wpt.lon = pt.getLongitude();
result.add(RouteProvider.createLocation(wpt));
}
}
return result;
}
@NonNull @NonNull
public Map<String, String> getParams() { public Map<String, String> getParams() {

View file

@ -3,6 +3,7 @@ package net.osmand.plus.onlinerouting.engine;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import net.osmand.Location;
import net.osmand.data.LatLon; import net.osmand.data.LatLon;
import net.osmand.plus.R; import net.osmand.plus.R;
import net.osmand.plus.onlinerouting.EngineParameter; import net.osmand.plus.onlinerouting.EngineParameter;
@ -25,8 +26,9 @@ public class OrsEngine extends OnlineRoutingEngine {
super(params); super(params);
} }
@NonNull
@Override @Override
public @NonNull EngineType getType() { public EngineType getType() {
return EngineType.ORS; return EngineType.ORS;
} }
@ -76,21 +78,25 @@ public class OrsEngine extends OnlineRoutingEngine {
} }
} }
@NonNull @Nullable
@Override @Override
public OnlineRoutingResponse parseServerResponse(@NonNull String content, public OnlineRoutingResponse parseServerResponse(@NonNull String content,
boolean leftSideNavigation) throws JSONException { boolean leftSideNavigation) throws JSONException {
JSONObject obj = new JSONObject(content); JSONObject obj = new JSONObject(content);
JSONArray array = obj.getJSONArray("features").getJSONObject(0) JSONArray array = obj.getJSONArray("features").getJSONObject(0)
.getJSONObject("geometry").getJSONArray("coordinates"); .getJSONObject("geometry").getJSONArray("coordinates");
List<LatLon> track = new ArrayList<>(); List<LatLon> points = new ArrayList<>();
for (int i = 0; i < array.length(); i++) { for (int i = 0; i < array.length(); i++) {
JSONArray point = array.getJSONArray(i); JSONArray point = array.getJSONArray(i);
double lon = Double.parseDouble(point.getString(0)); double lon = Double.parseDouble(point.getString(0));
double lat = Double.parseDouble(point.getString(1)); double lat = Double.parseDouble(point.getString(1));
track.add(new LatLon(lat, lon)); points.add(new LatLon(lat, lon));
} }
return new OnlineRoutingResponse(track, null); if (!isEmpty(points)) {
List<Location> route = convertRouteToLocationsList(points);
new OnlineRoutingResponse(route, null);
}
return null;
} }
@Override @Override

View file

@ -3,6 +3,7 @@ package net.osmand.plus.onlinerouting.engine;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import net.osmand.Location;
import net.osmand.data.LatLon; import net.osmand.data.LatLon;
import net.osmand.plus.R; import net.osmand.plus.R;
import net.osmand.plus.onlinerouting.EngineParameter; import net.osmand.plus.onlinerouting.EngineParameter;
@ -25,7 +26,8 @@ public class OsrmEngine extends OnlineRoutingEngine {
} }
@Override @Override
public @NonNull EngineType getType() { public @NonNull
EngineType getType() {
return EngineType.OSRM; return EngineType.OSRM;
} }
@ -36,7 +38,8 @@ public class OsrmEngine extends OnlineRoutingEngine {
} }
@Override @Override
protected void collectAllowedParameters() { } protected void collectAllowedParameters() {
}
@Override @Override
protected void collectAllowedVehicles(@NonNull List<VehicleType> vehicles) { protected void collectAllowedVehicles(@NonNull List<VehicleType> vehicles) {
@ -64,14 +67,18 @@ public class OsrmEngine extends OnlineRoutingEngine {
sb.append('&').append("steps=true"); sb.append('&').append("steps=true");
} }
@NonNull @Nullable
@Override @Override
public OnlineRoutingResponse parseServerResponse(@NonNull String content, public OnlineRoutingResponse parseServerResponse(@NonNull String content,
boolean leftSideNavigation) throws JSONException { boolean leftSideNavigation) throws JSONException {
JSONObject obj = new JSONObject(content); JSONObject obj = new JSONObject(content);
String encoded = obj.getJSONArray("routes").getJSONObject(0).getString("geometry"); String encoded = obj.getJSONArray("routes").getJSONObject(0).getString("geometry");
List<LatLon> route = GeoPolylineParserUtil.parse(encoded, GeoPolylineParserUtil.PRECISION_5); List<LatLon> points = GeoPolylineParserUtil.parse(encoded, GeoPolylineParserUtil.PRECISION_5);
return new OnlineRoutingResponse(route, null); if (!isEmpty(points)) {
List<Location> route = convertRouteToLocationsList(points);
return new OnlineRoutingResponse(route, null);
}
return null;
} }
@Override @Override

View file

@ -22,7 +22,6 @@ import net.osmand.data.WptLocationPoint;
import net.osmand.plus.OsmandApplication; import net.osmand.plus.OsmandApplication;
import net.osmand.plus.onlinerouting.OnlineRoutingHelper; import net.osmand.plus.onlinerouting.OnlineRoutingHelper;
import net.osmand.plus.onlinerouting.OnlineRoutingResponse; import net.osmand.plus.onlinerouting.OnlineRoutingResponse;
import net.osmand.plus.onlinerouting.engine.OnlineRoutingEngine;
import net.osmand.plus.settings.backend.OsmandSettings; import net.osmand.plus.settings.backend.OsmandSettings;
import net.osmand.plus.settings.backend.CommonPreference; import net.osmand.plus.settings.backend.CommonPreference;
import net.osmand.plus.R; import net.osmand.plus.R;
@ -327,7 +326,7 @@ public class RouteProvider {
} }
} }
private static Location createLocation(WptPt pt){ public static Location createLocation(WptPt pt){
Location loc = new Location("OsmandRouteProvider"); Location loc = new Location("OsmandRouteProvider");
loc.setLatitude(pt.lat); loc.setLatitude(pt.lat);
loc.setLongitude(pt.lon); loc.setLongitude(pt.lon);
@ -1203,27 +1202,17 @@ public class RouteProvider {
private RouteCalculationResult findOnlineRoute(RouteCalculationParams params) throws IOException, JSONException { private RouteCalculationResult findOnlineRoute(RouteCalculationParams params) throws IOException, JSONException {
OnlineRoutingHelper helper = params.ctx.getOnlineRoutingHelper(); OnlineRoutingHelper helper = params.ctx.getOnlineRoutingHelper();
String stringKey = params.mode.getRoutingProfile(); String stringKey = params.mode.getRoutingProfile();
OnlineRoutingEngine engine = helper.getEngineByKey(stringKey); OnlineRoutingResponse response =
OnlineRoutingResponse response = null; helper.calculateRouteOnline(stringKey, getPathFromParams(params), params.leftSide);
if (engine != null) { if (response != null) {
response = helper.calculateRouteOnline(engine, getFullPathFromParams(params), params.leftSide);
}
if (response != null && !Algorithms.isEmpty(response.getRoute())) {
List<Location> res = new ArrayList<>();
for (LatLon pt : response.getRoute()) {
WptPt wpt = new WptPt();
wpt.lat = pt.getLatitude();
wpt.lon = pt.getLongitude();
res.add(createLocation(wpt));
}
params.intermediates = null; params.intermediates = null;
return new RouteCalculationResult(res, response.getDirections(), params, null, true); return new RouteCalculationResult(response.getRoute(), response.getDirections(), params, null, true);
} else { } else {
return new RouteCalculationResult("Route is empty"); return new RouteCalculationResult("Route is empty");
} }
} }
private static List<LatLon> getFullPathFromParams(RouteCalculationParams params) { private static List<LatLon> getPathFromParams(RouteCalculationParams params) {
List<LatLon> points = new ArrayList<>(); List<LatLon> points = new ArrayList<>();
points.add(new LatLon(params.start.getLatitude(), params.start.getLongitude())); points.add(new LatLon(params.start.getLatitude(), params.start.getLongitude()));
if (Algorithms.isEmpty(params.intermediates)) { if (Algorithms.isEmpty(params.intermediates)) {