Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2012-03-06 11:49:01 +0000
committerTomasz Zarna2012-03-06 11:49:01 +0000
commitc16d33cb372c32c25cb422662c7f86d9761572b3 (patch)
tree16f008dae1d2d6724878af734ecaa2fcc7d071a7
parenteb45436e1ee334a41ac502f87d306b7e45e69e4f (diff)
downloadeclipse.platform.team-c16d33cb372c32c25cb422662c7f86d9761572b3.tar.gz
eclipse.platform.team-c16d33cb372c32c25cb422662c7f86d9761572b3.tar.xz
eclipse.platform.team-c16d33cb372c32c25cb422662c7f86d9761572b3.zip
Applying a Git patch needs too much user workv20120306-1149
-rw-r--r--bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/PatchReader.java15
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/InputPatchPage.java15
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchWizard.java6
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PreviewPatchPage2.java5
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/WorkspacePatcher.java55
5 files changed, 88 insertions, 8 deletions
diff --git a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/PatchReader.java b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/PatchReader.java
index adf5deb6a..983b7f6b7 100644
--- a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/PatchReader.java
+++ b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/internal/core/patch/PatchReader.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * Copyright (c) 2006, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -20,6 +20,7 @@ import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.StringTokenizer;
+import java.util.regex.Pattern;
import org.eclipse.compare.patch.IFilePatch2;
import org.eclipse.core.runtime.Assert;
@@ -52,6 +53,7 @@ public class PatchReader {
};
private boolean fIsWorkspacePatch;
+ private boolean fIsGitPatch;
private DiffProject[] fDiffProjects;
private FilePatch2[] fDiffs;
@@ -61,7 +63,9 @@ public class PatchReader {
public static final String MULTIPROJECTPATCH_VERSION= "1.0"; //$NON-NLS-1$
public static final String MULTIPROJECTPATCH_PROJECT= "#P"; //$NON-NLS-1$
-
+
+ private static final Pattern GIT_PATCH_PATTERN = Pattern.compile("^diff --git a/.+ b/.+[\r\n]+$");
+
/**
* Create a patch reader for the default date formats.
*/
@@ -92,6 +96,7 @@ public class PatchReader {
// which will be replaced by the target selected by the user in the preview pane
String projectName= ""; //$NON-NLS-1$
this.fIsWorkspacePatch= false;
+ this.fIsGitPatch = false;
LineReader lr= new LineReader(reader);
if (!Platform.WS_CARBON.equals(Platform.getWS()))
@@ -102,6 +107,8 @@ public class PatchReader {
if (line != null && line.startsWith(PatchReader.MULTIPROJECTPATCH_HEADER)) {
this.fIsWorkspacePatch= true;
} else {
+ if (line != null && GIT_PATCH_PATTERN.matcher(line).matches())
+ this.fIsGitPatch = true;
parse(lr, line);
return;
}
@@ -661,6 +668,10 @@ public class PatchReader {
return this.fIsWorkspacePatch;
}
+ public boolean isGitPatch() {
+ return this.fIsGitPatch;
+ }
+
public DiffProject[] getDiffProjects() {
return this.fDiffProjects;
}
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/InputPatchPage.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/InputPatchPage.java
index 7248fccb3..544fdc3f3 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/InputPatchPage.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/InputPatchPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2010 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -214,7 +214,6 @@ public class InputPatchPage extends WizardPage {
// If this is a workspace patch we don't need to set a target as the targets will be figured out from
// all of the projects that make up the patch and continue on to final preview page
- // else go on to target selection page
if (patcher.isWorkspacePatch()) {
// skip 'Patch Target' page
IWizardPage page = super.getNextPage();
@@ -222,6 +221,18 @@ public class InputPatchPage extends WizardPage {
return page.getNextPage();
}
+ // If this is a git patch set the workspace root as the target and skip the target selection page
+ if (patcher.isGitPatch()) {
+ // skip 'Patch Target' page
+ IWizardPage page = super.getNextPage();
+ if (page.getName().equals(PatchTargetPage.PATCHTARGETPAGE_NAME)) {
+ // set the workspace root as the target
+ patcher.setTarget(ResourcesPlugin.getWorkspace().getRoot());
+ return page.getNextPage();
+ }
+ }
+
+ // else go on to target selection page
return super.getNextPage();
}
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchWizard.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchWizard.java
index ede6e0649..3f7f02d86 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchWizard.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchWizard.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2010 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -104,8 +104,10 @@ public class PatchWizard extends Wizard {
public void addPages() {
if (patch == null)
addPage(fPatchWizardPage = new InputPatchPage(this));
- if (patch == null || !fPatcher.isWorkspacePatch())
+ if (patch == null || (!fPatcher.isWorkspacePatch() && !fPatcher.isGitPatch()))
addPage(fPatchTargetPage = new PatchTargetPage(fPatcher));
+ else if (fPatcher.isGitPatch())
+ fPatcher.setTarget(ResourcesPlugin.getWorkspace().getRoot());
fPreviewPage2 = new PreviewPatchPage2(fPatcher, fConfiguration);
addPage(fPreviewPage2);
}
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PreviewPatchPage2.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PreviewPatchPage2.java
index 72763cc89..f4201ef60 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PreviewPatchPage2.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PreviewPatchPage2.java
@@ -347,6 +347,11 @@ public class PreviewPatchPage2 extends WizardPage {
//Need to handle input and rebuild tree only when becoming visible
if (visible){
fillSegmentCombo();
+ if (getPatcher().isGitPatch()) {
+ int ignore = getPatcher().calculateStripGitPrefixSegments();
+ fStripPrefixSegments.select(ignore);
+ getPatcher().setStripPrefixSegments(ignore);
+ }
// TODO: We should only do this if the tree needs to be rebuilt
rebuildTree();
updateEnablements();
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/WorkspacePatcher.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/WorkspacePatcher.java
index baecbe190..d63a246dc 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/WorkspacePatcher.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/WorkspacePatcher.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -48,6 +48,7 @@ public class WorkspacePatcher extends Patcher {
private DiffProject[] fDiffProjects;
private boolean fIsWorkspacePatch= false;
+ private boolean fIsGitPatch = false;
private final Map retargetedDiffs = new HashMap();
public WorkspacePatcher() {
@@ -62,6 +63,7 @@ public class WorkspacePatcher extends Patcher {
super.patchParsed(patchReader);
fDiffProjects = patchReader.getDiffProjects();
fIsWorkspacePatch = patchReader.isWorkspacePatch();
+ fIsGitPatch = patchReader.isGitPatch() && calculateStripGitPrefixSegments() > -1;
}
public DiffProject[] getDiffProjects() {
@@ -72,6 +74,10 @@ public class WorkspacePatcher extends Patcher {
return fIsWorkspacePatch;
}
+ public boolean isGitPatch() {
+ return fIsGitPatch;
+ }
+
//---- parsing patch files
public void applyAll(IProgressMonitor pm, IFileValidator validator) throws CoreException {
@@ -381,5 +387,50 @@ public class WorkspacePatcher extends Patcher {
return 0;
return super.getStripPrefixSegments();
}
-
+
+ int calculateStripGitPrefixSegments() {
+ FilePatch2[] diffs = getDiffs();
+ if (diffs.length == 0)
+ return -1;
+ int skip = -1;
+ for (int i = 0; i < diffs.length; i++) {
+ IPath oldPath = diffs[i].getPath(false);
+ IPath newPath = diffs[i].getPath(true);
+ if (checkFirstSegments(new IPath[] { oldPath, newPath },
+ new String[][] { { "a", "b" }, // change //$NON-NLS-1$ //$NON-NLS-2$
+ { "b", "b" }, // addition //$NON-NLS-1$ //$NON-NLS-2$
+ { "a", "a" } }) // deletion //$NON-NLS-1$ //$NON-NLS-2$
+ && oldPath.segmentCount() > 2 && newPath.segmentCount() > 2) {
+ for (int j = 1; j < Math.min(oldPath.segmentCount(),
+ newPath.segmentCount()); j++) {
+ if (projectExists(oldPath.segment(j))
+ || projectExists(newPath.segment(j))) {
+ if (skip == -1)
+ skip = j;
+ else if (skip != j)
+ return -1; // a different number of segments to be
+ // skipped, abort
+ break;
+ }
+ }
+ } else
+ return -1; // not a git diff or custom prefixes used
+ }
+ return skip;
+ }
+
+ private boolean checkFirstSegments(IPath[] paths, String[][] segments) {
+ SEGMENTS: for (int i = 0; i < segments.length; i++) {
+ for (int j = 0; j < paths.length; j++) {
+ if (!paths[j].segment(0).equals(segments[i][j]))
+ continue SEGMENTS;
+ }
+ return true;
+ }
+ return false;
+ }
+
+ private boolean projectExists(final String name) {
+ return ResourcesPlugin.getWorkspace().getRoot().getProject(name).exists();
+ }
}

Back to the top