summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/pretty.py
blob: 929c245462998dcd0e2975bf836d1a12de51889a (plain) (blame)
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
#
# RTEMS pretty printers
#
import re
import helper
import objects

import supercore_printer
import classic_printer

pretty_printer = {

    '^rtems_id$'            : supercore_printer.id,
    '^Objects_Id$'          : supercore_printer.id,
    '^Objects_Name$'        : supercore_printer.name,
    '^Objects_Control$'     : supercore_printer.control,
    '^States_Control$'      : supercore_printer.state,
    '^rtems_attribute$'     : classic_printer.attribute,
    '^Semaphore_Control$'   : classic_printer.semaphore
}


def build_pretty_printer ():
    pp_dict = {}

    for name in pretty_printer:
        pp_dict[re.compile(name)] = pretty_printer[name]

    return pp_dict

def lookup_function (val):
    "Look-up and return a pretty-printer that can print val."

    global nesting

    typename = str(helper.type_from_value(val))

    for function in pp_dict:
        if function.search (typename):
            nesting += 1
            result = pp_dict[function] (val)
            nesting -= 1
            if nesting == 0:
                objects.information.invalidate()
            return result

    # Cannot find a pretty printer.  Return None.
    return None

# ToDo: properly document.
nesting = 0

pp_dict = build_pretty_printer()