blob: 2f43e25df27a51c03c2087f4aa1a411bf74bd72d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 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
*******************************************************************************/
package org.eclipse.mylar.monitor.ui;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.mylar.context.core.AbstractContextStructureBridge;
import org.eclipse.mylar.context.core.ContextCorePlugin;
import org.eclipse.mylar.core.MylarStatusHandler;
import org.eclipse.mylar.monitor.core.InteractionEvent;
import org.eclipse.mylar.monitor.core.InteractionEvent.Kind;
import org.eclipse.ui.ISelectionListener;
import org.eclipse.ui.IWorkbenchPart;
/**
* Self-registering on construction. Encapsulates users' interaction with the
* context model.
*
* @author Mik Kersten
*/
public abstract class AbstractUserInteractionMonitor implements ISelectionListener {
protected Object lastSelectedElement = null;
/**
* Requires workbench to be active.
*/
public AbstractUserInteractionMonitor() {
try {
MylarMonitorUiPlugin.getDefault().addWindowPostSelectionListener(this);
} catch (NullPointerException npe) {
MylarStatusHandler.log("Monitors can not be instantiated until the workbench is active", this);
}
}
public void dispose() {
try {
MylarMonitorUiPlugin.getDefault().removeWindowPostSelectionListener(this);
} catch (NullPointerException npe) {
MylarStatusHandler.log(npe, "Could not dispose monitor.");
}
}
public void selectionChanged(IWorkbenchPart part, ISelection selection) {
if (selection == null || selection.isEmpty())
return;
if (!ContextCorePlugin.getContextManager().isContextActive()) {
handleWorkbenchPartSelection(part, selection, false);
} else {
handleWorkbenchPartSelection(part, selection, true);
}
}
protected abstract void handleWorkbenchPartSelection(IWorkbenchPart part, ISelection selection, boolean contributeToContext);
/**
* Intended to be called back by subclasses.
*/
protected InteractionEvent handleElementSelection(IWorkbenchPart part, Object selectedElement, boolean contributeToContext) {
if (selectedElement == null || selectedElement.equals(lastSelectedElement))
return null;
AbstractContextStructureBridge bridge = ContextCorePlugin.getDefault().getStructureBridge(selectedElement);
String handleIdentifier = bridge.getHandleIdentifier(selectedElement);
InteractionEvent selectionEvent;
if (bridge.getContentType() != null) {
selectionEvent = new InteractionEvent(InteractionEvent.Kind.SELECTION,
bridge.getContentType(), handleIdentifier, part.getSite().getId());
} else {
selectionEvent = new InteractionEvent(InteractionEvent.Kind.SELECTION,
null, null, part.getSite().getId());
}
if (handleIdentifier != null && contributeToContext) {
ContextCorePlugin.getContextManager().handleInteractionEvent(selectionEvent);
}
MylarMonitorUiPlugin.getDefault().notifyInteractionObserved(selectionEvent);
return selectionEvent;
}
/**
* Intended to be called back by subclasses.
*/
protected void handleElementEdit(IWorkbenchPart part, Object selectedElement, boolean contributeToContext) {
if (selectedElement == null)
return;
AbstractContextStructureBridge bridge = ContextCorePlugin.getDefault().getStructureBridge(selectedElement);
String handleIdentifier = bridge.getHandleIdentifier(selectedElement);
InteractionEvent editEvent = new InteractionEvent(InteractionEvent.Kind.EDIT, bridge.getContentType(),
handleIdentifier, part.getSite().getId());
if (handleIdentifier != null && contributeToContext) {
ContextCorePlugin.getContextManager().handleInteractionEvent(editEvent);
}
MylarMonitorUiPlugin.getDefault().notifyInteractionObserved(editEvent);
}
/**
* Intended to be called back by subclasses.
*/
protected void handleNavigation(IWorkbenchPart part, Object targetElement, String kind, boolean contributeToContext) {
AbstractContextStructureBridge adapter = ContextCorePlugin.getDefault().getStructureBridge(targetElement);
if (adapter.getContentType() != null) {
String handleIdentifier = adapter.getHandleIdentifier(targetElement);
InteractionEvent navigationEvent = new InteractionEvent(InteractionEvent.Kind.SELECTION, adapter
.getContentType(), handleIdentifier, part.getSite().getId(), kind);
if (handleIdentifier != null && contributeToContext) {
ContextCorePlugin.getContextManager().handleInteractionEvent(navigationEvent);
}
MylarMonitorUiPlugin.getDefault().notifyInteractionObserved(navigationEvent);
}
}
public Kind getEventKind() {
return InteractionEvent.Kind.SELECTION;
}
}