1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

bug 226689 - catchpoint support

This commit is contained in:
Alena Laskavaia 2008-04-25 16:06:06 +00:00
parent d694db4e57
commit c652147479
19 changed files with 726 additions and 47 deletions

View file

@ -0,0 +1,27 @@
/*******************************************************************************
* Copyright (c) 2008 QNX Software Systems 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:
* QNX Software Systems - Initial API and implementation
* QNX Software Systems - catchpoints - bug 226689
*******************************************************************************/
package org.eclipse.cdt.debug.core.cdi.model;
import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.ICDICondition;
public interface ICDIBreakpointManagement3 extends ICDIBreakpointManagement2{
/**
* Set a catchpoint
* @param type - catchpoint type, interpreted by backend
* @param arg - extra argument, for example signal number
* @param cdiBreakpointType - cdi breakpoint type, just in case some inferiors support "hardware" catchpoints
*/
ICDICatchpoint setCatchpoint(String type, String arg, int cdiBreakpointType,
ICDICondition condition, boolean deferred, boolean enabled) throws CDIException;
}

View file

@ -0,0 +1,31 @@
/*******************************************************************************
* Copyright (c) 2008 QNX Software Systems 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:
* QNX Software Systems - Initial API and implementation
* QNX Software Systems - catchpoints - bug 226689
*******************************************************************************/
package org.eclipse.cdt.debug.core.cdi.model;
import org.eclipse.core.runtime.CoreException;
public interface ICDICatchpoint extends ICDIBreakpoint {
/**
* Get catchpoint type. This is usually id in reverse web notation.
* @return catchpoint type id
* @throws CoreException
*/
String getEventType() throws CoreException;
/**
* Get extra event argument. For example name of the exception or number of a signal.
* @return event argument
* @throws CoreException
*/
String getExtraArgument() throws CoreException;
}

View file

@ -21,6 +21,7 @@ cLineBreakpoints.name=C/C++ Line Breakpoints
cAddressBreakpoints.name=C/C++ Address Breakpoints cAddressBreakpoints.name=C/C++ Address Breakpoints
cFunctionBreakpoints.name=C/C++ Function Breakpoints cFunctionBreakpoints.name=C/C++ Function Breakpoints
cWatchpoints.name=C/C++ Watchpoints cWatchpoints.name=C/C++ Watchpoints
cCatchpoints.name=C/C++ Event Breakpoints
breakpointProblem.name=C/C++ Breakpoint Problem breakpointProblem.name=C/C++ Breakpoint Problem
containerName.mapping=Path Mapping containerName.mapping=Path Mapping

View file

@ -104,6 +104,22 @@
<attribute <attribute
name="org.eclipse.cdt.debug.core.read"> name="org.eclipse.cdt.debug.core.read">
</attribute> </attribute>
</extension>
<extension
id="cCatchpointMarker"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.cdt.debug.core.cBreakpointMarker">
</super>
<persistent
value="true">
</persistent>
<attribute
name="org.eclipse.cdt.debug.core.catchpoint_event_id">
</attribute>
<attribute
name="org.eclipse.cdt.debug.core.catchpoint_event_arg">
</attribute>
</extension> </extension>
<extension <extension
id="breakpointproblem" id="breakpointproblem"
@ -146,6 +162,12 @@
markerType="org.eclipse.cdt.debug.core.cWatchpointMarker" markerType="org.eclipse.cdt.debug.core.cWatchpointMarker"
id="cWatchpoint"> id="cWatchpoint">
</breakpoint> </breakpoint>
<breakpoint
class="org.eclipse.cdt.debug.internal.core.breakpoints.CCatchpoint"
name="%cCatchpoint.name"
markerType="org.eclipse.cdt.debug.core.cCatchpointMarker"
id="cCatchpoint">
</breakpoint>
</extension> </extension>
<extension <extension
point="org.eclipse.core.runtime.preferences"> point="org.eclipse.core.runtime.preferences">

View file

@ -8,12 +8,15 @@
* Contributors: * Contributors:
* QNX Software Systems - Initial API and implementation * QNX Software Systems - Initial API and implementation
* Freescale Semiconductor - Address watchpoints, https://bugs.eclipse.org/bugs/show_bug.cgi?id=118299 * Freescale Semiconductor - Address watchpoints, https://bugs.eclipse.org/bugs/show_bug.cgi?id=118299
* QNX Software Systems - catchpoints - bug 226689
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.debug.core; package org.eclipse.cdt.debug.core;
import java.io.IOException; import java.io.IOException;
import java.math.BigInteger; import java.math.BigInteger;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map;
import org.eclipse.cdt.core.CCorePlugin; import org.eclipse.cdt.core.CCorePlugin;
import org.eclipse.cdt.core.IAddress; import org.eclipse.cdt.core.IAddress;
import org.eclipse.cdt.core.IBinaryParser; import org.eclipse.cdt.core.IBinaryParser;
@ -24,11 +27,13 @@ import org.eclipse.cdt.core.IBinaryParser.IBinaryObject;
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget; import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
import org.eclipse.cdt.debug.core.model.ICAddressBreakpoint; import org.eclipse.cdt.debug.core.model.ICAddressBreakpoint;
import org.eclipse.cdt.debug.core.model.ICBreakpoint; import org.eclipse.cdt.debug.core.model.ICBreakpoint;
import org.eclipse.cdt.debug.core.model.ICCatchpoint;
import org.eclipse.cdt.debug.core.model.ICFunctionBreakpoint; import org.eclipse.cdt.debug.core.model.ICFunctionBreakpoint;
import org.eclipse.cdt.debug.core.model.ICLineBreakpoint; import org.eclipse.cdt.debug.core.model.ICLineBreakpoint;
import org.eclipse.cdt.debug.core.model.ICWatchpoint2;
import org.eclipse.cdt.debug.core.model.ICWatchpoint; import org.eclipse.cdt.debug.core.model.ICWatchpoint;
import org.eclipse.cdt.debug.core.model.ICWatchpoint2;
import org.eclipse.cdt.debug.internal.core.breakpoints.CAddressBreakpoint; import org.eclipse.cdt.debug.internal.core.breakpoints.CAddressBreakpoint;
import org.eclipse.cdt.debug.internal.core.breakpoints.CCatchpoint;
import org.eclipse.cdt.debug.internal.core.breakpoints.CFunctionBreakpoint; import org.eclipse.cdt.debug.internal.core.breakpoints.CFunctionBreakpoint;
import org.eclipse.cdt.debug.internal.core.breakpoints.CLineBreakpoint; import org.eclipse.cdt.debug.internal.core.breakpoints.CLineBreakpoint;
import org.eclipse.cdt.debug.internal.core.breakpoints.CWatchpoint; import org.eclipse.cdt.debug.internal.core.breakpoints.CWatchpoint;
@ -583,4 +588,41 @@ public class CDIDebugModel {
// If handles are not file names ???? // If handles are not file names ????
return handle1.equals( handle2 ); return handle1.equals( handle2 );
} }
public static ICCatchpoint catchpointExists(String type, String arg ) throws CoreException {
String modelId = getPluginIdentifier();
IBreakpointManager manager = DebugPlugin.getDefault().getBreakpointManager();
IBreakpoint[] breakpoints = manager.getBreakpoints(modelId);
for (int i = 0; i < breakpoints.length; i++) {
if (!(breakpoints[i] instanceof ICCatchpoint)) {
continue;
}
ICCatchpoint breakpoint = (ICCatchpoint) breakpoints[i];
if (breakpoint.getEventType().equals(type)) {
String arg1 = breakpoint.getEventArgument();
if (arg1 == null)
arg1 = "";
String arg2 = arg == null ? "" : arg;
if (arg1.equals(arg2))
return breakpoint;
}
}
return null;
}
public static ICCatchpoint createCatchpoint(String type, String arg, boolean register)
throws CoreException {
final IResource resource = ResourcesPlugin.getWorkspace().getRoot();
final Map<String,Object> attributes = new HashMap<String,Object>();
attributes.put(IBreakpoint.ID, CDIDebugModel.getPluginIdentifier());
attributes.put(IBreakpoint.ENABLED, true);
attributes.put(ICBreakpoint.IGNORE_COUNT, 0);
attributes.put(ICBreakpoint.CONDITION, "");
attributes.put(ICCatchpoint.EVENT_TYPE_ID, type);
attributes.put(ICCatchpoint.EVENT_ARG, arg);
return new CCatchpoint(resource, attributes, register);
}
} }

