-
Notifications
You must be signed in to change notification settings - Fork 9
/
dtv.py
369 lines (285 loc) · 13.5 KB
/
dtv.py
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#!/usr/bin/env python3
import ast
import configparser
import hashlib
import os
import re
import string
import subprocess
from subprocess import PIPE
import sys
import tempfile
from includetree import includeTree
from PyQt5.QtGui import QColor, QDesktopServices
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtWidgets import QApplication, QMainWindow, QFileDialog, QDialog, QHeaderView, QMessageBox
from PyQt5.uic import loadUi
includedFiles = list()
def populateDTS(trwDT, trwIncludedFiles, filename):
# Clear remnants from previously opened file
includedFiles.clear()
trwDT.clear()
trwIncludedFiles.expandAll()
with open (filename) as f:
# Read each line in the DTS file
lineNum = 1
for line in f:
# Look for the code (part before the "/*" comment)
lineContents = re.search('^.*(;|(?=\/\*))', line)
# If found, then clean-up
if (lineContents):
lineContents= lineContents.group(0).rstrip()
else:
lineContents = ""
# Now pick the comment part of the line
codeComment = re.search('(?<=\/\*).*(?=\*\/)', line.strip())
# If found, then clean-up
if codeComment:
# The last (rightmost) file in the comma-separted list of filename:lineno
# Line numbers are made-up of integers after a ":" colon.
listOfSourcefiles = codeComment.group(0).strip().split(',')
includedFiles.append(listOfSourcefiles)
strippedLineNums = re.search('.*?(?=:)', listOfSourcefiles[-1]).group(0).strip()
# Filename is the last (rightmost) word in a forward-slash-separetd path string
includedFilename = strippedLineNums.split('/')[-1]
else:
includedFilename = '<no-file>'
includedFiles.append(['<no-file>'])
# Add line to the list
rowItem = QtWidgets.QTreeWidgetItem([str(lineNum), lineContents, includedFilename])
trwDT.addTopLevelItem(rowItem)
lineNum += 1
# Pick a different background color for each filename
if '<no-file>' not in includedFilename:
colorHash = (int(hashlib.sha1(includedFilename.encode('utf-8')).hexdigest(), 16) % 16) * 4
prevColorHash = colorHash
trwDT.topLevelItem(trwDT.topLevelItemCount()-1).setBackground(1, QColor(255-colorHash*2, 240, 192+colorHash));
else:
if 'prevColorHash' in locals():
colorHash = prevColorHash
trwDT.topLevelItem(trwDT.topLevelItemCount()-1).setBackground(1, QColor(255-colorHash*2, 240, 192+colorHash));
else:
trwDT.topLevelItem(trwDT.topLevelItemCount()-1).setBackground(1, QColor(255, 255, 255));
def populateIncludedFiles(trwIncludedFiles, dtsFile, inputIncludeDirs):
trwIncludedFiles.clear()
dtsIncludeTree = includeTree(dtsFile, inputIncludeDirs)
dummyItem = QtWidgets.QTreeWidgetItem()
dtsIncludeTree.populateChildrenFileNames(dummyItem)
trwIncludedFiles.addTopLevelItem(dummyItem.child(0).clone())
def annotateDTS(trwIncludedFiles, dtsFile):
# Load configuration for the conf file
config = configparser.ConfigParser()
config.read('dtv.conf')
# Add or remove projects from this list
# Only the gerrit-events of changes to projects in this list will be processed.
includeDirStubs = ast.literal_eval(config.get('dtv', 'include_dir_stubs'))
cppFlags = ''
cppIncludes = ''
dtcIncludes = ''
incIncludes = list()
# Current parser "plugin" claims to support DTS files under arch/arm* only
baseDir = re.search('^.*(?=arch\/arm)', dtsFile)
if baseDir:
baseDirPath = baseDir.group(0)
for includeDirStub in includeDirStubs:
cppIncludes += ' -I ' + baseDirPath + includeDirStub
dtcIncludes += ' -i ' + baseDirPath + includeDirStub
incIncludes.append(baseDirPath + includeDirStub)
populateIncludedFiles(trwIncludedFiles, dtsFile, incIncludes)
# cpp ${cpp_flags} ${cpp_includes} ${dtx} | ${DTC} ${dtc_flags} ${dtc_include} -I dts
cpp = 'cpp '
cppFlags += '-nostdinc -undef -D__DTS__ -x assembler-with-cpp '
cppResult = subprocess.run(cpp + cppFlags + cppIncludes + ' ' + dtsFile,
stdout=PIPE, stderr=PIPE, shell=True)
dtc = './dtc '
dtcFlags = '-I dts -O dts -f -s -T -T -o - '
dtcResult = subprocess.run(dtc + dtcFlags + dtcIncludes, stdout=PIPE, stderr=PIPE, input=cppResult.stdout, shell=True)
# Create a temporary file in the current working directory
(tmpAnnotatedFile, tmpAnnotatedFileName) = tempfile.mkstemp(dir=os.path.dirname(os.path.realpath(__file__)),
prefix=os.path.basename(dtsFile) + '-',
suffix='.dts.annotated')
with os.fdopen(tmpAnnotatedFile, 'w') as output:
output.write(dtcResult.stdout.decode('utf-8') )
return tmpAnnotatedFileName
def highlightFileInTree(trwIncludedFiles, fileName):
currItem = trwIncludedFiles.findItems(fileName, QtCore.Qt.MatchRecursive)[0]
# highlight/select current item
trwIncludedFiles.setCurrentItem(currItem)
# highlight/select all its parent items
while (currItem.parent()):
currItem = currItem.parent()
currItem.setSelected(True)
def getLines(fileName, startLineNum, endLineNum):
lines = ''
with open(fileName) as f:
fileLines = f.readlines()
if (startLineNum == endLineNum):
lines = fileLines[startLineNum-1]
else:
for line in range(startLineNum-1, endLineNum):
lines += fileLines[line]
return lines
def showOriginalLineinLabel(lblDT, lineNum):
lastIncludedFile = includedFiles[lineNum-1][-1]
fileName = lastIncludedFile.split(':')[0].strip()
# extract line numbers in source-file
# TODO: Special Handling for opening and closing braces in DTS
# (no need to show ENTIRE node, right?)
startLineNum = int(re.split('[[:-]', lastIncludedFile)[-4].strip())
endLineNum = int(re.split('[[:-]', lastIncludedFile)[-2].strip())
#print('Line='+str(lineNum), 'Source='+fileName, startLineNum, 'to', endLineNum)
lblDT.setText(getLines(fileName, startLineNum, endLineNum))
def center(window):
# Determine the center of mainwindow
centerPoint = QtCore.QPoint()
centerPoint.setX(main.x() + (main.width()/2))
centerPoint.setY(main.y() + (main.height()/2))
# Calculate the current window's top-left such that
# its center co-incides with the mainwindow's center
frameGm = window.frameGeometry()
frameGm.moveCenter(centerPoint)
# Align current window as per above calculations
window.move(frameGm.topLeft())
class main(QMainWindow):
def __init__(self):
super().__init__()
self.ui = None
self.load_ui()
self.load_signals()
self.annotatedTmpDTSFileName = None # Deleted upon exit
self.annotatedDTSFileName = None # Retained upon exit
self.findStr = None
self.foundList = []
self.foundIndex = 0
def closeEvent(self, event):
# Delete temporary file if created
if self.annotatedTmpDTSFileName:
try:
os.remove(self.annotatedTmpDTSFileName)
except OSError:
pass
def openDTSFile(self):
options = QFileDialog.Options()
fileName, _ = QFileDialog.getOpenFileName(self,
"Select a DTS file to visualise...",
"", "All DTS Files (*.dts)",
options=options)
# If user selected a file then process it...
if fileName:
# Resolve symlinks
filename = os.path.realpath(fileName)
self.ui.setWindowTitle("DTV - " + fileName)
# Delete temporary file if created (from a previous "open")
if self.annotatedTmpDTSFileName:
try:
os.remove(self.annotatedTmpDTSFileName)
except OSError:
pass
self.findStr = None
self.foundList = []
self.foundIndex = 0
self.annotatedTmpDTSFileName = annotateDTS(self.ui.trwIncludedFiles, fileName)
populateDTS(self.ui.trwDT, self.ui.trwIncludedFiles, self.annotatedTmpDTSFileName)
self.trwDT.header().setSectionResizeMode(0, QHeaderView.ResizeToContents)
self.trwDT.header().setSectionResizeMode(2, QHeaderView.ResizeToContents)
def highlightSourceFile(self):
# Skip if no "current" row
if self.ui.trwDT.currentItem() is None:
return
# Skip if current row is "whitespace"
if self.ui.trwDT.currentItem().text(2) == '<no-file>':
return
# Else identify and highlight the source file of the current row
if self.ui.trwDT.currentItem():
highlightFileInTree(self.ui.trwIncludedFiles, self.ui.trwDT.currentItem().text(2))
showOriginalLineinLabel(self.ui.lblDT, int(self.ui.trwDT.currentItem().text(0)))
def launchEditor(self, srcFileName, srcLineNum):
# Load configuration for the conf file
config = configparser.ConfigParser()
config.read('dtv.conf')
# Launch user-specified editor
editorCommand = ast.literal_eval(config.get('dtv', 'editor_cmd'))
editorCommandEvaluated = string.Template(editorCommand).substitute(locals())
try:
launchEditor = subprocess.Popen(editorCommandEvaluated.split(),
stdin=None, stdout=None, stderr=None,
close_fds=True)
except FileNotFoundError:
QMessageBox.warning(self,
'DTV',
'Failed to launch editor!\n\n' +
editorCommandEvaluated +
'\n\nPlease modify "dtv.conf" using any text editor.',
QMessageBox.Ok)
def editSourceFile(self):
# TODO: Refactor. Same logic used by showOriginalLineinLabel() too
lineNum = int(self.ui.trwDT.currentItem().text(0))
lastIncludedFile = includedFiles[lineNum-1][-1]
dtsiFileName = lastIncludedFile.split(':')[0].strip()
if dtsiFileName == '<no-file>':
QMessageBox.information(self,
'DTV',
'No file for the curent line',
QMessageBox.Ok)
return
dtsiLineNum = int(re.split('[[:-]', lastIncludedFile)[-4].strip())
self.launchEditor(dtsiFileName, dtsiLineNum)
def editIncludedFile(self):
includedFileName = self.ui.trwIncludedFiles.currentItem().toolTip(0)
self.launchEditor(includedFileName, '0')
def findTextinDTS(self):
findStr = self.txtFindText.text()
# Very common for use to click Find on empty string
if findStr == "":
return
# New search string ?
if findStr != self.findStr:
self.findStr = findStr
self.foundList = self.trwDT.findItems(self.findStr, QtCore.Qt.MatchContains | QtCore.Qt.MatchRecursive, column=1)
self.foundIndex = 0
numFound = len(self.foundList)
else:
numFound = len(self.foundList)
if numFound:
if ('Prev' in self.sender().objectName()):
# handles btnFindPrev
self.foundIndex = (self.foundIndex - 1) % numFound
else:
# handles btnFindNext and <Enter> on txtFindText
self.foundIndex = (self.foundIndex + 1) % numFound
if numFound:
self.trwDT.setCurrentItem(self.foundList[self.foundIndex])
def showSettings(self):
QMessageBox.information(self,
'DTV',
'Settings GUI NOT supported yet.\n'
'Please modify "dtv.conf" using any text editor.',
QMessageBox.Ok)
return
def center(self):
frameGm = self.frameGeometry()
screen = QtWidgets.QApplication.desktop().screenNumber(QtWidgets.QApplication.desktop().cursor().pos())
centerPoint = QtWidgets.QApplication.desktop().screenGeometry(screen).center()
frameGm.moveCenter(centerPoint)
self.move(frameGm.topLeft())
def load_ui(self):
self.ui = loadUi('dtv.ui', self)
self.ui.openDTS.triggered.connect(self.openDTSFile)
self.ui.exitApp.triggered.connect(self.close)
self.ui.optionsSettings.triggered.connect(self.showSettings)
self.ui.trwDT.currentItemChanged.connect(self.highlightSourceFile)
self.ui.trwDT.itemDoubleClicked.connect(self.editSourceFile)
self.ui.trwIncludedFiles.itemDoubleClicked.connect(self.editIncludedFile)
self.ui.btnFindPrev.clicked.connect(self.findTextinDTS)
self.ui.btnFindNext.clicked.connect(self.findTextinDTS)
self.ui.txtFindText.returnPressed.connect(self.findTextinDTS)
self.trwDT.setHeaderLabels(['Line No.', 'DTS content ....', 'Source File'])
self.center()
self.show()
def load_signals(self):
pass
app = QApplication(sys.argv)
main = main()
# Blocks till Qt app is running, returns err code if any
qtReturnVal = app.exec_()
sys.exit(qtReturnVal)