import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.dircache.DirCache;
import org.eclipse.jgit.dircache.DirCacheEditor;
+import org.eclipse.jgit.dircache.DirCacheEntry;
import org.eclipse.jgit.treewalk.FileTreeIterator;
public class IndexDiffTest extends RepositoryTestCase {
assertTrue(diff.getUntracked().contains(path));
}
+ public void testAssumeUnchanged() throws Exception {
+ Git git = new Git(db);
+ String path = "file";
+ writeTrashFile(path, "content");
+ git.add().addFilepattern(path).call();
+ String path2 = "file2";
+ writeTrashFile(path2, "content");
+ git.add().addFilepattern(path2).call();
+ git.commit().setMessage("commit").call();
+ assumeUnchanged(path2);
+ writeTrashFile(path, "more content");
+ writeTrashFile(path2, "more content");
+
+ FileTreeIterator iterator = new FileTreeIterator(db);
+ IndexDiff diff = new IndexDiff(db, Constants.HEAD, iterator);
+ diff.diff();
+ assertEquals(1, diff.getAssumeUnchanged().size());
+ assertEquals(2, diff.getModified().size());
+ assertEquals(0, diff.getChanged().size());
+
+ git.add().addFilepattern(".").call();
+
+ iterator = new FileTreeIterator(db);
+ diff = new IndexDiff(db, Constants.HEAD, iterator);
+ diff.diff();
+ assertEquals(1, diff.getAssumeUnchanged().size());
+ assertEquals(1, diff.getModified().size());
+ assertEquals(1, diff.getChanged().size());
+ assertTrue(diff.getAssumeUnchanged().contains("file2"));
+ assertTrue(diff.getModified().contains("file2"));
+ assertTrue(diff.getChanged().contains("file"));
+ }
+
private void removeFromIndex(String path) throws IOException {
final DirCache dirc = db.lockDirCache();
final DirCacheEditor edit = dirc.editor();
if (!edit.commit())
throw new IOException("could not commit");
}
+
+ private void assumeUnchanged(String path) throws IOException {
+ final DirCache dirc = db.lockDirCache();
+ final DirCacheEntry ent = dirc.getEntry(path);
+ if (ent != null)
+ ent.setAssumeValid(true);
+ dirc.write();
+ if (!dirc.commit())
+ throw new IOException("could not commit");
+ }
+
}
import org.eclipse.jgit.treewalk.filter.TreeFilter;
/**
- * Compares the index, a tree, and the working directory
- * Ignored files are not taken into account.
- * The following information is retrieved:
- * <li> added files
- * <li> changed files
- * <li> removed files
- * <li> missing files
- * <li> modified files
- * <li> untracked files
+ * Compares the index, a tree, and the working directory Ignored files are not
+ * taken into account. The following information is retrieved:
+ * <ul>
+ * <li>added files</li>
+ * <li>changed files</li>
+ * <li>removed files</li>
+ * <li>missing files</li>
+ * <li>modified files</li>
+ * <li>untracked files</li>
+ * <li>files with assume-unchanged flag</li>
+ * </ul>
*/
public class IndexDiff {
private Set<String> untracked = new HashSet<String>();
+ private Set<String> assumeUnchanged = new HashSet<String>();
+
/**
* Construct an IndexDiff
*
WorkingTreeIterator.class);
FileMode fileModeTree = treeWalk.getFileMode(TREE);
+ if (dirCacheIterator != null) {
+ if (dirCacheIterator.getDirCacheEntry().isAssumeValid())
+ assumeUnchanged.add(dirCacheIterator.getEntryPathString());
+ }
+
if (treeIterator != null) {
if (dirCacheIterator != null) {
if (!treeIterator.getEntryObjectId().equals(
return untracked;
}
+ /**
+ * @return list of files with the flag assume-unchanged
+ */
+ public Set<String> getAssumeUnchanged() {
+ return assumeUnchanged;
+ }
}