View file

@ -0,0 +1,55 @@
/*******************************************************************************
* Copyright (c) 2008 QNX Software Systems 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:
* QNX Software Systems - Initial API and implementation
* QNX Software Systems - catchpoints - bug 226689
*******************************************************************************/
package org.eclipse.cdt.debug.core.model;
import org.eclipse.core.runtime.CoreException;
/**
* Interface for debugger catchpoints (event breakpoints). Example of catchpoint
* is break on raising exception in C++, or break on receiving signal.
*
* @sinse 5.0
*/
public interface ICCatchpoint extends ICBreakpoint {
/**
* Breakpoint attribute storing the catchpoint event id
* is set in (value <code>"org.eclipse.cdt.debug.core.catchpoint.event_id"</code>).
* This attribute is a <code>String</code>.
*
*/
public static final String EVENT_TYPE_ID = "org.eclipse.cdt.debug.core.catchpoint_event_id"; //$NON-NLS-1$
/**
* Breakpoint attribute storing the catchpoint event argument
* is set in (value <code>"org.eclipse.cdt.debug.core.catchpoint.event_arg"</code>).
* This attribute is a <code>String</code>.
*
*/
public static final String EVENT_ARG = "org.eclipse.cdt.debug.core.catchpoint_event_arg"; //$NON-NLS-1$
/**
* Get catchpoint type. This is usually id in reverse web notation.
* This type is interpreted by underlying debugger implementation.
* Use extension point <code>org.eclipse.cdt.debug.ui.breakpointContribution</code> to define user visible label for this event type.
* @return catchpoint type id (not null)
* @throws CoreException
*/
String getEventType() throws CoreException;
/**
* Get extra event argument. For example name of the exception or number of a signal.
* Use extension point <code>org.eclipse.cdt.debug.ui.breakpointContribution</code> to define UI control to edit/view this argument
* @return event argument (not null)
* @throws CoreException
*/
String getEventArgument() throws CoreException;
}

View file

