Browse Source

Include list of assume unchanged files in IndexDiff

The IndexDiff had not collected the info if the flag
"assume-unchanged" is set. This information is useful for clients
which may want to decide if specific actions are allowed on a file.

Bug: 326213
Change-Id: I14bb7b03247d6c0b429a9d8d3f6b10f21d8ddeb1
Signed-off-by: Stefan Lay <stefan.lay@sap.com>
tags/v0.10.1
Stefan Lay 13 years ago
parent
commit
b4359cb829

+ 45
- 0
org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/IndexDiffTest.java View File

import org.eclipse.jgit.api.Git; import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.dircache.DirCache; import org.eclipse.jgit.dircache.DirCache;
import org.eclipse.jgit.dircache.DirCacheEditor; import org.eclipse.jgit.dircache.DirCacheEditor;
import org.eclipse.jgit.dircache.DirCacheEntry;
import org.eclipse.jgit.treewalk.FileTreeIterator; import org.eclipse.jgit.treewalk.FileTreeIterator;


public class IndexDiffTest extends RepositoryTestCase { public class IndexDiffTest extends RepositoryTestCase {
assertTrue(diff.getUntracked().contains(path)); 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 { private void removeFromIndex(String path) throws IOException {
final DirCache dirc = db.lockDirCache(); final DirCache dirc = db.lockDirCache();
final DirCacheEditor edit = dirc.editor(); final DirCacheEditor edit = dirc.editor();
if (!edit.commit()) if (!edit.commit())
throw new IOException("could not 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");
}

} }

+ 24
- 9
org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java View File

import org.eclipse.jgit.treewalk.filter.TreeFilter; 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 { public class IndexDiff {




private Set<String> untracked = new HashSet<String>(); private Set<String> untracked = new HashSet<String>();


private Set<String> assumeUnchanged = new HashSet<String>();

/** /**
* Construct an IndexDiff * Construct an IndexDiff
* *
WorkingTreeIterator.class); WorkingTreeIterator.class);
FileMode fileModeTree = treeWalk.getFileMode(TREE); FileMode fileModeTree = treeWalk.getFileMode(TREE);


if (dirCacheIterator != null) {
if (dirCacheIterator.getDirCacheEntry().isAssumeValid())
assumeUnchanged.add(dirCacheIterator.getEntryPathString());
}

if (treeIterator != null) { if (treeIterator != null) {
if (dirCacheIterator != null) { if (dirCacheIterator != null) {
if (!treeIterator.getEntryObjectId().equals( if (!treeIterator.getEntryObjectId().equals(
return untracked; return untracked;
} }


/**
* @return list of files with the flag assume-unchanged
*/
public Set<String> getAssumeUnchanged() {
return assumeUnchanged;
}
} }

Loading…
Cancel
Save