c – LLDB Python脚本中的指针算法

我一直在尝试在Xcode中为自定义字符串类型创建自定义数据格式化程序.以下代码获取字符串中第一个字符的地址:

def MyStringSummary(valobj, internal_dict):
    data_pointer = valobj.GetChildMemberWithName('AllocatorInstance').GetChildMemberWithName('Data')
    print data_pointer.GetValue()

这会打印出指针地址.当我查看该地址的内容时,我可以看到用于存储该数据的宽字符,所以我想我要做的是将此指针转换为wchar_t然后我有第一个字符.我的第一个方法之一就是:

if data_pointer.TypeIsPointerType():
    mychar = data_pointer.Dereference()
    print mychar.GetValue()
else:
    print "data_pointer is not a pointer!"

这确认了data_pointer是一个指针,但是Dereference()调用似乎没有解决任何问题:mychar.GetValue()只返回None.
另一个问题 – 我是否能够通过一个循环并每次增加data_pointer的地址固定量并保持解除引用并找到下一个字符,然后将其添加到输出字符串?如果是这样,我该怎么做?

编辑:

为了帮助澄清问题,我将发布一些有关字符串的基础数据结构的信息.这个定义太长了,不能在这里发布(它也继承了它从泛型数组基类中所做的大部分工作),但我会给出更多细节.

当查看StringVar.AllocationInstance.Data指针位置时,我可以看到我们对每个字符使用16位.我正在查看的字符串中的所有字符仅为8位,每个字符后另有8位为0.所以,当我在调试器中执行此操作时会发生这种情况:

(lldb) p (char*)(StringVar.AllocatorInstance.Data)
(char *) $4 = 0x10653360 "P"
(lldb) p (char*)(StringVar.AllocatorInstance.Data)+1
(char *) $6 = 0x10653361 ""
(lldb) p (char*)(StringVar.AllocatorInstance.Data)+2
(char *) $7 = 0x10653362 "a"

所以我假设它一次只显示一个字符的原因是因为它认为每个8位字符由以下8位空终止.但是,当我转为无符号短片时,我得到了这个:

(lldb) p (unsigned short*)(StringVar.AllocatorInstance.Data)
(unsigned short *) $9 = 0x10653360
(lldb) p *(unsigned short*)(StringVar.AllocatorInstance.Data)
(wchar_t) $10 = 80
(lldb) p (char*)(unsigned short*)(StringVar.AllocatorInstance.Data)
(char *) $11 = 0x10653360 "P"
(lldb) p (char*)((unsigned short*)(StringVar.AllocatorInstance.Data)+1)
(char *) $14 = 0x10653362 "a"
(lldb) p (char*)((unsigned short*)(StringVar.AllocatorInstance.Data)+2)
(char *) $18 = 0x10653364 "r"

…所以只要我们将每个整数转换为char,看起来像无符号short的转换就好了.知道我怎么可能尝试将它放在Python数据格式化器中吗?

解决方法:

您的数据看起来可能是UTF-16.我做了一个快速的C程序,看起来有点像你的问题描述,并在交互式Python解释器中玩了一下.我认为这可能足以让您指出编写自己的格式化程序的正确方向?

int main ()
{
    struct String *mystr = AllocateString();
    mystr->AllocatorInstance.len = 10;
    mystr->AllocatorInstance.Data = (void *) malloc (10);
    memset (mystr->AllocatorInstance.Data, 0, 10);
    ((char *)mystr->AllocatorInstance.Data)[0] = 'h';
    ((char *)mystr->AllocatorInstance.Data)[2] = 'e';
    ((char *)mystr->AllocatorInstance.Data)[4] = 'l';
    ((char *)mystr->AllocatorInstance.Data)[6] = 'l';
    ((char *)mystr->AllocatorInstance.Data)[8] = 'o';

    FreeString (mystr);
}

使用lldb.frame,lldb.process快捷方式(仅在执行交互式脚本时有效),我们可以轻松地将Data读入python字符串缓冲区:

>>> valobj = lldb.frame.FindVariable("mystr")
>>> address = valobj.GetChildMemberWithName('AllocatorInstance').GetChildMemberWithName('Data').GetValueAsUnsigned()
>>> size = valobj.GetChildMemberWithName('AllocatorInstance').GetChildMemberWithName('len').GetValueAsUnsigned()
>>> print address
4296016096
>>> print size
10
>>> err = lldb.SBError()
>>> print err
error: <NULL>
>>> membuf = lldb.process.ReadMemory (address, size, err)
>>> print err
success
>>> membuf
'h\x00e\x00l\x00l\x00o\x00'

从这一点上你可以做任何常见的python数组类型的东西 –

>>> for b in membuf:
...   print ord(b)
... 
104
0
101
0
108
0
108
0
111
0

我不确定你怎么能告诉Python这是UTF-16并且应该正确地内化为宽字符,这比lldb问题更像是一个Python问题 – 但我认为你最好的选择是不使用SBValue方法(因为你的数据指针有像void *这样的无信息类型,就像我在我的测试程序中所做的那样),但是要使用SBProcess内存读取方法.

上一篇:多元线性回归检验t检验(P值),F检验,R方等参数的含义


下一篇:pytorch_预训练Se_resnet50_自定义类别数量_源码分享