X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=DbgTerminal.py;h=11eaf5c35ee2cdf4a7f2629716b69fe5f2394e85;hb=973cf63f2347aa83edb9654d3566eaf66526d6b9;hp=69fa8339c61dc905e744390520dfb5fa5e5bdc77;hpb=0024f43ac5834f611179587a6fc25385ee5bf4a5;p=pygdb.git diff --git a/DbgTerminal.py b/DbgTerminal.py index 69fa833..11eaf5c 100644 --- a/DbgTerminal.py +++ b/DbgTerminal.py @@ -5,8 +5,11 @@ __author__ = "shuber" import gtk +import os +import pango import pty import string +import sys import time import threading import vte @@ -17,72 +20,82 @@ import ClientIOTerminal class DbgTerminal (vte.Terminal): - lastrow = 0 - history = [] - - def __init__(self, clientCmd): vte.Terminal.__init__(self) + #Set members + self.childpid = None + self.history = [] + self.isactive = True + #Start debugger self.clientCmd = clientCmd - self.fork_command( self.getCommand(), self.getArgv()) - #Open pseudo-terminal where to-be-debugged process reads/writes to self.client_ptymaster, self.client_ptyslave = pty.openpty() - self.setPty(self.client_ptyslave) #Set up terminal window and initialize debugger self.connect("cursor-moved", self.contents_changed) - self.connect("child-exited", lambda *w: gtk.main_quit()) + self.connect("child-exited", quitHandler) + + #font description + fontdesc = pango.FontDescription("monospace 9") + self.set_font(fontdesc) + + + def initialize(self): + self.childpid = self.fork_command( self.getCommand(), self.getArgv()) + self.waitForActivation(0) + self.setPty(self.client_ptyslave) + + def stopDbg(self): + + if self.childpid != None: + #9=KILL, 15=TERM + os.kill(self.childpid, 15); + self.childpid = None + def contents_changed(self, term): c,r = term.get_cursor_position() + text = self.get_text_range(self.getHistoryLen()-1,0,r,-1,lambda *w:True) - if self.lastrow <= r: - text = self.get_text_range(self.lastrow,0,r,-1,lambda *w:True) - - #Remove the incomplete line - if self.getHistoryLen()>0 and (len(self.history[-1])==0 or self.history[-1]!='\n') : - del self.history[-1] + #Remove annoying \n at the end + assert(text[-1] == "\n") + text = text[:-1] - #Get the lines and remove empty lines - lines = string.split(text, "\n") + #Remove the incomplete line + if self.getHistoryLen()>0 and self.history[-1]!='\n': + del self.history[-1] - #Remove last empty line... - if lines[-1] == "": - del lines[-1] + #Get the lines and remove empty lines + lines = string.split(text, "\n") - #Add lines to history - self.history += [l+"\n" for l in lines[:-1]] - self.history += [lines[-1]] - self.lastrow = r + #Add lines to history. The last line contains no "\n" at the end! + self.history += [l+"\n" for l in lines[:-1]] + self.history += [lines[-1]] def waitForNewline(self): - r = self.lastrow - while not self.lastrow > r: + l = self.getHistoryLen() + while not self.getHistoryLen() > l: gtk.main_iteration() def getHistoryLen(self): return len(self.history) - def waitForRx(self, rx, start=None): + def waitForRx(self, rx, start): - if start == None: - start = self.getHistoryLen() - if start < 0: - start = 0 + curr = start while True: - for no in range(start, self.getHistoryLen()): + for no in range(max(curr-1,start), self.getHistoryLen()): line = self.history[no] if rx.search(line): return no, line - start = self.getHistoryLen() + curr = max(start,self.getHistoryLen()) gtk.main_iteration() @@ -110,24 +123,33 @@ class DbgTerminal (vte.Terminal): def setQuit(self): raise NotImplementedError() - def setBreakpoint(self, file, lineno): + def setBreakpoint(self, file, lineno, condition=False): raise NotImplementedError() - def getExpression(self, expr): + def delBreakpoint(self, breakpoint): raise NotImplementedError() - def getLastLine(self): - if len(self.history) == 0: - return None + def getExpression(self, expr): + raise NotImplementedError() - return self.history[-1] + def waitForActivation(self, his): + raise NotImplementedError() - def feed_dbg(self, text): - self.feed_child(text) + def setActive(self, isactive): + self.isactive = isactive + def isActive(self): + return self.isactive +def quitHandler(*w): + try: + gtk.main_quit() + except: + pass + sys.exit(0) + class DbgWindow (gtk.Window): @@ -142,7 +164,7 @@ class DbgWindow (gtk.Window): #Set up GTK stuff gtk.Window.__init__(self) - self.connect("destroy", lambda *w: gtk.main_quit()) + self.connect("destroy", quitHandler) #Set title and add terminal self.set_title("Debugger I/O") @@ -166,17 +188,3 @@ class DbgWindow (gtk.Window): - -def launchDebugger(wnd, term): - - wnd.toggleClientIOWindow() - - term.setBreakpoint("main.cpp", 15) - term.setRun() - res = term.getExpression("a") - print "Result = ", res - - term.setQuit() - - -