|
19 | 19 | import java.io.IOException;
|
20 | 20 | import java.nio.file.Path;
|
21 | 21 | import java.nio.file.Paths;
|
22 |
| -import java.util.List; |
| 22 | +import java.util.Collection; |
23 | 23 | import java.util.stream.Collectors;
|
| 24 | +import java.util.stream.Stream; |
24 | 25 |
|
25 |
| -import org.eclipse.jgit.api.Git; |
26 |
| -import org.eclipse.jgit.api.errors.GitAPIException; |
27 |
| -import org.eclipse.jgit.diff.DiffEntry; |
| 26 | +import org.eclipse.jgit.lib.IndexDiff; |
28 | 27 | import org.eclipse.jgit.lib.ObjectId;
|
29 |
| -import org.eclipse.jgit.lib.ObjectReader; |
30 | 28 | import org.eclipse.jgit.lib.Repository;
|
31 |
| -import org.eclipse.jgit.treewalk.CanonicalTreeParser; |
| 29 | +import org.eclipse.jgit.treewalk.FileTreeIterator; |
32 | 30 |
|
33 | 31 | import com.diffplug.spotless.extra.GitRatchet;
|
34 | 32 |
|
@@ -58,26 +56,23 @@ static GitRatchetMaven instance() {
|
58 | 56 | return instance;
|
59 | 57 | }
|
60 | 58 |
|
61 |
| - Iterable<String> getDirtyFiles(File baseDir, String ratchetFrom) |
62 |
| - throws IOException, GitAPIException { |
| 59 | + Iterable<String> getDirtyFiles(File baseDir, String ratchetFrom) throws IOException { |
63 | 60 | Repository repository = repositoryFor(baseDir);
|
64 | 61 | ObjectId sha = rootTreeShaOf(baseDir, ratchetFrom);
|
65 | 62 |
|
66 |
| - ObjectReader oldReader = repository.newObjectReader(); |
67 |
| - CanonicalTreeParser oldTree = new CanonicalTreeParser(); |
68 |
| - oldTree.reset(oldReader, sha); |
69 |
| - |
70 |
| - Git git = new Git(repository); |
71 |
| - List<DiffEntry> diffs = git.diff() |
72 |
| - .setShowNameAndStatusOnly(true) |
73 |
| - .setOldTree(oldTree) |
74 |
| - .call(); |
| 63 | + IndexDiff indexDiff = new IndexDiff(repository, sha, new FileTreeIterator(repository)); |
| 64 | + indexDiff.diff(); |
75 | 65 |
|
76 | 66 | String workTreePath = repository.getWorkTree().getPath();
|
77 | 67 | Path baseDirPath = Paths.get(baseDir.getPath());
|
78 | 68 |
|
79 |
| - return diffs.stream() |
80 |
| - .map(DiffEntry::getNewPath) |
| 69 | + return Stream.of( |
| 70 | + indexDiff.getAdded(), |
| 71 | + indexDiff.getChanged(), |
| 72 | + indexDiff.getConflicting(), |
| 73 | + indexDiff.getModified(), |
| 74 | + indexDiff.getUntracked()) |
| 75 | + .flatMap(Collection::parallelStream) |
81 | 76 | .map(path -> Paths.get(workTreePath, path))
|
82 | 77 | .map(path -> baseDirPath.relativize(path).toString())
|
83 | 78 | .collect(Collectors.toList());
|
|
0 commit comments