@ -11,6 +11,7 @@
* Ken Ryall (Nokia) - bugs 170027, 105196 * Ken Ryall (Nokia) - bugs 170027, 105196
* Ling Wang (Nokia) - bug 176081 * Ling Wang (Nokia) - bug 176081
* Freescale Semiconductor - Address watchpoints, https://bugs.eclipse.org/bugs/show_bug.cgi?id=118299 * Freescale Semiconductor - Address watchpoints, https://bugs.eclipse.org/bugs/show_bug.cgi?id=118299
* QNX Software Systems - catchpoints - bug 226689
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.debug.internal.core; package org.eclipse.cdt.debug.internal.core;
@ -49,6 +50,8 @@ import org.eclipse.cdt.debug.core.cdi.event.ICDIExecutableReloadedEvent;
import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpointManagement2; import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpointManagement2;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpointManagement3;
import org.eclipse.cdt.debug.core.cdi.model.ICDICatchpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIFunctionBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIFunctionBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDILineBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDILineBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint;
@ -61,6 +64,7 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint2;
import org.eclipse.cdt.debug.core.model.ICAddressBreakpoint; import org.eclipse.cdt.debug.core.model.ICAddressBreakpoint;
import org.eclipse.cdt.debug.core.model.ICBreakpoint; import org.eclipse.cdt.debug.core.model.ICBreakpoint;
import org.eclipse.cdt.debug.core.model.ICBreakpointFilterExtension; import org.eclipse.cdt.debug.core.model.ICBreakpointFilterExtension;
import org.eclipse.cdt.debug.core.model.ICCatchpoint;
import org.eclipse.cdt.debug.core.model.ICDebugTarget; import org.eclipse.cdt.debug.core.model.ICDebugTarget;
import org.eclipse.cdt.debug.core.model.ICFunctionBreakpoint; import org.eclipse.cdt.debug.core.model.ICFunctionBreakpoint;
import org.eclipse.cdt.debug.core.model.ICLineBreakpoint; import org.eclipse.cdt.debug.core.model.ICLineBreakpoint;
@ -251,6 +255,12 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
catch( CDIException e ) { catch( CDIException e ) {
} }
} }
if ( breakpoint instanceof ICCatchpoint && cdiBreakpoint instanceof ICDICatchpoint) {
ICCatchpoint mcatchpoint = (ICCatchpoint) breakpoint;
ICDICatchpoint cdicatchpoint = (ICDICatchpoint) cdiBreakpoint;
if (!mcatchpoint.getEventType().equals(cdicatchpoint.getEventType())) return false;
return (mcatchpoint.getEventArgument().equals(cdicatchpoint.getExtraArgument()));
}
} }
catch( CoreException e ) { catch( CoreException e ) {
} }
@ -451,6 +461,8 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
private void handleBreakpointCreatedEvent( ICDIBreakpoint cdiBreakpoint ) { private void handleBreakpointCreatedEvent( ICDIBreakpoint cdiBreakpoint ) {
if ( cdiBreakpoint instanceof ICDIWatchpoint ) if ( cdiBreakpoint instanceof ICDIWatchpoint )
doHandleWatchpointCreatedEvent( (ICDIWatchpoint)cdiBreakpoint ); doHandleWatchpointCreatedEvent( (ICDIWatchpoint)cdiBreakpoint );
if ( cdiBreakpoint instanceof ICDICatchpoint )
doHandleCatachpointCreatedEvent( (ICDICatchpoint)cdiBreakpoint );
else if ( cdiBreakpoint instanceof ICDILocationBreakpoint ) else if ( cdiBreakpoint instanceof ICDILocationBreakpoint )
doHandleLocationBreakpointCreatedEvent( (ICDILocationBreakpoint)cdiBreakpoint ); doHandleLocationBreakpointCreatedEvent( (ICDILocationBreakpoint)cdiBreakpoint );
if ( !cdiBreakpoint.isTemporary() && !DebugPlugin.getDefault().getBreakpointManager().isEnabled() ) { if ( !cdiBreakpoint.isTemporary() && !DebugPlugin.getDefault().getBreakpointManager().isEnabled() ) {
@ -458,6 +470,37 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
} }
} }
private void doHandleCatachpointCreatedEvent(ICDICatchpoint cdiCatchpoint) {
ICBreakpoint breakpoint = null;
synchronized( getBreakpointMap() ) {
breakpoint = getBreakpointMap().getCBreakpoint( cdiCatchpoint );
if ( breakpoint == null ) {
try {
breakpoint = createCatchpoint( cdiCatchpoint );
}
catch( CDIException e ) {
}
catch( CoreException e ) {
}
}
if ( breakpoint != null )
getBreakpointMap().put( breakpoint, cdiCatchpoint );
}
if ( breakpoint != null ) {
try {
ICBreakpointFilterExtension filterExtension = getFilterExtension(breakpoint);
if (filterExtension!=null) filterExtension.setTargetFilter( getDebugTarget() );
((CBreakpoint)breakpoint).register( true );
}
catch( CoreException e ) {
}
getBreakpointNotifier().breakpointInstalled( getDebugTarget(), breakpoint );
changeBreakpointProperties( breakpoint, cdiCatchpoint );
}
}
private void doHandleLocationBreakpointCreatedEvent( ICDILocationBreakpoint cdiBreakpoint ) { private void doHandleLocationBreakpointCreatedEvent( ICDILocationBreakpoint cdiBreakpoint ) {
if ( cdiBreakpoint.isTemporary() ) if ( cdiBreakpoint.isTemporary() )
return; return;
@ -778,6 +821,17 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
} else { } else {
b = cdiTarget.setWatchpoint( ICDIBreakpoint.REGULAR, accessType, expression, condition ); b = cdiTarget.setWatchpoint( ICDIBreakpoint.REGULAR, accessType, expression, condition );
} }
} else if (breakpoints[i] instanceof ICCatchpoint) {
ICCatchpoint catchpoint = (ICCatchpoint) breakpoints[i];
ICDICondition condition = createCondition(catchpoint);
if (cdiTarget instanceof ICDIBreakpointManagement3) {
ICDIBreakpointManagement3 bpManager3 = (ICDIBreakpointManagement3) cdiTarget;
b = bpManager3.setCatchpoint(catchpoint.getEventType(), catchpoint
.getEventArgument(), ICDIBreakpoint.REGULAR, condition, true, breakpoints[i].isEnabled());
} else {
throw new UnsupportedOperationException("BreakpointManager does not support this type of breapoints");
}
} }
if ( b != null ) { if ( b != null ) {
Object obj = getBreakpointMap().get( breakpoints[i] ); Object obj = getBreakpointMap().get( breakpoints[i] );
@ -954,6 +1008,19 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
return watchpoint; return watchpoint;
} }
private ICCatchpoint createCatchpoint(ICDICatchpoint cdiCatchpoint) throws CDIException,
CoreException {
ICCatchpoint catchpoint;
catchpoint = CDIDebugModel.catchpointExists(cdiCatchpoint.getEventType(), cdiCatchpoint
.getExtraArgument());
if (catchpoint != null)
return catchpoint;
catchpoint = CDIDebugModel.createCatchpoint(cdiCatchpoint.getEventType(), cdiCatchpoint
.getExtraArgument(), false);
return catchpoint;
}
private void changeBreakpointProperties( ICBreakpoint breakpoint, IMarkerDelta delta ) { private void changeBreakpointProperties( ICBreakpoint breakpoint, IMarkerDelta delta ) {
ICDIBreakpoint cdiBreakpoint = null; ICDIBreakpoint cdiBreakpoint = null;
synchronized( getBreakpointMap() ) { synchronized( getBreakpointMap() ) {

View file

@ -0,0 +1,84 @@
/*******************************************************************************
* Copyright (c) 2008 QNX Software Systems 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:
* QNX Software Systems - Initial API and implementation
* QNX Software Systems - catchpoints - bug 226689
*******************************************************************************/
package org.eclipse.cdt.debug.internal.core.breakpoints;
import java.util.Map;
import org.eclipse.cdt.debug.core.model.ICCatchpoint;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspaceRunnable;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.DebugException;
public class CCatchpoint extends CBreakpoint implements ICCatchpoint {
private static final String C_CATCHPOINT_MARKER_TYPE = "org.eclipse.cdt.debug.core.cCatchpointMarker"; //$NON-NLS-1$;
public CCatchpoint() {
}
public static String getMarkerType() {
return C_CATCHPOINT_MARKER_TYPE;
}
public CCatchpoint(IResource resource, Map attributes, boolean add) throws CoreException {
this();
// catchpoint must set non null EVENT_TYPE_ID property to be valid
if (attributes.get(EVENT_TYPE_ID) == null)
throw new IllegalArgumentException();
setBreakpointMarker(resource, getMarkerType(), attributes, add);
}
private void setBreakpointMarker(final IResource resource, final String markerType,
final Map attributes, final boolean add) throws DebugException {
IWorkspaceRunnable wr = new IWorkspaceRunnable() {
public void run(IProgressMonitor monitor) throws CoreException {
// create the marker
setMarker(resource.createMarker(markerType));
// set attributes
ensureMarker().setAttributes(attributes);
// set the marker message
setAttribute(IMarker.MESSAGE, getMarkerMessage());
// add to breakpoint manager if requested
register(add);
}
};
run(wr);
}
@Override
protected String getMarkerMessage() throws CoreException {
// default message, overridden by label provider, which would take care of translation
return "Event Breakpoint: " + getEventType(); // $NON-NLS-1$
}
/**
* @see ICCatchpoint#getEventType()
*/
public String getEventType() throws DebugException {
return ensureMarker().getAttribute(EVENT_TYPE_ID, ""); //$NON-NLS-1$
}
/**
* @see ICCatchpoint#getEventArgument()
*/
public String getEventArgument() throws CoreException {
return (String) ensureMarker().getAttribute(EVENT_ARG, "");
}
}

View file

@ -28,16 +28,19 @@ import org.eclipse.cdt.debug.core.cdi.ICDILineLocation;
import org.eclipse.cdt.debug.core.cdi.ICDILocator; import org.eclipse.cdt.debug.core.cdi.ICDILocator;
import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDICatchpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIExceptionpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIExceptionpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIFunctionBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIFunctionBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDILineBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDILineBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint;
import org.eclipse.cdt.debug.mi.core.MIException; import org.eclipse.cdt.debug.mi.core.MIException;
import org.eclipse.cdt.debug.mi.core.MIFormat; import org.eclipse.cdt.debug.mi.core.MIFormat;
import org.eclipse.cdt.debug.mi.core.MIPlugin;
import org.eclipse.cdt.debug.mi.core.MISession; import org.eclipse.cdt.debug.mi.core.MISession;
import org.eclipse.cdt.debug.mi.core.cdi.model.AddressBreakpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.AddressBreakpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.AddressLocation; import org.eclipse.cdt.debug.mi.core.cdi.model.AddressLocation;
import org.eclipse.cdt.debug.mi.core.cdi.model.Breakpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.Breakpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.Catchpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.Exceptionpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.Exceptionpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.FunctionBreakpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.FunctionBreakpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.FunctionLocation; import org.eclipse.cdt.debug.mi.core.cdi.model.FunctionLocation;
@ -45,6 +48,7 @@ import org.eclipse.cdt.debug.mi.core.cdi.model.LineBreakpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.LocationBreakpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.LocationBreakpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.Target; import org.eclipse.cdt.debug.mi.core.cdi.model.Target;
import org.eclipse.cdt.debug.mi.core.cdi.model.Watchpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.Watchpoint;
import org.eclipse.cdt.debug.mi.core.command.CLICatch;
import org.eclipse.cdt.debug.mi.core.command.CommandFactory; import org.eclipse.cdt.debug.mi.core.command.CommandFactory;
import org.eclipse.cdt.debug.mi.core.command.MIBreakAfter; import org.eclipse.cdt.debug.mi.core.command.MIBreakAfter;
import org.eclipse.cdt.debug.mi.core.command.MIBreakCondition; import org.eclipse.cdt.debug.mi.core.command.MIBreakCondition;
@ -59,6 +63,7 @@ import org.eclipse.cdt.debug.mi.core.event.MIBreakpointChangedEvent;
import org.eclipse.cdt.debug.mi.core.event.MIBreakpointCreatedEvent; import org.eclipse.cdt.debug.mi.core.event.MIBreakpointCreatedEvent;
import org.eclipse.cdt.debug.mi.core.event.MIBreakpointDeletedEvent; import org.eclipse.cdt.debug.mi.core.event.MIBreakpointDeletedEvent;
import org.eclipse.cdt.debug.mi.core.event.MIEvent; import org.eclipse.cdt.debug.mi.core.event.MIEvent;
import org.eclipse.cdt.debug.mi.core.output.CLICatchInfo;
import org.eclipse.cdt.debug.mi.core.output.MIBreakInsertInfo; import org.eclipse.cdt.debug.mi.core.output.MIBreakInsertInfo;
import org.eclipse.cdt.debug.mi.core.output.MIBreakListInfo; import org.eclipse.cdt.debug.mi.core.output.MIBreakListInfo;
import org.eclipse.cdt.debug.mi.core.output.MIBreakWatchInfo; import org.eclipse.cdt.debug.mi.core.output.MIBreakWatchInfo;
@ -395,20 +400,21 @@ public class BreakpointManager extends Manager {
List bList = getBreakpointsList(target); List bList = getBreakpointsList(target);
List eventList = new ArrayList(allMIBreakpoints.length); List eventList = new ArrayList(allMIBreakpoints.length);
for (int i = 0; i < allMIBreakpoints.length; i++) { for (int i = 0; i < allMIBreakpoints.length; i++) {
int no = allMIBreakpoints[i].getNumber(); MIBreakpoint miBreakpoint = allMIBreakpoints[i];
int no = miBreakpoint.getNumber();
Breakpoint bp = getBreakpoint(target, no); Breakpoint bp = getBreakpoint(target, no);
if (bp != null) { if (bp != null) {
MIBreakpoint[] miBps = bp.getMIBreakpoints(); MIBreakpoint[] miBps = bp.getMIBreakpoints();
for (int j = 0; j < miBps.length; j++) { for (int j = 0; j < miBps.length; j++) {
if (miBps[j].getNumber() == no) { if (miBps[j].getNumber() == no) {
if (hasBreakpointChanged(miBps[j], allMIBreakpoints[i])) { if (hasBreakpointChanged(miBps[j], miBreakpoint)) {
miBps[j] = allMIBreakpoints[i]; miBps[j] = miBreakpoint;
bp.setEnabled0(allMIBreakpoints[i].isEnabled()); bp.setEnabled0(miBreakpoint.isEnabled());
// FIXME: We have a problem if the thread id change. // FIXME: We have a problem if the thread id change.
ICDICondition oldCond = bp.getCondition(); ICDICondition oldCond = bp.getCondition();
String[] tids = oldCond.getThreadIds(); String[] tids = oldCond.getThreadIds();
Condition newCondition = new Condition(allMIBreakpoints[i].getIgnoreCount(), Condition newCondition = new Condition(miBreakpoint.getIgnoreCount(),
allMIBreakpoints[i].getCondition(), tids); miBreakpoint.getCondition(), tids);
bp.setCondition0(newCondition); bp.setCondition0(newCondition);
// Fire ChangedEvent // Fire ChangedEvent
eventList.add(new MIBreakpointChangedEvent(miSession, no)); eventList.add(new MIBreakpointChangedEvent(miSession, no));
@ -418,60 +424,67 @@ public class BreakpointManager extends Manager {
} else { } else {
// add the new breakpoint and fire CreatedEvent // add the new breakpoint and fire CreatedEvent
int type = ICDIBreakpoint.REGULAR; int type = ICDIBreakpoint.REGULAR;
if (allMIBreakpoints[i].isHardware()) { if (miBreakpoint.isHardware()) {
type = ICDIBreakpoint.HARDWARE; type = ICDIBreakpoint.HARDWARE;
} else if (allMIBreakpoints[i].isTemporary()) { } else if (miBreakpoint.isTemporary()) {
type = ICDIBreakpoint.TEMPORARY; type = ICDIBreakpoint.TEMPORARY;
} }
String[] tids = null; String[] tids = null;
String tid = allMIBreakpoints[i].getThreadId(); String tid = miBreakpoint.getThreadId();
if (tid != null && tid.length() > 0) { if (tid != null && tid.length() > 0) {
tids = new String[] { tid }; tids = new String[] { tid };
} }
Condition condition = new Condition(allMIBreakpoints[i].getIgnoreCount(), Condition condition = new Condition(miBreakpoint.getIgnoreCount(),
allMIBreakpoints[i].getCondition(), tids); miBreakpoint.getCondition(), tids);
if (allMIBreakpoints[i].isWatchpoint()) { if (miBreakpoint.isWatchpoint()) {
int watchType = 0; int watchType = 0;
if (allMIBreakpoints[i].isAccessWatchpoint() || allMIBreakpoints[i].isReadWatchpoint()) { if (miBreakpoint.isAccessWatchpoint() || miBreakpoint.isReadWatchpoint()) {
watchType |= ICDIWatchpoint.READ; watchType |= ICDIWatchpoint.READ;
} }
if (allMIBreakpoints[i].isAccessWatchpoint() || allMIBreakpoints[i].isWriteWatchpoint()) { if (miBreakpoint.isAccessWatchpoint() || miBreakpoint.isWriteWatchpoint()) {
watchType |= ICDIWatchpoint.WRITE; watchType |= ICDIWatchpoint.WRITE;
} }
Watchpoint wpoint = new Watchpoint(target, allMIBreakpoints[i].getWhat(), type, watchType, condition, allMIBreakpoints[i].isEnabled()); Watchpoint wpoint = new Watchpoint(target, miBreakpoint.getWhat(), type, watchType, condition, miBreakpoint.isEnabled());
wpoint.setMIBreakpoints(new MIBreakpoint[] {allMIBreakpoints[i]}); wpoint.setMIBreakpoints(new MIBreakpoint[] {miBreakpoint});
bList.add(wpoint); bList.add(wpoint);
} else { } else {
int hint = MIBreakpointChangedEvent.HINT_NONE; int hint = MIBreakpointChangedEvent.HINT_NONE;
if (event instanceof MIBreakpointChangedEvent) { if (event instanceof MIBreakpointChangedEvent) {
hint = ((MIBreakpointChangedEvent)event).getHint(); hint = ((MIBreakpointChangedEvent)event).getHint();
} }
String function = allMIBreakpoints[i].getFunction(); String function = miBreakpoint.getFunction();
String file = allMIBreakpoints[i].getFile(); String file = miBreakpoint.getFile();
int line = allMIBreakpoints[i].getLine(); int line = miBreakpoint.getLine();
String addr = allMIBreakpoints[i].getAddress(); String addr = miBreakpoint.getAddress();
boolean enabled = allMIBreakpoints[i].isEnabled(); boolean enabled = miBreakpoint.isEnabled();
Breakpoint newBreakpoint = null;
if (hint == MIBreakpointChangedEvent.HINT_NEW_LINE_BREAKPOINT || if (hint == MIBreakpointChangedEvent.HINT_NEW_LINE_BREAKPOINT ||
(hint == MIBreakpointChangedEvent.HINT_NONE && file != null && file.length() > 0 && line > 0)) { (hint == MIBreakpointChangedEvent.HINT_NONE && file != null && file.length() > 0 && line > 0)) {
LineLocation location = createLineLocation (allMIBreakpoints[i].getFile(), LineLocation location = createLineLocation (miBreakpoint.getFile(),
allMIBreakpoints[i].getLine()); miBreakpoint.getLine());
Breakpoint newBreakpoint = new LineBreakpoint(target, type, location, condition, enabled); newBreakpoint = new LineBreakpoint(target, type, location, condition, enabled);
newBreakpoint.setMIBreakpoints(new MIBreakpoint[] {allMIBreakpoints[i]}); } else if ((hint == MIBreakpointChangedEvent.HINT_NEW_FUNCTION_BREAKPOINT ||
bList.add(newBreakpoint); hint == MIBreakpointChangedEvent.HINT_NONE) && function != null && function.length() > 0) {
} else if (hint == MIBreakpointChangedEvent.HINT_NEW_FUNCTION_BREAKPOINT ||
(hint == MIBreakpointChangedEvent.HINT_NONE && function != null && function.length() > 0)) {
FunctionLocation location = createFunctionLocation(file, function); FunctionLocation location = createFunctionLocation(file, function);
Breakpoint newBreakpoint = new FunctionBreakpoint(target, type, location, condition, enabled); newBreakpoint = new FunctionBreakpoint(target, type, location, condition, enabled);
newBreakpoint.setMIBreakpoints(new MIBreakpoint[] {allMIBreakpoints[i]}); } else if (hint == MIBreakpointChangedEvent.HINT_NEW_CATCHPOINT || Catchpoint.getEventArgumentFromMI(miBreakpoint)!=null) {
bList.add(newBreakpoint); String ctype = Catchpoint.getEventTypeFromMI(miBreakpoint);
} else if (hint == MIBreakpointChangedEvent.HINT_NEW_ADDRESS_BREAKPOINT || if (ctype != null) {
(hint == MIBreakpointChangedEvent.HINT_NONE && addr != null && addr.length() > 0)) { newBreakpoint = new Catchpoint(target, ctype, Catchpoint
.getEventArgumentFromMI(miBreakpoint), condition, enabled);
} else {
MIPlugin.log("Unsupported catchpoint: "+miBreakpoint.getWhat()); //$NON-NLS-1$ log entry not for users
}
} else if (addr != null && addr.length() > 0) {
BigInteger big = MIFormat.getBigInteger(addr); BigInteger big = MIFormat.getBigInteger(addr);
AddressLocation location = createAddressLocation (big); AddressLocation location = createAddressLocation(big);
Breakpoint newBreakpoint = new AddressBreakpoint(target, type, location, condition, enabled); newBreakpoint = new AddressBreakpoint(target, type, location, condition,
newBreakpoint.setMIBreakpoints(new MIBreakpoint[] {allMIBreakpoints[i]}); enabled);
}
if (newBreakpoint != null) {
newBreakpoint.setMIBreakpoints(new MIBreakpoint[] { miBreakpoint });
bList.add(newBreakpoint); bList.add(newBreakpoint);
} }
} }
@ -670,18 +683,23 @@ public class BreakpointManager extends Manager {
Session session = (Session)target.getSession(); Session session = (Session)target.getSession();
SharedLibraryManager sharedMgr = session.getSharedLibraryManager(); SharedLibraryManager sharedMgr = session.getSharedLibraryManager();
if (sharedMgr.isDeferredBreakpoint(target)) { if (sharedMgr.isDeferredBreakpoint(target)) {
List dList = (List)deferredMap.get(target); addDeferredBreakpoint(bkpt);
if (dList == null) {
dList = Collections.synchronizedList(new ArrayList());
deferredMap.put(target, dList);
}
dList.add(bkpt);
} else { } else {
throw e; throw e;
} }
} }
} }
private void addDeferredBreakpoint(Breakpoint breakpoint) {
Target target = (Target)breakpoint.getTarget();
List dList = (List)deferredMap.get(target);
if (dList == null) {
dList = Collections.synchronizedList(new ArrayList());
deferredMap.put(target, dList);
}
dList.add(breakpoint);
}
public void setLocationBreakpoint (LocationBreakpoint bkpt) throws CDIException { public void setLocationBreakpoint (LocationBreakpoint bkpt) throws CDIException {
Target target = (Target)bkpt.getTarget(); Target target = (Target)bkpt.getTarget();
MISession miSession = target.getMISession(); MISession miSession = target.getMISession();
@ -1024,4 +1042,89 @@ public class BreakpointManager extends Manager {
} }
return miBreakInserts; return miBreakInserts;
} }
public ICDICatchpoint setCatchpoint(Target target, String type, String arg, ICDICondition condition, boolean enabled) throws CDIException {
Catchpoint catchpoint = new Catchpoint(target,type,arg,condition,enabled);
setCatchpoint(catchpoint);
return catchpoint;
}
public void setCatchpoint(Catchpoint catchpoint) throws CDIException {
Target target = (Target) catchpoint.getTarget();
MISession miSession = target.getMISession();
CommandFactory factory = miSession.getCommandFactory();
CLICatch breakCatch = factory.createCLICatch(catchpoint.getGdbEvent(), catchpoint
.getGdbArg());
catchpoint.setMIBreakpoints(new MIBreakpoint[0]); // initialize
boolean restart = false;
try {
restart = suspendInferior(target);
miSession.postCommand(breakCatch);
int no;
try {
CLICatchInfo cinfo = (CLICatchInfo) breakCatch.getMIInfo();
if (cinfo == null) {
throw new CDIException(CdiResources.getString("cdi.Common.No_answer")); //$NON-NLS-1$
}
MIBreakpoint[] points = cinfo.getMIBreakpoints();
if (points == null || points.length == 0) {
throw new CDIException(CdiResources
.getString("cdi.BreakpointManager.Parsing_Error")); //$NON-NLS-1$
}
no = points[0].getNumber();
catchpoint.setMIBreakpoints(points);
} catch (MIException e) {
if (!catchpoint.isDeferred()) {
throw e;
}
addDeferredBreakpoint(catchpoint);
return;
}
// Put the condition now.
String exprCond = null;
int ignoreCount = 0;
ICDICondition condition = catchpoint.getCondition();
if (condition != null) {
exprCond = condition.getExpression();
ignoreCount = condition.getIgnoreCount();
}
if (exprCond != null && exprCond.length() > 0) {
MIBreakCondition breakCondition = factory.createMIBreakCondition(no, exprCond);
miSession.postCommand(breakCondition);
MIInfo info = breakCondition.getMIInfo();
if (info == null) {
throw new CDIException(CdiResources.getString("cdi.Common.No_answer")); //$NON-NLS-1$
}
}
if (ignoreCount > 0) {
MIBreakAfter breakAfter = factory.createMIBreakAfter(no, ignoreCount);
miSession.postCommand(breakAfter);
MIInfo info = breakAfter.getMIInfo();
if (info == null) {
throw new CDIException(CdiResources.getString("cdi.Common.No_answer")); //$NON-NLS-1$
}
}
// how to deal with threads ???
} catch (MIException e) {
throw new MI2CDIException(e);
} finally {
resumeInferior(target, restart);
}
List bList = getBreakpointsList(target);
bList.add(catchpoint);
// Fire a created Event.
MIBreakpoint[] miBreakpoints = catchpoint.getMIBreakpoints();
if (miBreakpoints != null && miBreakpoints.length > 0) {
miSession.fireEvent(new MIBreakpointCreatedEvent(miSession, miBreakpoints[0]
.getNumber()));
}
}
} }

View file

@ -31,6 +31,7 @@ import org.eclipse.cdt.debug.mi.core.MIPlugin;
import org.eclipse.cdt.debug.mi.core.MISession; import org.eclipse.cdt.debug.mi.core.MISession;
import org.eclipse.cdt.debug.mi.core.RxThread; import org.eclipse.cdt.debug.mi.core.RxThread;
import org.eclipse.cdt.debug.mi.core.cdi.model.Breakpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.Breakpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.Catchpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.LocationBreakpoint; import org.eclipse.cdt.debug.mi.core.cdi.model.LocationBreakpoint;
import org.eclipse.cdt.debug.mi.core.cdi.model.SharedLibrary; import org.eclipse.cdt.debug.mi.core.cdi.model.SharedLibrary;
import org.eclipse.cdt.debug.mi.core.cdi.model.Target; import org.eclipse.cdt.debug.mi.core.cdi.model.Target;
@ -151,6 +152,8 @@ public class SharedLibraryManager extends Manager {
bpMgr.setLocationBreakpoint((LocationBreakpoint)bkpt); bpMgr.setLocationBreakpoint((LocationBreakpoint)bkpt);
} else if (bkpt instanceof Watchpoint) { } else if (bkpt instanceof Watchpoint) {
bpMgr.setWatchpoint((Watchpoint)bkpt); bpMgr.setWatchpoint((Watchpoint)bkpt);
} else if (bkpt instanceof Catchpoint) {
bpMgr.setCatchpoint((Catchpoint)bkpt);
} else { } else {
throw new CDIException(); throw new CDIException();
} }

View file

@ -0,0 +1,88 @@
/*******************************************************************************
* Copyright (c) 2000, 2007 QNX Software Systems 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:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.debug.mi.core.cdi.model;
import java.util.Arrays;
import org.eclipse.cdt.debug.core.cdi.ICDICondition;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDICatchpoint;
import org.eclipse.cdt.debug.mi.core.output.MIBreakpoint;
public class Catchpoint extends Breakpoint implements ICDICatchpoint {
public static final String CATCH = "org.eclipse.cdt.debug.gdb.catch";
public static final String THROW = "org.eclipse.cdt.debug.gdb.throw";
public static final String SIGNAL_CATCH = "org.eclipse.cdt.debug.gdb.signal";
private String eventType;
private String arg;
public Catchpoint(Target target, String event, String arg, ICDICondition cond, boolean enabled) {
super(target, ICDIBreakpoint.REGULAR, cond, enabled);
this.eventType = event;
this.arg = arg==null?"":arg;
}
public String getEventType() {
return eventType;
}
public String getExtraArgument() {
return arg;
}
public String getGdbEvent() {
if (getEventType().equals(CATCH)) return "catch";
if (getEventType().equals(THROW)) return "throw";
if (getEventType().equals(SIGNAL_CATCH)) return "signal";
return "unknown";
}
public String getGdbArg() {
return getExtraArgument();
}
@Override
public int hashCode() {
return eventType.hashCode();
}
@Override
public boolean equals(Object arg0) {
if (this == arg0) return true;
if (!(arg0 instanceof Catchpoint)) return false;
MIBreakpoint[] breakpoints = getMIBreakpoints();
if (breakpoints==null || breakpoints.length==0) {
return super.equals(arg0);
}
return Arrays.equals(breakpoints, ((Catchpoint)arg0).getMIBreakpoints());
}
/**
* Returns event type by using miBreakpoint parameters
* @param miBreakpoint
* @return null if unknown type, null cannot be used to create valid Catchpoint
*/
public static String getEventTypeFromMI(MIBreakpoint miBreakpoint) {
if (miBreakpoint.getWhat().equals("exception catch")) {
return
Catchpoint.CATCH;
} else if (miBreakpoint.getWhat().equals("exception throw")) {
return Catchpoint.THROW;
}
return null; // not known/supported
}
public static String getEventArgumentFromMI(MIBreakpoint miBreakpoint) {
// need a working gdb command command that support catch event argument test test
return "";
}
}

View file

@ -28,7 +28,8 @@ import org.eclipse.cdt.debug.core.cdi.ICDILocation;
import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressToSource; import org.eclipse.cdt.debug.core.cdi.model.ICDIAddressToSource;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpointManagement2; import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpointManagement3;
import org.eclipse.cdt.debug.core.cdi.model.ICDICatchpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIExceptionpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIExceptionpoint;
import org.eclipse.cdt.debug.core.cdi.model.ICDIExpression; import org.eclipse.cdt.debug.core.cdi.model.ICDIExpression;
import org.eclipse.cdt.debug.core.cdi.model.ICDIFunctionBreakpoint; import org.eclipse.cdt.debug.core.cdi.model.ICDIFunctionBreakpoint;
@ -99,7 +100,7 @@ import org.eclipse.cdt.debug.mi.core.output.MIThreadSelectInfo;
/** /**
*/ */
public class Target extends SessionObject implements ICDITarget, ICDIBreakpointManagement2, ICDIAddressToSource, ICDIMemorySpaceManagement { public class Target extends SessionObject implements ICDITarget, ICDIBreakpointManagement3, ICDIAddressToSource, ICDIMemorySpaceManagement {
MISession miSession; MISession miSession;
ICDITargetConfiguration fConfiguration; ICDITargetConfiguration fConfiguration;
@ -1282,4 +1283,10 @@ public class Target extends SessionObject implements ICDITarget, ICDIBreakpointM
return new String[0]; return new String[0];
} }
} }
public ICDICatchpoint setCatchpoint(String type, String arg, int cdiType, ICDICondition condition, boolean deferred,
boolean enabled) throws CDIException {
BreakpointManager bMgr = ((Session)getSession()).getBreakpointManager();
return bMgr.setCatchpoint(this,type,arg,condition,enabled);
}
} }

View file

@ -174,7 +174,8 @@ public class CLIProcessor {
(operation.startsWith("tb") && "tbreak".indexOf(operation) != -1) || //$NON-NLS-1$ //$NON-NLS-2$ (operation.startsWith("tb") && "tbreak".indexOf(operation) != -1) || //$NON-NLS-1$ //$NON-NLS-2$
(operation.startsWith("hb") && "hbreak".indexOf(operation) != -1) || //$NON-NLS-1$ //$NON-NLS-2$ (operation.startsWith("hb") && "hbreak".indexOf(operation) != -1) || //$NON-NLS-1$ //$NON-NLS-2$
(operation.startsWith("thb") && "thbreak".indexOf(operation) != -1) || //$NON-NLS-1$ //$NON-NLS-2$ (operation.startsWith("thb") && "thbreak".indexOf(operation) != -1) || //$NON-NLS-1$ //$NON-NLS-2$
(operation.startsWith("rb") && "rbreak".indexOf(operation) != -1)) { //$NON-NLS-1$ //$NON-NLS-2$ (operation.startsWith("rb") && "rbreak".indexOf(operation) != -1) || //$NON-NLS-1$ //$NON-NLS-2$
(operation.startsWith("catch"))) { //$NON-NLS-1$
isbreak = true; isbreak = true;
} }
return isbreak; return isbreak;
@ -222,6 +223,9 @@ public class CLIProcessor {
// only function breakpoints can be set using rbreak // only function breakpoints can be set using rbreak
return MIBreakpointChangedEvent.HINT_NEW_FUNCTION_BREAKPOINT; return MIBreakpointChangedEvent.HINT_NEW_FUNCTION_BREAKPOINT;
} }
if (op.equals("catch")) {
return MIBreakpointChangedEvent.HINT_NEW_CATCHPOINT;
}
if ( !st.hasMoreTokens() ) { if ( !st.hasMoreTokens() ) {
// "break" with no arguments // "break" with no arguments
return MIBreakpointChangedEvent.HINT_NEW_LINE_BREAKPOINT; return MIBreakpointChangedEvent.HINT_NEW_LINE_BREAKPOINT;

View file

@ -0,0 +1,47 @@
/*******************************************************************************
* Copyright (c) 2000, 2006 QNX Software Systems 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:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.debug.mi.core.command;
import org.eclipse.cdt.debug.mi.core.MIException;
import org.eclipse.cdt.debug.mi.core.output.CLICatchInfo;
import org.eclipse.cdt.debug.mi.core.output.MIInfo;
import org.eclipse.cdt.debug.mi.core.output.MIOutput;
/**
* Gdb catch command
*/
public class CLICatch extends CLICommand {
MIOutput out;
public CLICatch(String event, String arg) {
super("catch " + event + " "+arg); //$NON-NLS-1$
}
/**
* This command return breakpoint inserted
*/
public MIInfo getMIInfo() throws MIException {
MIInfo info = null;
MIOutput out = getMIOutput();
if (out != null) {
info = new CLICatchInfo(out);
if (info.isError()) {
throwMIException(info, out);
}
}
return info;
}
}

View file

@ -80,6 +80,10 @@ public class CommandFactory {
return new MIBreakWatch(getMIVersion(), access, read, expression); return new MIBreakWatch(getMIVersion(), access, read, expression);
} }
public CLICatch createCLICatch(String event, String arg) {
return new CLICatch(event, arg);
}
public MIDataDisassemble createMIDataDisassemble(String start, String end, boolean mixed) { public MIDataDisassemble createMIDataDisassemble(String start, String end, boolean mixed) {
return new MIDataDisassemble(getMIVersion(), start, end, mixed); return new MIDataDisassemble(getMIVersion(), start, end, mixed);
} }

View file

@ -23,6 +23,7 @@ public class MIBreakpointChangedEvent extends MIChangedEvent {
public static final int HINT_NEW_LINE_BREAKPOINT = 1; public static final int HINT_NEW_LINE_BREAKPOINT = 1;
public static final int HINT_NEW_FUNCTION_BREAKPOINT = 2; public static final int HINT_NEW_FUNCTION_BREAKPOINT = 2;
public static final int HINT_NEW_ADDRESS_BREAKPOINT = 3; public static final int HINT_NEW_ADDRESS_BREAKPOINT = 3;
public static final int HINT_NEW_CATCHPOINT = 4;
int no = 0; int no = 0;
int hint = HINT_NONE; int hint = HINT_NONE;

View file

@ -0,0 +1,72 @@
package org.eclipse.cdt.debug.mi.core.output;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
public class CLICatchInfo extends MIInfo {
MIBreakpoint[] breakpoints;
public CLICatchInfo(MIOutput record) {
super(record);
parse();
}
/**
* sample output: Catchpoint 3 (catch)
*/
protected void parse() {
List aList = new ArrayList();
try {
if (isDone()) {
MIOutput out = getMIOutput();
MIOOBRecord[] oobs = out.getMIOOBRecords();
for (int i = 0; i < oobs.length; i++) {
if (oobs[i] instanceof MIConsoleStreamOutput) {
MIStreamRecord cons = (MIStreamRecord) oobs[i];
String str = cons.getString();
// We are interested in the signal info
if (parseCatchpoint(str.trim(), aList))
break;
}
}
}
} finally {
breakpoints = (MIBreakpoint[]) aList.toArray(new MIBreakpoint[aList.size()]);
}
}
private boolean parseCatchpoint(String str, List aList) {
if (str.length() == 0)
return false;
if (str.startsWith("Catchpoint ")) { //$NON-NLS-1$
int bn = 0;
StringTokenizer tokenizer = new StringTokenizer(str);
for (int i = 0; tokenizer.hasMoreTokens(); i++) {
String sub = tokenizer.nextToken();
switch (i) {
case 0: // first column is "Signal"
break;
case 1: // second column is number
bn = Integer.parseInt(sub);
break;
}
}
MITuple tuple = new MITuple();
MIBreakpoint m = new MIBreakpoint(tuple);
m.setNumber(bn);
aList.add(m);
return true;
}
return false;
}
public MIBreakpoint[] getMIBreakpoints() {
if (breakpoints == null) {
parse();
}
return breakpoints;
}
}

View file

@ -20,3 +20,9 @@ TargetOptionsPage.label=GDB/MI Options
VerboseMode.label=Verbose Mode VerboseMode.label=Verbose Mode
VerboseMode.tooltip=Verbose Mode For gdb Console VerboseMode.tooltip=Verbose Mode For gdb Console
catchCatch.label = Exception Caught
catchThrow.label = Exception Thrown
catchType.label = Event Type
catchSignal.label = Signal Caught
catchSignal.arg.label = Signal Number

View file

@ -85,4 +85,19 @@
</consolePageParticipant> </consolePageParticipant>
</extension> </extension>
<extension point="org.eclipse.cdt.debug.ui.breakpointContribution">
<breakpointLabels markerType="org.eclipse.cdt.debug.core.cCatchpointMarker">
<attribute name="org.eclipse.cdt.debug.core.catchpoint_event_id" label="%catchType.label" type="string">
<value value="org.eclipse.cdt.debug.gdb.catch" label="%catchCatch.label">
</value>
<value value="org.eclipse.cdt.debug.gdb.throw" label="%catchThrow.label"/>
<value value="org.eclipse.cdt.debug.gdb.signal" label="%catchSignal.label">
<attribute name="org.eclipse.cdt.debug.core.catchpoint_event_arg" label="%catchSignal.arg.label"
type="integer" fieldEditor="org.eclipse.jface.preference.IntegerFieldEditor">
</attribute>
</value>
</attribute>
</breakpointLabels>
</extension>
</plugin> </plugin>