/*
* Copyright (c) 2000, 2001 Paul Kinnucan
*
* $Revision: 1.1 $
*/
package jde.debugger.command;
import jde.debugger.JDEException;
import jde.debugger.spec.WatchpointSpec;
import jde.debugger.Etc;
import jde.debugger.spec.EventRequestSpecList;
/**
* 'watch' command.
*
*
* Syntax:
*
* watch classPattern fieldName type
* [{@link Etc#getThreadFromArgs(List) thread-restriction}]
* [{@link Etc#getExprFromArgs(List) expression-restriction}]
* [{@link Etc#getObjectIDFromArgs(List) object-id-restriction}]
* [{@link Etc#getSuspendPolicyFromArgs(List) suspend-policy}]
* [{@link Etc#getClassFiltersFromArgs(List) class-filters}]
* [{@link Etc#getClassExFiltersFromArgs(List) class-exclusion-filters}]
*
*
* Returns:
*
* (jde-dbo-command-result cmd_id specID)
*
*
* Comments:
*
* - type can be "for_access" or "for_modification"
*
- 'classPattern' can be a string pattern of the type *.Test
*
- objectID is used when, for example, when you already know the
* object id of the object, the access/modification of which's field
* you're interested in.
*
- specID is a 'long', that can be used in 'clear' commands.
*
*
*
* @see EventHandler#watchpointEvent(WatchpointEvent)
*
* @author Paul Kinnucan
* @version $Revision: 1.1 $
*
*/
public class Watch extends DebugProcessCommand {
/**
*
* @exception jde.debugger.JDEException
*/
public void doCommand() throws JDEException {
if (args.size() < 3)
throw new JDEException("Insufficient arguments");
String classPattern = args.remove(0).toString();
String methodName = args.remove(0).toString();
String typeString = args.remove(0).toString().toLowerCase();
EventRequestSpecList eventRequests = proc.getEventRequestSpecs();
WatchpointSpec er = null;
if (typeString.equals("for_access")) {
if (!proc.getVM().canWatchFieldAccess())
throw new JDEException("This VM implementation cannot watch field accesses");
er = eventRequests.createAccessWatchpoint(classPattern, methodName);
} else if (typeString.equals("for_modification")) {
if (!proc.getVM().canWatchFieldModification())
throw new JDEException("This VM implementation cannot watch field modifications");
er = eventRequests.createModificationWatchpoint(classPattern, methodName);
} else {
throw new JDEException("'"+typeString+"' not understood: use either 'for_access' or 'for_modification'");
}
er.setThread(Etc.getThreadFromArgs(args));
er.setExpression(Etc.getExprFromArgs(args));
er.setObjectID(Etc.getObjectIDFromArgs(args));
er.setSuspendPolicy(Etc.getSuspendPolicyFromArgs(args));
er.setClassFilters(Etc.getClassFiltersFromArgs(args));
er.setClassExFilters(Etc.getClassExFiltersFromArgs(args));
eventRequests.install(er);
jde.signalCommandResult(procID, cmdID, er.getID());
}
public Object clone() {return new Watch();}
} // Watch
/*
* $Log: Watch.java,v $
* Revision 1.1 2001/03/24 13:35:26 paulk
* Initial revision.
*
*
*/
// End of Watch.java