summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2010-09-01 15:22:48 -0700
committerShawn O. Pearce <spearce@spearce.org>2010-09-01 15:24:32 -0700
commit028a613ced7a8cc935f0f8154b8f5a54509c1e12 (patch)
tree8c601c983cfe92466587f89f5f4a1a2087910614
parentea4ff61ad3de3f5742905c7a92e99cf041d19596 (diff)
downloadjgit-028a613ced7a8cc935f0f8154b8f5a54509c1e12.tar.gz
jgit-028a613ced7a8cc935f0f8154b8f5a54509c1e12.zip
Add toString and improve Javadoc of NotIgnoredFilter
Today while debugging some TreeWalk related code I noticed this filter did not have a toString(), making it harder to see what the filter graph was at a glance in the debugger. Add a toString() for debugging to match other TreeFilters, and clean up the Javadoc slightly so its a bit more clear about the purpose of the filter. While we are mucking about with some of this code, simplify the logic of include so its shorter and thus faster to read. The pattern now more closely matches that of SkipWorkTreeFilter. Change-Id: Iad433a1fa6b395dc1acb455aca268b9ce2f1d41b Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/NotIgnoredFilter.java24
1 files changed, 11 insertions, 13 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/NotIgnoredFilter.java b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/NotIgnoredFilter.java
index 122ce40344..2e96d2ffa4 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/NotIgnoredFilter.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/NotIgnoredFilter.java
@@ -50,32 +50,26 @@ import org.eclipse.jgit.treewalk.TreeWalk;
import org.eclipse.jgit.treewalk.WorkingTreeIterator;
/**
- * This filter includes workdir entries that are not ignored. This class is
- * immutable.
+ * Skip {@link WorkingTreeIterator} entries that appear in gitignore files.
*/
public class NotIgnoredFilter extends TreeFilter {
-
- private final int workdirTreeIndex;
+ private final int index;
/**
- * constructor
+ * Construct a filter to ignore paths known to a particular iterator.
*
* @param workdirTreeIndex
* index of the workdir tree in the tree walk
*/
public NotIgnoredFilter(final int workdirTreeIndex) {
- this.workdirTreeIndex = workdirTreeIndex;
+ this.index = workdirTreeIndex;
}
@Override
- public boolean include(TreeWalk walker) throws MissingObjectException,
+ public boolean include(TreeWalk tw) throws MissingObjectException,
IncorrectObjectTypeException, IOException {
- WorkingTreeIterator workingTreeIterator = walker.getTree(
- workdirTreeIndex, WorkingTreeIterator.class);
- if (workingTreeIterator != null)
- // do not include ignored entries
- return !workingTreeIterator.isEntryIgnored();
- return true;
+ WorkingTreeIterator i = tw.getTree(index, WorkingTreeIterator.class);
+ return i == null || !i.isEntryIgnored();
}
@Override
@@ -89,4 +83,8 @@ public class NotIgnoredFilter extends TreeFilter {
return this;
}
+ @Override
+ public String toString() {
+ return "NotIgnored(" + index + ")";
+ }
}