[Pydev-cvs] org.python.pydev.debug/src/org/python/pydev/debug/model/remote RunCommand.java,NONE,1.1
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-05-07 21:51:41
|
Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/model/remote In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9465/src/org/python/pydev/debug/model/remote Modified Files: RemoteDebugger.java AbstractDebuggerCommand.java Added Files: RunCommand.java Log Message: Final touches. Debugger is ready to go Index: RemoteDebugger.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/model/remote/RemoteDebugger.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RemoteDebugger.java 7 May 2004 02:03:08 -0000 1.2 --- RemoteDebugger.java 7 May 2004 21:51:02 -0000 1.3 *************** *** 130,134 **** } catch (IOException e1) { done = true; ! } } } --- 130,137 ---- } catch (IOException e1) { done = true; ! } ! if ((socket == null) || !socket.isConnected()) { ! done = true; ! } } } *************** *** 220,225 **** t = new Thread(writer, "pydevd.writer"); t.start(); - writer.postCommand(new VersionCommand(this)); - } --- 223,226 ---- Index: AbstractDebuggerCommand.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/model/remote/AbstractDebuggerCommand.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AbstractDebuggerCommand.java 7 May 2004 02:03:08 -0000 1.2 --- AbstractDebuggerCommand.java 7 May 2004 21:51:02 -0000 1.3 *************** *** 33,36 **** --- 33,37 ---- public abstract class AbstractDebuggerCommand { + static public final int CMD_RUN = 101; static public final int CMD_LIST_THREADS = 102; static public final int CMD_THREAD_CREATED = 103; --- NEW FILE: RunCommand.java --- /* * Author: atotic * Created on May 7, 2004 * License: Common Public License v1.0 */ package org.python.pydev.debug.model.remote; /** * Run command */ public class RunCommand extends AbstractDebuggerCommand { public RunCommand(RemoteDebugger debugger) { super(debugger); } public String getOutgoing() { return makeCommand(CMD_RUN, sequence, ""); } } |