Browse Source

archive: Release resources before returning

The only caller exits immediately after calling execute() so this
shouldn't make a difference, but it's good practice and should make it
easier to expose the functionality in a public API later.

Change-Id: Ia6cd2ce8382f1a62e576409107fc5c9a6b321fb6
stable-3.0
Jonathan Nieder 12 years ago
parent
commit
70e494f649
  1. 40
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Archive.java

40
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Archive.java

@ -78,32 +78,36 @@ class Archive extends TextBuiltin {
@Override @Override
protected void run() throws Exception { protected void run() throws Exception {
final TreeWalk walk = new TreeWalk(db);
final ObjectReader reader = walk.getObjectReader();
final MutableObjectId idBuf = new MutableObjectId(); final MutableObjectId idBuf = new MutableObjectId();
final Archiver fmt = formats.get(format); final Archiver fmt = formats.get(format);
final ArchiveOutputStream outa = fmt.createArchiveOutputStream(outs);
if (tree == null) if (tree == null)
throw die(CLIText.get().treeIsRequired); throw die(CLIText.get().treeIsRequired);
walk.reset(); final ArchiveOutputStream outa = fmt.createArchiveOutputStream(outs);
walk.addTree(tree); final TreeWalk walk = new TreeWalk(db);
walk.setRecursive(true); final ObjectReader reader = walk.getObjectReader();
while (walk.next()) {
final String name = walk.getPathString();
final FileMode mode = walk.getFileMode(0);
if (mode == FileMode.TREE)
// ZIP entries for directories are optional.
// Leave them out, mimicking "git archive".
continue;
walk.getObjectId(idBuf, 0); try {
fmt.putEntry(name, mode, reader.open(idBuf), outa); walk.reset();
walk.addTree(tree);
walk.setRecursive(true);
while (walk.next()) {
final String name = walk.getPathString();
final FileMode mode = walk.getFileMode(0);
if (mode == FileMode.TREE)
// ZIP entries for directories are optional.
// Leave them out, mimicking "git archive".
continue;
walk.getObjectId(idBuf, 0);
fmt.putEntry(name, mode, reader.open(idBuf), outa);
}
} finally {
reader.release();
outa.close();
} }
outa.close();
} }
static private void warnArchiveEntryModeIgnored(String name) { static private void warnArchiveEntryModeIgnored(String name) {

Loading…
Cancel
Save