#!/usr/bin/python #--------------------------------------------------------------------------- """ Import externals """ import wx import sys #--------------------------------------------------------------------------- """ Import scyther-gui components """ import Preference import Scyther.Claim as Claim #--------------------------------------------------------------------------- class MyGrid(wx.GridBagSizer): def __init__(self,parent): wx.GridBagSizer.__init__(self,hgap=5, vgap=5) self.ypos = 0 self.parent = parent def stepAdd(self,ctrl,txt): self.Add(ctrl,(self.ypos,1),flag=wx.ALIGN_LEFT) self.Add(txt,(self.ypos,0),flag=wx.ALIGN_RIGHT|wx.ALIGN_CENTER_VERTICAL) self.ypos += 1 def lineAdd(self): line = wx.StaticLine(self.parent,-1) # Currently it is not expanded, and thus invisible. self.Add(line,pos=(self.ypos,0),span=(1,2),flag=wx.TOP|wx.BOTTOM) self.ypos += 1 def titleAdd(self,title,firstLine=True): if firstLine: self.lineAdd() self.ypos += 1 txt = wx.StaticText(self.parent,-1,title) font = wx.Font(12,wx.DEFAULT,wx.NORMAL,wx.BOLD) txt.SetFont(font) self.Add(txt,pos=(self.ypos,0),span=(1,2),flag=wx.ALIGN_CENTER) self.ypos += 1 self.lineAdd() #--------------------------------------------------------------------------- class SettingsWindow(wx.Panel): def __init__(self,parent,daddy): wx.Panel.__init__(self,parent,-1) self.win = daddy grid = MyGrid(self) ### Parameters grid.titleAdd("Verification parameters",False) # Bound on the number of runs self.maxruns = int(Preference.get('maxruns','5')) txt = wx.StaticText(self,-1,"Maximum number of runs (0 disables bound)") ctrl = wx.SpinCtrl(self, -1, "",style=wx.RIGHT) ctrl.SetRange(0,100) ctrl.SetValue(self.maxruns) self.Bind(wx.EVT_SPINCTRL,self.EvtRuns,ctrl) grid.stepAdd(ctrl,txt) # Matchin options self.match = int(Preference.get('match','0')) claimoptions = ['typed matching','find basic type flaws','find all type flaws'] r2 = wx.StaticText(self,-1,"Matching type") l2 = self.ch = wx.Choice(self,-1,choices=claimoptions) l2.SetSelection(self.match) self.Bind(wx.EVT_CHOICE,self.EvtMatch,l2) grid.stepAdd(l2,r2) ### MISC expert stuff grid.titleAdd("Advanced parameters") # Bound on the number of classes/attacks self.maxattacks = int(Preference.get('maxattacks','100')) stname = Claim.stateDescription(True,2,False) atname = Claim.stateDescription(False,2,False) txt = "%s/%s" % (stname,atname) r9 = wx.StaticText(self,-1,"Maximum number of %s for all\nclaims combined (0 disables maximum)" % txt) l9 = wx.SpinCtrl(self, -1, "",style=wx.RIGHT) l9.SetRange(0,100) l9.SetValue(self.maxattacks) self.Bind(wx.EVT_SPINCTRL,self.EvtMaxAttacks,l9) grid.stepAdd(l9,r9) self.misc = Preference.get('scytheroptions','') r10 = wx.StaticText(self,-1,"Additional parameters for the Scyther tool") l10 = wx.TextCtrl(self,-1,self.misc,size=(200,-1)) self.Bind(wx.EVT_TEXT,self.EvtMisc,l10) grid.stepAdd(l10,r10) ### Graph output stuff grid.titleAdd("Graph output parameters") # Bound on the number of classes/attacks if sys.platform.startswith("lin"): defsize = 14 else: defsize = 11 self.fontsize = int(Preference.get('fontsize',defsize)) txt = wx.StaticText(self,-1,"Attack graph font size (in points)") ctrl = wx.SpinCtrl(self, -1, "",style=wx.RIGHT) ctrl.SetRange(6,32) ctrl.SetValue(self.fontsize) self.Bind(wx.EVT_SPINCTRL,self.EvtFontsize,ctrl) grid.stepAdd(ctrl,txt) ### Combine grid.lineAdd() self.SetSizer(grid) self.SetAutoLayout(True) def EvtMatch(self,evt): self.match = evt.GetInt() def EvtRuns(self,evt): self.maxruns = evt.GetInt() def EvtFontsize(self,evt): self.fontsize = evt.GetInt() def EvtMaxAttacks(self,evt): self.maxattacks = evt.GetInt() def EvtMisc(self,evt): self.misc = evt.GetString() def ScytherArguments(self,mode): """ Note: constructed strings should have a space at the end to correctly separate the options. """ tstr = "" # Number of runs tstr += "--max-runs=%s " % (str(self.maxruns)) # Matching type tstr += "--match=%s " % (str(self.match)) # Max attacks/classes if self.maxattacks != 0: tstr += "--max-attacks=%s " % (str(self.maxattacks)) # Verification type if mode == "check": tstr += "--check " elif mode == "autoverify": tstr += "--auto-claims " elif mode == "statespace": tstr += "--state-space " # Anything else? if self.misc != "": tstr += " " + self.misc + " " return tstr #---------------------------------------------------------------------------