blob: aff134d6ff8c2b38a475bcb02fd2975920f9eeca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui.monitors;
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));
}
}