- Timestamp:
- 2016-09-27T20:47:19+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java
r10125 r11061 5 5 6 6 import java.util.ArrayList; 7 import java.util.Arrays; 7 8 import java.util.Collection; 8 9 import java.util.HashMap; … … 10 11 import java.util.Locale; 11 12 import java.util.Map; 13 import java.util.function.Function; 12 14 import java.util.regex.Matcher; 13 15 import java.util.regex.Pattern; … … 16 18 import org.openstreetmap.josm.data.correction.RoleCorrection; 17 19 import org.openstreetmap.josm.data.correction.TagCorrection; 20 import org.openstreetmap.josm.data.osm.Node; 18 21 import org.openstreetmap.josm.data.osm.OsmPrimitive; 19 22 import org.openstreetmap.josm.data.osm.OsmUtils; … … 64 67 } 65 68 66 private static class StringSwitcher { 69 private interface IStringSwitcher extends Function<String, String> { 70 71 static IStringSwitcher combined(IStringSwitcher... switchers) { 72 return key -> { 73 for (IStringSwitcher switcher : switchers) { 74 final String newKey = switcher.apply(key); 75 if (!key.equals(newKey)) { 76 return newKey; 77 } 78 } 79 return key; 80 }; 81 } 82 83 static IStringSwitcher compassCardinal() { 84 final List<String> cardinal = Arrays.asList( 85 "N", "NNE", "NE", "ENE", "E", "ESE", "SE", "SSE", 86 "S", "SSW", "SW", "WSW", "W", "WNW", "NW", "NNW"); 87 return key -> { 88 final int index = cardinal.indexOf(key); 89 if (index >= 0) { 90 return cardinal.get((index + cardinal.size() / 2) % cardinal.size()); 91 } 92 return key; 93 }; 94 } 95 96 static IStringSwitcher compassDegrees() { 97 return key -> { 98 if (!key.matches("\\d+")) { 99 return key; 100 } 101 final int i = Integer.parseInt(key); 102 if (i < 0 || i > 360) { 103 return key; 104 } 105 return Integer.toString((i + 180) % 360); 106 }; 107 } 108 109 static IStringSwitcher compass() { 110 return combined( 111 IStringSwitcher.compassCardinal(), 112 IStringSwitcher.compassDegrees() 113 ); 114 } 115 } 116 117 private static class StringSwitcher implements IStringSwitcher { 67 118 68 119 private final String a; … … 76 127 } 77 128 129 @Override 78 130 public String apply(String text) { 79 131 Matcher m = pattern.matcher(text); … … 128 180 newValue = OsmUtils.reverseval; 129 181 } 130 for (StringSwitcher prefixSuffixSwitcher : stringSwitchers) { 131 newKey = prefixSuffixSwitcher.apply(key); 132 if (!key.equals(newKey)) { 133 break; 134 } 135 } 136 } else if (key.startsWith("incline") || key.endsWith("incline") 137 || key.startsWith("direction") || key.endsWith("direction")) { 182 newKey = COMBINED_SWITCHERS.apply(key); 183 } else if (key.startsWith("incline") || key.endsWith("incline")) { 138 184 newValue = UP_DOWN.apply(value); 139 185 if (newValue.equals(value)) { 140 186 newValue = invertNumber(value); 187 } 188 } else if (key.startsWith("direction") || key.endsWith("direction")) { 189 newValue = COMBINED_SWITCHERS.apply(value); 190 if (newValue.equals(value)) { 191 newValue = IStringSwitcher.compass().apply(value); 141 192 } 142 193 } else if (key.endsWith(":forward") || key.endsWith(":backward")) { … … 144 195 newKey = FORWARD_BACKWARD.apply(key); 145 196 } else if (!ignoreKeyForCorrection(key)) { 146 for (StringSwitcher prefixSuffixSwitcher : stringSwitchers) { 147 newKey = prefixSuffixSwitcher.apply(key); 148 if (!key.equals(newKey)) { 149 break; 150 } 151 newValue = prefixSuffixSwitcher.apply(value); 152 if (!value.equals(newValue)) { 153 break; 154 } 155 } 197 newKey = COMBINED_SWITCHERS.apply(key); 198 newValue = COMBINED_SWITCHERS.apply(value); 156 199 } 157 200 return new Tag(newKey, newValue); … … 161 204 private static final StringSwitcher FORWARD_BACKWARD = new StringSwitcher("forward", "backward"); 162 205 private static final StringSwitcher UP_DOWN = new StringSwitcher("up", "down"); 163 164 private static final StringSwitcher[] stringSwitchers = new StringSwitcher[] { 206 private static final IStringSwitcher COMBINED_SWITCHERS = IStringSwitcher.combined( 165 207 new StringSwitcher("left", "right"), 166 208 new StringSwitcher("forwards", "backwards"), … … 168 210 new StringSwitcher("north", "south"), 169 211 FORWARD_BACKWARD, UP_DOWN 170 };212 ); 171 213 172 214 /** … … 207 249 static List<TagCorrection> getTagCorrections(Tagged way) { 208 250 List<TagCorrection> tagCorrections = new ArrayList<>(); 209 for (String key : way.keySet()) { 210 String value = way.get(key); 251 for (Map.Entry<String, String> entry : way.getKeys().entrySet()) { 252 final String key = entry.getKey(); 253 final String value = entry.getValue(); 211 254 Tag newTag = TagSwitcher.apply(key, value); 212 255 String newKey = newTag.getKey(); … … 245 288 } 246 289 247 boolean found = false; 248 String newRole = null; 249 for (StringSwitcher prefixSuffixSwitcher : stringSwitchers) { 250 newRole = prefixSuffixSwitcher.apply(member.getRole()); 251 if (!newRole.equals(member.getRole())) { 252 found = true; 253 break; 254 } 255 } 256 257 if (found) { 290 final String newRole = COMBINED_SWITCHERS.apply(member.getRole()); 291 if (!member.getRole().equals(newRole)) { 258 292 roleCorrections.add(new RoleCorrection(relation, position, member, newRole)); 259 293 } … … 263 297 } 264 298 return roleCorrections; 299 } 300 301 static Map<OsmPrimitive, List<TagCorrection>> getTagCorrectionsMap(Way way) { 302 Map<OsmPrimitive, List<TagCorrection>> tagCorrectionsMap = new HashMap<>(); 303 List<TagCorrection> tagCorrections = getTagCorrections((Tagged) way); 304 if (!tagCorrections.isEmpty()) { 305 tagCorrectionsMap.put(way, tagCorrections); 306 } 307 for (Node node : way.getNodes()) { 308 final List<TagCorrection> corrections = getTagCorrections(node); 309 if (!corrections.isEmpty()) { 310 tagCorrectionsMap.put(node, corrections); 311 } 312 } 313 return tagCorrectionsMap; 265 314 } 266 315 267 316 @Override 268 317 public Collection<Command> execute(Way oldway, Way way) throws UserCancelException { 269 Map<OsmPrimitive, List<TagCorrection>> tagCorrectionsMap = new HashMap<>(); 270 List<TagCorrection> tagCorrections = getTagCorrections(way); 271 if (!tagCorrections.isEmpty()) { 272 tagCorrectionsMap.put(way, tagCorrections); 273 } 318 Map<OsmPrimitive, List<TagCorrection>> tagCorrectionsMap = getTagCorrectionsMap(way); 274 319 275 320 Map<OsmPrimitive, List<RoleCorrection>> roleCorrectionMap = new HashMap<>(); -
trunk/src/org/openstreetmap/josm/data/correction/TagCorrection.java
r10125 r11061 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.data.correction; 3 4 import java.util.Objects; 3 5 4 6 /** … … 47 49 return !newValue.equals(oldValue); 48 50 } 51 52 @Override 53 public boolean equals(Object o) { 54 if (this == o) return true; 55 if (!(o instanceof TagCorrection)) return false; 56 TagCorrection that = (TagCorrection) o; 57 return Objects.equals(oldKey, that.oldKey) && 58 Objects.equals(newKey, that.newKey) && 59 Objects.equals(oldValue, that.oldValue) && 60 Objects.equals(newValue, that.newValue); 61 } 62 63 @Override 64 public int hashCode() { 65 return Objects.hash(oldKey, newKey, oldValue, newValue); 66 } 49 67 }
Note:
See TracChangeset
for help on using the changeset viewer.