*
* <pre>
* ArchiveCommand.registerFormat("tar", new TarFormat());
- * cmd = git.archive();
* try {
- * cmd.setTree(db.resolve("HEAD"))
- * .setOutputStream(out).call();
+ * git.archive()
+ * .setTree(db.resolve("HEAD"))
+ * .setOutputStream(out)
+ * .call();
* } finally {
- * cmd.release();
* ArchiveCommand.unregisterFormat("tar");
* }
* </pre>
* <pre>
* ArchiveCommand.registerFormat("zip", new ZipFormat());
* try {
- * cmd.setTree(db.resolve("master"))
+ * git.archive().
+ * .setTree(db.resolve("master"))
* .setFormat("zip")
- * .setOutputStream(out).call();
+ * .setOutputStream(out)
+ * .call();
* } finally {
- * cmd.release();
* ArchiveCommand.unregisterFormat("zip");
* }
* </pre>
}
private OutputStream out;
- private TreeWalk walk;
+ private ObjectId tree;
private String format = "tar";
/**
*/
public ArchiveCommand(Repository repo) {
super(repo);
- walk = new TreeWalk(repo);
- }
-
- /**
- * Release any resources used by the internal ObjectReader.
- * <p>
- * This does not close the output stream set with setOutputStream, which
- * belongs to the caller.
- */
- public void release() {
- walk.release();
+ setCallable(false);
}
private <T extends Closeable>
OutputStream writeArchive(Format<T> fmt) throws GitAPIException {
- final MutableObjectId idBuf = new MutableObjectId();
- final T outa = fmt.createArchiveOutputStream(out);
- final ObjectReader reader = walk.getObjectReader();
-
+ final TreeWalk walk = new TreeWalk(repo);
try {
+ final T outa = fmt.createArchiveOutputStream(out);
try {
+ final MutableObjectId idBuf = new MutableObjectId();
+ final ObjectReader reader = walk.getObjectReader();
+ final RevWalk rw = new RevWalk(walk.getObjectReader());
+
+ walk.reset(rw.parseTree(tree));
walk.setRecursive(true);
while (walk.next()) {
final String name = walk.getPathString();
} finally {
outa.close();
}
+ return out;
} catch (IOException e) {
// TODO(jrn): Throw finer-grained errors.
throw new JGitInternalException(
JGitText.get().exceptionCaughtDuringExecutionOfArchiveCommand, e);
+ } finally {
+ walk.release();
}
-
- return out;
}
/**
*/
@Override
public OutputStream call() throws GitAPIException {
+ checkCallable();
+
final Format<?> fmt = lookupFormat(format);
return writeArchive(fmt);
}
* @param tree
* the tag, commit, or tree object to produce an archive for
* @return this
- * @throws IOException
*/
- public ArchiveCommand setTree(ObjectId tree) throws IOException {
- final RevWalk rw = new RevWalk(walk.getObjectReader());
- walk.reset(rw.parseTree(tree));
+ public ArchiveCommand setTree(ObjectId tree) {
+ if (tree == null)
+ throw new IllegalArgumentException();
+
+ this.tree = tree;
+ setCallable(true);
return this;
}