summaryrefslogtreecommitdiff
path: root/platform/platform-impl/src/com/intellij/openapi/diff/MergeApplication.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/platform-impl/src/com/intellij/openapi/diff/MergeApplication.java')
-rw-r--r--platform/platform-impl/src/com/intellij/openapi/diff/MergeApplication.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/platform/platform-impl/src/com/intellij/openapi/diff/MergeApplication.java b/platform/platform-impl/src/com/intellij/openapi/diff/MergeApplication.java
new file mode 100644
index 000000000000..0c088929ea49
--- /dev/null
+++ b/platform/platform-impl/src/com/intellij/openapi/diff/MergeApplication.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2000-2014 JetBrains s.r.o.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.intellij.openapi.diff;
+
+import com.intellij.openapi.application.ApplicationNamesInfo;
+import com.intellij.openapi.project.ProjectManager;
+import com.intellij.openapi.vfs.VirtualFile;
+
+/**
+ * @author Konstantin Bulenkov
+ */
+public class MergeApplication extends ApplicationStarterBase {
+ public MergeApplication() {
+ super("merge", 3 ,4);
+ }
+
+ @Override
+ public String getUsageMessage() {
+ final String script = ApplicationNamesInfo.getInstance().getScriptName();
+ return String.format("Usage:\n\t%s merge <file1> <file2> <original>\n\t%s merge <file1> <file2> <original> <output>", script, script);
+ }
+
+ @Override
+ protected void processCommand(String[] args) throws Exception {
+ final VirtualFile left = findFile(args[1]);
+ final VirtualFile right = findFile(args[2]);
+ final VirtualFile middle = findFile(args[3]);
+ final VirtualFile result = findOrCreateFile(args.length == 4 ? args[3] : args[4]);
+
+ MergeRequest request = DiffRequestFactory.getInstance()
+ .createMergeRequest(getText(left), getText(right), getText(middle), result,
+ ProjectManager.getInstance().getDefaultProject(),
+ ActionButtonPresentation.APPLY,
+ ActionButtonPresentation.CANCEL_WITH_PROMPT);
+ request.addHint(DiffTool.HINT_SHOW_MODAL_DIALOG);
+ request.setWindowTitle("Merge");
+ request.setVersionTitles(new String[]{left.getPresentableUrl(), result.getPresentableUrl(), middle.getPresentableUrl()});
+ DiffManager.getInstance().getDiffTool().show(request);
+ }
+}