/* * Copyright (c) 2000, 2001 Paul Kinnucan * * $Revision: 1.3 $ */ package jde.debugger.command; import jde.debugger.JDEException; import jde.debugger.Etc; import com.sun.jdi.ObjectReference; import jde.debugger.Rep; import com.sun.jdi.ThreadReference; import com.sun.jdi.StackFrame; import com.sun.jdi.IncompatibleThreadStateException; import com.sun.jdi.ObjectCollectedException; import jde.debugger.LispForm; import com.sun.jdi.AbsentInformationException; import com.sun.jdi.NativeMethodException; /** * Gets the local variables in a specified stack frame. *

* * Syntax: *

 * get_locals threadID stackFrameIndex
 * 
* * Returns: *
 * (jde-dbo-command-result cmd_id {@link Rep#getLocalVariableValueMapRep(Map, ObjectStore) local-variables-values})
 * 
* * Comments: * * * @author Amit Kumar * @author Paul Kinnucan * @version $Revision: 1.3 $ */ public class GetLocals extends DebugProcessCommand { /** * * @exception jde.debugger.JDEException */ public void doCommand() throws JDEException { boolean weSuspendedThread = false; ThreadReference tRef = null; if (args.size() != 2) throw new JDEException("Insufficient arguments"); try { Long uniqueID = Etc.safeGetLong(args.remove(0), "thread ID"); int frameIndex = Etc.safeGetint(args.remove(0), "frame index"); Object oRef = proc.getStore().get(uniqueID); if (oRef == null) { throw new JDEException("No such thread exists"); } else if (!(oRef instanceof ThreadReference)) { throw new JDEException("Object is not a thread"); } tRef = (ThreadReference)oRef; if (!tRef.isSuspended()) { tRef.suspend(); weSuspendedThread = true; } StackFrame frame = null; try { frame = tRef.frame(frameIndex); } catch (IncompatibleThreadStateException ex) { throw new JDEException("Thread is not suspended"); } catch (IndexOutOfBoundsException ex) { throw new JDEException("Invalid frame"); } catch (ObjectCollectedException ex) { throw new JDEException("The frame has already been garbage collected"); } if (frame == null) { throw new JDEException("Error ascertaining frame"); } LispForm localVariableValues = null; try { localVariableValues = Rep.getLocalVariableValueMapRep(frame.getValues(frame.visibleVariables()), proc.getStore()); } catch (AbsentInformationException ex) { throw new JDEException("Local variable information not available: compile with -g"); } catch (NativeMethodException ex) { throw new JDEException("Can't access local variables in native methods"); } jde.signalCommandResult(procID, cmdID, localVariableValues); } finally { if (weSuspendedThread && (tRef != null)) tRef.resume(); } } public Object clone() {return new GetLocals();} } // GetLocals /* * $Log: GetLocals.java,v $ * Revision 1.3 2001/03/24 05:42:36 paulk * Updated to reflect reorganization of debugger code. * * Revision 1.2 2000/08/14 02:42:16 paulk * DebugCommandFactory.java * * Revision 1.1 2000/04/10 05:33:28 paulk * Initial revision. * * */ // End of GetLocals.java