X-Git-Url: https://git.sthu.org/?p=pygdb.git;a=blobdiff_plain;f=Configuration.py;h=6f08a20b442bb2ab9073adc5e243fdecf5b583a6;hp=1aeb258a48320eeeb1b27d190fa6aeb6310cd068;hb=b7f4eaf787ec9c54f36cce00bb294a8be2a862c3;hpb=e8f5eba24b3fd5cdd839bcfc170a2e3aa16dd05d diff --git a/Configuration.py b/Configuration.py index 1aeb258..6f08a20 100755 --- a/Configuration.py +++ b/Configuration.py @@ -13,13 +13,20 @@ import StatusWindow class Configuration: def __init__(self): + self.clear() + + + def clear(self): self.breakpoints = [] self.watches = [] self.ints = [] + self.currfile, self.currlineno = None, 0 def load(self, filename): try: + self.clear() + cnt = 0 #Parse all lines f = file(filename, "r") @@ -36,6 +43,8 @@ class Configuration: self.parseWatch(tail) elif cmd == "int": self.parseInt(tail) + elif cmd == "currpos": + self.parseCurrpos(tail) else: cnt -= 1 print "Unkown command", cmd @@ -59,6 +68,9 @@ class Configuration: for s in self.ints: self.__writeInt(f, s) + if self.isCurrposSet(): + self.__writeCurrpos(f) + f.close() return True @@ -103,6 +115,20 @@ class Configuration: def parseWatch(self, tail): self.addWatch(tail) + def parseCurrpos(self, tail): + + tail = tail.strip() + rx = re.compile("^[\w/\._\-]+:\d+$") + + if not rx.search(tail): + print "Wrong current position format:", tail + return + + [file,lineno] = string.split(tail, ":") + lineno = int(lineno) + + self.setCurrpos(file, lineno) + def __writeBreak(self, f, b): if b["cond"] != None: @@ -116,6 +142,9 @@ class Configuration: def __writeWatch(self, f, w): f.write("watch %(expr)s\n" % w) + def __writeCurrpos(self, f): + f.write("currpos %s:%d\n" % (self.currfile, self.currlineno)) + def addBreak(self, file, lineno, cond=None): bp = {"file" : file, "lineno" : lineno, "cond" : cond} @@ -132,6 +161,12 @@ class Configuration: if not w in self.watches: self.watches += [w] + def setCurrpos(self, file, lineno): + self.currfile, self.currlineno = file, lineno + + def isCurrposSet(self): + return self.currfile!=None + def findInt(self, name): for i in self.ints: @@ -143,7 +178,8 @@ class Configuration: def __str__(self): return "breakpoints=" + str(self.breakpoints) + \ ", watches=" + str(self.watches) + \ - ", ints=" + str(self.ints) + ", ints=" + str(self.ints) + \ + ", currpos=" + str((self.currfile, self.currlineno))