Browse Source

Merge "Do not fake a SymbolicRef as an ObjectIdRef"

stable-4.5
Shawn Pearce 8 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
1836a7b273
  1. 4
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsRefDatabase.java
  2. 4
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/RefDirectory.java
  3. 6
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/RefDirectoryUpdate.java
  4. 9
      org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java

4
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsRefDatabase.java

@ -217,10 +217,6 @@ public abstract class DfsRefDatabase extends RefDatabase {
else else
detachingSymbolicRef = detach && ref.isSymbolic(); detachingSymbolicRef = detach && ref.isSymbolic();
if (detachingSymbolicRef) {
ref = new ObjectIdRef.Unpeeled(NEW, refName, ref.getObjectId());
}
DfsRefUpdate update = new DfsRefUpdate(this, ref); DfsRefUpdate update = new DfsRefUpdate(this, ref);
if (detachingSymbolicRef) if (detachingSymbolicRef)
update.setDetachingSymbolicRef(); update.setDetachingSymbolicRef();

4
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/RefDirectory.java

@ -545,8 +545,6 @@ public class RefDirectory extends RefDatabase {
ref = new ObjectIdRef.Unpeeled(NEW, name, null); ref = new ObjectIdRef.Unpeeled(NEW, name, null);
else { else {
detachingSymbolicRef = detach && ref.isSymbolic(); detachingSymbolicRef = detach && ref.isSymbolic();
if (detachingSymbolicRef)
ref = new ObjectIdRef.Unpeeled(LOOSE, name, ref.getObjectId());
} }
RefDirectoryUpdate refDirUpdate = new RefDirectoryUpdate(this, ref); RefDirectoryUpdate refDirUpdate = new RefDirectoryUpdate(this, ref);
if (detachingSymbolicRef) if (detachingSymbolicRef)
@ -579,7 +577,7 @@ public class RefDirectory extends RefDatabase {
} }
void delete(RefDirectoryUpdate update) throws IOException { void delete(RefDirectoryUpdate update) throws IOException {
Ref dst = update.getRef().getLeaf(); Ref dst = update.getRef();
String name = dst.getName(); String name = dst.getName();
// Write the packed-refs file using an atomic update. We might // Write the packed-refs file using an atomic update. We might

6
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/RefDirectoryUpdate.java

@ -56,6 +56,7 @@ import org.eclipse.jgit.lib.Repository;
class RefDirectoryUpdate extends RefUpdate { class RefDirectoryUpdate extends RefUpdate {
private final RefDirectory database; private final RefDirectory database;
private boolean shouldDeref;
private LockFile lock; private LockFile lock;
RefDirectoryUpdate(final RefDirectory r, final Ref ref) { RefDirectoryUpdate(final RefDirectory r, final Ref ref) {
@ -75,6 +76,7 @@ class RefDirectoryUpdate extends RefUpdate {
@Override @Override
protected boolean tryLock(boolean deref) throws IOException { protected boolean tryLock(boolean deref) throws IOException {
shouldDeref = deref;
Ref dst = getRef(); Ref dst = getRef();
if (deref) if (deref)
dst = dst.getLeaf(); dst = dst.getLeaf();
@ -117,7 +119,7 @@ class RefDirectoryUpdate extends RefUpdate {
msg = strResult; msg = strResult;
} }
} }
database.log(this, msg, true); database.log(this, msg, shouldDeref);
} }
if (!lock.commit()) if (!lock.commit())
return Result.LOCK_FAILURE; return Result.LOCK_FAILURE;
@ -140,7 +142,7 @@ class RefDirectoryUpdate extends RefUpdate {
@Override @Override
protected Result doDelete(final Result status) throws IOException { protected Result doDelete(final Result status) throws IOException {
if (getRef().getLeaf().getStorage() != Ref.Storage.NEW) if (getRef().getStorage() != Ref.Storage.NEW)
database.delete(this); database.delete(this);
return status; return status;
} }

9
org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java

@ -551,7 +551,9 @@ public abstract class RefUpdate {
* @throws IOException * @throws IOException
*/ */
public Result delete(final RevWalk walk) throws IOException { public Result delete(final RevWalk walk) throws IOException {
final String myName = getRef().getLeaf().getName(); final String myName = detachingSymbolicRef
? getRef().getName()
: getRef().getLeaf().getName();
if (myName.startsWith(Constants.R_HEADS) && !getRepository().isBare()) { if (myName.startsWith(Constants.R_HEADS) && !getRepository().isBare()) {
// Don't allow the currently checked out branch to be deleted. // Don't allow the currently checked out branch to be deleted.
Ref head = getRefDatabase().getRef(Constants.HEAD); Ref head = getRefDatabase().getRef(Constants.HEAD);
@ -628,7 +630,10 @@ public abstract class RefUpdate {
if (oldValue == null && checkConflicting && getRefDatabase().isNameConflicting(getName())) if (oldValue == null && checkConflicting && getRefDatabase().isNameConflicting(getName()))
return Result.LOCK_FAILURE; return Result.LOCK_FAILURE;
try { try {
if (!tryLock(true)) // If we're detaching a symbolic reference, we should update the reference
// itself. Otherwise, we will update the leaf reference, which should be
// an ObjectIdRef.
if (!tryLock(!detachingSymbolicRef))
return Result.LOCK_FAILURE; return Result.LOCK_FAILURE;
if (expValue != null) { if (expValue != null) {
final ObjectId o; final ObjectId o;

Loading…
Cancel
Save