blob: 542c98cd6e7736e58c5739a1a1c7688e66a8ab10 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Mylyn project committers 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:
* Red Hat Inc. - Initial implementation based on JavaUiBridge
*******************************************************************************/
package org.eclipse.mylyn.internal.cdt.ui;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.cdt.core.model.CModelException;
import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.internal.ui.actions.SelectionConverter;
import org.eclipse.cdt.internal.ui.editor.AbstractCModelOutlinePage;
import org.eclipse.cdt.internal.ui.editor.CContentOutlinePage;
import org.eclipse.cdt.internal.ui.editor.CEditor;
import org.eclipse.cdt.internal.ui.util.EditorUtility;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.text.TextSelection;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.mylyn.commons.core.StatusHandler;
import org.eclipse.mylyn.context.core.ContextCore;
import org.eclipse.mylyn.context.core.IInteractionElement;
import org.eclipse.mylyn.context.ui.AbstractContextUiBridge;
import org.eclipse.osgi.util.NLS;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.views.contentoutline.IContentOutlinePage;
/**
* @author Mik Kersten
* @author Jeff Johnston
* @author Shawn Minto
*/
public class CDTUiBridge extends AbstractContextUiBridge {
private Field cOutlineField = null;
public CDTUiBridge() {
try {
cOutlineField = AbstractCModelOutlinePage.class.getDeclaredField("fTreeViewer"); //$NON-NLS-1$
cOutlineField.setAccessible(true);
} catch (Exception e) {
StatusHandler.fail(new Status(IStatus.ERROR, CDTUIBridgePlugin.ID_PLUGIN,
"could not get install Mylyn on Outline viewer", e)); //$NON-NLS-1$
}
}
@Override
public void open(IInteractionElement node) {
try {
ICElement cElement = CDTStructureBridge.getElementForHandle(node.getHandleIdentifier());
if (cElement == null || !cElement.exists()) {
return;
}
EditorUtility.openInEditor(cElement);
} catch (CModelException t) {
StatusHandler.fail(new Status(IStatus.ERROR, CDTUIBridgePlugin.ID_PLUGIN, NLS.bind(
"could not open editor for: {0}", new String[] { node.getHandleIdentifier() }), t)); //$NON-NLS-1$
} catch (PartInitException t) {
StatusHandler.fail(new Status(IStatus.ERROR, CDTUIBridgePlugin.ID_PLUGIN, NLS.bind(
"could not open editor for: {0}", new String[] { node.getHandleIdentifier() }), t)); //$NON-NLS-1$
}
}
@Override
public void close(IInteractionElement node) {
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
if (page != null) {
List<IEditorReference> toClose = new ArrayList<IEditorReference>(4);
for (IEditorReference reference : page.getEditorReferences()) {
try {
ICElement input = (ICElement) reference.getEditorInput().getAdapter(ICElement.class);
if (input != null
&& node.getHandleIdentifier().equals(CDTStructureBridge.getHandleForElement(input))) {
toClose.add(reference);
}
} catch (PartInitException e) {
// ignore
}
}
if (toClose.size() > 0) {
page.closeEditors(toClose.toArray(new IEditorReference[toClose.size()]), true);
}
}
}
@Override
public boolean acceptsEditor(IEditorPart editorPart) {
return editorPart instanceof CEditor;
}
@Override
public IInteractionElement getElement(IEditorInput input) {
Object adapter = input.getAdapter(ICElement.class);
if (adapter instanceof ICElement) {
ICElement cElement = (ICElement) adapter;
String handle = ContextCore.getStructureBridge(cElement).getHandleIdentifier(cElement);
return ContextCore.getContextManager().getElement(handle);
} else {
return null;
}
}
@Override
public List<TreeViewer> getContentOutlineViewers(IEditorPart editorPart) {
if (editorPart == null || cOutlineField == null) {
return null;
}
List<TreeViewer> viewers = new ArrayList<TreeViewer>();
Object out = editorPart.getAdapter(IContentOutlinePage.class);
if (out instanceof CContentOutlinePage) {
CContentOutlinePage page = (CContentOutlinePage) out;
if (page.getControl() != null) {
try {
viewers.add((TreeViewer) cOutlineField.get(page));
} catch (Exception e) {
StatusHandler.log(new Status(IStatus.ERROR, CDTUIBridgePlugin.ID_PLUGIN,
"Could not get Outline viewer.", e)); //$NON-NLS-1$
}
}
}
return viewers;
}
@Override
public Object getObjectForTextSelection(TextSelection selection, IEditorPart editor) {
if (editor instanceof CEditor) {
TextSelection textSelection = selection;
try {
if (selection != null) {
return SelectionConverter.getElementAtOffset(((CEditor) editor).getInputCElement(), textSelection);
} else {
Object element = ((CEditor) editor).getInputCElement();
if (element instanceof ICElement) {
return element;
}
}
} catch (CModelException e) {
// ignore
}
}
return null;
}
@Override
public String getContentType() {
return CDTStructureBridge.CONTENT_TYPE;
}
}