2009-07-10 Phil Muldoon <pmuldoon@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / python-prettyprint.py
CommitLineData
a6bac58e
TT
1# Copyright (C) 2008, 2009 Free Software Foundation, Inc.
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# This file is part of the GDB testsuite. It tests python pretty
17# printers.
18
19import re
20
21# Test returning a Value from a printer.
22class string_print:
23 def __init__(self, val):
24 self.val = val
25
26 def to_string(self):
27 return self.val['whybother']['contents']
28
29# Test a class-based printer.
30class ContainerPrinter:
31 class _iterator:
32 def __init__ (self, pointer, len):
33 self.start = pointer
34 self.pointer = pointer
35 self.end = pointer + len
36
37 def __iter__(self):
38 return self
39
40 def next(self):
41 if self.pointer == self.end:
42 raise StopIteration
43 result = self.pointer
44 self.pointer = self.pointer + 1
45 return ('[%d]' % int (result - self.start), result.dereference())
46
47 def __init__(self, val):
48 self.val = val
49
50 def to_string(self):
51 return 'container %s with %d elements' % (self.val['name'], self.val['len'])
52
53 def children(self):
54 return self._iterator(self.val['elements'], self.val['len'])
55
56class pp_s:
57 def __init__(self, val):
58 self.val = val
59
60 def to_string(self):
61 a = self.val["a"]
62 b = self.val["b"]
63 if a.address != b:
64 raise Exception("&a(%s) != b(%s)" % (str(a.address), str(b)))
65 return " a=<" + str(self.val["a"]) + "> b=<" + str(self.val["b"]) + ">"
66
67class pp_ss:
68 def __init__(self, val):
69 self.val = val
70
71 def to_string(self):
72 return "a=<" + str(self.val["a"]) + "> b=<" + str(self.val["b"]) + ">"
73
74class pp_sss:
75 def __init__(self, val):
76 self.val = val
77
78 def to_string(self):
79 return "a=<" + str(self.val['a']) + "> b=<" + str(self.val["b"]) + ">"
80
81class pp_multiple_virtual:
82 def __init__ (self, val):
83 self.val = val
84
85 def to_string (self):
86 return "pp value variable is: " + str (self.val['value'])
87
88class pp_vbase1:
89 def __init__ (self, val):
90 self.val = val
91
92 def to_string (self):
93 return "pp class name: " + self.val.type.tag
94
fbb8f299
PM
95class pp_ns:
96 "Print a std::basic_string of some kind"
97
98 def __init__(self, val):
99 self.val = val
100
101 def to_string(self):
102 len = self.val['length']
103 return self.val['null_str'].string (gdb.parameter ('target-charset'), length = len)
104
105 def display_hint (self):
106 return 'string'
107
a6bac58e
TT
108def lookup_function (val):
109 "Look-up and return a pretty-printer that can print val."
110
111 # Get the type.
112 type = val.type;
113
114 # If it points to a reference, get the reference.
115 if type.code == gdb.TYPE_CODE_REF:
116 type = type.target ()
117
118 # Get the unqualified type, stripped of typedefs.
119 type = type.unqualified ().strip_typedefs ()
120
121 # Get the type name.
122 typename = type.tag
123
124 if typename == None:
125 return None
126
127 # Iterate over local dictionary of types to determine
128 # if a printer is registered for that type. Return an
129 # instantiation of the printer if found.
130 for function in pretty_printers_dict:
131 if function.match (typename):
132 return pretty_printers_dict[function] (val)
133
134 # Cannot find a pretty printer. Return None.
135
136 return None
137
138
139def register_pretty_printers ():
140 pretty_printers_dict[re.compile ('^struct s$')] = pp_s
141 pretty_printers_dict[re.compile ('^s$')] = pp_s
142 pretty_printers_dict[re.compile ('^S$')] = pp_s
143
144 pretty_printers_dict[re.compile ('^struct ss$')] = pp_ss
145 pretty_printers_dict[re.compile ('^ss$')] = pp_ss
146 pretty_printers_dict[re.compile ('^const S &$')] = pp_s
147 pretty_printers_dict[re.compile ('^SSS$')] = pp_sss
148
149 pretty_printers_dict[re.compile ('^VirtualTest$')] = pp_multiple_virtual
150 pretty_printers_dict[re.compile ('^Vbase1$')] = pp_vbase1
151
152 # Note that we purposely omit the typedef names here.
153 # Printer lookup is based on canonical name.
154 # However, we do need both tagged and untagged variants, to handle
155 # both the C and C++ cases.
156 pretty_printers_dict[re.compile ('^struct string_repr$')] = string_print
157 pretty_printers_dict[re.compile ('^struct container$')] = ContainerPrinter
158 pretty_printers_dict[re.compile ('^string_repr$')] = string_print
159 pretty_printers_dict[re.compile ('^container$')] = ContainerPrinter
160
fbb8f299
PM
161 pretty_printers_dict[re.compile ('^struct ns$')] = pp_ns
162 pretty_printers_dict[re.compile ('^ns$')] = pp_ns
a6bac58e
TT
163pretty_printers_dict = {}
164
165register_pretty_printers ()
166gdb.pretty_printers.append (lookup_function)
This page took 0.050846 seconds and 4 git commands to generate.