Giter Club home page Giter Club logo

disk-lru-cache's People

Contributors

ashishb avatar codacy-badger avatar solkin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

disk-lru-cache's Issues

Streams not being closed

Sorry, I don't know how to do the pull request thing yet, so I thought I would just post the problem and resolution here.

Journal.java

readJournal() and writeJournal() are causing finalizer and "resource failed to call close" warnings. I believe the issue is with the wrapped input/output streams. Anyway, the below changes using auto resource management resolve the issue.

public void writeJournal() {
    try (FileOutputStream fileStream = new FileOutputStream(file)) {
        try (DataOutputStream stream = new DataOutputStream(fileStream)) {
            stream.writeShort(JOURNAL_FORMAT_VERSION);
            stream.writeInt(map.size());
            for (Record record : map.values()) {
                stream.writeUTF(record.getKey());
                stream.writeUTF(record.getName());
                stream.writeLong(record.getTime());
                stream.writeLong(record.getSize());
            }
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    } catch (IOException ex) {
        ex.printStackTrace();
    }
}

public static Journal readJournal(FileManager fileManager) {
    File file = fileManager.journal();
    log("[.] Start journal reading", file.getName());
    Journal journal = new Journal(file, fileManager);
    try (FileInputStream fileStream = new FileInputStream(file)) {
        try (DataInputStream stream = new DataInputStream(fileStream)) {
            int version = stream.readShort();
            if (version != JOURNAL_FORMAT_VERSION) {
                throw new IllegalArgumentException("Invalid journal format version");
            }
            int count = stream.readInt();
            long totalSize = 0;
            for (int c = 0; c < count; c++) {
                String key = stream.readUTF();
                String name = stream.readUTF();
                long time = stream.readLong();
                long size = stream.readLong();
                totalSize += size;
                Record record = new Record(key, name, time, size);
                journal.put(record);
            }
            journal.setTotalSize(totalSize);
            log("[.] Journal read. Files count is %d and total size is %d", count, totalSize);
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
    return journal;
}

Thanks, jb

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.