summaryrefslogtreecommitdiff
path: root/src/strings/zstring.py
blob: 5021e1c7b950827dd8a1479116ef082570bdbefc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class ZString(object):
    ''' print a ZString
    '''
    __slots__ = ('_value')
    name = 'strings::ZString'
    enabled = True

    def __init__(self, value):
        self._value = value

    def children(self):
        yield 'base', self._value['_base']

    def to_string(self):
        b = self._value['_b']['_ptr']
        e = self._value['_e']['_ptr']
        d = e - b
        return b.lazy_string(length=d)