source: josm/trunk/src/org/openstreetmap/josm/io/OsmChangesetParser.java@ 7321

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

fix #10121 - Add a new look-and-feel preference to display ISO 8601 dates globally

  • Property svn:eol-style set to native
File size: 9.0 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.io.InputStream;
7import java.io.InputStreamReader;
8import java.nio.charset.StandardCharsets;
9import java.text.MessageFormat;
10import java.util.LinkedList;
11import java.util.List;
12
13import javax.xml.parsers.ParserConfigurationException;
14import javax.xml.parsers.SAXParserFactory;
15
16import org.openstreetmap.josm.data.coor.LatLon;
17import org.openstreetmap.josm.data.osm.Changeset;
18import org.openstreetmap.josm.data.osm.User;
19import org.openstreetmap.josm.gui.progress.ProgressMonitor;
20import org.openstreetmap.josm.tools.XmlParsingException;
21import org.openstreetmap.josm.tools.date.DateUtils;
22import org.xml.sax.Attributes;
23import org.xml.sax.InputSource;
24import org.xml.sax.Locator;
25import org.xml.sax.SAXException;
26import org.xml.sax.helpers.DefaultHandler;
27
28/**
29 * Parser for a list of changesets, encapsulated in an OSM data set structure.
30 * Example:
31 * <pre>
32 * &lt;osm version="0.6" generator="OpenStreetMap server"&gt;
33 * &lt;changeset id="143" user="guggis" uid="1" created_at="2009-09-08T20:35:39Z" closed_at="2009-09-08T21:36:12Z" open="false" min_lon="7.380925" min_lat="46.9215164" max_lon="7.3984718" max_lat="46.9226502"&gt;
34 * &lt;tag k="asdfasdf" v="asdfasdf"/&gt;
35 * &lt;tag k="created_by" v="JOSM/1.5 (UNKNOWN de)"/&gt;
36 * &lt;tag k="comment" v="1234"/&gt;
37 * &lt;/changeset&gt;
38 * &lt;/osm&gt;
39 * </pre>
40 *
41 */
42public final class OsmChangesetParser {
43 private final List<Changeset> changesets;
44
45 private OsmChangesetParser() {
46 changesets = new LinkedList<>();
47 }
48
49 /**
50 * Returns the parsed changesets.
51 * @return the parsed changesets
52 */
53 public List<Changeset> getChangesets() {
54 return changesets;
55 }
56
57 private class Parser extends DefaultHandler {
58 private Locator locator;
59
60 @Override
61 public void setDocumentLocator(Locator locator) {
62 this.locator = locator;
63 }
64
65 protected void throwException(String msg) throws XmlParsingException {
66 throw new XmlParsingException(msg).rememberLocation(locator);
67 }
68
69 /** The current changeset */
70 private Changeset current = null;
71
72 protected void parseChangesetAttributes(Changeset cs, Attributes atts) throws XmlParsingException {
73 // -- id
74 String value = atts.getValue("id");
75 if (value == null) {
76 throwException(tr("Missing mandatory attribute ''{0}''.", "id"));
77 }
78 int id = 0;
79 try {
80 id = Integer.parseInt(value);
81 } catch(NumberFormatException e) {
82 throwException(tr("Illegal value for attribute ''{0}''. Got ''{1}''.", "id", value));
83 }
84 if (id <= 0) {
85 throwException(tr("Illegal numeric value for attribute ''{0}''. Got ''{1}''.", "id", id));
86 }
87 current.setId(id);
88
89 // -- user
90 String user = atts.getValue("user");
91 String uid = atts.getValue("uid");
92 current.setUser(createUser(uid, user));
93
94 // -- created_at
95 value = atts.getValue("created_at");
96 if (value == null) {
97 current.setCreatedAt(null);
98 } else {
99 current.setCreatedAt(DateUtils.fromString(value));
100 }
101
102 // -- closed_at
103 value = atts.getValue("closed_at");
104 if (value == null) {
105 current.setClosedAt(null);
106 } else {
107 current.setClosedAt(DateUtils.fromString(value));
108 }
109
110 // -- open
111 value = atts.getValue("open");
112 if (value == null) {
113 throwException(tr("Missing mandatory attribute ''{0}''.", "open"));
114 } else if ("true".equals(value)) {
115 current.setOpen(true);
116 } else if ("false".equals(value)) {
117 current.setOpen(false);
118 } else {
119 throwException(tr("Illegal boolean value for attribute ''{0}''. Got ''{1}''.", "open", value));
120 }
121
122 // -- min_lon and min_lat
123 String min_lon = atts.getValue("min_lon");
124 String min_lat = atts.getValue("min_lat");
125 String max_lon = atts.getValue("max_lon");
126 String max_lat = atts.getValue("max_lat");
127 if (min_lon != null && min_lat != null && max_lon != null && max_lat != null) {
128 double minLon = 0;
129 try {
130 minLon = Double.parseDouble(min_lon);
131 } catch(NumberFormatException e) {
132 throwException(tr("Illegal value for attribute ''{0}''. Got ''{1}''.", "min_lon", min_lon));
133 }
134 double minLat = 0;
135 try {
136 minLat = Double.parseDouble(min_lat);
137 } catch(NumberFormatException e) {
138 throwException(tr("Illegal value for attribute ''{0}''. Got ''{1}''.", "min_lat", min_lat));
139 }
140 current.setMin(new LatLon(minLat, minLon));
141
142 // -- max_lon and max_lat
143
144 double maxLon = 0;
145 try {
146 maxLon = Double.parseDouble(max_lon);
147 } catch(NumberFormatException e) {
148 throwException(tr("Illegal value for attribute ''{0}''. Got ''{1}''.", "max_lon", max_lon));
149 }
150 double maxLat = 0;
151 try {
152 maxLat = Double.parseDouble(max_lat);
153 } catch(NumberFormatException e) {
154 throwException(tr("Illegal value for attribute ''{0}''. Got ''{1}''.", "max_lat", max_lat));
155 }
156 current.setMax(new LatLon(maxLon, maxLat));
157 }
158 }
159
160 @Override
161 public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
162 switch (qName) {
163 case "osm":
164 if (atts == null) {
165 throwException(tr("Missing mandatory attribute ''{0}'' of XML element {1}.", "version", "osm"));
166 }
167 String v = atts.getValue("version");
168 if (v == null) {
169 throwException(tr("Missing mandatory attribute ''{0}''.", "version"));
170 }
171 if (!("0.6".equals(v))) {
172 throwException(tr("Unsupported version: {0}", v));
173 }
174 break;
175 case "changeset":
176 current = new Changeset();
177 parseChangesetAttributes(current, atts);
178 break;
179 case "tag":
180 String key = atts.getValue("k");
181 String value = atts.getValue("v");
182 current.put(key, value);
183 break;
184 default:
185 throwException(tr("Undefined element ''{0}'' found in input stream. Aborting.", qName));
186 }
187 }
188
189 @Override
190 public void endElement(String uri, String localName, String qName) throws SAXException {
191 if ("changeset".equals(qName)) {
192 changesets.add(current);
193 }
194 }
195
196 protected User createUser(String uid, String name) throws XmlParsingException {
197 if (uid == null) {
198 if (name == null)
199 return null;
200 return User.createLocalUser(name);
201 }
202 try {
203 long id = Long.parseLong(uid);
204 return User.createOsmUser(id, name);
205 } catch(NumberFormatException e) {
206 throwException(MessageFormat.format("Illegal value for attribute ''uid''. Got ''{0}''.", uid));
207 }
208 return null;
209 }
210 }
211
212 /**
213 * Parse the given input source and return the list of changesets
214 *
215 * @param source the source input stream
216 * @param progressMonitor the progress monitor
217 *
218 * @return the list of changesets
219 * @throws IllegalDataException thrown if the an error was found while parsing the data from the source
220 */
221 @SuppressWarnings("resource")
222 public static List<Changeset> parse(InputStream source, ProgressMonitor progressMonitor) throws IllegalDataException {
223 OsmChangesetParser parser = new OsmChangesetParser();
224 try {
225 progressMonitor.beginTask("");
226 progressMonitor.indeterminateSubTask(tr("Parsing list of changesets..."));
227 InputSource inputSource = new InputSource(new InvalidXmlCharacterFilter(new InputStreamReader(source, StandardCharsets.UTF_8)));
228 SAXParserFactory.newInstance().newSAXParser().parse(inputSource, parser.new Parser());
229 return parser.getChangesets();
230 } catch(ParserConfigurationException | SAXException e) {
231 throw new IllegalDataException(e.getMessage(), e);
232 } catch(Exception e) {
233 throw new IllegalDataException(e);
234 } finally {
235 progressMonitor.finishTask();
236 }
237 }
238}
Note: See TracBrowser for help on using the repository browser.