-
Notifications
You must be signed in to change notification settings - Fork 131
/
qthelper.py
62 lines (55 loc) · 2.15 KB
/
qthelper.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
from dumper import *
def qdump__Beefy__String(d, value):
qdump__Beefy__StringImpl(d, value)
def qdump__Beefy__StringImpl(d, value):
if (int(value["mAllocSizeAndFlags"]) & 0x40000000) == 0:
d.putCharArrayHelper(d.addressOf(value["mPtr"]), value["mLength"], 1)
else:
d.putCharArrayHelper(value["mPtr"], value["mLength"], 1)
d.putNumChild(2)
if d.isExpanded():
with Children(d):
d.putIntItem("[Length]", value["mLength"])
d.putIntItem("[Size]", int(value["mAllocSizeAndFlags"]) & 0x3FFFFFFF)
def qdump__Beefy__Array(d, value):
numItems = int(value["mSize"])
d.putValue("Size=" + str(numItems))
d.putNumChild(int(numItems) + 2)
if d.isExpanded():
with Children(d):
d.putIntItem("[Size]", value["mSize"])
d.putIntItem("[AllocSize]", value["mSize"])
for i in range(0, int(numItems)):
d.putSubItem("[" + str(i) + "]", value["mVals"] + i)
def qdump__Beefy__BfSizedArray(d, value):
numItems = int(value["mSize"])
d.putValue("Size=" + str(numItems))
d.putNumChild(int(numItems) + 1)
if d.isExpanded():
with Children(d):
d.putIntItem("[Size]", value["mSize"])
for i in range(0, int(numItems)):
d.putSubItem("[" + str(i) + "]", value["mVals"] + i)
def qdump__Beefy__BfAstNode(d, value):
d.putCharArrayHelper(value["mSource"]["mSrc"] + int(value["mSrcStart"]), int(value["mSrcEnd"]) - int(value["mSrcStart"]), 1)
d.putPlainChildren(value)
def qdump__System__String(d, value):
if (int(value["mAllocSizeAndFlags"]) & 0x40000000) == 0:
d.putCharArrayHelper(d.addressOf(value["mPtr"]), value["mLength"], 1)
else:
d.putCharArrayHelper(value["mPtr"], value["mLength"], 1)
d.putNumChild(2)
if d.isExpanded():
with Children(d):
d.putIntItem("[Length]", value["mLength"])
d.putIntItem("[Size]", int(value["mAllocSizeAndFlags"]) & 0x3FFFFFFF)
def qdump__System__Collections__Generic__List(d, value):
numItems = int(value["mSize"])
d.putValue("Size=" + str(numItems))
d.putNumChild(int(numItems) + 2)
if d.isExpanded():
with Children(d):
d.putIntItem("[Size]", value["mSize"])
d.putIntItem("[AllocSize]", value["mSize"])
for i in range(0, int(numItems)):
d.putSubItem("[" + str(i) + "]", value["mVals"] + i)