- Thread rewrite for improved stability

This commit is contained in:
ccremers 2006-12-13 11:59:44 +00:00
parent 654c2e3500
commit 4750f1b309
2 changed files with 93 additions and 74 deletions

View File

@ -24,7 +24,11 @@ class AttackDisplay(wx.ScrolledWindow):
self.attack = attack
wx.ScrolledWindow.__init__(self,parent,id=-1)
self.SetBackgroundColour('White')
# [CC][X] The below statement might be iffy on older versions.
# (Python 2.3? What settings?)
# Cf. bug report Vimal Subra
self.SetBackgroundColour(wx.Colour(255,255,255))
self.Bind(wx.EVT_SIZE, self.OnSize)
self.Image = wx.StaticBitmap(self, -1, wx.EmptyBitmap(1,1))

View File

@ -29,42 +29,40 @@ if Preference.usePIL():
#---------------------------------------------------------------------------
class ScytherThread(threading.Thread):
""" The reason this is a thread is because we might to decide to
abort it. However, apparently Python has no good support for killing
threads yet :( """
"""
Apply Scyther algorithm to input and retrieve results
"""
# Override Thread's __init__ method to accept the parameters needed:
def __init__ ( self, parent ):
self.parent = parent
parent.verified = False
parent.claims = []
def __init__ ( self, spdl, options="", callback=None ):
self.spdl = spdl
self.options = options
self.callback = callback
threading.Thread.__init__ ( self )
def run(self):
self.claimResults()
(scyther, claims, summary) = self.claimResults()
# Results are done (claimstatus can be reported)
if self.callback:
wx.CallAfter(self.callback, scyther, claims, summary)
# Shoot down the verification window and let the RunScyther function handle the rest
self.parent.verified = True
self.parent.verifywin.Close()
def claimResults(self):
""" Convert spdl to result (using Scyther)
"""
self.parent.scyther = scyther = Scyther.Scyther()
scyther.options = self.parent.options
scyther.setInput(self.parent.spdl)
scyther = Scyther.Scyther()
scyther.options = self.options
scyther.setInput(self.spdl)
# verification start
self.parent.claims = scyther.verify()
claims = scyther.verify()
summary = str(scyther)
self.parent.summary = str(scyther)
return (scyther, claims, summary)
#---------------------------------------------------------------------------
@ -97,6 +95,7 @@ class AttackThread(threading.Thread):
def makeImages(self):
""" create images """
done = 0
for cl in self.parent.claims:
for attack in cl.attacks:
@ -261,11 +260,6 @@ class ResultWindow(wx.Frame):
"""
Displays the claims status and contains buttons to show the actual
attack graphs
TODO: this really should have a statusbar that works.
TODO: on windows, it updates really slow, and the background is the
wrong colour. Basically, it inhales air. Hard.
"""
def __init__(
@ -429,34 +423,29 @@ class ScytherRun(object):
self.mainwin = mainwin
self.mode = mode
self.spdl = mainwin.control.GetValue()
# Verification window
self.verifywin = verifywin = VerificationWindow(mainwin,"Running Scyther %s process" % mode)
verifywin.Center()
verifywin.Show(True)
# start the thread
self.options = mainwin.settings.ScytherArguments(mode)
self.verified = False
verifywin.SetCursor(wx.StockCursor(wx.CURSOR_WAIT))
self.options = mainwin.settings.ScytherArguments(mode)
self.main()
t = ScytherThread(self)
t.start()
def verificationDone(self, scyther, claims, summary):
# start the window and show until something happens
# if it terminates, this is a cancel, and should also kill the thread. (what happens to a spawned Scyther in that case?)
# if the thread terminames, it should close the window normally, and we end up here as well.
val = verifywin.ShowModal()
self.scyther = scyther
self.claims = claims
self.summary = summary
if self.verified:
# Scyther program is done (the alternative is that it was
# cancelled)
self.verified = True
self.verifywin.Close()
# Process the claims
if self.scyther.errorcount == 0:
self.verificationOkay()
else:
self.verificationErrors()
def verificationOkay(self):
# Great, we verified stuff, progress to the claim report
title = "Scyther results : %s" % mode
self.resultwin = resultwin = ResultWindow(self,mainwin,title)
title = "Scyther results : %s" % self.mode
self.resultwin = resultwin = ResultWindow(self,self.mainwin,title)
def attackDone(attack,total,done):
if resultwin:
@ -485,13 +474,39 @@ class ScytherRun(object):
resultwin.thread = t
else:
# Darn, some errors. report.
title = "Scyther errors : %s" % mode
errorwin = ErrorWindow(mainwin,title,errors=self.scyther.errors)
def verificationErrors(self):
"""
Verification process generated errors. Show them.
"""
title = "Scyther errors : %s" % self.mode
errorwin = ErrorWindow(self.mainwin,title,errors=self.scyther.errors)
errorwin.Center()
val = errorwin.ShowModal()
def main(self):
"""
Start process
"""
title = "Running Scyther %s process" % self.mode
self.verifywin = VerificationWindow(self.mainwin,title)
self.verifywin.Center()
self.verifywin.Show(True)
# start the thread
self.verifywin.SetCursor(wx.StockCursor(wx.CURSOR_WAIT))
t = ScytherThread(self.spdl, self.options, self.verificationDone)
t.start()
# start the window and show until something happens
# if it terminates, this is a cancel, and should also kill the thread. (what happens to a spawned Scyther in that case?)
# if the thread terminames, it should close the window normally, and we end up here as well.
val = self.verifywin.ShowModal()
#---------------------------------------------------------------------------