假设我有一个简单的struct
:
struct S {
int index;
const std::vector<int>& vec;
};
我想为GDB写一个漂亮的打印机,该打印机将为类型vec[index]
的对象显示S
。
这就是我现在的做法:
class SPrinter:
def __init__(self, name, val):
self.val = val
def to_string(self):
i = int(self.val['index'])
ptr = self.val['vec']['_M_impl']['_M_start'] + i
return str(ptr.dereference())
是否有一种更简单的方法来访问std::vector
的给定元素?是否可以调用operator[]
(在GDB中,我可以做p s.vec[0]
并得到我想要的东西)?我希望我的打印机独立于std::vector
的特定实现。
答案 0 :(得分:2)
阅读this answer之后,我想到了以下解决方案:
def get_vector_element(vec, index):
type = gdb.types.get_basic_type(vec.type)
return gdb.parse_and_eval('(*(%s*)(%s))[%d]' % (type, vec.address, index))
class SPrinter(object):
def __init__(self, name, val):
self.val = val
def to_string(self):
return get_vector_element(self.val['vec'], int(self.val['index']))