Next: Selecting Guile Pretty-Printers, Previous: Types In Guile, Up: Guile API [Contents][Index]
An example output is provided (see Pretty Printing).
A pretty-printer is represented by an object of type <gdb:pretty-printer>.
Pretty-printer objects are created with make-pretty-printer
.
The following pretty-printer-related procedures are provided by the
(gdb)
module:
Return a <gdb:pretty-printer>
object named name.
lookup-function is a function of one parameter: the value to
be printed. If the value is handled by this pretty-printer, then
lookup-function returns an object of type
<gdb:pretty-printer-worker> to perform the actual pretty-printing.
Otherwise lookup-function returns #f
.
Return #t
if object is a <gdb:pretty-printer>
object.
Otherwise return #f
.
Return #t
if pretty-printer is enabled.
Otherwise return #f
.
Set the enabled flag of pretty-printer to flag. The value returned is unspecified.
Return the list of global pretty-printers.
Set the list of global pretty-printers to pretty-printers. The value returned is unspecified.
Return an object of type <gdb:pretty-printer-worker>
.
This function takes three parameters:
display-hint provides a hint to GDB or GDB
front end via MI to change the formatting of the value being printed.
The value must be a string or #f
(meaning there is no hint).
Several values for display-hint
are predefined by GDB:
Indicate that the object being printed is “array-like”. The CLI
uses this to respect parameters such as set print elements
and
set print array
.
Indicate that the object being printed is “map-like”, and that the children of this value can be assumed to alternate between keys and values.
Indicate that the object being printed is “string-like”. If the
printer’s to-string
function returns a Guile string of some
kind, then GDB will call its internal language-specific
string-printing function to format the string. For the CLI this means
adding quotation marks, possibly escaping some characters, respecting
set print elements
, and the like.
to-string is either a function of one parameter, the
<gdb:pretty-printer-worker>
object, or #f
.
When printing from the CLI, if the to-string
method exists,
then GDB will prepend its result to the values returned by
children
. Exactly how this formatting is done is dependent on
the display hint, and may change as more hints are added. Also,
depending on the print settings (see Print Settings), the CLI may
print just the result of to-string
in a stack trace, omitting
the result of children
.
If this method returns a string, it is printed verbatim.
Otherwise, if this method returns an instance of <gdb:value>
,
then GDB prints this value. This may result in a call to
another pretty-printer.
If instead the method returns a Guile value which is convertible to a
<gdb:value>
, then GDB performs the conversion and prints
the resulting value. Again, this may result in a call to another
pretty-printer. Guile scalars (integers, floats, and booleans) and
strings are convertible to <gdb:value>
; other types are not.
Finally, if this method returns #f
then no further operations
are performed in this method and nothing is printed.
If the result is not one of these types, an exception is raised.
to-string may also be #f
in which case it is left to
children to print the value.
children is either a function of one parameter, the
<gdb:pretty-printer-worker>
object, or #f
.
GDB will call this function on a pretty-printer to compute the children of the pretty-printer’s value.
This function must return a <gdb:iterator> object. Each item returned by the iterator must be a tuple holding two elements. The first element is the “name” of the child; the second element is the child’s value. The value can be any Guile object which is convertible to a GDB value.
If children is #f
, GDB will act
as though the value has no children.
Children may be hidden from display based on the value of ‘set print max-depth’ (see Print Settings).
GDB provides a function which can be used to look up the
default pretty-printer for a <gdb:value>
:
This function takes a <gdb:value>
object as an argument. If a
pretty-printer for this value exists, then it is returned. If no such
printer exists, then this returns #f
.
Next: Selecting Guile Pretty-Printers, Previous: Types In Guile, Up: Guile API [Contents][Index]