def __init__(self):
self.breakpoints = []
self.watches = []
+ self.ints = []
def load(self, filename):
self.parseBreak(tail)
elif cmd == "watch":
self.parseWatch(tail)
+ elif cmd == "int":
+ self.parseInt(tail)
else:
cnt -= 1
print "Unkown command", cmd
except IOError:
return None
+
def store(self, filename):
f = file(filename, "w")
for w in self.watches:
self.__writeWatch(f, w)
+ for s in self.ints:
+ self.__writeInt(f, s)
+
+
def parseBreak(self, tail):
self.addBreak(file, lineno, cond)
+ def parseInt(self, tail):
+ tail.strip()
+ rx = re.compile("^[\w_\-]+\s+\d+$")
+
+ if not rx.search(tail):
+ print "Wrong size format:", tail
+ return
+
+ [name,val] = string.split(tail)
+ val = int(val)
+ self.addInt(name, val)
def parseWatch(self, tail):
self.addWatch(tail)
else:
f.write("break %(file)s:%(lineno)d\n" % b)
+ def __writeInt(self, f, s):
+ f.write("int %(name)s %(val)d\n" % s)
+
def __writeWatch(self, f, w):
f.write("watch %(expr)s\n" % w)
def addBreak(self, file, lineno, cond=None):
self.breakpoints += [ {"file" : file, "lineno" : lineno, "cond" : cond} ]
+ def addInt(self, name, val):
+ self.ints += [{"name": name, "val": val}]
+
def addWatch(self, expr):
self.watches += [ {"expr" : expr.strip() } ]
+
+ def findInt(self, name):
+ for i in self.ints:
+ if i["name"] == name:
+ return i["val"]
+ return None
+
+
def __str__(self):
- return "breakpoints=" + str(self.breakpoints) + ", watches=" + str(self.watches)
+ return "breakpoints=" + str(self.breakpoints) + \
+ ", watches=" + str(self.watches) + \
+ ", ints=" + str(self.ints)
self.status = gtk.Label("Not Running")
vbox.pack_start(self.status, False, False)
- vpaned = gtk.VPaned()
- vbox.add(vpaned)
+ self.paned1 = gtk.VPaned()
+ vbox.add(self.paned1)
#Adding the frames
self.frames = []
self.frames += [WatchesFrame.WatchesFrame(debugger)]
self.frames += [BreakpointsFrame.BreakpointsFrame(debugger)]
- vpaned.add1(self.frames[0])
- vpaned.add2(self.frames[1])
+ self.paned1.add1(self.frames[0])
+ self.paned1.add2(self.frames[1])
#Register callback function for new positions
#and update the values
def applyConfiguration(self, conf):
+ w = conf.findInt("statuswnd-width")
+ h = conf.findInt("statuswnd-height")
+ paned1 = conf.findInt("statuswnd-paned1")
+
+ print w, h, paned1
+ if w!=None and h!=None:
+ self.resize(w,h)
+ if paned1!=None:
+ self.paned1.set_position(paned1)
+
+
while not self.debugger.isActive():
gtk.main_iteration()
def fillConfiguration(self, conf):
+
+ conf.addInt("statuswnd-width", self.get_size()[0])
+ conf.addInt("statuswnd-height", self.get_size()[1])
+ conf.addInt("statuswnd-paned1", self.paned1.get_position())
+
for f in self.frames:
f.fillConfiguration(conf)