1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
"""File ImportChecks of pychecker2 is modified."""
import os
import wx
from wx.lib.evtmgr import eventManager
import _spe.info as info
if info.WIN:
QUOTE = '"'
else:
QUOTE = ''
COLOR = (wx.Colour(220,220,220),wx.Colour(255,255,255))
IGNORE = ['Warnings...']
METHOD_NAMES = ['byte code','compiler package']
METHOD_PATHS = [\
'%s%s --stdlib --blacklist --varlist'%(os.path.join('pychecker','checker.py'),QUOTE),
'%s%s --incremental'%(os.path.join('pychecker2','main.py'),QUOTE)
]
#----------------------------------------------------------------------
class Panel(wx.ListCtrl):
def __init__(self, notebook, page=5, *args, **kwds):
wx.ListCtrl.__init__(self, notebook, -1,style=wx.LC_REPORT)
self.notebook = notebook
self.page = page
self.panel = notebook.GetParent()
self.process = None
self.list = [('','')]
self.fileIndex = 0
self.lastFile = 0
self.methodIndex = 1
self.InsertColumn(col=0, format=wx.LIST_FORMAT_LEFT,
heading='Line',width=40)
self.InsertColumn(col=1, format=wx.LIST_FORMAT_LEFT,
heading='Remark',width=600)
self.InsertColumn(col=1, format=wx.LIST_FORMAT_LEFT,
heading='File',width=400)
self.InsertStringItem(0,'')
self.SetStringItem(0,1,'Press Ctrl+Alt+C to check the current file [%s method]'%(METHOD_NAMES[self.methodIndex],))
#events (eventManager doesn't work here ;-()
wx.EVT_LIST_ITEM_SELECTED(self,-1,self.onSelect)
# We can either derive from wx.Process and override OnTerminate
# or we can let wx.Process send this window an event that is
# caught in the normal way...
wx.EVT_END_PROCESS(self,-1,self.OnProcessEnded)
def __del__(self):
if self.process is not None:
self.process.Detach()
self.process.CloseOutput()
self.process = None
def check(self):
if not self.process:
if self.panel.confirmSave('File must be saved to be analyzed by Pychecker.'):
#update wx ListCtrl
self.DeleteAllItems()
self.InsertStringItem(0,'')
self.SetStringItem(0,1,'%s checking...'%METHOD_NAMES[self.methodIndex])
self.SetItemBackgroundColour(0,wx.Colour(255,200,200))
self.focus()
#register idle event
eventManager.Register(self.OnIdle, wx.EVT_IDLE, self)
#initialize
import pychecker
self.index = 1
self.methodIndex = 1
self.started = 1
fileName = self.panel.fileName
path = os.path.dirname(fileName)
#start process
self.process = wx.Process(self)
self.process.Redirect()
#change path
os.chdir(path)
#cmd = 'cd %s'%os.path.dirname(fileName)
#cmd = 'cd %s%s%s'%(QUOTE,os.path.dirname(fileName),QUOTE)
#wx.Execute(cmd, wx.EXEC_ASYNC, self.process)
#run pychecker
cmd = 'python -u %s%s %s%s%s'%\
(QUOTE,
os.path.join(self.panel.parentPanel.pathPlugins,METHOD_PATHS[self.methodIndex]),
QUOTE,
fileName,
QUOTE)
pid = wx.Execute(cmd, wx.EXEC_ASYNC, self.process)
else:
self.panel.parentPanel.message('Sorry, only one pycheck at a time.')
def OnCloseStream(self, evt):
self.process.CloseOutput()
def OnIdle(self, evt):
if self.process is not None:
stream = self.process.GetInputStream()
if stream.CanRead():
text = stream.read()
self.add(text)
def OnProcessEnded(self, evt):
self.DeleteItem(0)
del self.list[0]
eventManager.DeregisterListener(self.OnIdle)
self.focus()
wx.Bell()
stream = self.process.GetInputStream()
if stream.CanRead():
text = stream.read()
self.add(text)
self.process.Destroy()
self.process = None
def add(self,text):
self.focus()
if self.started:
#self.DeleteAllItems(0)
self.started = 0
text = text.replace('\r','').split('\n')
for data in text:
data = data.strip()
if data and data not in IGNORE:
if self.methodIndex == 0:
i=1
columns = data[2:].split(':')
if len(columns)==3:
file, line, remark = columns
file = data[:2]+file
else:
file = ''
line = ''
remark = columns[0]
else:
f = data.find(':',2)
file = data[:f]
l = data.find(' ',f)
line = data[f+1:l]
remark = data[l+1:]
self.InsertStringItem(self.index,line)
self.SetStringItem(self.index,1,remark)
self.SetStringItem(self.index,2,file)
self.list.insert(self.index,(file,line))
if file != self.lastFile:
self.lastFile = file
self.fileIndex += 1
#self.SetItemBackgroundColour(self.index,COLOR[self.fileIndex%2])
self.index+=1
def onSelect(self,event):
file,line=self.list[event.GetIndex()]
if file and line:
self.panel.parentPanel.openList(file,int(line)-1)
def focus(self):
self.notebook.SetSelection(self.page)
|