X-Git-Url: https://git.sthu.org/?p=pygdb.git;a=blobdiff_plain;f=DbgTerminal.py;h=005661ce3e4aeff79f2bcea9461a8389555e7929;hp=0f0eb07f77a4ded1a1917f0e37965c1b6656234c;hb=0296b6d5afe20a15764842873917bf1d6aa34b77;hpb=c90feb4c530cdb4e5abbfac044fea74d88975775 diff --git a/DbgTerminal.py b/DbgTerminal.py index 0f0eb07..005661c 100644 --- a/DbgTerminal.py +++ b/DbgTerminal.py @@ -4,6 +4,7 @@ __author__ = "shuber" +import gobject import gtk import os import pango @@ -29,6 +30,9 @@ class DbgTerminal (vte.Terminal): self.history = [""] self.isactive = True self.lastc, self.lastr = 0,0 + self.gotActiveCallback = [] + self.gotInactiveCallback = [] + self.activityChanged = None #Start debugger self.clientCmd = clientCmd @@ -38,6 +42,7 @@ class DbgTerminal (vte.Terminal): #Set up terminal window and initialize debugger self.connect("cursor-moved", self.contents_changed) self.connect("child-exited", quitHandler) + gobject.timeout_add(50, self.checkActivityChanged) #font description fontdesc = pango.FontDescription("monospace 9") @@ -56,6 +61,28 @@ class DbgTerminal (vte.Terminal): os.kill(self.childpid, 15); self.childpid = None + def checkActivityChanged(self): + + try: + + #There was activity + if self.activityChanged != None: + + res = self.activityChanged + self.activityChanged = None + + status, param = res + if self.isActive(): + for cb in self.gotActiveCallback: + cb(status, param) + else: + for cb in self.gotInactiveCallback: + cb(status, param) + except: + pass + + return True + def contents_changed(self, term): @@ -68,18 +95,29 @@ class DbgTerminal (vte.Terminal): #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 - len = self.getHistoryLen() + len = max(0,self.getHistoryLen()-1) self.history[-1] += lines[0] self.history += lines[1:] - for l in self.history[len:]: - pass + + #Check if activity status has been changed + for i in range(len, self.getHistoryLen()): + line = self.history[i] + + res = self.testForActivity(i) + if res != None and not self.isActive(): + self.setActive(True) + self.activityChanged = res + + res = self.testForInactivity(i) + if res != None and self.isActive(): + self.setActive(False) + self.activityChanged = res + def waitForNewline(self): @@ -140,6 +178,12 @@ class DbgTerminal (vte.Terminal): def waitForActivation(self, his): raise NotImplementedError() + def testForActivity(self, his): + raise NotImplementedError() + + def testForInactivity(self, his): + raise NotImplementedError() + def setActive(self, isactive): self.isactive = isactive