source: josm/trunk/src/org/openstreetmap/josm/actions/UpdateDataAction.java@ 7149

Last change on this file since 7149 was 7005, checked in by Don-vip, 10 years ago

see #8465 - use diamond operator where applicable

  • Property svn:eol-style set to native
File size: 3.6 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9import java.awt.geom.Area;
10import java.util.ArrayList;
11import java.util.List;
12import java.util.concurrent.Future;
13
14import org.openstreetmap.josm.Main;
15import org.openstreetmap.josm.actions.downloadtasks.DownloadTaskList;
16import org.openstreetmap.josm.data.osm.DataSource;
17import org.openstreetmap.josm.gui.layer.OsmDataLayer;
18import org.openstreetmap.josm.gui.progress.PleaseWaitProgressMonitor;
19import org.openstreetmap.josm.tools.Shortcut;
20
21public class UpdateDataAction extends JosmAction{
22 public UpdateDataAction() {
23 super(tr("Update data"),
24 "updatedata",
25 tr("Updates the objects in the active data layer from the server."),
26 Shortcut.registerShortcut("file:updatedata",
27 tr("File: {0}", tr("Update data")),
28 KeyEvent.VK_U, Shortcut.CTRL),
29 true);
30 putValue("help", ht("/Action/UpdateData"));
31 }
32
33 /**
34 * Refreshes the enabled state
35 *
36 */
37 @Override
38 protected void updateEnabledState() {
39 setEnabled(getEditLayer() != null);
40 }
41
42 public void updateLayer(OsmDataLayer layer) {
43
44 }
45
46 @Override
47 public void actionPerformed(ActionEvent e) {
48 if (! isEnabled())
49 return;
50 if (getEditLayer() == null)
51 return;
52
53 List<Area> areas = new ArrayList<>();
54 for(DataSource ds : getEditLayer().data.dataSources) {
55 areas.add(new Area(ds.bounds.asRect()));
56 }
57
58 // The next two blocks removes every intersection from every DataSource Area
59 // This prevents downloading the same data numerous times at intersections
60 // and also skips smaller bounding boxes that are contained within larger ones
61 // entirely.
62 for(int i = 0; i < areas.size(); i++) {
63 for(int j = i+1; j < areas.size(); j++) {
64 areas.get(i).subtract(areas.get(j));
65 }
66 }
67
68 for(int i = areas.size()-1; i > 0 ; i--) {
69 for(int j = i-1; j > 0; j--) {
70 areas.get(i).subtract(areas.get(j));
71 }
72 }
73
74 List<Area> areasToDownload = new ArrayList<>();
75 for(Area a : areas) {
76 if(a.isEmpty()) {
77 continue;
78 }
79 areasToDownload.add(a);
80 }
81
82 if(areasToDownload.isEmpty()) {
83 // no bounds defined in the dataset? we update all primitives in the data set
84 // using a series of multi fetch requests
85 //
86 UpdateSelectionAction.updatePrimitives(getEditLayer().data.allPrimitives());
87 } else {
88 // bounds defined? => use the bbox downloader
89 //
90 final PleaseWaitProgressMonitor monitor = new PleaseWaitProgressMonitor(tr("Download data"));
91 final Future<?> future = new DownloadTaskList().download(false /* no new layer */, areasToDownload, true, false, monitor);
92 Main.worker.submit(
93 new Runnable() {
94 @Override
95 public void run() {
96 try {
97 future.get();
98 } catch(Exception e) {
99 Main.error(e);
100 return;
101 }
102 monitor.close();
103 }
104 }
105 );
106 }
107 }
108}
Note: See TracBrowser for help on using the repository browser.