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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
|
#!/usr/bin/env python
import traceback
import io
import os
import re
import sys
import types
import struct
import binascii
import importlib
import collections
from binaryninja import log
from PySide2.QtCore import Qt
from PySide2.QtWidgets import QTreeWidgetItem
if sys.version_info[0] == 2:
import kaitaistruct
else:
from . import kaitaistruct
#------------------------------------------------------------------------------
# id and parse
#------------------------------------------------------------------------------
# return the name of the kaitai module to service this data
#
# dsample: str data sample
# length: int total length of data
def idData(dataSample, length):
result = None
#log.log_debug('idData() here with sample: %s' % repr(dataSample))
if len(dataSample) < 16:
return result
if dataSample[0:4] == b'\x7fELF':
result = 'elf'
if dataSample[0:4] in [b'\xfe\xed\xfa\xce', b'\xce\xfa\xed\xfe', b'\xfe\xed\xfa\xcf', b'\xcf\xfa\xed\xfe']:
result = 'mach_o'
if dataSample[0:2] == b'MZ':
result = 'microsoft_pe'
if dataSample[0:8] == b'\x89PNG\x0d\x0a\x1a\x0a':
result = 'png'
if dataSample[2:11] == b'\xFF\xe0\x00\x10JFIF\x00':
result = 'jpeg'
if dataSample[0:4] == b'GIF8':
result = 'gif'
if dataSample[0:2] in [b'BM', b'BA', b'CI', b'CP', b'IC', b'PT'] and struct.unpack('<I', dataSample[2:6])[0]==length:
result = 'bmp'
if dataSample[0:2] == b'PK' and dataSample[2:4] in [b'\x01\x02', b'\x03\x04', b'\x05\x06']:
result = 'zip'
if dataSample[0:6] == b'Rar!\x1a\x07':
result = 'rar'
if dataSample[0:2] == b'\x1f\x8b' and dataSample[2:3]==b'\x08':
result = 'gzip'
#log.log_debug('idData() returning \'%s\'' % result)
return result
def idFile(fpath):
with open(fpath, 'rb') as fp:
return idData(fp.read(16), os.path.getsize(fpath))
def ksModuleToClass(moduleName):
# split on underscores, camelcase
return ''.join(map(lambda x: x.capitalize(), moduleName.split('_')))
def ksImportClass(moduleName):
global __name__, __package__
if not moduleName:
return None
classThing = None
try:
#log.log_debug('__package__: -%s-' % __package__) # 'kaitai'
#log.log_debug('__name__: -%s-' % __name__) # 'kaitai.kshelpers'
#log.log_debug('moduleName: -%s-' % moduleName)
#log.log_debug('importlib.import_module(.%s, %s)' % (moduleName, __package__))
log.log_info('importing kaitai module %s' % moduleName)
module = importlib.import_module('.'+moduleName, __package__)
className = ksModuleToClass(moduleName)
#log.log_debug('className: -%s-' % className)
classThing = getattr(module, className)
except Exception as e:
log.log_error('importing kaitai module %s' % moduleName)
pass
return classThing
def parseFpath(fpath, ksModuleName=None):
if not ksModuleName:
ksModuleName = idFile(fpath)
#log.log_debug('parseFpath() using kaitai format: %s' % ksModuleName)
ksClass = ksImportClass(ksModuleName)
if not ksClass: return None
parsed = None
try:
parsed = ksClass.from_file(fpath)
parsed._read()
except Exception as e:
log.log_error('parseFpath(): kaitai module %s threw exception, check file type' % ksModuleName)
parsed = None
return parsed
def parseData(data, ksModuleName=None):
if not ksModuleName:
ksModuleName = idData(data, len(data))
#log.log_debug('parseData() using kaitai format: %s' % ksModuleName)
ksClass = ksImportClass(ksModuleName)
if not ksClass: return None
parsed = None
try:
parsed = ksClass.from_bytes(data)
parsed._read()
except Exception as e:
log.log_error('parseData(): kaitai module %s threw exception, check file type' % ksModuleName)
parsed = None
return parsed
def parseIo(ioObj, ksModuleName=None):
ioObj.seek(0, io.SEEK_END)
length = ioObj.tell()
if not ksModuleName:
ioObj.seek(0, io.SEEK_SET)
ksModuleName = idData(ioObj.read(16), length)
#log.log_debug('parseIo() using kaitai format: %s' % ksModuleName)
ioObj.seek(0, io.SEEK_SET)
ksClass = ksImportClass(ksModuleName)
if not ksClass: return None
parsed = None
try:
ioObj.seek(0, io.SEEK_SET)
parsed = ksClass.from_io(ioObj)
parsed._read()
except Exception as e:
log.log_error('parseIo(): kaitai module %s threw exception, check file type' % ksModuleName)
parsed = None
return parsed
#------------------------------------------------------------------------------
# misc
#------------------------------------------------------------------------------
def objToStr(obj):
objType = type(obj)
# blacklist: functions, types, callables
#
if isinstance(obj, type):
#print('reject %s because its a type' % fieldName)
return '(type)'
elif hasattr(obj, '__call__'):
#print('reject %s because its a callable' % fieldName)
return '(callable)'
result = None
# whitelist: strings, unicodes, bytes, ints, bools, enums
#
if obj == None:
return 'None'
elif isinstance(obj, str):
if len(obj) > 8:
result = '%s...%s (0x%X==%d chars total)' % \
(repr(obj[0:8]), repr(obj[-1]), len(obj), len(obj))
else:
result = repr(obj)
elif isinstance(obj, bytes):
if len(obj) > 8:
result = binascii.hexlify(obj[0:8]).decode('utf-8') + '...' + \
('%02X' % obj[-1]) + ' (0x%X==%d bytes total)' % (len(obj), len(obj))
else:
result = binascii.hexlify(obj).decode('utf-8')
# note: bool needs to appear before int (else int determination will dominate)
elif isinstance(obj, bool):
result = '%s' % (obj)
elif isinstance(obj, int):
result = '0x%X (%d)' % (obj, obj)
elif str(objType).startswith('<enum '):
result = '%s' % (obj)
elif isinstance(obj, list):
result = repr(obj)
elif isinstance(obj, kaitaistruct.KaitaiStruct):
return re.match(r'^.*\.(\w+) object at ', repr(obj)).group(1)
elif isinstance(obj, kaitaistruct.KaitaiStream):
return re.match(r'^.*\.(\w+) object at ', repr(obj)).group(1)
elif isinstance(obj, collections.defaultdict):
# probably _debug
result = repr(obj)
else:
result = '(unknown type %s)' % (str(objType))
return result
# access all fields that may be properties, which could compute internal results
# (often '_m_XXX' fields)
def exercise(ksobj):
for candidate in dir(ksobj):
#if candidate.startswith('_') and (not candidate.startswith('_m_')):
# continue
try:
foo = getattr(ksobj, candidate, False)
except Exception:
pass
# get the [start,end) data for a given field within a ks object
#
# abstracts away:
# * the debug['arr'] stuff, you just give it 'foo' or 'foo[3]'
# * the 'foo' vs. '_m_foo' complication, you just give it 'foo'
#
def getFieldRange(ksobj, fieldName, restrictedToRoot=False):
if restrictedToRoot:
if ksobj._io != ksobj._root._io:
return None
# does given kaitai object even have ._debug?
debug = None
try:
debug = getattr(ksobj, '_debug')
except Exception:
return None
# divide up if request field is list, like "foo[3]"
tmp = None
if fieldName.endswith(']'):
m = re.match(r'^(.*)\[(\d+)\]$', fieldName)
fieldName = m.group(1)
index = int(m.group(2))
tmp = None
if not fieldName.startswith('_m_'):
if '_m_'+fieldName in debug:
tmp = debug['_m_'+fieldName]['arr'][index]
if not tmp:
tmp = debug[fieldName]['arr'][index]
else:
tmp = None
if not fieldName.startswith('_m_'):
if '_m_'+fieldName in debug:
tmp = debug['_m_'+fieldName]
if not tmp:
tmp = debug[fieldName]
if not tmp:
return None
return (tmp['start'], tmp['end'])
#------------------------------------------------------------------------------
# kaitai object field control
#------------------------------------------------------------------------------
# certain fields in the kaitai python object we:
# - should not DESCEND into (eg: ._parent, ._root)
# - should not PRINT (eg: ._io)
fieldDescendExceptions = ['_parent', '_root']
fieldDescendExceptionsPatterns = []
fieldPrintExceptions = []
fieldPrintExceptionsPatterns = []
def isFieldExceptionDescend(fieldName):
global fieldDescendExceptions, fieldDescendExceptionsPatterns
if fieldName in fieldDescendExceptions:
return True
for fep in fieldDescendExceptionsPatterns:
if re.match(fep, fieldName):
return True
return False
def isFieldExceptionPrint(fieldName):
global fieldExceptions, fieldExceptionsPatterns
if fieldName in fieldPrintExceptions:
return True
for fep in fieldPrintExceptionsPatterns:
if re.match(fep, fieldName):
return True
return False
def setFieldExceptionLevel0():
global fieldDescendExceptions, fieldDescendExceptionsPatterns
global fieldPrintExceptions, fieldPrintExceptionsPatterns
fieldDescendExceptions = ['_parent', '_root']
fieldDescendExceptionsPatterns = []
fieldPrintExceptions = []
fieldPrintExceptionsPatterns = []
def setFieldExceptionLevel1():
global fieldDescendExceptions, fieldDescendExceptionsPatterns
global fieldPrintExceptions, fieldPrintExceptionsPatterns
setFieldExceptionLevel0()
fieldPrintExceptionsPatterns += [r'_raw__.*$']
fieldPrintExceptions += ['_is_le', '_root', '_parent', '_debug']
fieldPrintExceptions += ['_read', '_read_be', '_read_le']
fieldPrintExceptions += ['from_bytes', 'from_file', 'from_io']
fieldPrintExceptions += ['SEQ_FIELDS']
def setFieldExceptionLevel2():
global fieldDescendExceptions, fieldDescendExceptionsPatterns
global fieldPrintExceptions, fieldPrintExceptionsPatterns
setFieldExceptionLevel1()
#fieldPrintExceptions += ['_io']
fieldPrintExceptionsPatterns += [r'^_m_.*$', r'^__.*$']
fieldDescendExceptionsPatterns += [r'^_m_.*$']
#------------------------------------------------------------------------------
# kaitai object exploring stuff
#------------------------------------------------------------------------------
# return all field names qualified for printing
#
def getFieldNamesPrint(ksobj):
result = []
for fieldName in dir(ksobj):
if isFieldExceptionPrint(fieldName):
continue
try:
subobj = getattr(ksobj, fieldName, False)
# do not return kaitai objects (are for descending, not printing)
if isinstance(subobj, kaitaistruct.KaitaiStruct):
continue
elif isinstance(subobj, list):
if len(subobj)<=0 or isinstance(subobj[0], kaitaistruct.KaitaiStruct):
continue
#print('%s is ok' % fieldName)
#print('%s is instance? %s' % (fieldName, isinstance(subobj, kaitaistruct.KaitaiStruct)))
result.append(fieldName)
except Exception:
pass
return result
# return all field names required for descending
#
# IN: kaitai object
# OUT: field names that are either:
# - kaitai objects
# - lists of kaitai objects
#
def getFieldNamesDescend(ksobj):
result = []
for fieldName in dir(ksobj):
if isFieldExceptionDescend(fieldName):
continue
try:
subobj = getattr(ksobj, fieldName, False)
if isinstance(subobj, kaitaistruct.KaitaiStruct):
result += [fieldName]
elif isinstance(subobj, list):
if len(subobj)>0 and isinstance(subobj[0], kaitaistruct.KaitaiStruct):
result += [fieldName]
except Exception:
pass
return result
# compute all kaitai objects linked to from the given object
#
# IN: kaitai object
# OUT: [obj0, obj1, obj2, ...]
#
def getLinkedKaitaiObjects(ksobj):
result = set()
for fieldName in getFieldNamesDescend(ksobj):
subobj = getattr(ksobj, fieldName, False)
if isinstance(subobj, list):
for tmp in subobj:
result.add(tmp)
else:
result.add(subobj)
return result
# compute all kaitai objects linked to from the given object, and from its
# descendents, and so on...
def getLinkedKaitaiObjectsAll(ksobj, depth=0):
#if depth > 2:
# return []
exercise(ksobj)
result = set([ksobj])
linkedObjects = getLinkedKaitaiObjects(ksobj)
for subobj in linkedObjects:
subResult = getLinkedKaitaiObjectsAll(subobj, depth+1)
result = result.union(subResult)
return result
def getDepth(ksobj, depth=0):
result = depth
exercise(ksobj)
for subObj in getLinkedKaitaiObjects(ksobj):
result = max(result, getDepth(subObj, depth+1))
return result
#------------------------------------------------------------------------------
# Kaitai IO Wrapper
#------------------------------------------------------------------------------
# wraps a BinaryView into an "IO" that KaitaiStream can use
#
# now Kaitai can parse directly from the BinaryView and we can avoid making a
# potentially giant copy of the file contents just for kaitai parsing
#
class KaitaiBinaryViewIO:
def __init__(self, binaryView):
self.binaryView = binaryView
self.position = 0
def seek(self, offs, whence=io.SEEK_SET):
#log.log_debug('seek(0x%X, %d)' % (offs, whence))
if whence == io.SEEK_SET:
self.position = offs
elif whence == io.SEEK_CUR:
self.position += offs
elif whence == io.SEEK_END:
self.position = len(self.binaryView)
else:
raise Exception('unknown whence in seek(): %d' % whence)
def tell(self):
#log.log_debug('tell() returning 0x%X' % (self.position))
return self.position
def read(self, length=None):
# if no length is given (eg: see read_bytes_full() in kaitaistruct.py)
if length == None:
length = len(self.binaryView) - self.position
#log.log_debug('read(%d) (starting at position: 0x%X)' % (length, self.position))
data = self.binaryView.read(self.position, length)
self.position += length
return data
def close(self):
pass
#------------------------------------------------------------------------------
# Qt/Kaitai OOP
#------------------------------------------------------------------------------
# why subclass?
# - override "<" to get sorting to work right
# - setLabel(), setValue(), etc. conveniences
# - centralized location to modify field names and labels (eg: remove '_m_')
class KaitaiTreeWidgetItem(QTreeWidgetItem):
def __init__(self, parent=None, data=[None,None,None,None]):
QTreeWidgetItem.__init__(self, parent, data)
self.label = None # string
self.value = None # string
self.start = None # int
self.end = None # int
self.ksobj = None # KaitaiStruct
def __lt__(self, otherItem):
column = self.treeWidget().sortColumn()
lhsText = self.text(column)
rhsText = otherItem.text(column)
if not lhsText:
return False
if not rhsText:
return True
try:
return int(lhsText,16) < int(rhsText, 16)
except:
return lhsText.__lt__(rhsText)
def setLabel(self, label):
self.label = label
if label.startswith('_m_'):
label = label[3:]
self.setData(0, Qt.DisplayRole, label)
def setValue(self, value):
self.value = value
if isinstance(value, int):
value = '%X'%value
self.setData(1, Qt.DisplayRole, value)
def setStart(self, start):
if start == None:
self.start = None
elif isinstance(start, int):
self.start = start
start = '%X'%start
elif (sys.version_info[0] == 2) and type(start) == types.LongType:
self.start = start
start = '%X'%start
else:
self.start = int(start,16)
self.setData(2, Qt.DisplayRole, start)
def setEnd(self, end):
if end == None:
self.end = None
if isinstance(end, int):
self.end = end
end = '%X'%end
elif (sys.version_info[0] == 2) and type(end) == types.LongType:
self.end = end
end = '%X'%end
else:
self.end = int(end,16)
self.setData(3, Qt.DisplayRole, end)
def setKaitaiObject(self, ksobj):
self.ksobj = ksobj
self.setData(0, Qt.UserRole, ksobj)
def __str__(self):
result = 'label=%s: value=%s range=[%s,%s)' % \
(self.label, self.value, self.start, self.end)
result += ' ksobj=%s' % self.ksobj
if self.ksobj:
result += ' io=%s' % self.ksobj._io
#if self.parent:
# result += ' parent=%s' % self.ksobj.parent
return result
def __str_short__(self):
return '[%s,%s) %s' % (repr(self.start), repr(self.end), repr(self.label))
#------------------------------------------------------------------------------
# build QTree and helpers
#------------------------------------------------------------------------------
# ARGS:
# obj: KaitaiStruct
# RETURNS:
# KaitaiTreeWidgetItem (QTreeWidgetItem)
#
def buildQtree(ksobj):
if not isinstance(ksobj, kaitaistruct.KaitaiStruct):
return None
exceptions = ['_root', '_parent', '_io', 'SEQ_FIELDS', '_debug']
qwi = KaitaiTreeWidgetItem()
qwi.setKaitaiObject(ksobj)
fieldNames = set()
# first pass: access fields that may be properties, which could compute
# internal results (often '_m_XXX' fields)
for candidate in dir(ksobj):
if candidate.startswith('_') and (not candidate.startswith('_m_')):
continue
if candidate in exceptions:
continue
try:
getattr(ksobj, candidate)
fieldNames.add(candidate)
except Exception:
pass
# second pass: collect the '_m_XXX' fields which have the debug start/end
# marks, remove the 'XXX' counterpart, if it exists
for candidate in filter(lambda x: x.startswith('_m_'), dir(ksobj)):
try:
if not getattr(ksobj, candidate, False):
continue
fieldNames.add(candidate)
if candidate[3:] in fieldNames:
fieldNames.remove(candidate[3:])
except Exception:
pass
for fieldName in fieldNames:
subObj = getattr(ksobj, fieldName)
child = None
if isinstance(subObj, kaitaistruct.KaitaiStruct):
fieldLabel = fieldName
child = buildQtree(subObj)
if child:
populateChild(ksobj, fieldName, fieldName, None, child)
qwi.addChild(child)
elif isinstance(subObj, list):
if len(subObj)<=0:
continue
# CASE: is list of KaitaiObjects -> recurse!
if isinstance(subObj[0], kaitaistruct.KaitaiStruct):
child = KaitaiTreeWidgetItem()
populateChild(ksobj, fieldName, fieldName, None, child)
# does _debug have an array version of start/end?
startsEnds = None
if hasattr(ksobj, '_debug'):
if fieldName in ksobj._debug:
if 'arr' in ksobj._debug[fieldName]:
startsEnds = ksobj._debug[fieldName]['arr']
for i in range(len(subObj)):
grandchild = buildQtree(subObj[i])
fieldLabel = '%s[%d]' % (fieldName, i)
grandchild.setLabel(fieldLabel)
if startsEnds:
grandchild.setStart(startsEnds[i]['start'])
grandchild.setEnd(startsEnds[i]['end'])
child.addChild(grandchild)
qwi.addChild(child)
# CASE: is list of primitive objects -> create leaves
else:
child = KaitaiTreeWidgetItem()
populateChild(ksobj, fieldName, fieldName, None, child)
# TODO: explain this hack
kstmp = kaitaistruct.KaitaiStruct(ksobj._io)
kstmp._parent = ksobj
child.setKaitaiObject(kstmp)
# does _debug have an array version of start/end?
startsEnds = None
if hasattr(ksobj, '_debug'):
if fieldName in ksobj._debug:
if 'arr' in ksobj._debug[fieldName]:
startsEnds = ksobj._debug[fieldName]['arr']
for i in range(len(subObj)):
grandchild = createLeaf('%s[%d]'%(fieldName,i), subObj[i])
if not grandchild:
continue
if startsEnds:
grandchild.setStart(startsEnds[i]['start'])
grandchild.setEnd(startsEnds[i]['end'])
child.addChild(grandchild)
qwi.addChild(child)
else:
child = createLeaf(fieldName, subObj)
if child:
# don't override createLeaf()'s work on label, value
populateChild(ksobj, fieldName, None, None, child)
qwi.addChild(child)
return qwi
def createLeaf(fieldName, obj):
objtype = type(obj)
if objtype == types.FunctionType:
#log.log_debug('reject %s because its a function' % fieldName)
return None
elif isinstance(obj, type):
#log.log_debug('reject %s because its a type' % fieldName)
return None
elif sys.version_info[0] == 2 and callable(obj):
#log.log_debug('reject %s because its a callable' % fieldName)
return None
elif sys.version_info[0] == 3 and hasattr(obj, '__call__'):
#log.log_debug('reject %s because its a callable' % fieldName)
return None
fieldValue = None
if isinstance(obj, str) or isinstance(obj, bytes):
if len(obj) > 8:
fieldValue = str(repr(obj[0:8])) + '...'
else:
fieldValue = repr(obj)
elif sys.version_info[0] == 2 and objtype == types.UnicodeType:
fieldValue = repr(obj)
elif isinstance(obj, int):
fieldValue = '0x%X (%d)' % (obj, obj)
elif isinstance(obj, bool):
fieldValue = '%s' % (obj)
elif str(objtype).startswith('<enum '):
fieldValue = '%s' % (obj)
else:
#log.log_debug('field %s has type: -%s-' % (fieldName,str(objtype)))
pass
if fieldValue:
widget = KaitaiTreeWidgetItem()
widget.setLabel(fieldName)
widget.setValue(fieldValue)
return widget
else:
#log.log_debug('rejected leaf node to %s' % fieldName)
#log.log_debug(obj)
#log.log_debug(type(obj))
return None
# ARG TYPE NOTES
# ksobj: KaitaiStruct the current one we're on
# fieldName: string actual field name inside the kaitai struct
# fieldLabel: string label used in the tree view
# fieldValue: string value used in the tree view
# widget: KaitaiTreeWidgetItem the item to which we want to imprint(start/end)
def populateChild(ksobj, fieldName, fieldLabel, fieldValue, widget):
if fieldLabel:
widget.setLabel(fieldLabel)
#log.log_debug('setting Label: %s' % fieldLabel)
if fieldValue:
widget.setValue(fieldValue)
if (not ksobj) or (not hasattr(ksobj, '_debug')):
return
start = None
if 'start' in ksobj._debug[fieldName]:
start = ksobj._debug[fieldName]['start']
end = None
if 'end' in ksobj._debug[fieldName]:
end = ksobj._debug[fieldName]['end']
if start != None:
widget.setStart(start)
if end != None:
widget.setEnd(end)
|