import org.eclipse.jgit.junit.JGitTestUtil;
import org.eclipse.jgit.junit.TestRepository;
import org.eclipse.jgit.junit.TestRepository.BranchBuilder;
+import org.eclipse.jgit.lib.AnyObjectId;
import org.eclipse.jgit.lib.NullProgressMonitor;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectInserter;
import org.eclipse.jgit.storage.file.PackIndex.MutableEntry;
import org.eclipse.jgit.storage.pack.PackConfig;
import org.eclipse.jgit.storage.pack.PackWriter;
+import org.eclipse.jgit.storage.pack.PackWriter.ObjectIdSet;
import org.eclipse.jgit.transport.PackParser;
import org.junit.After;
import org.junit.Before;
RevCommit c1 = bb.commit().add("f", contentA).create();
testRepo.getRevWalk().parseHeaders(c1);
PackIndex pf1 = writePack(repo, Collections.singleton(c1),
- Collections.<PackIndex> emptySet());
+ Collections.<ObjectIdSet> emptySet());
assertContent(
pf1,
Arrays.asList(c1.getId(), c1.getTree().getId(),
RevCommit c2 = bb.commit().add("f", contentB).create();
testRepo.getRevWalk().parseHeaders(c2);
PackIndex pf2 = writePack(repo, Collections.singleton(c2),
- Collections.singleton(pf1));
+ Collections.singleton(objectIdSet(pf1)));
assertContent(
pf2,
Arrays.asList(c2.getId(), c2.getTree().getId(),
}
private static PackIndex writePack(FileRepository repo,
- Set<? extends ObjectId> want, Set<PackIndex> excludeObjects)
+ Set<? extends ObjectId> want, Set<ObjectIdSet> excludeObjects)
throws IOException {
PackWriter pw = new PackWriter(repo);
pw.setDeltaBaseAsOffset(true);
pw.setReuseDeltaCommits(false);
- for (PackIndex idx : excludeObjects)
+ for (ObjectIdSet idx : excludeObjects)
pw.excludeObjects(idx);
pw.preparePack(NullProgressMonitor.INSTANCE, want,
Collections.<ObjectId> emptySet());
assertEquals(objectsOrder[i++].toObjectId(), me.toObjectId());
}
}
+
+ private static ObjectIdSet objectIdSet(final PackIndex idx) {
+ return new ObjectIdSet() {
+ public boolean contains(AnyObjectId objectId) {
+ return idx.hasObject(objectId);
+ }
+ };
+ }
}
blobNotFoundForPath=Blob not found: {0} for path: {1}
branchNameInvalid=Branch name {0} is not allowed
cachedPacksPreventsIndexCreation=Using cached packs prevents index creation
+cachedPacksPreventsListingObjects=Using cached packs prevents listing objects
cannotBeCombined=Cannot be combined.
cannotBeRecursiveWhenTreesAreIncluded=TreeWalk shouldn't be recursive when tree objects are included.
cannotCombineSquashWithNoff=Cannot combine --squash with --no-ff.
/***/ public String blobNotFoundForPath;
/***/ public String branchNameInvalid;
/***/ public String cachedPacksPreventsIndexCreation;
+ /***/ public String cachedPacksPreventsListingObjects;
/***/ public String cannotBeCombined;
/***/ public String cannotBeRecursiveWhenTreesAreIncluded;
/***/ public String cannotCombineSquashWithNoff;
private final List<PackWriter.Statistics> newPackStats;
- private final List<DfsPackFile> newPackList;
+ private final List<PackWriter.ObjectIdSet> newPackObj;
private DfsReader ctx;
objdb = repo.getObjectDatabase();
newPackDesc = new ArrayList<DfsPackDescription>(4);
newPackStats = new ArrayList<PackWriter.Statistics>(4);
- newPackList = new ArrayList<DfsPackFile>(4);
+ newPackObj = new ArrayList<PackWriter.ObjectIdSet>(4);
packConfig = new PackConfig(repo);
packConfig.setIndexVersion(2);
PackWriter pw = newPackWriter();
try {
- for (DfsPackFile pack : newPackList)
- pw.excludeObjects(pack.getPackIndex(ctx));
+ for (PackWriter.ObjectIdSet packedObjs : newPackObj)
+ pw.excludeObjects(packedObjs);
pw.preparePack(pm, nonHeads, allHeads);
if (0 < pw.getObjectCount())
writePack(GC, pw, pm);
return;
// TODO(sop) This is ugly. The garbage pack needs to be deleted.
- List<PackIndex> newIdx = new ArrayList<PackIndex>(newPackList.size());
- for (DfsPackFile pack : newPackList)
- newIdx.add(pack.getPackIndex(ctx));
-
PackWriter pw = newPackWriter();
try {
RevWalk pool = new RevWalk(ctx);
for (PackIndex.MutableEntry ent : oldIdx) {
pm.update(1);
ObjectId id = ent.toObjectId();
- if (pool.lookupOrNull(id) != null || anyIndexHas(newIdx, id))
+ if (pool.lookupOrNull(id) != null || anyPackHas(id))
continue;
int type = oldPack.getObjectType(ctx, ent.getOffset());
}
}
- private static boolean anyIndexHas(List<PackIndex> list, AnyObjectId id) {
- for (PackIndex idx : list)
- if (idx.hasObject(id))
+ private boolean anyPackHas(AnyObjectId id) {
+ for (PackWriter.ObjectIdSet packedObjs : newPackObj)
+ if (packedObjs.contains(id))
return true;
return false;
}
out.close();
}
+ final List<ObjectId> packedObjs = pw.getObjectList();
+ newPackObj.add(new PackWriter.ObjectIdSet() {
+ public boolean contains(AnyObjectId objectId) {
+ return 0 <= Collections.binarySearch(packedObjs, objectId);
+ }
+ });
+
PackWriter.Statistics stats = pw.getStatistics();
pack.setPackStats(stats);
pack.setFileSize(PACK, stats.getTotalBytes());
pack.setDeltaCount(stats.getTotalDeltas());
objectsPacked += stats.getTotalObjects();
newPackStats.add(stats);
- newPackList.add(DfsBlockCache.getInstance().getOrCreate(pack, null));
+
+ DfsBlockCache.getInstance().getOrCreate(pack, null);
return pack;
}
}
import org.eclipse.jgit.errors.MissingObjectException;
import org.eclipse.jgit.errors.NoWorkTreeException;
import org.eclipse.jgit.internal.JGitText;
+import org.eclipse.jgit.lib.AnyObjectId;
import org.eclipse.jgit.lib.ConfigConstants;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.FileMode;
import org.eclipse.jgit.revwalk.RevObject;
import org.eclipse.jgit.revwalk.RevWalk;
import org.eclipse.jgit.storage.pack.PackWriter;
+import org.eclipse.jgit.storage.pack.PackWriter.ObjectIdSet;
import org.eclipse.jgit.treewalk.TreeWalk;
import org.eclipse.jgit.treewalk.filter.TreeFilter;
import org.eclipse.jgit.util.FileUtils;
tagTargets.add(ref.getPeeledObjectId());
}
- List<PackIndex> excluded = new LinkedList<PackIndex>();
- for (PackFile f : repo.getObjectDatabase().getPacks())
+ List<ObjectIdSet> excluded = new LinkedList<ObjectIdSet>();
+ for (final PackFile f : repo.getObjectDatabase().getPacks())
if (f.shouldBeKept())
- excluded.add(f.getIndex());
+ excluded.add(objectIdSet(f.getIndex()));
tagTargets.addAll(allHeads);
nonHeads.addAll(indexObjects);
tagTargets, excluded);
if (heads != null) {
ret.add(heads);
- excluded.add(0, heads.getIndex());
+ excluded.add(0, objectIdSet(heads.getIndex()));
}
}
if (!nonHeads.isEmpty()) {
private PackFile writePack(Set<? extends ObjectId> want,
Set<? extends ObjectId> have, Set<ObjectId> tagTargets,
- List<PackIndex> excludeObjects) throws IOException {
+ List<ObjectIdSet> excludeObjects) throws IOException {
File tmpPack = null;
File tmpIdx = null;
PackWriter pw = new PackWriter(repo);
if (tagTargets != null)
pw.setTagTargets(tagTargets);
if (excludeObjects != null)
- for (PackIndex idx : excludeObjects)
+ for (ObjectIdSet idx : excludeObjects)
pw.excludeObjects(idx);
pw.preparePack(pm, want, have);
if (pw.getObjectCount() == 0)
expireAgeMillis = -1;
}
+ private static ObjectIdSet objectIdSet(final PackIndex idx) {
+ return new ObjectIdSet() {
+ public boolean contains(AnyObjectId objectId) {
+ return idx.hasObject(objectId);
+ }
+ };
+ }
}
import org.eclipse.jgit.revwalk.RevSort;
import org.eclipse.jgit.revwalk.RevTag;
import org.eclipse.jgit.revwalk.RevTree;
-import org.eclipse.jgit.storage.file.PackIndex;
import org.eclipse.jgit.storage.file.PackIndexWriter;
import org.eclipse.jgit.util.BlockList;
import org.eclipse.jgit.util.TemporaryBuffer;
public class PackWriter {
private static final int PACK_VERSION_GENERATED = 2;
+ /** A collection of object ids. */
+ public interface ObjectIdSet {
+ /**
+ * Returns true if the objectId is contained within the collection.
+ *
+ * @param objectId
+ * the objectId to find
+ * @return whether the collection contains the objectId.
+ */
+ boolean contains(AnyObjectId objectId);
+ }
+
private static final Map<WeakReference<PackWriter>, Boolean> instances =
new ConcurrentHashMap<WeakReference<PackWriter>, Boolean>();
private Set<ObjectId> tagTargets = Collections.emptySet();
- private PackIndex[] excludeInPacks;
+ private ObjectIdSet[] excludeInPacks;
- private PackIndex excludeInPackLast;
+ private ObjectIdSet excludeInPackLast;
private Deflater myDeflater;
return stats.totalObjects;
}
+ /**
+ * Returns the object ids in the pack file that was created by this writer,
+ * sorted by name.
+ *
+ * This method can only be invoked after
+ * {@link #writePack(ProgressMonitor, ProgressMonitor, OutputStream)} has
+ * been invoked and completed successfully.
+ *
+ * @return number of objects in pack.
+ * @throws IOException
+ * a cached pack cannot supply its object ids.
+ */
+ public List<ObjectId> getObjectList() throws IOException {
+ if (!cachedPacks.isEmpty())
+ throw new IOException(
+ JGitText.get().cachedPacksPreventsListingObjects);
+
+ return Collections.unmodifiableList(
+ (List<? extends ObjectId>) sortByName());
+ }
+
/**
* Add a pack index whose contents should be excluded from the result.
*
* @param idx
* objects in this index will not be in the output pack.
*/
- public void excludeObjects(PackIndex idx) {
+ public void excludeObjects(ObjectIdSet idx) {
if (excludeInPacks == null) {
- excludeInPacks = new PackIndex[] { idx };
+ excludeInPacks = new ObjectIdSet[] { idx };
excludeInPackLast = idx;
} else {
int cnt = excludeInPacks.length;
- PackIndex[] newList = new PackIndex[cnt + 1];
+ ObjectIdSet[] newList = new ObjectIdSet[cnt + 1];
System.arraycopy(excludeInPacks, 0, newList, 0, cnt);
newList[cnt] = idx;
excludeInPacks = newList;
private boolean exclude(AnyObjectId objectId) {
if (excludeInPacks == null)
return false;
- if (excludeInPackLast.hasObject(objectId))
+ if (excludeInPackLast.contains(objectId))
return true;
- for (PackIndex idx : excludeInPacks) {
- if (idx.hasObject(objectId)) {
+ for (ObjectIdSet idx : excludeInPacks) {
+ if (idx.contains(objectId)) {
excludeInPackLast = idx;
return true;
}