blob: 0556af2b4c71c8a3e7d5e1fbf090c80df60ac69b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.wst.jsdt.debug.internal.ui.actions;
import java.util.Iterator;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IMarkerDelta;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.IBreakpointManager;
import org.eclipse.debug.core.IBreakpointsListener;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IPartListener;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.wst.jsdt.debug.core.breakpoints.IJavaScriptBreakpoint;
import org.eclipse.wst.jsdt.debug.internal.ui.JavaScriptDebugUIPlugin;
import org.eclipse.wst.jsdt.debug.internal.ui.Messages;
import org.eclipse.wst.jsdt.internal.ui.util.ExceptionHandler;
/**
* Provides a general toggle action for breakpoints to reuse
*
* @since 1.0
*/
public abstract class BreakpointToggleAction implements IObjectActionDelegate, IBreakpointsListener, IPartListener {
private IStructuredSelection fSelection;
private IAction fAction;
private IWorkbenchPart fPart;
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run(IAction action) {
IStructuredSelection selection= getStructuredSelection();
Iterator itr= selection.iterator();
while (itr.hasNext()) {
try {
IJavaScriptBreakpoint breakpoint= (IJavaScriptBreakpoint) itr.next();
doAction(breakpoint);
} catch (CoreException e) {
String title = Messages.breakpoint_configuration;
String message = Messages.exception_occurred_setting_bp_properties;
ExceptionHandler.handle(e, title, message);
}
}
}
/**
* @see IActionDelegate#selectionChanged(IAction, ISelection)
*/
public void selectionChanged(IAction action, ISelection selection) {
setAction(action);
if (selection.isEmpty()) {
setStructuredSelection(null);
return;
}
if (selection instanceof IStructuredSelection) {
setStructuredSelection((IStructuredSelection)selection);
boolean enabled = isEnabledFor(getStructuredSelection());
action.setEnabled(enabled);
if (enabled && isToggleAction()) {
IBreakpoint breakpoint = (IBreakpoint)getStructuredSelection().getFirstElement();
if (breakpoint instanceof IJavaScriptBreakpoint) {
try {
action.setChecked(getToggleState((IJavaScriptBreakpoint) breakpoint));
} catch (CoreException e) {
JavaScriptDebugUIPlugin.log(e);
}
}
}
}
}
/**
* Returns if the action is a checkable action. i.e. if we should bother updating checked state
* @return if the action is a checkable action
*/
protected boolean isToggleAction() {
return true;
}
/**
* Toggle the state of this action
*/
public abstract void doAction(IJavaScriptBreakpoint breakpoint) throws CoreException;
/**
* Returns whether this action is currently toggled on
*/
protected abstract boolean getToggleState(IJavaScriptBreakpoint breakpoint) throws CoreException;
/**
* Get the current selection
*/
protected IStructuredSelection getStructuredSelection() {
return fSelection;
}
/**
* Allows the current structured selection to be set
* @param selection the new selection
*/
protected void setStructuredSelection(IStructuredSelection selection) {
fSelection= selection;
}
/**
* Returns if the underlying action should be enabled for the given selection
* @param selection
* @return if the underlying action should be enabled for the given selection
*/
public abstract boolean isEnabledFor(IStructuredSelection selection);
/**
* Get the breakpoint manager for the debug plugin
*/
protected IBreakpointManager getBreakpointManager() {
return DebugPlugin.getDefault().getBreakpointManager();
}
/**
* Get the breakpoint associated with the given marker
*/
protected IBreakpoint getBreakpoint(IMarker marker) {
return getBreakpointManager().getBreakpoint(marker);
}
/**
* Returns the underlying <code>IAction</code> for this delegate
* @return the underlying <code>IAction</code> for this delegate
*/
protected IAction getAction() {
return fAction;
}
/**
* Allows the underlying <code>IAction</code> for this delegate to be set
* @param action the new action to set for this delegate
*/
protected void setAction(IAction action) {
fAction = action;
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.IBreakpointsListener#breakpointsAdded(org.eclipse.debug.core.model.IBreakpoint[])
*/
public void breakpointsAdded(IBreakpoint[] breakpoints) {
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.IBreakpointsListener#breakpointsChanged(org.eclipse.debug.core.model.IBreakpoint[], org.eclipse.core.resources.IMarkerDelta[])
*/
public void breakpointsChanged(IBreakpoint[] breakpoints, IMarkerDelta[] deltas) {
if (getAction() != null) {
IStructuredSelection selection= getStructuredSelection();
if (selection != null) {
IBreakpoint selectedBreakpoint= (IBreakpoint)selection.getFirstElement();
for (int i = 0; i < breakpoints.length; i++) {
IBreakpoint breakpoint = breakpoints[i];
if (selectedBreakpoint.equals(breakpoint)) {
selectionChanged(getAction(), selection);
return;
}
}
}
}
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.IBreakpointsListener#breakpointsRemoved(org.eclipse.debug.core.model.IBreakpoint[], org.eclipse.core.resources.IMarkerDelta[])
*/
public void breakpointsRemoved(IBreakpoint[] breakpoints, IMarkerDelta[] deltas) {
}
/**
* Returns the <code>IWorkbenchPart</code> this delegate is associated with
* @return the <code>IWorkbenchPart</code> this delegate is associated with
*/
protected IWorkbenchPart getPart() {
return fPart;
}
/**
* Allows the <code>IWorkbenchPart</code> to be set for this delegate
* @param part the new part to set
*/
protected void setPart(IWorkbenchPart part) {
fPart = part;
}
/* (non-Javadoc)
* @see org.eclipse.ui.IPartListener#partActivated(org.eclipse.ui.IWorkbenchPart)
*/
public void partActivated(IWorkbenchPart part) {
}
/* (non-Javadoc)
* @see org.eclipse.ui.IPartListener#partBroughtToTop(org.eclipse.ui.IWorkbenchPart)
*/
public void partBroughtToTop(IWorkbenchPart part) {
}
/* (non-Javadoc)
* @see org.eclipse.ui.IPartListener#partClosed(org.eclipse.ui.IWorkbenchPart)
*/
public void partClosed(IWorkbenchPart part) {
if (part == getPart()) {
getBreakpointManager().removeBreakpointListener(this);
part.getSite().getPage().removePartListener(this);
}
}
/* (non-Javadoc)
* @see org.eclipse.ui.IPartListener#partDeactivated(org.eclipse.ui.IWorkbenchPart)
*/
public void partDeactivated(IWorkbenchPart part) {
}
/* (non-Javadoc)
* @see org.eclipse.ui.IPartListener#partOpened(org.eclipse.ui.IWorkbenchPart)
*/
public void partOpened(IWorkbenchPart part) {
}
/* (non-Javadoc)
* @see org.eclipse.ui.IObjectActionDelegate#setActivePart(org.eclipse.jface.action.IAction, org.eclipse.ui.IWorkbenchPart)
*/
public void setActivePart(IAction action, IWorkbenchPart targetPart) {
IWorkbenchPart oldPart= getPart();
if (oldPart != null) {
getPart().getSite().getPage().removePartListener(this);
}
getBreakpointManager().addBreakpointListener(this);
setPart(targetPart);
targetPart.getSite().getPage().addPartListener(this);
}
}