Changeset 19372 in josm


Ignore:
Timestamp:
2025-04-02T17:09:56+02:00 (4 days ago)
Author:
stoecker
Message:

fix resource leaks for cached Zip files

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  
    2323import java.util.function.Predicate;
    2424import java.util.stream.Stream;
     25import java.util.zip.ZipFile;
    2526
    2627import org.openstreetmap.josm.data.osm.IPrimitive;
     
    289290        CheckParameterUtil.ensureParameterNotNull(url, "url");
    290291        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();
    294295             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            }
    302307        }
    303308        return result;
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetReader.java

    r19103 r19372  
    2121import java.util.Map;
    2222import java.util.Set;
     23import java.util.zip.ZipFile;
    2324
    2425import javax.swing.JOptionPane;
     
    4849import org.openstreetmap.josm.tools.I18n;
    4950import org.openstreetmap.josm.tools.Logging;
     51import org.openstreetmap.josm.tools.Pair;
    5052import org.openstreetmap.josm.tools.Stopwatch;
    5153import org.openstreetmap.josm.tools.Utils;
     
    376378            CachedFile cf = new CachedFile(source).setHttpAccept(PRESET_MIME_TYPES);
    377379            // 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")
    379380        ) {
     381            Pair <ZipFile, InputStream> zip = cf.findZipEntryInputStream("xml", "preset");
    380382            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)) {
    385392                tp = readAll(new BufferedReader(r), validate, all);
    386393            }
  • trunk/src/org/openstreetmap/josm/io/CachedFile.java

    r19211 r19372  
    316316     */
    317317    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);
    319319        if (ze == null) return null;
     320        Utils.close(ze.b.b);
     321        Utils.close(ze.b.a);
    320322        return ze.a;
    321323    }
     
    328330     * doesn't represent a zip file or if there was no matching
    329331     * 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);
    334337        if (ze == null) return null;
    335338        return ze.b;
    336339    }
    337340
    338     private Pair<String, InputStream> findZipEntryImpl(String extension, String namepart) {
     341    private Pair<String, Pair<ZipFile, InputStream>> findZipEntryImpl(String extension, String namepart) {
    339342        File file = null;
    340343        try {
     
    345348        if (file == null)
    346349            return null;
    347         Pair<String, InputStream> res = null;
     350        Pair<String, Pair <ZipFile, InputStream>> res = null;
    348351        try {
    349             ZipFile zipFile = new ZipFile(file, StandardCharsets.UTF_8); // NOPMD
     352            ZipFile zipFile = new ZipFile(file, StandardCharsets.UTF_8);
    350353            ZipEntry resentry = null;
    351354            Enumeration<? extends ZipEntry> entries = zipFile.entries();
     
    358361            }
    359362            if (resentry != null) {
    360                 InputStream is = zipFile.getInputStream(resentry); // NOPMD
    361                 res = Pair.create(resentry.getName(), is);
     363                InputStream is = zipFile.getInputStream(resentry);
     364                res = Pair.create(resentry.getName(), Pair.create(zipFile, is));
    362365            } else {
    363366                Utils.close(zipFile);
Note: See TracChangeset for help on using the changeset viewer.