Implement "git branch --contains" in pgm

Bug: 425678
Change-Id: Ib59e05a0bde58562cc61e6e3000df761660b468e
Signed-off-by: Robin Stocker <robin@nibor.org>
This commit is contained in:
Robin Stocker 2014-01-14 17:46:26 +01:00 committed by Matthias Sohn
parent f6f3fe46fc
commit 31fec678d8
3 changed files with 56 additions and 18 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2012, IBM Corporation and others. * Copyright (C) 2012, 2014 IBM Corporation and others.
* and other copyright owners as documented in the project's IP log. * and other copyright owners as documented in the project's IP log.
* *
* This program and the accompanying materials are made available * This program and the accompanying materials are made available
@ -46,6 +46,9 @@
import org.eclipse.jgit.api.Git; import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.lib.CLIRepositoryTestCase; import org.eclipse.jgit.lib.CLIRepositoryTestCase;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.RefUpdate;
import org.eclipse.jgit.revwalk.RevCommit;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
@ -63,6 +66,26 @@ public void testList() throws Exception {
execute("git branch -v")[0]); execute("git branch -v")[0]);
} }
@Test
public void testListDetached() throws Exception {
RefUpdate updateRef = db.updateRef(Constants.HEAD, true);
updateRef.setNewObjectId(db.resolve("6fd41be"));
updateRef.update();
assertEquals("* (no branch) 6fd41be initial commit",
execute("git branch -v")[0]);
}
@Test
public void testListContains() throws Exception {
new Git(db).branchCreate().setName("initial").call();
RevCommit second = new Git(db).commit().setMessage("second commit")
.call();
assertArrayOfLinesEquals(new String[] { " initial", "* master", "" },
execute("git branch --contains 6fd41be"));
assertArrayOfLinesEquals(new String[] { "* master", "" },
execute("git branch --contains " + second.name()));
}
@Test @Test
public void testExistingBranch() throws Exception { public void testExistingBranch() throws Exception {
assertEquals("fatal: A branch named 'master' already exists.", assertEquals("fatal: A branch named 'master' already exists.",

View File

@ -303,6 +303,7 @@ usage_outputFile=Output file
usage_path=path usage_path=path
usage_performFsckStyleChecksOnReceive=perform fsck style checks on receive usage_performFsckStyleChecksOnReceive=perform fsck style checks on receive
usage_portNumberToListenOn=port number to listen on usage_portNumberToListenOn=port number to listen on
usage_printOnlyBranchesThatContainTheCommit=print only branches that contain the commit
usage_pruneStaleTrackingRefs=prune stale tracking refs usage_pruneStaleTrackingRefs=prune stale tracking refs
usage_quiet=don't show progress messages usage_quiet=don't show progress messages
usage_recordChangesToRepository=Record changes to the repository usage_recordChangesToRepository=Record changes to the repository

View File

@ -43,16 +43,18 @@
package org.eclipse.jgit.pgm; package org.eclipse.jgit.pgm;
import static org.eclipse.jgit.lib.RefDatabase.ALL;
import java.io.IOException; import java.io.IOException;
import java.text.MessageFormat; import java.text.MessageFormat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashMap; import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Map.Entry; import java.util.Map.Entry;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.ListBranchCommand;
import org.eclipse.jgit.api.ListBranchCommand.ListMode;
import org.eclipse.jgit.lib.Constants; import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.ObjectId; import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectReader; import org.eclipse.jgit.lib.ObjectReader;
@ -60,8 +62,8 @@
import org.eclipse.jgit.lib.RefComparator; import org.eclipse.jgit.lib.RefComparator;
import org.eclipse.jgit.lib.RefRename; import org.eclipse.jgit.lib.RefRename;
import org.eclipse.jgit.lib.RefUpdate; import org.eclipse.jgit.lib.RefUpdate;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.lib.RefUpdate.Result; import org.eclipse.jgit.lib.RefUpdate.Result;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.pgm.internal.CLIText; import org.eclipse.jgit.pgm.internal.CLIText;
import org.eclipse.jgit.pgm.opt.CmdLineParser; import org.eclipse.jgit.pgm.opt.CmdLineParser;
import org.eclipse.jgit.revwalk.RevWalk; import org.eclipse.jgit.revwalk.RevWalk;
@ -78,6 +80,9 @@ class Branch extends TextBuiltin {
@Option(name = "--all", aliases = { "-a" }, usage = "usage_listBothRemoteTrackingAndLocalBranches") @Option(name = "--all", aliases = { "-a" }, usage = "usage_listBothRemoteTrackingAndLocalBranches")
private boolean all = false; private boolean all = false;
@Option(name = "--contains", metaVar = "metaVar_commitish", usage = "usage_printOnlyBranchesThatContainTheCommit")
private String containsCommitish;
@Option(name = "--delete", aliases = { "-d" }, usage = "usage_deleteFullyMergedBranch") @Option(name = "--delete", aliases = { "-d" }, usage = "usage_deleteFullyMergedBranch")
private boolean delete = false; private boolean delete = false;
@ -177,15 +182,27 @@ protected void run() throws Exception {
} }
private void list() throws Exception { private void list() throws Exception {
Map<String, Ref> refs = db.getRefDatabase().getRefs(ALL); Ref head = db.getRef(Constants.HEAD);
Ref head = refs.get(Constants.HEAD);
// This can happen if HEAD is stillborn // This can happen if HEAD is stillborn
if (head != null) { if (head != null) {
String current = head.getLeaf().getName(); String current = head.getLeaf().getName();
if (current.equals(Constants.HEAD)) ListBranchCommand command = new Git(db).branchList();
addRef("(no branch)", head); //$NON-NLS-1$ if (all)
addRefs(refs, Constants.R_HEADS, !remote); command.setListMode(ListMode.ALL);
addRefs(refs, Constants.R_REMOTES, remote); else if (remote)
command.setListMode(ListMode.REMOTE);
if (containsCommitish != null)
command.setContains(containsCommitish);
List<Ref> refs = command.call();
for (Ref ref : refs) {
if (ref.getName().equals(Constants.HEAD))
addRef("(no branch)", head); //$NON-NLS-1$
}
addRefs(refs, Constants.R_HEADS);
addRefs(refs, Constants.R_REMOTES);
ObjectReader reader = db.newObjectReader(); ObjectReader reader = db.newObjectReader();
try { try {
@ -200,14 +217,11 @@ private void list() throws Exception {
} }
} }
private void addRefs(final Map<String, Ref> allRefs, final String prefix, private void addRefs(final Collection<Ref> refs, final String prefix) {
final boolean add) { for (final Ref ref : RefComparator.sort(refs)) {
if (all || add) { final String name = ref.getName();
for (final Ref ref : RefComparator.sort(allRefs.values())) { if (name.startsWith(prefix))
final String name = ref.getName(); addRef(name.substring(name.indexOf('/', 5) + 1), ref);
if (name.startsWith(prefix))
addRef(name.substring(name.indexOf('/', 5) + 1), ref);
}
} }
} }