1 | // License: GPL. For details, see LICENSE file.
|
---|
2 | package org.openstreetmap.josm.io.remotecontrol.handler;
|
---|
3 |
|
---|
4 | import static org.openstreetmap.josm.tools.I18n.tr;
|
---|
5 |
|
---|
6 | import java.awt.Point;
|
---|
7 | import java.util.ArrayList;
|
---|
8 | import java.util.Arrays;
|
---|
9 | import java.util.Collections;
|
---|
10 | import java.util.HashMap;
|
---|
11 | import java.util.LinkedList;
|
---|
12 | import java.util.List;
|
---|
13 | import java.util.Map;
|
---|
14 | import java.util.Map.Entry;
|
---|
15 |
|
---|
16 | import org.openstreetmap.josm.Main;
|
---|
17 | import org.openstreetmap.josm.actions.AutoScaleAction;
|
---|
18 | import org.openstreetmap.josm.command.AddCommand;
|
---|
19 | import org.openstreetmap.josm.command.Command;
|
---|
20 | import org.openstreetmap.josm.command.SequenceCommand;
|
---|
21 | import org.openstreetmap.josm.data.coor.LatLon;
|
---|
22 | import org.openstreetmap.josm.data.osm.Node;
|
---|
23 | import org.openstreetmap.josm.data.osm.OsmPrimitive;
|
---|
24 | import org.openstreetmap.josm.data.osm.Way;
|
---|
25 | import org.openstreetmap.josm.gui.util.GuiHelper;
|
---|
26 | import org.openstreetmap.josm.io.remotecontrol.AddTagsDialog;
|
---|
27 | import org.openstreetmap.josm.io.remotecontrol.PermissionPrefWithDefault;
|
---|
28 |
|
---|
29 | /**
|
---|
30 | * Adds a way to the current dataset. For instance, {@code /add_way?way=lat1,lon2;lat2,lon2}.
|
---|
31 | */
|
---|
32 | public class AddWayHandler extends RequestHandler {
|
---|
33 |
|
---|
34 | /**
|
---|
35 | * The remote control command name used to add a way.
|
---|
36 | */
|
---|
37 | public static final String command = "add_way";
|
---|
38 |
|
---|
39 | private final List<LatLon> allCoordinates = new ArrayList<>();
|
---|
40 |
|
---|
41 | private Way way;
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * The place to remeber already added nodes (they are reused if needed @since 5845
|
---|
45 | */
|
---|
46 | private Map<LatLon, Node> addedNodes;
|
---|
47 |
|
---|
48 | @Override
|
---|
49 | public String[] getMandatoryParams() {
|
---|
50 | return new String[]{"way"};
|
---|
51 | }
|
---|
52 |
|
---|
53 | @Override
|
---|
54 | public String[] getOptionalParams() {
|
---|
55 | return new String[] {"addtags"};
|
---|
56 | }
|
---|
57 |
|
---|
58 | @Override
|
---|
59 | public String getUsage() {
|
---|
60 | return "adds a way (given by a semicolon separated sequence of lat,lon pairs) to the current dataset";
|
---|
61 | }
|
---|
62 |
|
---|
63 | @Override
|
---|
64 | public String[] getUsageExamples() {
|
---|
65 | return new String[] {
|
---|
66 | "/add_way?way=53.2,13.3;53.3,13.3;53.3,13.2",
|
---|
67 | "/add_way?&addtags=building=yes&way=45.437213,-2.810792;45.437988,-2.455983;45.224080,-2.455036;45.223302,-2.809845;45.437213,-2.810792"
|
---|
68 | };
|
---|
69 | }
|
---|
70 |
|
---|
71 | @Override
|
---|
72 | protected void handleRequest() throws RequestHandlerErrorException, RequestHandlerBadRequestException {
|
---|
73 | GuiHelper.runInEDTAndWait(new Runnable() {
|
---|
74 | @Override public void run() {
|
---|
75 | way = addWay();
|
---|
76 | }
|
---|
77 | });
|
---|
78 | // parse parameter addtags=tag1=value1|tag2=value2
|
---|
79 | AddTagsDialog.addTags(args, sender, Collections.singleton(way));
|
---|
80 | }
|
---|
81 |
|
---|
82 | @Override
|
---|
83 | public String getPermissionMessage() {
|
---|
84 | return tr("Remote Control has been asked to create a new way.");
|
---|
85 | }
|
---|
86 |
|
---|
87 | @Override
|
---|
88 | public PermissionPrefWithDefault getPermissionPref() {
|
---|
89 | return PermissionPrefWithDefault.CREATE_OBJECTS;
|
---|
90 | }
|
---|
91 |
|
---|
92 | @Override
|
---|
93 | protected void validateRequest() throws RequestHandlerBadRequestException {
|
---|
94 | allCoordinates.clear();
|
---|
95 | for (String coordinatesString : args.get("way").split(";\\s*")) {
|
---|
96 | String[] coordinates = coordinatesString.split(",\\s*", 2);
|
---|
97 | if (coordinates.length < 2) {
|
---|
98 | throw new RequestHandlerBadRequestException(
|
---|
99 | tr("Invalid coordinates: {0}", Arrays.toString(coordinates)));
|
---|
100 | }
|
---|
101 | try {
|
---|
102 | double lat = Double.parseDouble(coordinates[0]);
|
---|
103 | double lon = Double.parseDouble(coordinates[1]);
|
---|
104 | allCoordinates.add(new LatLon(lat, lon));
|
---|
105 | } catch (NumberFormatException e) {
|
---|
106 | throw new RequestHandlerBadRequestException("NumberFormatException ("+e.getMessage()+")", e);
|
---|
107 | }
|
---|
108 | }
|
---|
109 | if (allCoordinates.isEmpty()) {
|
---|
110 | throw new RequestHandlerBadRequestException(tr("Empty ways"));
|
---|
111 | } else if (allCoordinates.size() == 1) {
|
---|
112 | throw new RequestHandlerBadRequestException(tr("One node ways"));
|
---|
113 | }
|
---|
114 | if (!Main.main.hasEditLayer()) {
|
---|
115 | throw new RequestHandlerBadRequestException(tr("There is no layer opened to add way"));
|
---|
116 | }
|
---|
117 | }
|
---|
118 |
|
---|
119 | /**
|
---|
120 | * Find the node with almost the same ccords in dataset or in already added nodes
|
---|
121 | * @since 5845
|
---|
122 | */
|
---|
123 | Node findOrCreateNode(LatLon ll, List<Command> commands) {
|
---|
124 | Node nd = null;
|
---|
125 |
|
---|
126 | if (Main.isDisplayingMapView()) {
|
---|
127 | Point p = Main.map.mapView.getPoint(ll);
|
---|
128 | nd = Main.map.mapView.getNearestNode(p, OsmPrimitive.isUsablePredicate);
|
---|
129 | if (nd != null && nd.getCoor().greatCircleDistance(ll) > Main.pref.getDouble("remote.tolerance", 0.1)) {
|
---|
130 | nd = null; // node is too far
|
---|
131 | }
|
---|
132 | }
|
---|
133 |
|
---|
134 | Node prev = null;
|
---|
135 | for (Entry<LatLon, Node> entry : addedNodes.entrySet()) {
|
---|
136 | LatLon lOld = entry.getKey();
|
---|
137 | if (lOld.greatCircleDistance(ll) < Main.pref.getDouble("remotecontrol.tolerance", 0.1)) {
|
---|
138 | prev = entry.getValue();
|
---|
139 | break;
|
---|
140 | }
|
---|
141 | }
|
---|
142 |
|
---|
143 | if (prev != null) {
|
---|
144 | nd = prev;
|
---|
145 | } else if (nd == null) {
|
---|
146 | nd = new Node(ll);
|
---|
147 | // Now execute the commands to add this node.
|
---|
148 | commands.add(new AddCommand(nd));
|
---|
149 | addedNodes.put(ll, nd);
|
---|
150 | }
|
---|
151 | return nd;
|
---|
152 | }
|
---|
153 |
|
---|
154 | /*
|
---|
155 | * This function creates the way with given coordinates of nodes
|
---|
156 | */
|
---|
157 | private Way addWay() {
|
---|
158 | addedNodes = new HashMap<>();
|
---|
159 | Way way = new Way();
|
---|
160 | List<Command> commands = new LinkedList<>();
|
---|
161 | for (LatLon ll : allCoordinates) {
|
---|
162 | Node node = findOrCreateNode(ll, commands);
|
---|
163 | way.addNode(node);
|
---|
164 | }
|
---|
165 | allCoordinates.clear();
|
---|
166 | commands.add(new AddCommand(way));
|
---|
167 | Main.main.undoRedo.add(new SequenceCommand(tr("Add way"), commands));
|
---|
168 | Main.main.getCurrentDataSet().setSelected(way);
|
---|
169 | if (PermissionPrefWithDefault.CHANGE_VIEWPORT.isAllowed()) {
|
---|
170 | AutoScaleAction.autoScale("selection");
|
---|
171 | } else {
|
---|
172 | Main.map.mapView.repaint();
|
---|
173 | }
|
---|
174 | return way;
|
---|
175 | }
|
---|
176 | }
|
---|