Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wolf2018-06-12 12:47:19 +0000
committerThomas Wolf2018-06-18 10:07:52 +0000
commit76d3d8b89bcaab1a42dfe1d70bca6f330b8291dc (patch)
treee81c1b0deb120a5c983945fd28f8276c000c6dbb /org.eclipse.egit.ui/src/org
parent60c1ccd8def459d64308531057269afd1841d38d (diff)
downloadegit-76d3d8b89bcaab1a42dfe1d70bca6f330b8291dc.tar.gz
egit-76d3d8b89bcaab1a42dfe1d70bca6f330b8291dc.tar.xz
egit-76d3d8b89bcaab1a42dfe1d70bca6f330b8291dc.zip
Fix CommitUI.getSelectedFiles()
This method is used to restrict the files that can be potentially committed to those covered by the user's resource selection. If a container is selected, all modified files under that container are to be included in a commit. Previous code started off with the modified files as known in git, then tried to figure out which resource such a file was in Eclipse, and then checked if that resource was contained by any of the selected resources. It failed to reliably identify matches when a file appeared as several resources in the Eclipse resource tree. The new code swaps the logic around. It starts with the resource selection and finds the repository-relative paths for all, and then filters the modified files as known in git. Bug: 535796 Change-Id: I0b77876ed3913cac987a07444c9de1e6a43e69ee Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
Diffstat (limited to 'org.eclipse.egit.ui/src/org')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/commit/CommitUI.java70
1 files changed, 46 insertions, 24 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/commit/CommitUI.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/commit/CommitUI.java
index cccde3dd4b..96493559a3 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/commit/CommitUI.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/commit/CommitUI.java
@@ -19,19 +19,19 @@
package org.eclipse.egit.ui.internal.commit;
-import java.io.File;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
-import java.net.URI;
+import java.util.ArrayList;
+import java.util.Collections;
import java.util.HashSet;
+import java.util.Iterator;
import java.util.LinkedHashSet;
+import java.util.List;
import java.util.Set;
-import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IResourceVisitor;
-import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
@@ -41,6 +41,7 @@ import org.eclipse.core.runtime.SubMonitor;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.egit.core.EclipseGitProgressTransformer;
import org.eclipse.egit.core.IteratorService;
+import org.eclipse.egit.core.internal.util.ResourceUtil;
import org.eclipse.egit.core.op.CommitOperation;
import org.eclipse.egit.core.project.RepositoryMapping;
import org.eclipse.egit.ui.Activator;
@@ -260,31 +261,52 @@ public class CommitUI {
Set<String> mayBeCommitted,
IResource[] resourcesSelected) {
Set<String> preselectionCandidates = new LinkedHashSet<>();
- IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
- // iterate through all the files that may be committed
- for (String fileName : mayBeCommitted) {
- URI uri = new File(repository.getWorkTree(), fileName).toURI();
- IFile[] workspaceFiles = root.findFilesForLocationURI(uri);
- if (workspaceFiles.length > 0) {
- IFile file = workspaceFiles[0];
- for (IResource resource : resourcesSelected) {
- // if any selected resource contains the file, add it as a
- // preselection candidate
- if (resource.contains(file)) {
- preselectionCandidates.add(fileName);
- break;
+ if (repository == null || mayBeCommitted.isEmpty()) {
+ return preselectionCandidates;
+ }
+ List<String> selectedDirectories = new ArrayList<>();
+ Set<String> selectedFiles = new HashSet<>();
+ for (IResource rsc : resourcesSelected) {
+ IPath p = ResourceUtil.getRepositoryRelativePath(rsc.getLocation(),
+ repository);
+ if (p != null) {
+ if (p.isEmpty()) {
+ // Resource is the root of the working tree: include all
+ return mayBeCommitted;
+ } else {
+ String rscPath = p.toString();
+ if (rsc.getType() == IResource.FILE) {
+ selectedFiles.add(rscPath);
+ } else {
+ selectedDirectories.add(rscPath + '/');
}
}
- } else {
- // could be file outside of workspace
- for (IResource resource : resourcesSelected) {
- IPath location = resource.getLocation();
- if(location != null && location.toFile().equals(new File(uri))) {
- preselectionCandidates.add(fileName);
- }
+ }
+ }
+ // Sorting moves parent directories to the front and thus we waste
+ // less time re-checking for sub-directories.
+ Collections.sort(selectedDirectories);
+ String lastAncestor = null;
+ for (String prefix : selectedDirectories) {
+ if (lastAncestor != null && prefix.startsWith(lastAncestor)) {
+ // Skip sub-directories if we already checked for an ancestor.
+ continue;
+ }
+ Iterator<String> iterator = mayBeCommitted.iterator();
+ while (iterator.hasNext()) {
+ String candidate = iterator.next();
+ if (candidate.startsWith(prefix)) {
+ iterator.remove();
+ preselectionCandidates.add(candidate);
}
}
+ if (mayBeCommitted.isEmpty()) {
+ return preselectionCandidates;
+ }
+ lastAncestor = prefix;
}
+ selectedFiles.retainAll(mayBeCommitted);
+ preselectionCandidates.addAll(selectedFiles);
return preselectionCandidates;
}

Back to the top