Changeset 4668 in josm
- Timestamp:
- 2011-12-20T18:15:44+01:00 (13 years ago)
- Location:
- trunk
- Files:
-
- 7 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r4593 r4668 70 70 import org.openstreetmap.josm.actions.SaveAsAction; 71 71 import org.openstreetmap.josm.actions.SelectAllAction; 72 import org.openstreetmap.josm.actions.SessionLoadAction; 72 73 import org.openstreetmap.josm.actions.ShowStatusReportAction; 73 74 import org.openstreetmap.josm.actions.SimplifyWayAction; … … 98 99 import org.openstreetmap.josm.gui.layer.Layer; 99 100 import org.openstreetmap.josm.gui.tagging.TaggingPresetSearchAction; 101 import org.openstreetmap.josm.tools.ImageProvider; 100 102 import org.openstreetmap.josm.tools.Shortcut; 101 103 … … 117 119 public final JosmAction save = new SaveAction(); 118 120 public final JosmAction saveAs = new SaveAsAction(); 121 public final JosmAction sessionLoad = new SessionLoadAction(); 119 122 public final JosmAction gpxExport = new GpxExportAction(); 120 123 public final DownloadAction download = new DownloadAction(); … … 190 193 191 194 public final JMenu fileMenu = addMenu(marktr("File"), KeyEvent.VK_F, 0, ht("/Menu/File")); 195 public final JMenu sessionMenu = new JMenu(tr("Session")); // submenu of the file menu 192 196 public final JMenu editMenu = addMenu(marktr("Edit"), KeyEvent.VK_E, 1, ht("/Menu/Edit")); 193 197 public final JMenu viewMenu = addMenu(marktr("View"), KeyEvent.VK_V, 2, ht("/Menu/View")); … … 206 210 public JMenu audioMenu = null; 207 211 public final JMenu helpMenu = addMenu(marktr("Help"), KeyEvent.VK_H, 7, ht("/Menu/Help")); 212 208 213 public final int defaultMenuPos = 7; 209 214 … … 357 362 add(fileMenu, save); 358 363 add(fileMenu, saveAs); 364 if (Main.pref.getBoolean("session")) { 365 sessionMenu.setToolTipText(tr("Save and load the current session (list of layers, etc.)")); 366 sessionMenu.setIcon(ImageProvider.get("session")); 367 add(sessionMenu, sessionLoad); 368 fileMenu.add(sessionMenu); 369 } 359 370 add(fileMenu, gpxExport); 360 371 fileMenu.addSeparator(); -
trunk/src/org/openstreetmap/josm/io/OsmImporter.java
r4490 r4668 22 22 public class OsmImporter extends FileImporter { 23 23 24 private OsmDataLayer layer; 25 private Runnable postLayerTask; 26 24 27 public OsmImporter() { 25 28 super(new ExtensionFileFilter("osm,xml", "osm", tr("OSM Server Files") + " (*.osm *.xml)")); … … 30 33 } 31 34 32 @Override public void importData(File file, ProgressMonitor progressMonitor) throws IOException, IllegalDataException { 35 @Override 36 public void importData(File file, ProgressMonitor progressMonitor) throws IOException, IllegalDataException { 33 37 try { 34 38 FileInputStream in = new FileInputStream(file); … … 41 45 42 46 protected void importData(InputStream in, final File associatedFile) throws IllegalDataException { 43 final DataSet dataSet = OsmReader.parseDataSet(in, NullProgressMonitor.INSTANCE); 44 final OsmDataLayer layer = new OsmDataLayer(dataSet, associatedFile.getName(), associatedFile); 45 addDataLayer(dataSet, layer, associatedFile.getPath()); 46 } 47 48 protected void addDataLayer(final DataSet dataSet, final OsmDataLayer layer, final String filePath) { 47 loadLayer(in, associatedFile, associatedFile.getName(), NullProgressMonitor.INSTANCE); 49 48 // FIXME: remove UI stuff from IO subsystem 50 //51 49 Runnable uiStuff = new Runnable() { 52 50 @Override 53 51 public void run() { 54 if (dataSet.allPrimitives().isEmpty()) {55 JOptionPane.showMessageDialog(56 Main.parent,57 tr("No data found in file {0}.", filePath),58 tr("Open OSM file"),59 JOptionPane.INFORMATION_MESSAGE);60 }61 52 Main.main.addLayer(layer); 53 postLayerTask.run(); 62 54 layer.onPostLoadFromFile(); 63 55 } … … 69 61 } 70 62 } 63 64 /** 65 * Load osm data layer from InputStream. 66 * associatedFile can be null if the stream does not come from a file. 67 */ 68 public void loadLayer(InputStream in, final File associatedFile, final String layerName, ProgressMonitor progressMonitor) throws IllegalDataException { 69 final DataSet dataSet = OsmReader.parseDataSet(in, progressMonitor); 70 String name = associatedFile == null ? OsmDataLayer.createNewName() : associatedFile.getName(); 71 layer = new OsmDataLayer(dataSet, layerName, associatedFile); 72 postLayerTask = new Runnable() { 73 @Override 74 public void run() { 75 if (dataSet.allPrimitives().isEmpty()) { 76 String msg; 77 if (associatedFile == null) { 78 msg = tr("No data found for layer ''{0}''.", layerName); 79 } else { 80 msg = tr("No data found in file ''{0}''.", associatedFile.getPath()); 81 } 82 JOptionPane.showMessageDialog( 83 Main.parent, 84 msg, 85 tr("Open OSM file"), 86 JOptionPane.INFORMATION_MESSAGE); 87 } 88 layer.onPostLoadFromFile(); 89 } 90 }; 91 } 92 93 public OsmDataLayer getLayer() { 94 return layer; 95 } 96 97 public Runnable getPostLayerTask() { 98 return postLayerTask; 99 } 71 100 } -
trunk/src/org/openstreetmap/josm/tools/MultiMap.java
r3674 r4668 2 2 package org.openstreetmap.josm.tools; 3 3 4 import java.util.ArrayList; 4 5 import java.util.Collection; 5 6 import java.util.HashMap; 6 7 import java.util.LinkedHashSet; 8 import java.util.List; 7 9 import java.util.Map; 8 10 import java.util.Map.Entry; … … 13 15 * 14 16 * Corresponds to Google guava LinkedHashMultimap and Apache Collections MultiValueMap 15 * but it is an independent (simpl istic) implementation.17 * but it is an independent (simple) implementation. 16 18 * 17 19 */ … … 116 118 return map.values(); 117 119 } 120 121 /** 122 * Removes a cerain key=value mapping 123 * 124 * @return true, if something was removed 125 */ 126 public boolean remove(A key, B value) { 127 Set<B> values = get(key); 128 if (values != null) { 129 return values.remove(value); 130 } 131 return false; 132 } 133 134 /** 135 * Removes all mappings for a certain key 136 */ 137 public LinkedHashSet<B> remove(A key) { 138 return map.remove(key); 139 } 140 141 public String toString() { 142 List<String> entries = new ArrayList<String>(map.size()); 143 for (A key : map.keySet()) { 144 entries.add(key + "->{" + Utils.join(",", map.get(key)) + "}"); 145 } 146 return "(" + Utils.join(",", entries) + ")"; 147 } 118 148 } -
trunk/src/org/openstreetmap/josm/tools/Utils.java
r4408 r4668 19 19 import java.security.NoSuchAlgorithmException; 20 20 import java.text.MessageFormat; 21 import java.util.ArrayList; 21 22 import java.util.Collection; 23 import java.util.List; 22 24 23 25 /** … … 62 64 return new FilteredCollection<T>(collection, predicate); 63 65 } 64 66 65 67 /** 66 68 * Filter a collection by (sub)class. … … 233 235 /** 234 236 * <p>Utility method for closing an input stream.</p> 235 * 237 * 236 238 * @param is the input stream. May be null. 237 239 */ … … 247 249 /** 248 250 * <p>Utility method for closing an output stream.</p> 249 * 251 * 250 252 * @param os the output stream. May be null. 251 253 */ … … 261 263 /** 262 264 * <p>Utility method for closing a reader.</p> 263 * 265 * 264 266 * @param reader the reader. May be null. 265 267 */ … … 355 357 return new String(hexChars); 356 358 } 359 360 /** 361 * Topological sort. 362 * 363 * @param dependencies contains mappings (key -> value). In the final list of sorted objects, the key will come 364 * after the value. (In other words, the key depends on the value(s).) 365 * There must not be cyclic dependencies. 366 * @return the list of sorted objects 367 */ 368 public static <T> List<T> topologicalSort(final MultiMap<T,T> dependencies) { 369 MultiMap<T,T> deps = new MultiMap<T,T>(); 370 for (T key : dependencies.keySet()) { 371 deps.putVoid(key); 372 for (T val : dependencies.get(key)) { 373 deps.putVoid(val); 374 deps.put(key, val); 375 } 376 } 377 378 int size = deps.size(); 379 List<T> sorted = new ArrayList<T>(); 380 for (int i=0; i<size; ++i) { 381 T parentless = null; 382 for (T key : deps.keySet()) { 383 if (deps.get(key).size() == 0) { 384 parentless = key; 385 break; 386 } 387 } 388 if (parentless == null) throw new RuntimeException(); 389 sorted.add(parentless); 390 deps.remove(parentless); 391 for (T key : deps.keySet()) { 392 deps.remove(key, parentless); 393 } 394 } 395 if (sorted.size() != size) throw new RuntimeException(); 396 return sorted; 397 } 357 398 }
Note:
See TracChangeset
for help on using the changeset viewer.