From beb16cec2614f6f95f258f4cfcc8258ca72db3b2 Mon Sep 17 00:00:00 2001 From: Robin Stocker Date: Mon, 3 Dec 2012 14:59:39 +0100 Subject: [PATCH] Support --cached in RmCommand Also extend documentation and add examples. Bug: 395599 Change-Id: Id1ddbc9da787472f82e58834092bc073224b262b Signed-off-by: Chris Aniszczyk --- .../org/eclipse/jgit/api/RmCommandTest.java | 16 ++++- .../src/org/eclipse/jgit/api/RmCommand.java | 61 +++++++++++++++---- 2 files changed, 64 insertions(+), 13 deletions(-) diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RmCommandTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RmCommandTest.java index 2eb4f2294..0323ba3f8 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RmCommandTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/RmCommandTest.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010, Chris Aniszczyk + * Copyright (C) 2010, 2012 Chris Aniszczyk * and other copyright owners as documented in the project's IP log. * * This program and the accompanying materials are made available @@ -43,7 +43,9 @@ package org.eclipse.jgit.api; import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import java.io.File; import java.io.IOException; import org.eclipse.jgit.api.errors.GitAPIException; @@ -80,4 +82,16 @@ public void testRemove() throws JGitInternalException, assertEquals("", indexState(CONTENT)); } + @Test + public void testRemoveCached() throws Exception { + File newFile = writeTrashFile("new.txt", "new"); + git.add().addFilepattern(newFile.getName()).call(); + assertEquals("[new.txt, mode:100644][test.txt, mode:100644]", + indexState(0)); + + git.rm().setCached(true).addFilepattern(newFile.getName()).call(); + + assertEquals("[test.txt, mode:100644]", indexState(0)); + assertTrue("File should not have been removed.", newFile.exists()); + } } diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/RmCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/RmCommand.java index d29d547bd..ac30ffcb7 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/RmCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/RmCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010, Chris Aniszczyk + * Copyright (C) 2010, 2012 Chris Aniszczyk * and other copyright owners as documented in the project's IP log. * * This program and the accompanying materials are made available @@ -61,10 +61,27 @@ import org.eclipse.jgit.treewalk.filter.PathFilterGroup; /** - * A class used to execute a {@code Rm} command. It has setters for all - * supported options and arguments of this command and a {@link #call()} method - * to finally execute the command. Each instance of this class should only be - * used for one invocation of the command (means: one call to {@link #call()}) + * Remove files from the index and working directory (or optionally only from + * the index). + *

+ * It has setters for all supported options and arguments of this command and a + * {@link #call()} method to finally execute the command. Each instance of this + * class should only be used for one invocation of the command (means: one call + * to {@link #call()}). + *

+ * Examples (git is a {@link Git} instance): + *

+ * Remove file "test.txt" from both index and working directory: + * + *

+ * git.rm().addFilepattern("test.txt").call();
+ * 
+ *

+ * Remove file "new.txt" from the index (but not from the working directory): + * + *

+ * git.rm().setCached(true).addFilepattern("new.txt").call();
+ * 
* * @see Git documentation about Rm @@ -73,6 +90,9 @@ public class RmCommand extends GitCommand { private Collection filepatterns; + /** Only remove files from index, not from working directory */ + private boolean cached = false; + /** * * @param repo @@ -93,6 +113,21 @@ public RmCommand addFilepattern(String filepattern) { return this; } + /** + * Only remove the specified files from the index. + * + * @param cached + * true if files should only be removed from index, false if + * files should also be deleted from the working directory + * @return {@code this} + * @since 2.2 + */ + public RmCommand setCached(boolean cached) { + checkCallable(); + this.cached = cached; + return this; + } + /** * Executes the {@code Rm} command. Each instance of this class should only * be used for one invocation of the command. Don't call this method twice @@ -118,13 +153,15 @@ public DirCache call() throws GitAPIException, tw.addTree(new DirCacheBuildIterator(builder)); while (tw.next()) { - final File path = new File(repo.getWorkTree(), - tw.getPathString()); - final FileMode mode = tw.getFileMode(0); - if (mode.getObjectType() == Constants.OBJ_BLOB) { - // Deleting a blob is simply a matter of removing - // the file or symlink named by the tree entry. - delete(path); + if (!cached) { + final FileMode mode = tw.getFileMode(0); + if (mode.getObjectType() == Constants.OBJ_BLOB) { + final File path = new File(repo.getWorkTree(), + tw.getPathString()); + // Deleting a blob is simply a matter of removing + // the file or symlink named by the tree entry. + delete(path); + } } } builder.commit();