Changeset 19372 in josm
- Timestamp:
- 2025-04-02T17:09:56+02:00 (4 days ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
r19336 r19372 23 23 import java.util.function.Predicate; 24 24 import java.util.stream.Stream; 25 import java.util.zip.ZipFile; 25 26 26 27 import org.openstreetmap.josm.data.osm.IPrimitive; … … 289 290 CheckParameterUtil.ensureParameterNotNull(url, "url"); 290 291 ParseResult result; 291 try (CachedFile cache = new CachedFile(url) ;292 InputStream zip = cache.findZipEntryInputStream("validator.mapcss", ""); 293 InputStream s = zip != null ? zip : cache.getInputStream(); 292 try (CachedFile cache = new CachedFile(url)) { 293 Pair <ZipFile, InputStream> zip = cache.findZipEntryInputStream("validator.mapcss", ""); 294 try (InputStream s = zip != null ? zip.b : cache.getInputStream(); 294 295 Reader reader = new BufferedReader(UTFInputStreamReader.create(s))) { 295 if (zip != null) 296 I18n.addTexts(cache.getFile()); 297 result = MapCSSTagCheckerRule.readMapCSS(reader, assertionConsumer); 298 checks.remove(url); 299 checks.putAll(url, result.parseChecks); 300 urlTitles.put(url, findURLTitle(url)); 301 indexData = null; 296 if (zip != null) 297 I18n.addTexts(cache.getFile()); 298 result = MapCSSTagCheckerRule.readMapCSS(reader, assertionConsumer); 299 checks.remove(url); 300 checks.putAll(url, result.parseChecks); 301 urlTitles.put(url, findURLTitle(url)); 302 indexData = null; 303 } finally { 304 if (zip != null) 305 Utils.close(zip.a); 306 } 302 307 } 303 308 return result; -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetReader.java
r19103 r19372 21 21 import java.util.Map; 22 22 import java.util.Set; 23 import java.util.zip.ZipFile; 23 24 24 25 import javax.swing.JOptionPane; … … 48 49 import org.openstreetmap.josm.tools.I18n; 49 50 import org.openstreetmap.josm.tools.Logging; 51 import org.openstreetmap.josm.tools.Pair; 50 52 import org.openstreetmap.josm.tools.Stopwatch; 51 53 import org.openstreetmap.josm.tools.Utils; … … 376 378 CachedFile cf = new CachedFile(source).setHttpAccept(PRESET_MIME_TYPES); 377 379 // zip may be null, but Java 7 allows it: https://blogs.oracle.com/darcy/entry/project_coin_null_try_with 378 InputStream zip = cf.findZipEntryInputStream("xml", "preset")379 380 ) { 381 Pair <ZipFile, InputStream> zip = cf.findZipEntryInputStream("xml", "preset"); 380 382 if (zip != null) { 381 zipIcons = cf.getFile(); 382 I18n.addTexts(zipIcons); 383 } 384 try (InputStreamReader r = UTFInputStreamReader.create(zip == null ? cf.getInputStream() : zip)) { 383 try { 384 zipIcons = cf.getFile(); 385 I18n.addTexts(zipIcons); 386 } finally { 387 Utils.close(zip.b); 388 Utils.close(zip.a); 389 } 390 } 391 try (InputStreamReader r = UTFInputStreamReader.create(zip == null ? cf.getInputStream() : zip.b)) { 385 392 tp = readAll(new BufferedReader(r), validate, all); 386 393 } -
trunk/src/org/openstreetmap/josm/io/CachedFile.java
r19211 r19372 316 316 */ 317 317 public String findZipEntryPath(String extension, String namepart) { 318 Pair<String, InputStream> ze = findZipEntryImpl(extension, namepart); 318 Pair<String, Pair<ZipFile, InputStream>> ze = findZipEntryImpl(extension, namepart); 319 319 if (ze == null) return null; 320 Utils.close(ze.b.b); 321 Utils.close(ze.b.a); 320 322 return ze.a; 321 323 } … … 328 330 * doesn't represent a zip file or if there was no matching 329 331 * file in the ZIP file. 330 * @since 6148 331 */ 332 public InputStream findZipEntryInputStream(String extension, String namepart) { 333 Pair<String, InputStream> ze = findZipEntryImpl(extension, namepart); 332 * The returned ZipFile must be closed after use. 333 * @since 19372 334 */ 335 public Pair<ZipFile, InputStream> findZipEntryInputStream(String extension, String namepart) { 336 Pair<String, Pair<ZipFile, InputStream>> ze = findZipEntryImpl(extension, namepart); 334 337 if (ze == null) return null; 335 338 return ze.b; 336 339 } 337 340 338 private Pair<String, InputStream> findZipEntryImpl(String extension, String namepart) { 341 private Pair<String, Pair<ZipFile, InputStream>> findZipEntryImpl(String extension, String namepart) { 339 342 File file = null; 340 343 try { … … 345 348 if (file == null) 346 349 return null; 347 Pair<String, InputStream> res = null; 350 Pair<String, Pair <ZipFile, InputStream>> res = null; 348 351 try { 349 ZipFile zipFile = new ZipFile(file, StandardCharsets.UTF_8); // NOPMD352 ZipFile zipFile = new ZipFile(file, StandardCharsets.UTF_8); 350 353 ZipEntry resentry = null; 351 354 Enumeration<? extends ZipEntry> entries = zipFile.entries(); … … 358 361 } 359 362 if (resentry != null) { 360 InputStream is = zipFile.getInputStream(resentry); // NOPMD361 res = Pair.create(resentry.getName(), is);363 InputStream is = zipFile.getInputStream(resentry); 364 res = Pair.create(resentry.getName(), Pair.create(zipFile, is)); 362 365 } else { 363 366 Utils.close(zipFile);
Note:
See TracChangeset
for help on using the changeset viewer.