X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=GdbTerminal.py;h=81a6300ca19abafd894007a865b7c47e7e6e9746;hb=117954f2ec8c12ac77be9f22dc4e9450ad2b3c48;hp=f468f89fe1f718fb99e870bf3b21abe0b10ff2b9;hpb=d7a00b7d9d8b49655f714abc53361bed08e0355d;p=pygdb.git diff --git a/GdbTerminal.py b/GdbTerminal.py old mode 100755 new mode 100644 index f468f89..81a6300 --- a/GdbTerminal.py +++ b/GdbTerminal.py @@ -23,38 +23,30 @@ class GdbTerminal (DbgTerminal.DbgTerminal): def getArgv(self): return ["gdb", "--fullname", string.split(self.clientCmd)[0]] - def setPty(self, pty): - ttyname = os.ttyname(pty) - his = self.getHistoryLen() - self.feed_child("set inferior-tty %s\n" % (ttyname,)) - self.waitForActivation(his) - def setRun(self): - his = self.getHistoryLen() argv = string.join(string.split(self.clientCmd)[1:]) self.feed_child("run " + argv + "\n") - return self.waitForActivation(his) def setContinue(self): - his = self.getHistoryLen() self.feed_child("cont\n"); - return self.waitForActivation(his) def setStepover(self): - his = self.getHistoryLen() self.feed_child("next\n"); - return self.waitForActivation(his) def setStepin(self): - his = self.getHistoryLen() self.feed_child("step\n"); - return self.waitForActivation(his) def setQuit(self): self.feed_child("quit\n") self.waitForNewline() self.feed_child("y\n"); + def setPty(self, pty): + ttyname = os.ttyname(pty) + len = self.getHistoryLen() + self.feed_child("set inferior-tty %s\n" % (ttyname,)) + self.waitForPrompt(len) + def setBreakpoint(self, file, lineno, condition=None): his = self.getHistoryLen() if condition==None: @@ -63,7 +55,7 @@ class GdbTerminal (DbgTerminal.DbgTerminal): self.feed_child("break %s:%s if %s\n" % \ (file, str(lineno), condition)) - rx = re.compile("^Breakpoint |^No |^\(gdb\) ") + rx = "^Breakpoint |^No |^\(gdb\) " his, response = self.waitForRx(rx, his) answer = None @@ -76,7 +68,7 @@ class GdbTerminal (DbgTerminal.DbgTerminal): self.feed_child("n\n"); #Wait again for (gdb)... - self.waitForActivation(his) + self.waitForPrompt(his) return answer @@ -84,12 +76,12 @@ class GdbTerminal (DbgTerminal.DbgTerminal): def delBreakpoint(self, breakpoint): his = self.getHistoryLen() self.feed_child("del breakpoint %s\n" % (breakpoint,)) - self.waitForActivation(his) + self.waitForPrompt(his) def getBreakpoints(self): starthis = self.getHistoryLen() self.feed_child("info breakpoints\n") - endhis, response = self.__waitForPrompt(starthis) + endhis, response = self.waitForPrompt(starthis) rxbp = re.compile("^\d+\s+breakpoint") rxpos = re.compile("^.* at \S+:\d+$") @@ -136,7 +128,7 @@ class GdbTerminal (DbgTerminal.DbgTerminal): his = self.getHistoryLen() self.feed_child("print " + expr + "\n") - his, response = self.__waitForPrompt(his) + his, response = self.waitForPrompt(his) answer = self.history[his-1] if len(string.split(answer, "=")) == 1: @@ -145,24 +137,69 @@ class GdbTerminal (DbgTerminal.DbgTerminal): split = string.split(answer, "=") return string.join(split[1:], "=").strip() + + def listCodeSnippet(self): + starthis = self.getHistoryLen() + self.feed_child("list\n") + endhis, response = self.waitForPrompt(starthis) + + text = string.join(self.history[starthis:endhis], "\n") + return text + - def waitForActivation(self, starthis): + def waitForPrompt(self, his): + rx = "^\(gdb\)" + return self.waitForRx(rx,his) + + + def testForActivity(self, his): + """Test whether debugger got active again""" + + line = self.history[his] - self.setActive(False) - endhis, response = self.__waitForPrompt(starthis) - self.setActive(True) + if string.find(line, "\x1a\x1a") == 0: + tuples = string.split(line[2:], ":") + tuples[1] = int(tuples[1]) + return "break", [tuples[0], int(tuples[1])] - for his in reversed(range(starthis+1,endhis)): - if self.history[his][0:2]=="\x1a\x1a": - tuples = string.split(self.history[his][2:], ":") - return tuples[0:2] + if string.find(line, "Program exited") == 0: + code = string.split(line)[-1] + + codeno = 0 + + #Parse the octal number + if code[0] == "O": + code = code[1:-1] + for c in code: + codeno = codeno*8 + int(c) + + return "exited", codeno return None - def __waitForPrompt(self, his): - rx = re.compile("^\(gdb\) ") - return self.waitForRx(rx,his) + def testForInactivity(self, his): + """Test whether debugger got inactive""" + line = self.history[his] + + if string.find(line, "Starting program:") == 0: + prog = string.join( string.split(line)[1:]) + return "started", prog + + if string.find(line, "Continuing.") == 0: + return "continued", None + + if string.find(line, "\x1a\x1a") == 0: + rxcont = re.compile("^\(gdb\)\s+(cont|step|next|stepi|nexti)") + + if rxcont.search(self.history[his-1]): + return "stepped", None + + return None + + + +