blob: 057e7fc1472da934de0a5a0b5a7cd4dbe60e5814 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.ui.editor.actions;
import java.net.MalformedURLException;
import java.net.URL;
import org.apache.tools.ant.AntTypeDefinition;
import org.apache.tools.ant.ComponentHelper;
import org.apache.tools.ant.Project;
import org.eclipse.ant.internal.ui.AntUIPlugin;
import org.eclipse.ant.internal.ui.AntUtil;
import org.eclipse.ant.internal.ui.IAntUIPreferenceConstants;
import org.eclipse.ant.internal.ui.editor.AntEditor;
import org.eclipse.ant.internal.ui.model.AntElementNode;
import org.eclipse.ant.internal.ui.model.AntModel;
import org.eclipse.ant.internal.ui.model.AntProjectNode;
import org.eclipse.ant.internal.ui.model.AntTargetNode;
import org.eclipse.ant.internal.ui.model.AntTaskNode;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.commands.ActionHandler;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IEditorActionDelegate;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.handlers.IHandlerService;
/**
* This action opens the selected tasks manual page in an external
* browser.
*/
public class OpenExternalDocAction extends Action implements IEditorActionDelegate {
private static final String COMMAND_ID = "org.eclipse.ant.ui.openExternalDoc"; //$NON-NLS-1$
private AntEditor fEditor;
public OpenExternalDocAction() {
}
public OpenExternalDocAction(AntEditor antEditor) {
fEditor= antEditor;
setActionDefinitionId(COMMAND_ID);
IHandlerService handlerService= (IHandlerService) antEditor.getSite().getService(IHandlerService.class);
handlerService.activateHandler(COMMAND_ID, new ActionHandler(this));
setText(AntEditorActionMessages.getString("OpenExternalDocAction.1")); //$NON-NLS-1$
setDescription(AntEditorActionMessages.getString("OpenExternalDocAction.2")); //$NON-NLS-1$
setToolTipText(AntEditorActionMessages.getString("OpenExternalDocAction.2")); //$NON-NLS-1$
}
private Shell getShell() {
return fEditor.getEditorSite().getShell();
}
private void doAction(AntElementNode node) {
Shell shell= getShell();
try {
URL url= getExternalLocation(node);
if (url != null) {
AntUtil.openBrowser(url.toString(), shell, getTitle());
}
} catch (MalformedURLException e) {
AntUIPlugin.log(e);
}
}
public URL getExternalLocation(AntElementNode node) throws MalformedURLException {
URL baseLocation= getBaseLocation();
if (baseLocation == null) {
return null;
}
String urlString= baseLocation.toExternalForm();
StringBuffer pathBuffer= new StringBuffer(urlString);
if (!urlString.endsWith("/")) { //$NON-NLS-1$
pathBuffer.append('/');
}
if (node instanceof AntProjectNode) {
pathBuffer.append("using.html#projects"); //$NON-NLS-1$
} else if (node instanceof AntTargetNode) {
if (((AntTargetNode)node).isExtensionPoint()) {
pathBuffer.append("targets.html#extension-points"); //$NON-NLS-1$
} else {
pathBuffer.append("using.html#targets"); //$NON-NLS-1$
}
} else if (node instanceof AntTaskNode) {
AntTaskNode taskNode= (AntTaskNode) node;
if (fEditor.getAntModel().getDefininingTaskNode(taskNode.getTask().getTaskName()) == null) {
//not a user defined task
appendTaskPath(taskNode, pathBuffer);
}
}
try {
return new URL(pathBuffer.toString());
} catch (MalformedURLException e) {
AntUIPlugin.log(e);
}
return null;
}
private void appendTaskPath(AntTaskNode node, StringBuffer buffer) {
String taskName= node.getTask().getTaskName();
String taskPart= null;
if (taskName.equalsIgnoreCase("path")) { //$NON-NLS-1$
buffer.append("using.html#path"); //$NON-NLS-1$
return;
}
taskPart= getTaskTypePart(node);
if (taskPart == null) {
return;
}
buffer.append(taskPart);
buffer.append('/');
buffer.append(taskName);
buffer.append(".html"); //$NON-NLS-1$
}
private URL getBaseLocation() throws MalformedURLException {
IPreferenceStore prefs = AntUIPlugin.getDefault().getPreferenceStore();
String base= prefs.getString(IAntUIPreferenceConstants.DOCUMENTATION_URL);
return new URL(base);
}
private String getTitle() {
return AntEditorActionMessages.getString("OpenExternalDocAction.0"); //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.ui.IEditorActionDelegate#setActiveEditor(org.eclipse.jface.action.IAction, org.eclipse.ui.IEditorPart)
*/
public void setActiveEditor(IAction action, IEditorPart targetEditor) {
fEditor= (AntEditor) targetEditor;
if (fEditor != null) {
IHandlerService handlerService= (IHandlerService) fEditor.getSite().getService(IHandlerService.class);
handlerService.activateHandler(COMMAND_ID, new ActionHandler(this));
}
}
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run(IAction action) {
ISelection selection= fEditor.getSelectionProvider().getSelection();
AntElementNode node= null;
if (selection instanceof ITextSelection) {
ITextSelection textSelection= (ITextSelection)selection;
int textOffset= textSelection.getOffset();
AntModel model= fEditor.getAntModel();
if (model != null) {
node= model.getNode(textOffset, false);
}
if (node != null) {
doAction(node);
}
}
}
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection)
*/
public void selectionChanged(IAction action, ISelection selection) {
}
private String getTaskTypePart(AntTaskNode node) {
AntProjectNode projectNode= node.getProjectNode();
if (projectNode != null) {
Project antProject= projectNode.getProject();
AntTypeDefinition definition= ComponentHelper.getComponentHelper(antProject).getDefinition(node.getTask().getTaskName());
if (definition == null) {
return null;
}
String className= definition.getClassName();
if (className.indexOf("taskdef") != -1) { //$NON-NLS-1$
return "Tasks"; //$NON-NLS-1$
}
return "Types"; //$NON-NLS-1$
}
return null;
}
/* (non-Javadoc)
* @see org.eclipse.jface.action.IAction#run()
*/
public void run() {
run(null);
}
}