package jde.debugger.command;
import java.util.Iterator;
import com.sun.jdi.InvalidTypeException;
import com.sun.jdi.ObjectReference;
import com.sun.jdi.ThreadGroupReference;
import com.sun.jdi.ThreadReference;
import jde.debugger.Etc;
import jde.debugger.JDEException;
/**
* 'kill thread' command. Kill a thread with a given exception object.
*
*
* Syntax:
*
* kill_thread threadID exceptionObjectID
*
*
* Comments:
*
* - threadID can be retrieved using the get_threads command
*
- exceptionObjectID is the object id of a Throwable object. It
* can be created using the 'evaluate' command, or an existing throwable
* object can be used.
*
*
* @author Paul Kinnucan
* @version $Revision: 1.2 $
* @copyright Copyright (c) 2000, 2001, 2003 Paul Kinnucan
*
*/
public class KillThread extends DebugProcessCommand {
/**
*
* @exception jde.debugger.JDEException
*/
public void doCommand() throws JDEException {
if (m_args.size() < 2)
throw new JDEException("Insufficient arguments");
Long uniqueID = Etc.safeGetLong(m_args.remove(0), "thread ID");
ObjectReference oRef = m_debugger.getStore().get(uniqueID);
if (oRef == null) {
throw new JDEException("No such thread exists");
} else if (!(oRef instanceof ThreadReference)) {
throw new JDEException("The ID doesn't correspond to a thread");
}
ThreadReference tRef = (ThreadReference) oRef;
uniqueID = Etc.safeGetLong(m_args.remove(0), "thread ID");
oRef = m_debugger.getStore().get(uniqueID);
if (oRef == null) {
throw new JDEException("No such thread exists");
}
try {
tRef.stop(oRef);
} catch (InvalidTypeException ex) {
throw new JDEException("Object ID doesn't correspond to a Throwable object");
}
m_debugger.signalCommandResult(m_cmdID, null, CMD_OK);
}
public Object clone() {return new KillThread();}
} // KillThread
/*
* $Log: KillThread.java,v $
* Revision 1.2 2003/01/15 05:56:26 paulk
* Add Petter Mahlen's changes.
*
* Revision 1.1 2001/03/24 13:35:25 paulk
* Initial revision.
*
*
*/
// End of KillThread.java