blob: f2dbb1a0e3fc0ac813252dcb4968f7057e8d4e90 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2005 University Of British Columbia 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:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
/*
* Created on Apr 6, 2005
*/
package org.eclipse.mylar.xml.ant;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.ant.internal.ui.editor.AntEditor;
import org.eclipse.ant.internal.ui.editor.outline.AntEditorContentOutlinePage;
import org.eclipse.core.internal.resources.Workspace;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.jface.text.TextSelection;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.mylar.core.IMylarElement;
import org.eclipse.mylar.core.MylarPlugin;
import org.eclipse.mylar.ui.IMylarUiBridge;
import org.eclipse.mylar.xml.MylarXmlPlugin;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.IFileEditorInput;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.forms.editor.FormEditor;
import org.eclipse.ui.ide.IDE;
import org.eclipse.ui.internal.Workbench;
import org.eclipse.ui.texteditor.AbstractTextEditor;
import org.eclipse.ui.views.contentoutline.ContentOutlinePage;
import org.eclipse.ui.views.contentoutline.IContentOutlinePage;
public class AntUiBridge implements IMylarUiBridge {
/**
* @see org.eclipse.mylar.ui.IMylarUiBridge#open(org.eclipse.mylar.core.IMylarElement)
*/
public void open(IMylarElement node) {
// get the handle of the node
String handle = node.getHandleIdentifier();
int first = handle.indexOf(";");
String filename = "";
if(first == -1)
filename = handle;
else
filename = handle.substring(0, first);
try{
// get the file
IPath path = new Path(filename);
IFile f = (IFile)((Workspace)ResourcesPlugin.getWorkspace()).newResource(path, IResource.FILE);
// open the xml file looking at the proper line
IEditorPart editor = openInEditor(f, true);
// if the editor is null, we had a problem and should return
if(editor == null){
MylarPlugin.log("Unable to open editor for file: " + filename, this);
return;
}
// get the contents and create a new document so that we can get
// the offsets to highlight
// String content = XmlNodeHelper.getContents(f.getContents());
// IDocument d = new Document(content);
// if(first != -1){
// int start = Integer.parseInt(handle.substring(first + 1));
//
// // get the offsets for the element
// int startOffset = d.getLineOffset(start);
// int length = 0;
//
// // set the selection if the selection provider is not null
// ISelectionProvider selectionProvider = editor.getEditorSite().getSelectionProvider();
// if(selectionProvider != null)
// selectionProvider.setSelection(new TextSelection(startOffset, length));
// }
} catch(Exception e){
MylarPlugin.fail(e, "ERROR OPENING XML EDITOR\n" + e.getMessage(), false);
}
}
/**
* Open a file in the appropriate editor
* @param file The IFile to open
* @param activate Whether to activate the editor or not
* @return The IEditorPart that the file opened in
* @throws PartInitException
*/
private IEditorPart openInEditor(IFile file, boolean activate) throws PartInitException {
if (file != null) {
IWorkbenchPage p= MylarXmlPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow().getActivePage();
if (p != null && file.exists()) {
try{
IEditorPart editorPart= IDE.openEditor(p, file, activate);
return editorPart;
} catch (Exception e){
// ignore this
}
// initializeHighlightRange(editorPart);
}
}
return null;
}
public void close(IMylarElement node) {
IWorkbenchPage page = Workbench.getInstance().getActiveWorkbenchWindow().getActivePage();
if (page != null) {
IEditorReference[] references = page.getEditorReferences();
for (int i = 0; i < references.length; i++) {
IEditorPart part = references[i].getEditor(false);
if (part != null) {
if (part.getEditorInput() instanceof IFileEditorInput) {
IFileEditorInput input = (IFileEditorInput)part.getEditorInput();
if ((input.getFile().getFullPath().toString()).equals(node.getHandleIdentifier())) {
if (part instanceof FormEditor) {
((FormEditor)part).close(true);
} else if (part instanceof AbstractTextEditor) {
((AbstractTextEditor)part).close(true);
}
}
}
}
}
}
}
public boolean acceptsEditor(IEditorPart editorPart) {
return editorPart instanceof AntEditor;
}
/**
* HACK: use reflection to get the TreeViewer
*/
public List<TreeViewer> getContentOutlineViewers(IEditorPart editor) {
List<TreeViewer> viewers = new ArrayList<TreeViewer>();
if(editor instanceof AntEditor){
try{
AntEditor ae = (AntEditor)editor;
AntEditorContentOutlinePage outline = (AntEditorContentOutlinePage)ae.getAdapter(IContentOutlinePage.class);
Class clazz = ContentOutlinePage.class;
Method method= clazz.getDeclaredMethod("getTreeViewer", new Class[] { });
method.setAccessible(true);
viewers.add((TreeViewer)method.invoke(outline, new Object[] { }));
} catch (Exception e) {
MylarPlugin.log(e, "couldn't get outline");
}
}
return viewers;
}
public Object getObjectForTextSelection(TextSelection selection, IEditorPart editor) {
return null;
}
// public void refreshOutline(Object element, boolean updateLabels, boolean setSelection) {
// IEditorPart editorPart = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor();
// TreeViewer treeViewer = getOutlineTreeViewer(editorPart);
// if (treeViewer != null) {
// if (element == null || element instanceof IFile) {
// treeViewer.getControl().setRedraw(false);
// treeViewer.refresh(true);
// treeViewer.getControl().setRedraw(true);
// } else if (element instanceof AntElementNode) {
// treeViewer.getControl().setRedraw(false);
// treeViewer.refresh(element, updateLabels);
// treeViewer.getControl().setRedraw(true);
// if (setSelection) {
// if(((StructuredSelection)treeViewer.getSelection()).getFirstElement() != element)
// treeViewer.setSelection(new StructuredSelection(element));
// }
// }
// }
// }
}