Changeset 30671 in osm for applications/editors/josm/plugins/CommandLine
- Timestamp:
- 2014-09-23T12:02:21+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/CommandLine/src/CommandLine
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/Command.java
r30669 r30671 28 28 public boolean asynchronous; 29 29 30 public Command () { parameters = new ArrayList<Parameter>(); optParameters = new ArrayList<Parameter>(); currentParameterNum = 0; tracks = false; asynchronous = false; icon = ""; } 30 public Command () { 31 parameters = new ArrayList<>(); 32 optParameters = new ArrayList<>(); 33 currentParameterNum = 0; 34 tracks = false; 35 asynchronous = false; 36 icon = ""; 37 } 31 38 32 39 @SuppressWarnings("unchecked") … … 53 60 multiValue.add((OsmPrimitive)obj); 54 61 return true; 55 } 56 else { 57 if (nextParameter() && multiValue.size() > 0) { 58 return loadObject(obj); 59 } 60 } 61 } 62 else { 63 if (nextParameter()) { 62 } else if (nextParameter() && multiValue.size() > 0) { 64 63 return loadObject(obj); 65 64 } 65 } 66 else if (nextParameter()) { 67 return loadObject(obj); 66 68 } 67 69 } … … 167 169 168 170 public Collection<OsmPrimitive> getDepsObjects() { 169 ArrayList<OsmPrimitive> depsObjects = new ArrayList< OsmPrimitive>();171 ArrayList<OsmPrimitive> depsObjects = new ArrayList<>(); 170 172 for (Parameter parameter : parameters) { 171 173 if (!parameter.isOsm()) … … 184 186 185 187 public Collection<OsmPrimitive> getDepsObjects(Collection<OsmPrimitive> currentObjects, OsmPrimitive primitive) { 186 ArrayList<OsmPrimitive> depsObjects = new ArrayList< OsmPrimitive>();188 ArrayList<OsmPrimitive> depsObjects = new ArrayList<>(); 187 189 if (!currentObjects.contains(primitive)) { 188 190 if (primitive instanceof Way) { -
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r30670 r30671 314 314 Layer layer = Main.map.mapView.getActiveLayer(); 315 315 if (layer != null) { 316 if (layer instanceof ImageryLayer) { 317 } 318 else { 316 if (!(layer instanceof ImageryLayer)) { 319 317 List<ImageryLayer> imageryLayers = Main.map.mapView.getLayersOfType(ImageryLayer.class); 320 318 if (imageryLayers.size() == 1) { … … 501 499 Collection<OsmPrimitive> pObjects; 502 500 osmWriter.header(); 503 Collection<OsmPrimitive> contents = new ArrayList< OsmPrimitive>();501 Collection<OsmPrimitive> contents = new ArrayList<>(); 504 502 for (OsmPrimitive primitive : refObjects) { 505 503 contents.add(primitive); … … 518 516 if (!parameter.isOsm()) 519 517 continue; 520 contents = new ArrayList< OsmPrimitive>();518 contents = new ArrayList<>(); 521 519 osmWriter.header(); 522 520 pObjects = parameter.getParameterObjects(); -
applications/editors/josm/plugins/CommandLine/src/CommandLine/GpxFilter.java
r30669 r30671 36 36 Collection<WayPoint> currentSegment; 37 37 for (GpxTrack track : data.tracks) { 38 currentTrack = new ArrayList< Collection<WayPoint>>();38 currentTrack = new ArrayList<>(); 39 39 for (GpxTrackSegment segment : track.getSegments()) { 40 currentSegment = new ArrayList< WayPoint>();40 currentSegment = new ArrayList<>(); 41 41 for (WayPoint wp : segment.getWayPoints()) { 42 42 if ( bbox.bounds(wp.getCoor()) ) { … … 45 45 if (currentSegment.size() > 1) { 46 46 currentTrack.add(currentSegment); 47 currentSegment = new ArrayList< WayPoint>();47 currentSegment = new ArrayList<>(); 48 48 } 49 49 } … … 51 51 if (currentSegment.size() > 1) { 52 52 currentTrack.add(currentSegment); 53 currentSegment = new ArrayList< WayPoint>();53 currentSegment = new ArrayList<>(); 54 54 } 55 55 } -
applications/editors/josm/plugins/CommandLine/src/CommandLine/History.java
r25038 r30671 1 1 /* 2 2 * History.java 3 * 3 * 4 4 * Copyright 2010 Hind <foxhind@gmail.com> 5 * 5 * 6 6 */ 7 7 8 8 package CommandLine; 9 9 … … 11 11 12 12 public class History { 13 private LinkedList<String> historyList; 14 private int maxLen; 15 private int num; 16 17 public History(int len) { 18 num = 0; 19 maxLen = len; 20 historyList = new LinkedList<String>(); 21 } 22 23 public void addItem(String item) { 24 if (!item.equals("")) { 25 String prevItem = historyList.peekFirst(); 26 if (prevItem == null) { 27 historyList.addFirst(item); 28 } 29 else { 30 if (!prevItem.equalsIgnoreCase(item)) 31 historyList.addFirst(item); 32 } 33 if (historyList.size() > maxLen) { 34 historyList.removeLast(); 35 } 36 } 37 num = -1; 38 } 39 40 public String getPrevItem() { 41 num += 1; 42 if (num >= historyList.size()) { 43 num = historyList.size() - 1; 44 } 45 if (num < 0) { 46 num = -1; 47 return ""; 48 } 49 return historyList.get(num); 50 } 51 52 public String getLastItem() { 53 if (historyList.size() > 0) 54 return historyList.get(0); 55 return ""; 56 } 13 private final LinkedList<String> historyList; 14 private final int maxLen; 15 private int num; 57 16 58 public String getNextItem() { 59 num -= 1; 60 if (num < 0) { 61 num = -1; 62 return ""; 63 } 64 return historyList.get(num); 65 } 17 public History(int len) { 18 num = 0; 19 maxLen = len; 20 historyList = new LinkedList<>(); 21 } 22 23 public void addItem(String item) { 24 if (!item.equals("")) { 25 String prevItem = historyList.peekFirst(); 26 if (prevItem == null) { 27 historyList.addFirst(item); 28 } 29 else { 30 if (!prevItem.equalsIgnoreCase(item)) 31 historyList.addFirst(item); 32 } 33 if (historyList.size() > maxLen) { 34 historyList.removeLast(); 35 } 36 } 37 num = -1; 38 } 39 40 public String getPrevItem() { 41 num += 1; 42 if (num >= historyList.size()) { 43 num = historyList.size() - 1; 44 } 45 if (num < 0) { 46 num = -1; 47 return ""; 48 } 49 return historyList.get(num); 50 } 51 52 public String getLastItem() { 53 if (historyList.size() > 0) 54 return historyList.get(0); 55 return ""; 56 } 57 58 public String getNextItem() { 59 num -= 1; 60 if (num < 0) { 61 num = -1; 62 return ""; 63 } 64 return historyList.get(num); 65 } 66 66 } 67 67 -
applications/editors/josm/plugins/CommandLine/src/CommandLine/Loader.java
r30669 r30671 31 31 dirToScan = dir; 32 32 currentTag = ""; 33 loadingCommands = new ArrayList< Command>();33 loadingCommands = new ArrayList<>(); 34 34 } 35 35 -
applications/editors/josm/plugins/CommandLine/src/CommandLine/OsmToCmd.java
r30669 r30671 54 54 private final CommandLine parentPlugin; 55 55 private final DataSet targetDataSet; 56 private final LinkedList<Command> cmds = new LinkedList< Command>();56 private final LinkedList<Command> cmds = new LinkedList<>(); 57 57 private final HashMap<PrimitiveId, OsmPrimitive> externalIdMap; // Maps external ids to internal primitives 58 58 … … 60 60 this.parentPlugin = parentPlugin; 61 61 this.targetDataSet = targetDataSet; 62 externalIdMap = new HashMap< PrimitiveId, OsmPrimitive>();62 externalIdMap = new HashMap<>(); 63 63 } 64 64 … … 99 99 private OsmPrimitive currentPrimitive; 100 100 //private long currentExternalId; 101 private final List<Node> currentWayNodes = new ArrayList< Node>();102 private final List<RelationMember> currentRelationMembers = new ArrayList< RelationMember>();101 private final List<Node> currentWayNodes = new ArrayList<>(); 102 private final List<RelationMember> currentRelationMembers = new ArrayList<>(); 103 103 104 104 @Override … … 108 108 if (atts == null) { 109 109 throwException(tr("Missing mandatory attribute ''{0}'' of XML element {1}.", "version", "osm")); 110 return; 110 111 } 111 112 String v = atts.getValue("version"); 112 113 if (v == null) { 113 114 throwException(tr("Missing mandatory attribute ''{0}''.", "version")); 115 return; 114 116 } 115 117 if ( !(v.equals("0.6")) ) { 116 118 throwException(tr("Unsupported version: {0}", v)); 119 return; 117 120 } 118 121 … … 224 227 if (key == null || value == null) { 225 228 throwException(tr("Missing key or value attribute in tag.")); 229 return; 226 230 } 227 231 currentPrimitive.put(key.intern(), value.intern()); -
applications/editors/josm/plugins/CommandLine/src/CommandLine/Parameter.java
r29505 r30671 1 1 /* 2 2 * Parameter.java 3 * 3 * 4 4 * Copyright 2011 Hind <foxhind@gmail.com> 5 * 5 * 6 6 */ 7 7 8 8 package CommandLine; 9 9 … … 16 16 17 17 public class Parameter { 18 public boolean required; 19 public Type type; 20 public String name; 21 public String description; 22 private Object value; 23 private ArrayList<OsmPrimitive> valueList; 24 protected float maxVal; 25 protected float minVal; 26 protected int maxInstances; 27 28 public Parameter () { required = false; maxInstances = 1; maxVal = 0; minVal = 0; value = ""; valueList = new ArrayList<OsmPrimitive>(); } 29 public String getValue() { 30 String out = ""; 31 switch (type) { 32 case POINT: 33 out = (String)value; 34 break; 35 case LENGTH: 36 out = String.valueOf(value); 37 break; 38 case NATURAL: 39 out = String.valueOf(value); 40 break; 41 case STRING: 42 out = String.valueOf(value); 43 break; 44 case RELAY: 45 out = String.valueOf(((Relay)value).getValue()); 46 break; 47 case NODE: 48 out = String.valueOf(valueList.size()) + " " + tr("nodes"); 49 break; 50 case WAY: 51 out = String.valueOf(valueList.size()) + " " + tr("ways"); 52 break; 53 case RELATION: 54 out = String.valueOf(valueList.size()) + " " + tr("relations"); 55 break; 56 case ANY: 57 out = String.valueOf(valueList.size()) + " " + tr("OSM objects"); 58 break; 59 case USERNAME: 60 out = String.valueOf(value); 61 break; 62 case IMAGERYURL: 63 out = String.valueOf(value); 64 break; 65 case IMAGERYOFFSET: 66 out = String.valueOf(value); 67 break; 68 } 69 return out; 70 } 18 public boolean required; 19 public Type type; 20 public String name; 21 public String description; 22 private Object value; 23 private final ArrayList<OsmPrimitive> valueList; 24 protected float maxVal; 25 protected float minVal; 26 protected int maxInstances; 71 27 72 public Object getRawValue() { 73 return value; 74 } 28 public Parameter() { 29 required = false; 30 maxInstances = 1; 31 maxVal = 0; 32 minVal = 0; 33 value = ""; 34 valueList = new ArrayList<>(); 35 } 75 36 76 public ArrayList<OsmPrimitive> getValueList() { 77 return valueList; 78 } 37 public String getValue() { 38 String out = ""; 39 switch (type) { 40 case POINT: 41 out = (String)value; 42 break; 43 case LENGTH: 44 out = String.valueOf(value); 45 break; 46 case NATURAL: 47 out = String.valueOf(value); 48 break; 49 case STRING: 50 out = String.valueOf(value); 51 break; 52 case RELAY: 53 out = String.valueOf(((Relay)value).getValue()); 54 break; 55 case NODE: 56 out = String.valueOf(valueList.size()) + " " + tr("nodes"); 57 break; 58 case WAY: 59 out = String.valueOf(valueList.size()) + " " + tr("ways"); 60 break; 61 case RELATION: 62 out = String.valueOf(valueList.size()) + " " + tr("relations"); 63 break; 64 case ANY: 65 out = String.valueOf(valueList.size()) + " " + tr("OSM objects"); 66 break; 67 case USERNAME: 68 out = String.valueOf(value); 69 break; 70 case IMAGERYURL: 71 out = String.valueOf(value); 72 break; 73 case IMAGERYOFFSET: 74 out = String.valueOf(value); 75 break; 76 } 77 return out; 78 } 79 79 80 public void setValue(Object obj) { 81 if (type == Type.RELAY && obj instanceof String && value instanceof Relay) { 82 ((Relay)value).setValue((String)obj); 83 } 84 else 85 value = obj; 86 } 80 public Object getRawValue() { 81 return value; 82 } 87 83 88 public Collection<OsmPrimitive> getParameterObjects() { 89 ArrayList<OsmPrimitive> pObjects = new ArrayList<OsmPrimitive>(); 90 if (isOsm()) { 91 if (maxInstances == 1) { 92 pObjects.add((OsmPrimitive)value); 93 } 94 else { 95 return valueList; 96 } 97 } 98 return pObjects; 99 } 84 public ArrayList<OsmPrimitive> getValueList() { 85 return valueList; 86 } 100 87 101 public boolean isOsm() { 102 return type == Type.NODE || type == Type.WAY || type == Type.RELATION || type == Type.ANY; 103 } 88 public void setValue(Object obj) { 89 if (type == Type.RELAY && obj instanceof String && value instanceof Relay) { 90 ((Relay)value).setValue((String)obj); 91 } 92 else 93 value = obj; 94 } 95 96 public Collection<OsmPrimitive> getParameterObjects() { 97 ArrayList<OsmPrimitive> pObjects = new ArrayList<>(); 98 if (isOsm()) { 99 if (maxInstances == 1) { 100 pObjects.add((OsmPrimitive)value); 101 } 102 else { 103 return valueList; 104 } 105 } 106 return pObjects; 107 } 108 109 public boolean isOsm() { 110 return type == Type.NODE || type == Type.WAY || type == Type.RELATION || type == Type.ANY; 111 } 104 112 } -
applications/editors/josm/plugins/CommandLine/src/CommandLine/PointAction.java
r30669 r30671 47 47 currentCursor = cursorCrosshair; 48 48 nearestNode = null; 49 pointList = new ArrayList< String>();49 pointList = new ArrayList<>(); 50 50 } 51 51 -
applications/editors/josm/plugins/CommandLine/src/CommandLine/Relay.java
r25038 r30671 1 1 /* 2 2 * Relay.java 3 * 3 * 4 4 * Copyright 2010 Hind <foxhind@gmail.com> 5 * 5 * 6 6 */ 7 7 … … 11 11 12 12 public class Relay { 13 static String marker = "\u0332"; 14 private String optionsString; 15 privateHashMap<String, String> options;16 private String value; 13 static String marker = "\u0332"; 14 private String optionsString; 15 private final HashMap<String, String> options; 16 private String value; 17 17 18 public Relay() { 19 optionsString = ""; 20 value = ""; 21 options = new HashMap< String, String>();22 } 18 public Relay() { 19 optionsString = ""; 20 value = ""; 21 options = new HashMap<>(); 22 } 23 23 24 public void setValue(String value) { 25 if (options.containsKey(value)) 26 this.value = options.get(value); 27 else if (options.containsValue(value)) 28 this.value = value; 29 } 24 public void setValue(String value) { 25 if (options.containsKey(value)) 26 this.value = options.get(value); 27 else if (options.containsValue(value)) 28 this.value = value; 29 } 30 30 31 public void addValue(String value) { 32 String letter = null; 33 if (!(options.containsValue(value))) { 34 int i = 0; 35 for (; i < value.length() ; i++) { 36 letter = value.substring(i, i + 1).toLowerCase(); 37 if (!options.containsKey(letter)) 38 break; 39 } 40 if (i == value.length()) { 41 letter = String.valueOf(System.currentTimeMillis()); 42 optionsString = optionsString + (optionsString.length() == 0 ? "" : ", ") + value; 43 } 44 else 45 optionsString = optionsString + (optionsString.length() == 0 ? "" : ", ") + value.substring(0, i) + marker + value.substring(i); 46 options.put(letter, value); 31 public void addValue(String value) { 32 String letter = null; 33 if (!(options.containsValue(value))) { 34 int i = 0; 35 for (; i < value.length() ; i++) { 36 letter = value.substring(i, i + 1).toLowerCase(); 37 if (!options.containsKey(letter)) 38 break; 39 } 40 if (i == value.length()) { 41 letter = String.valueOf(System.currentTimeMillis()); 42 optionsString = optionsString + (optionsString.length() == 0 ? "" : ", ") + value; 43 } 44 else 45 optionsString = optionsString + (optionsString.length() == 0 ? "" : ", ") + value.substring(0, i) + marker + value.substring(i); 46 options.put(letter, value); 47 } 48 this.value = value; 47 49 } 48 this.value = value;49 }50 50 51 public String getValue() { 52 return value; 53 } 51 public String getValue() { 52 return value; 53 } 54 54 55 public boolean isCorrectValue(String value) { 56 return options.containsValue(value) || options.containsKey(value.toLowerCase()); 57 } 55 public boolean isCorrectValue(String value) { 56 return options.containsValue(value) || options.containsKey(value.toLowerCase()); 57 } 58 58 59 public String getOptionsString() { 60 return optionsString; 61 } 59 public String getOptionsString() { 60 return optionsString; 61 } 62 62 }
Note:
See TracChangeset
for help on using the changeset viewer.