From c2ab3421a25d8f218951e6c3186037cb0b4e3a34 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Sun, 30 Jan 2011 14:43:49 -0800 Subject: [PATCH] ObjectWalk: Fix reset for non-commit objects Non-commits are added to a pending queue, but duplicates are removed by checking a flag. During a reset that flag must be stripped off the old roots, otherwise the caller cannot reuse the old roots after the reset. RevWalk already does this correctly for commits, but ObjectWalk failed to handle the non-commit case itself. Change-Id: I99e1832bf204eac5a424fdb04f327792e8cded4a Signed-off-by: Shawn O. Pearce --- .../src/org/eclipse/jgit/revwalk/ObjectWalk.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ObjectWalk.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ObjectWalk.java index 3df5a468f..aeba3160d 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ObjectWalk.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ObjectWalk.java @@ -45,6 +45,8 @@ package org.eclipse.jgit.revwalk; import java.io.IOException; import java.text.MessageFormat; +import java.util.ArrayList; +import java.util.List; import org.eclipse.jgit.JGitText; import org.eclipse.jgit.errors.CorruptObjectException; @@ -85,6 +87,8 @@ public class ObjectWalk extends RevWalk { private CanonicalTreeParser treeWalk; + private List rootObjects; + private BlockObjQueue pendingObjects; private RevTree currentTree; @@ -115,6 +119,7 @@ public class ObjectWalk extends RevWalk { */ public ObjectWalk(ObjectReader or) { super(or); + rootObjects = new ArrayList(); pendingObjects = new BlockObjQueue(); treeWalk = new CanonicalTreeParser(); } @@ -425,6 +430,11 @@ public class ObjectWalk extends RevWalk { @Override protected void reset(final int retainFlags) { super.reset(retainFlags); + + for (RevObject obj : rootObjects) + obj.flags &= ~IN_PENDING; + + rootObjects = new ArrayList(); pendingObjects = new BlockObjQueue(); treeWalk = new CanonicalTreeParser(); currentTree = null; @@ -436,6 +446,7 @@ public class ObjectWalk extends RevWalk { private void addObject(final RevObject o) { if ((o.flags & IN_PENDING) == 0) { o.flags |= IN_PENDING; + rootObjects.add(o); pendingObjects.add(o); } }