mirror of https://github.com/Icinga/icinga2.git
Implement GDB pretty printers for some Icinga types.
This commit is contained in:
parent
35c79a76c1
commit
d705ff648e
|
@ -0,0 +1,6 @@
|
|||
python
|
||||
import sys
|
||||
sys.path.insert(0, '/home/gbeutner/strawberry/contrib/gdb')
|
||||
from icingadbg import register_icinga_printers
|
||||
register_icinga_printers()
|
||||
end
|
|
@ -0,0 +1,56 @@
|
|||
import gdb
|
||||
import re
|
||||
|
||||
class IcingaStringPrinter:
|
||||
def __init__(self, val):
|
||||
self.val = val
|
||||
|
||||
def to_string(self):
|
||||
return '"' + self.val['m_Data']['_M_dataplus']['_M_p'].string() + '"'
|
||||
|
||||
class IcingaValuePrinter:
|
||||
def __init__(self, val):
|
||||
self.val = val
|
||||
|
||||
def to_string(self):
|
||||
which = self.val['m_Value']['which_']
|
||||
|
||||
if which == 0:
|
||||
return 'Empty'
|
||||
elif which == 1:
|
||||
return self.val['m_Value']['storage_']['data_']['buf'].cast(gdb.lookup_type('double').pointer()).dereference()
|
||||
elif which == 2:
|
||||
return self.val['m_Value']['storage_']['data_']['buf'].cast(gdb.lookup_type('icinga::String').pointer()).dereference()
|
||||
elif which == 3:
|
||||
return self.val['m_Value']['storage_']['data_']['buf'].cast(gdb.lookup_type('icinga::Object').pointer()).dereference()
|
||||
else:
|
||||
return '<INVALID>'
|
||||
|
||||
class IcingaAttributePrinter:
|
||||
def __init__(self, val):
|
||||
self.val = val
|
||||
|
||||
def to_string(self):
|
||||
return self.val['m_Value']
|
||||
|
||||
class IcingaSignalPrinter:
|
||||
def __init__(self, val):
|
||||
self.val = val
|
||||
|
||||
def to_string(self):
|
||||
return '<SIGNAL>'
|
||||
|
||||
def lookup_icinga_type(val):
|
||||
if str(val.type) == 'icinga::String':
|
||||
return IcingaStringPrinter(val)
|
||||
elif str(val.type) == 'icinga::Value':
|
||||
return IcingaValuePrinter(val)
|
||||
elif str(val.type) == 'icinga::AttributeBase' or re.match('^icinga::Attribute<.*>$', str(val.type)):
|
||||
return IcingaAttributePrinter(val)
|
||||
elif re.match('^boost::signals2::signal.*<.*>$', str(val.type)):
|
||||
return IcingaSignalPrinter(val)
|
||||
|
||||
return None
|
||||
|
||||
def register_icinga_printers():
|
||||
gdb.pretty_printers.append(lookup_icinga_type)
|
Loading…
Reference in New Issue