Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian W. Damus2016-02-25 02:16:48 +0000
committerChristian W. Damus2016-02-25 03:04:21 +0000
commita6241611bfefa953e4dabd4b68a9152a6ee3afa9 (patch)
treee423a6295a9e0ba1af2df2c8a74ce5815e33e96a /plugins/developer
parent4e87bc24665e771a67d29242229fddc75ddece72 (diff)
downloadorg.eclipse.papyrus-a6241611bfefa953e4dabd4b68a9152a6ee3afa9.tar.gz
org.eclipse.papyrus-a6241611bfefa953e4dabd4b68a9152a6ee3afa9.tar.xz
org.eclipse.papyrus-a6241611bfefa953e4dabd4b68a9152a6ee3afa9.zip
Bug 485220: [Architecture] Provide a more modular architecture
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Add "open parent POM" context menu action. Change-Id: I66d46bfa2bbcadc16000b919a6035975aa96c53b
Diffstat (limited to 'plugins/developer')
-rw-r--r--plugins/developer/org.eclipse.papyrus.dev.project.management/plugin.xml30
-rw-r--r--plugins/developer/org.eclipse.papyrus.dev.project.management/src/org/eclipse/papyrus/dev/project/management/handlers/plugins/OpenParentPOMHandler.java191
2 files changed, 221 insertions, 0 deletions
diff --git a/plugins/developer/org.eclipse.papyrus.dev.project.management/plugin.xml b/plugins/developer/org.eclipse.papyrus.dev.project.management/plugin.xml
index a48f8b8effd..0ddaded481a 100644
--- a/plugins/developer/org.eclipse.papyrus.dev.project.management/plugin.xml
+++ b/plugins/developer/org.eclipse.papyrus.dev.project.management/plugin.xml
@@ -44,6 +44,12 @@
id="org.eclipse.papyrus.dev.project.management.command.syncPOMVersions"
name="Synchronize POM Versions">
</command>
+ <command
+ defaultHandler="org.eclipse.papyrus.dev.project.management.handlers.plugins.OpenParentPOMHandler"
+ description="Open the parent POM, even if not in the workspace"
+ id="org.eclipse.papyrus.dev.project.management.command.openParentPOM"
+ name="Open Parent POM">
+ </command>
</extension>
<extension
point="org.eclipse.ui.menus">
@@ -120,6 +126,30 @@
</visibleWhen>
</command>
</menuContribution>
+ <menuContribution
+ locationURI="popup:org.eclipse.ui.popup.any?after=additions">
+ <command
+ commandId="org.eclipse.papyrus.dev.project.management.command.openParentPOM">
+ <visibleWhen
+ checkEnabled="false">
+ <iterate>
+ <adapt
+ type="org.eclipse.core.resources.IFile">
+ <or>
+ <test
+ property="org.eclipse.core.resources.name"
+ value="pom.xml">
+ </test>
+ <test
+ property="org.eclipse.core.resources.contentTypeId"
+ value="org.eclipse.m2e.core.pomFile">
+ </test>
+ </or>
+ </adapt>
+ </iterate>
+ </visibleWhen>
+ </command>
+ </menuContribution>
</extension>
<extension
diff --git a/plugins/developer/org.eclipse.papyrus.dev.project.management/src/org/eclipse/papyrus/dev/project/management/handlers/plugins/OpenParentPOMHandler.java b/plugins/developer/org.eclipse.papyrus.dev.project.management/src/org/eclipse/papyrus/dev/project/management/handlers/plugins/OpenParentPOMHandler.java
new file mode 100644
index 00000000000..78408bf3f4b
--- /dev/null
+++ b/plugins/developer/org.eclipse.papyrus.dev.project.management/src/org/eclipse/papyrus/dev/project/management/handlers/plugins/OpenParentPOMHandler.java
@@ -0,0 +1,191 @@
+/*****************************************************************************
+ * Copyright (c) 2016 Christian W. Damus 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Christian W. Damus - Initial API and implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.dev.project.management.handlers.plugins;
+
+import java.io.File;
+import java.io.InputStream;
+
+import javax.xml.parsers.SAXParser;
+import javax.xml.parsers.SAXParserFactory;
+
+import org.eclipse.core.commands.AbstractHandler;
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IWorkspaceRoot;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.OperationCanceledException;
+import org.eclipse.core.runtime.Path;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.core.runtime.content.IContentDescription;
+import org.eclipse.core.runtime.content.IContentType;
+import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.papyrus.dev.project.management.Activator;
+import org.eclipse.papyrus.infra.tools.util.PlatformHelper;
+import org.eclipse.ui.ISources;
+import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.handlers.HandlerUtil;
+import org.eclipse.ui.ide.IDE;
+import org.xml.sax.Attributes;
+import org.xml.sax.SAXException;
+import org.xml.sax.helpers.DefaultHandler;
+
+/**
+ * Handler for the "open parent POM" command.
+ */
+public class OpenParentPOMHandler extends AbstractHandler {
+ private final String POM_CONTENT_TYPE = "org.eclipse.m2e.core.pomFile"; //$NON-NLS-1$
+
+ public OpenParentPOMHandler() {
+ super();
+ }
+
+ @Override
+ public Object execute(ExecutionEvent event) throws ExecutionException {
+ try {
+ IFile pom = getSelectedPOM(HandlerUtil.getActiveMenuSelection(event));
+ IPath parentPath = (pom == null) ? null : getParentPath(pom);
+
+ if (parentPath != null) {
+ open(HandlerUtil.getActiveWorkbenchWindow(event).getActivePage(), parentPath);
+ }
+ } catch (Exception e) {
+ throw new ExecutionException("Failed to open parent POM", e);
+ }
+
+ return null;
+ }
+
+ @Override
+ public void setEnabled(Object evaluationContext) {
+ Object selection = HandlerUtil.getVariable(evaluationContext, ISources.ACTIVE_MENU_SELECTION_NAME);
+ setBaseEnabled(getSelectedPOM(selection) != null);
+ }
+
+ private IFile getSelectedPOM(Object selection) {
+ IFile result = null;
+
+ if (selection instanceof IStructuredSelection) {
+ Object first = ((IStructuredSelection) selection).getFirstElement();
+ IFile file = PlatformHelper.getAdapter(first, IFile.class);
+ if (file != null) {
+ try {
+ IContentType expected = Platform.getContentTypeManager().getContentType(POM_CONTENT_TYPE);
+ if (expected == null) {
+ // Don't have m2e installed? Only support pom.xml, then
+ if (file.getName().equals("pom.xml")) {
+ result = file;
+ }
+ } else {
+ IContentDescription desc = file.getContentDescription();
+ IContentType type = (desc == null) ? null : desc.getContentType();
+ if ((type != null) && type.isKindOf(expected)) {
+ result = file;
+ }
+ }
+ result = file;
+ } catch (CoreException e) {
+ // Can't describe it? Must not be a valid POM
+ Activator.log.log(e.getStatus());
+ }
+ }
+ }
+
+ return result;
+ }
+
+ private void open(IWorkbenchPage page, IPath pomPath) throws Exception {
+ File file = pomPath.toFile();
+ IWorkspaceRoot ws = ResourcesPlugin.getWorkspace().getRoot();
+ IFile[] workspaceFiles = ws.findFilesForLocationURI(file.toURI());
+ if (workspaceFiles.length > 0) {
+ IDE.openEditor(page, workspaceFiles[0]);
+ } else {
+ String editor = IDE.getEditorDescriptor(file.getName()).getId();
+ IDE.openEditor(page, file.toURI(), editor, true);
+ }
+ }
+
+ IPath getParentPath(IFile pom) throws Exception {
+ SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
+ class ParentHandler extends DefaultHandler {
+ private StringBuilder parentBuilder;
+ private boolean inParent;
+
+ @Override
+ public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
+ if ("parent".equals(localName) || "parent".equals(qName)) {
+ inParent = true;
+ } else if (inParent && ("relativePath".equals(localName) || "relativePath".equals(qName))) {
+ // Getting the parent relative path
+ parentBuilder = new StringBuilder();
+ }
+ }
+
+ @Override
+ public void characters(char[] ch, int start, int length) throws SAXException {
+ if (parentBuilder != null) {
+ // We're collecting the parent relative path
+ parentBuilder.append(ch, start, length);
+ }
+ }
+
+ @Override
+ public void endElement(String uri, String localName, String qName) throws SAXException {
+ if ("parent".equals(localName) || "parent".equals(qName)) {
+ // Done
+ throw new OperationCanceledException();
+ } else if (inParent && ("relativePath".equals(localName) || "relativePath".equals(qName))) {
+ // Done
+ throw new OperationCanceledException();
+ }
+ }
+
+ IPath getParentPath() {
+ IPath result = null;
+
+ IPath location = pom.getLocation();
+ if (location != null) { // Can be null if not actually a real file
+ if (parentBuilder == null) {
+ // Implicit parent path
+ result = location.removeLastSegments(2).append("pom.xml");
+ } else {
+ IPath relative = new Path(parentBuilder.toString().trim());
+ result = location.removeLastSegments(1).append(relative);
+
+ // Is it just pointing at a directory?
+ File parent = result.toFile();
+ if (parent.exists() && parent.isDirectory()) {
+ result = result.append("pom.xml");
+ }
+ }
+ }
+
+ return result;
+ }
+ }
+
+ ParentHandler handler = new ParentHandler();
+
+ try (InputStream input = pom.getContents()) {
+ parser.parse(input, handler);
+ } catch (OperationCanceledException e) {
+ // Normal
+ }
+
+ return handler.getParentPath();
+ }
+}

Back to the top