aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2010-08-20 08:53:46 -0700
committerShawn O. Pearce <spearce@spearce.org>2010-08-20 17:38:52 -0700
commitb46b635c0389e01a55b2f9c490e5b6c54a8ce640 (patch)
tree582ff9587b75eb820e74188563d1c1d39c04d398 /org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java
parentcf9537c8ceeed05b2cc7f996009d9f2f18623782 (diff)
downloadjgit-b46b635c0389e01a55b2f9c490e5b6c54a8ce640.tar.gz
jgit-b46b635c0389e01a55b2f9c490e5b6c54a8ce640.zip
Make Commit class only for writing
The Commit class now only supports the creation of a commit object. To read a commit, applictions should use RevCommit. This permits us to have exactly one implementation, and RevCommit's is faster and more bug-free. Change-Id: Ib573f7e15f36855112815269385c21dea532e2cf Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java106
1 files changed, 82 insertions, 24 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java
index b56966ff42..f25b0781e6 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/BlobBasedConfig.java
@@ -51,15 +51,24 @@ import java.text.MessageFormat;
import org.eclipse.jgit.JGitText;
import org.eclipse.jgit.errors.ConfigInvalidException;
+import org.eclipse.jgit.errors.IncorrectObjectTypeException;
+import org.eclipse.jgit.errors.MissingObjectException;
+import org.eclipse.jgit.revwalk.RevCommit;
+import org.eclipse.jgit.revwalk.RevTree;
+import org.eclipse.jgit.revwalk.RevWalk;
import org.eclipse.jgit.treewalk.TreeWalk;
+import org.eclipse.jgit.util.IO;
import org.eclipse.jgit.util.RawParseUtils;
/**
- * The configuration file based on the blobs stored in the repository
+ * Configuration file based on the blobs stored in the repository.
+ *
+ * This implementation currently only provides reading support, and is primarily
+ * useful for supporting the {@code .gitmodules} file.
*/
public class BlobBasedConfig extends Config {
/**
- * The constructor from a byte array
+ * Parse a configuration from a byte array.
*
* @param base
* the base configuration file
@@ -75,11 +84,11 @@ public class BlobBasedConfig extends Config {
}
/**
- * The constructor from object identifier
+ * Load a configuration file from a blob.
*
* @param base
* the base configuration file
- * @param r
+ * @param db
* the repository
* @param objectId
* the object identifier
@@ -88,22 +97,50 @@ public class BlobBasedConfig extends Config {
* @throws ConfigInvalidException
* the blob is not a valid configuration format.
*/
- public BlobBasedConfig(Config base, final Repository r,
- final ObjectId objectId) throws IOException, ConfigInvalidException {
- super(base);
- ObjectLoader loader = r.open(objectId, Constants.OBJ_BLOB);
- fromText(RawParseUtils.decode(loader.getCachedBytes()));
+ public BlobBasedConfig(Config base, Repository db, AnyObjectId objectId)
+ throws IOException, ConfigInvalidException {
+ this(base, read(db, objectId));
+ }
+
+ private static byte[] read(Repository db, AnyObjectId blobId)
+ throws MissingObjectException, IncorrectObjectTypeException,
+ IOException {
+ ObjectReader or = db.newObjectReader();
+ try {
+ return read(or, blobId);
+ } finally {
+ or.release();
+ }
+ }
+
+ private static byte[] read(ObjectReader or, AnyObjectId blobId)
+ throws MissingObjectException, IncorrectObjectTypeException,
+ IOException {
+ ObjectLoader loader = or.open(blobId, Constants.OBJ_BLOB);
+ if (loader.isLarge()) {
+ ObjectStream in = loader.openStream();
+ try {
+ byte[] buf = new byte[(int) in.getSize()];
+ IO.readFully(in, buf, 0, buf.length);
+ return buf;
+ } finally {
+ in.close();
+ }
+ }
+ return loader.getCachedBytes();
}
/**
- * The constructor from commit and path
+ * Load a configuration file from a blob stored in a specific commit.
*
* @param base
* the base configuration file
- * @param commit
- * the commit that contains the object
+ * @param db
+ * the repository containing the objects.
+ * @param treeish
+ * the tree (or commit) that contains the object
* @param path
- * the path within the tree of the commit
+ * the path within the tree
* @throws FileNotFoundException
* the path does not exist in the commit's tree.
* @throws IOException
@@ -111,16 +148,37 @@ public class BlobBasedConfig extends Config {
* @throws ConfigInvalidException
* the blob is not a valid configuration format.
*/
- public BlobBasedConfig(Config base, final Commit commit, final String path)
- throws FileNotFoundException, IOException, ConfigInvalidException {
- super(base);
- final ObjectId treeId = commit.getTreeId();
- final Repository r = commit.getRepository();
- final TreeWalk tree = TreeWalk.forPath(r, path, treeId);
- if (tree == null)
- throw new FileNotFoundException(MessageFormat.format(JGitText.get().entryNotFoundByPath, path));
- final ObjectId blobId = tree.getObjectId(0);
- ObjectLoader loader = r.open(blobId,Constants.OBJ_BLOB);
- fromText(RawParseUtils.decode(loader.getCachedBytes()));
+ public BlobBasedConfig(Config base, Repository db, AnyObjectId treeish,
+ String path) throws FileNotFoundException, IOException,
+ ConfigInvalidException {
+ this(base, read(db, treeish, path));
+ }
+
+ private static byte[] read(Repository db, AnyObjectId treeish, String path)
+ throws MissingObjectException, IncorrectObjectTypeException,
+ IOException {
+ ObjectReader or = db.newObjectReader();
+ try {
+ TreeWalk tree = TreeWalk.forPath(or, path, asTree(or, treeish));
+ if (tree == null)
+ throw new FileNotFoundException(MessageFormat.format(JGitText
+ .get().entryNotFoundByPath, path));
+ return read(or, tree.getObjectId(0));
+ } finally {
+ or.release();
+ }
+ }
+
+ private static AnyObjectId asTree(ObjectReader or, AnyObjectId treeish)
+ throws MissingObjectException, IncorrectObjectTypeException,
+ IOException {
+ if (treeish instanceof RevTree)
+ return treeish;
+
+ if (treeish instanceof RevCommit
+ && ((RevCommit) treeish).getTree() != null)
+ return ((RevCommit) treeish).getTree();
+
+ return new RevWalk(or).parseTree(treeish).getId();
}
}