// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.actions.downloadtasks; import static org.openstreetmap.josm.tools.I18n.tr; import java.io.IOException; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashSet; import java.util.Optional; import java.util.Set; import java.util.concurrent.Future; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.openstreetmap.josm.Main; import org.openstreetmap.josm.data.Bounds; import org.openstreetmap.josm.data.DataSource; import org.openstreetmap.josm.data.ProjectionBounds; import org.openstreetmap.josm.data.ViewportData; import org.openstreetmap.josm.data.coor.LatLon; import org.openstreetmap.josm.data.osm.DataSet; import org.openstreetmap.josm.data.osm.OsmPrimitive; import org.openstreetmap.josm.data.osm.Relation; import org.openstreetmap.josm.data.osm.Way; import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor; import org.openstreetmap.josm.gui.PleaseWaitRunnable; import org.openstreetmap.josm.gui.io.UpdatePrimitivesTask; import org.openstreetmap.josm.gui.layer.OsmDataLayer; import org.openstreetmap.josm.gui.progress.NullProgressMonitor; import org.openstreetmap.josm.gui.progress.ProgressMonitor; import org.openstreetmap.josm.io.BoundingBoxDownloader; import org.openstreetmap.josm.io.OsmServerLocationReader; import org.openstreetmap.josm.io.OsmServerReader; import org.openstreetmap.josm.io.OsmTransferCanceledException; import org.openstreetmap.josm.io.OsmTransferException; import org.openstreetmap.josm.tools.Utils; import org.xml.sax.SAXException; /** * Open the download dialog and download the data. * Run in the worker thread. */ public class DownloadOsmTask extends AbstractDownloadTask<DataSet> { // CHECKSTYLE.OFF: SingleSpaceSeparator protected static final String PATTERN_OSM_API_URL = "https?://.*/api/0.6/(map|nodes?|ways?|relations?|\\*).*"; protected static final String PATTERN_OVERPASS_API_URL = "https?://.*/interpreter\\?data=.*"; protected static final String PATTERN_OVERPASS_API_XAPI_URL = "https?://.*/xapi(\\?.*\\[@meta\\]|_meta\\?).*"; protected static final String PATTERN_EXTERNAL_OSM_FILE = "https?://.*/.*\\.osm"; // CHECKSTYLE.ON: SingleSpaceSeparator protected Bounds currentBounds; protected DownloadTask downloadTask; protected String newLayerName; /** This allows subclasses to ignore this warning */ protected boolean warnAboutEmptyArea = true; @Override public String[] getPatterns() { if (this.getClass() == DownloadOsmTask.class) { return new String[]{PATTERN_OSM_API_URL, PATTERN_OVERPASS_API_URL, PATTERN_OVERPASS_API_XAPI_URL, PATTERN_EXTERNAL_OSM_FILE}; } else { return super.getPatterns(); } } @Override public String getTitle() { if (this.getClass() == DownloadOsmTask.class) { return tr("Download OSM"); } else { return super.getTitle(); } } @Override public Future<?> download(boolean newLayer, Bounds downloadArea, ProgressMonitor progressMonitor) { return download(new BoundingBoxDownloader(downloadArea), newLayer, downloadArea, progressMonitor); } /** * Asynchronously launches the download task for a given bounding box. * * Set <code>progressMonitor</code> to null, if the task should create, open, and close a progress monitor. * Set progressMonitor to {@link NullProgressMonitor#INSTANCE} if progress information is to * be discarded. * * You can wait for the asynchronous download task to finish by synchronizing on the returned * {@link Future}, but make sure not to freeze up JOSM. Example: * <pre> * Future<?> future = task.download(...); * // DON'T run this on the Swing EDT or JOSM will freeze * future.get(); // waits for the dowload task to complete * </pre> * * The following example uses a pattern which is better suited if a task is launched from * the Swing EDT: * <pre> * final Future<?> future = task.download(...); * Runnable runAfterTask = new Runnable() { * public void run() { * // this is not strictly necessary because of the type of executor service * // Main.worker is initialized with, but it doesn't harm either * // * future.get(); // wait for the download task to complete * doSomethingAfterTheTaskCompleted(); * } * } * Main.worker.submit(runAfterTask); * </pre> * @param reader the reader used to parse OSM data (see {@link OsmServerReader#parseOsm}) * @param newLayer true, if the data is to be downloaded into a new layer. If false, the task * selects one of the existing layers as download layer, preferably the active layer. * @param downloadArea the area to download * @param progressMonitor the progressMonitor * @return the future representing the asynchronous task */ public Future<?> download(OsmServerReader reader, boolean newLayer, Bounds downloadArea, ProgressMonitor progressMonitor) { return download(new DownloadTask(newLayer, reader, progressMonitor, zoomAfterDownload), downloadArea); } protected Future<?> download(DownloadTask downloadTask, Bounds downloadArea) { this.downloadTask = downloadTask; this.currentBounds = new Bounds(downloadArea); // We need submit instead of execute so we can wait for it to finish and get the error // message if necessary. If no one calls getErrorMessage() it just behaves like execute. return Main.worker.submit(downloadTask); } /** * This allows subclasses to perform operations on the URL before {@link #loadUrl} is performed. * @param url the original URL * @return the modified URL */ protected String modifyUrlBeforeLoad(String url) { return url; } /** * Loads a given URL from the OSM Server * @param newLayer True if the data should be saved to a new layer * @param url The URL as String */ @Override public Future<?> loadUrl(boolean newLayer, String url, ProgressMonitor progressMonitor) { String newUrl = modifyUrlBeforeLoad(url); downloadTask = new DownloadTask(newLayer, new OsmServerLocationReader(newUrl), progressMonitor); currentBounds = null; // Extract .osm filename from URL to set the new layer name extractOsmFilename("https?://.*/(.*\\.osm)", newUrl); return Main.worker.submit(downloadTask); } protected final void extractOsmFilename(String pattern, String url) { Matcher matcher = Pattern.compile(pattern).matcher(url); newLayerName = matcher.matches() ? matcher.group(1) : null; } @Override public void cancel() { if (downloadTask != null) { downloadTask.cancel(); } } @Override public boolean isSafeForRemotecontrolRequests() { return true; } @Override public ProjectionBounds getDownloadProjectionBounds() { return downloadTask != null ? downloadTask.computeBbox(currentBounds) : null; } /** * Superclass of internal download task. * @since 7636 */ public abstract static class AbstractInternalTask extends PleaseWaitRunnable { protected final boolean newLayer; protected final boolean zoomAfterDownload; protected DataSet dataSet; /** * Constructs a new {@code AbstractInternalTask}. * * @param newLayer if {@code true}, force download to a new layer * @param title message for the user * @param ignoreException If true, exception will be propagated to calling code. If false then * exception will be thrown directly in EDT. When this runnable is executed using executor framework * then use false unless you read result of task (because exception will get lost if you don't) * @param zoomAfterDownload If true, the map view will zoom to download area after download */ public AbstractInternalTask(boolean newLayer, String title, boolean ignoreException, boolean zoomAfterDownload) { super(title, ignoreException); this.newLayer = newLayer; this.zoomAfterDownload = zoomAfterDownload; } /** * Constructs a new {@code AbstractInternalTask}. * * @param newLayer if {@code true}, force download to a new layer * @param title message for the user * @param progressMonitor progress monitor * @param ignoreException If true, exception will be propagated to calling code. If false then * exception will be thrown directly in EDT. When this runnable is executed using executor framework * then use false unless you read result of task (because exception will get lost if you don't) * @param zoomAfterDownload If true, the map view will zoom to download area after download */ public AbstractInternalTask(boolean newLayer, String title, ProgressMonitor progressMonitor, boolean ignoreException, boolean zoomAfterDownload) { super(title, progressMonitor, ignoreException); this.newLayer = newLayer; this.zoomAfterDownload = zoomAfterDownload; } protected OsmDataLayer getEditLayer() { if (!Main.isDisplayingMapView()) return null; return Main.getLayerManager().getEditLayer(); } protected int getNumDataLayers() { return Main.getLayerManager().getLayersOfType(OsmDataLayer.class).size(); } protected OsmDataLayer getFirstDataLayer() { return Utils.find(Main.getLayerManager().getLayers(), OsmDataLayer.class); } protected OsmDataLayer createNewLayer(String layerName) { if (layerName == null || layerName.isEmpty()) { layerName = OsmDataLayer.createNewName(); } return new OsmDataLayer(dataSet, layerName, null); } protected OsmDataLayer createNewLayer() { return createNewLayer(null); } protected ProjectionBounds computeBbox(Bounds bounds) { BoundingXYVisitor v = new BoundingXYVisitor(); if (bounds != null) { v.visit(bounds); } else { v.computeBoundingBox(dataSet.getNodes()); } return v.getBounds(); } protected OsmDataLayer addNewLayerIfRequired(String newLayerName) { int numDataLayers = getNumDataLayers(); if (newLayer || numDataLayers == 0 || (numDataLayers > 1 && getEditLayer() == null)) { // the user explicitly wants a new layer, we don't have any layer at all // or it is not clear which layer to merge to // final OsmDataLayer layer = createNewLayer(newLayerName); if (Main.main != null) Main.getLayerManager().addLayer(layer, zoomAfterDownload); return layer; } return null; } protected void loadData(String newLayerName, Bounds bounds) { OsmDataLayer layer = addNewLayerIfRequired(newLayerName); if (layer == null) { layer = Optional.ofNullable(getEditLayer()).orElseGet(this::getFirstDataLayer); Collection<OsmPrimitive> primitivesToUpdate = searchPrimitivesToUpdate(bounds, layer.data); layer.mergeFrom(dataSet); if (Main.map != null && zoomAfterDownload) { Main.map.mapView.zoomTo(new ViewportData(computeBbox(bounds))); } if (!primitivesToUpdate.isEmpty()) { Main.worker.submit(new UpdatePrimitivesTask(layer, primitivesToUpdate)); } layer.onPostDownloadFromServer(); } } /** * Look for primitives deleted on server (thus absent from downloaded data) * but still present in existing data layer * @param bounds download bounds * @param ds existing data set * @return the primitives to update */ private Collection<OsmPrimitive> searchPrimitivesToUpdate(Bounds bounds, DataSet ds) { if (bounds == null) return Collections.emptySet(); Collection<OsmPrimitive> col = new ArrayList<>(); ds.searchNodes(bounds.toBBox()).stream().filter(n -> !n.isNew() && !dataSet.containsNode(n)).forEachOrdered(col::add); if (!col.isEmpty()) { Set<Way> ways = new HashSet<>(); Set<Relation> rels = new HashSet<>(); for (OsmPrimitive n : col) { for (OsmPrimitive ref : n.getReferrers()) { if (ref.isNew()) { continue; } else if (ref instanceof Way) { ways.add((Way) ref); } else if (ref instanceof Relation) { rels.add((Relation) ref); } } } ways.stream().filter(w -> !dataSet.containsWay(w)).forEachOrdered(col::add); rels.stream().filter(r -> !dataSet.containsRelation(r)).forEachOrdered(col::add); } return col; } } protected class DownloadTask extends AbstractInternalTask { protected final OsmServerReader reader; /** * Constructs a new {@code DownloadTask}. * @param newLayer if {@code true}, force download to a new layer * @param reader OSM data reader * @param progressMonitor progress monitor */ public DownloadTask(boolean newLayer, OsmServerReader reader, ProgressMonitor progressMonitor) { this(newLayer, reader, progressMonitor, true); } /** * Constructs a new {@code DownloadTask}. * @param newLayer if {@code true}, force download to a new layer * @param reader OSM data reader * @param progressMonitor progress monitor * @param zoomAfterDownload If true, the map view will zoom to download area after download * @since 8942 */ public DownloadTask(boolean newLayer, OsmServerReader reader, ProgressMonitor progressMonitor, boolean zoomAfterDownload) { super(newLayer, tr("Downloading data"), progressMonitor, false, zoomAfterDownload); this.reader = reader; } protected DataSet parseDataSet() throws OsmTransferException { return reader.parseOsm(progressMonitor.createSubTaskMonitor(ProgressMonitor.ALL_TICKS, false)); } @Override public void realRun() throws IOException, SAXException, OsmTransferException { try { if (isCanceled()) return; dataSet = parseDataSet(); } catch (OsmTransferException e) { if (isCanceled()) { Main.info(tr("Ignoring exception because download has been canceled. Exception was: {0}", e.toString())); return; } if (e instanceof OsmTransferCanceledException) { setCanceled(true); return; } else { rememberException(e); } DownloadOsmTask.this.setFailed(true); } } @Override protected void finish() { if (isFailed() || isCanceled()) return; if (dataSet == null) return; // user canceled download or error occurred if (dataSet.allPrimitives().isEmpty()) { if (warnAboutEmptyArea) { rememberErrorMessage(tr("No data found in this area.")); } // need to synthesize a download bounds lest the visual indication of downloaded area doesn't work dataSet.addDataSource(new DataSource(currentBounds != null ? currentBounds : new Bounds(LatLon.ZERO), "OpenStreetMap server")); } rememberDownloadedData(dataSet); loadData(newLayerName, currentBounds); } @Override protected void cancel() { setCanceled(true); if (reader != null) { reader.cancel(); } } } @Override public String getConfirmationMessage(URL url) { if (url != null) { String urlString = url.toExternalForm(); if (urlString.matches(PATTERN_OSM_API_URL)) { // TODO: proper i18n after stabilization Collection<String> items = new ArrayList<>(); items.add(tr("OSM Server URL:") + ' ' + url.getHost()); items.add(tr("Command")+": "+url.getPath()); if (url.getQuery() != null) { items.add(tr("Request details: {0}", url.getQuery().replaceAll(",\\s*", ", "))); } return Utils.joinAsHtmlUnorderedList(items); } // TODO: other APIs } return null; } }