blob: fb74e3a45cc5b3e8609f6b17064549bd050e252a [file] [log] [blame]
package org.eclipse.jdt.internal.debug.ui.monitors;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
This file is made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
**********************************************************************/
import org.eclipse.debug.core.DebugEvent;
import org.eclipse.debug.internal.ui.views.AbstractDebugEventHandler;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jdt.debug.core.IJavaDebugTarget;
import org.eclipse.jdt.debug.core.IJavaThread;
/**
* Listen to certain events in the debug view
*/
public class MonitorsDebugEventHandler extends AbstractDebugEventHandler {
public MonitorsDebugEventHandler(MonitorsView view) {
super(view);
}
/**
* @see org.eclipse.debug.internal.ui.views.AbstractDebugEventHandler#doHandleDebugEvents(DebugEvent[])
*/
protected void doHandleDebugEvents(DebugEvent[] events) {
DebugEvent event;
Object source;
boolean monitorInformationAvailable= true;
boolean updateNeeded= false;
for (int i = 0; i < events.length; i++) {
event= events[i];
source= event.getSource();
//if a thread is suspended in the debug view
if(event.getKind() == DebugEvent.SUSPEND) {
if (source instanceof IJavaDebugTarget) {
IJavaDebugTarget target= (IJavaDebugTarget)source;
monitorInformationAvailable= target.supportsMonitorInformation();
if (monitorInformationAvailable) {
MonitorManager.getDefault().updatePartial(target);
updateNeeded= true;
}
} else if (source instanceof IJavaThread) {
IJavaDebugTarget target= (IJavaDebugTarget)((IJavaThread)source).getDebugTarget();
monitorInformationAvailable= target.supportsMonitorInformation();
if (monitorInformationAvailable) {
MonitorManager.getDefault().updatePartial(target);
updateNeeded= true;
}
}
} else if(event.getKind() == DebugEvent.RESUME) {
if (source instanceof IJavaDebugTarget) {
IJavaDebugTarget target= (IJavaDebugTarget)source;
monitorInformationAvailable= target.supportsMonitorInformation();
if (monitorInformationAvailable) {
MonitorManager.getDefault().updatePartial((IJavaDebugTarget)source);
updateNeeded= true;
}
} else if (source instanceof IJavaThread) {
IJavaDebugTarget target= (IJavaDebugTarget)((IJavaThread)source).getDebugTarget();
monitorInformationAvailable= target.supportsMonitorInformation();
if (monitorInformationAvailable) {
MonitorManager.getDefault().updatePartial((IJavaDebugTarget)(((IJavaThread)source).getDebugTarget()));
updateNeeded= true;
}
}
} else if(event.getKind() == DebugEvent.TERMINATE && source instanceof IJavaDebugTarget) {
MonitorManager.getDefault().removeMonitorInformation((IJavaDebugTarget)source);
updateNeeded= true;
}
}
if (updateNeeded) {
((MonitorsView)getView()).refreshCurrentViewer(monitorInformationAvailable, false);
}
}
/**
* @see org.eclipse.debug.internal.ui.views.AbstractDebugEventHandler#refresh()
*/
public void refresh() {
((MonitorsView)getView()).selectionChanged(null, getView().getSite().getPage().getSelection(IDebugUIConstants.ID_DEBUG_VIEW));
}
}