1 /* Python pretty-printing
3 Copyright (C) 2008-2018 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "extension-priv.h"
27 #include "python-internal.h"
30 /* Return type of print_string_repr. */
32 enum string_repr_result
34 /* The string method returned None. */
36 /* The string method had an error. */
42 /* Helper function for find_pretty_printer which iterates over a list,
43 calls each function and inspects output. This will return a
44 printer object if one recognizes VALUE. If no printer is found, it
45 will return None. On error, it will set the Python error and
49 search_pp_list (PyObject *list, PyObject *value)
51 Py_ssize_t pp_list_size, list_index;
53 pp_list_size = PyList_Size (list);
54 for (list_index = 0; list_index < pp_list_size; list_index++)
56 PyObject *function = PyList_GetItem (list, list_index);
60 /* Skip if disabled. */
61 if (PyObject_HasAttr (function, gdbpy_enabled_cst))
63 gdbpy_ref<> attr (PyObject_GetAttr (function, gdbpy_enabled_cst));
68 cmp = PyObject_IsTrue (attr.get ());
76 gdbpy_ref<> printer (PyObject_CallFunctionObjArgs (function, value,
80 else if (printer != Py_None)
81 return printer.release ();
87 /* Subroutine of find_pretty_printer to simplify it.
88 Look for a pretty-printer to print VALUE in all objfiles.
89 The result is NULL if there's an error and the search should be terminated.
90 The result is Py_None, suitably inc-ref'd, if no pretty-printer was found.
91 Otherwise the result is the pretty-printer function, suitably inc-ref'd. */
94 find_pretty_printer_from_objfiles (PyObject *value)
100 PyObject *objf = objfile_to_objfile_object (obj);
103 /* Ignore the error and continue. */
108 gdbpy_ref<> pp_list (objfpy_get_printers (objf, NULL));
109 gdbpy_ref<> function (search_pp_list (pp_list.get (), value));
111 /* If there is an error in any objfile list, abort the search and exit. */
112 if (function == NULL)
115 if (function != Py_None)
116 return function.release ();
122 /* Subroutine of find_pretty_printer to simplify it.
123 Look for a pretty-printer to print VALUE in the current program space.
124 The result is NULL if there's an error and the search should be terminated.
125 The result is Py_None, suitably inc-ref'd, if no pretty-printer was found.
126 Otherwise the result is the pretty-printer function, suitably inc-ref'd. */
129 find_pretty_printer_from_progspace (PyObject *value)
131 PyObject *obj = pspace_to_pspace_object (current_program_space);
135 gdbpy_ref<> pp_list (pspy_get_printers (obj, NULL));
136 return search_pp_list (pp_list.get (), value);
139 /* Subroutine of find_pretty_printer to simplify it.
140 Look for a pretty-printer to print VALUE in the gdb module.
141 The result is NULL if there's an error and the search should be terminated.
142 The result is Py_None, suitably inc-ref'd, if no pretty-printer was found.
143 Otherwise the result is the pretty-printer function, suitably inc-ref'd. */
146 find_pretty_printer_from_gdb (PyObject *value)
148 /* Fetch the global pretty printer list. */
149 if (gdb_python_module == NULL
150 || ! PyObject_HasAttrString (gdb_python_module, "pretty_printers"))
152 gdbpy_ref<> pp_list (PyObject_GetAttrString (gdb_python_module,
154 if (pp_list == NULL || ! PyList_Check (pp_list.get ()))
157 return search_pp_list (pp_list.get (), value);
160 /* Find the pretty-printing constructor function for VALUE. If no
161 pretty-printer exists, return None. If one exists, return a new
162 reference. On error, set the Python error and return NULL. */
165 find_pretty_printer (PyObject *value)
167 /* Look at the pretty-printer list for each objfile
168 in the current program-space. */
169 gdbpy_ref<> function (find_pretty_printer_from_objfiles (value));
170 if (function == NULL || function != Py_None)
171 return function.release ();
173 /* Look at the pretty-printer list for the current program-space. */
174 function.reset (find_pretty_printer_from_progspace (value));
175 if (function == NULL || function != Py_None)
176 return function.release ();
178 /* Look at the pretty-printer list in the gdb module. */
179 return find_pretty_printer_from_gdb (value);
182 /* Pretty-print a single value, via the printer object PRINTER.
183 If the function returns a string, a PyObject containing the string
184 is returned. If the function returns Py_NONE that means the pretty
185 printer returned the Python None as a value. Otherwise, if the
186 function returns a value, *OUT_VALUE is set to the value, and NULL
187 is returned. On error, *OUT_VALUE is set to NULL, NULL is
188 returned, with a python exception set. */
191 pretty_print_one_value (PyObject *printer, struct value **out_value)
198 if (!PyObject_HasAttr (printer, gdbpy_to_string_cst))
199 result = gdbpy_ref<>::new_reference (Py_None);
202 result.reset (PyObject_CallMethodObjArgs (printer, gdbpy_to_string_cst,
206 if (! gdbpy_is_string (result.get ())
207 && ! gdbpy_is_lazy_string (result.get ())
208 && result != Py_None)
210 *out_value = convert_value_from_python (result.get ());
211 if (PyErr_Occurred ())
218 CATCH (except, RETURN_MASK_ALL)
226 /* Return the display hint for the object printer, PRINTER. Return
227 NULL if there is no display_hint method, or if the method did not
228 return a string. On error, print stack trace and return NULL. On
229 success, return an xmalloc()d string. */
230 gdb::unique_xmalloc_ptr<char>
231 gdbpy_get_display_hint (PyObject *printer)
233 gdb::unique_xmalloc_ptr<char> result;
235 if (! PyObject_HasAttr (printer, gdbpy_display_hint_cst))
238 gdbpy_ref<> hint (PyObject_CallMethodObjArgs (printer, gdbpy_display_hint_cst,
242 if (gdbpy_is_string (hint.get ()))
244 result = python_string_to_host_string (hint.get ());
246 gdbpy_print_stack ();
250 gdbpy_print_stack ();
255 /* A wrapper for gdbpy_print_stack that ignores MemoryError. */
258 print_stack_unless_memory_error (struct ui_file *stream)
260 if (PyErr_ExceptionMatches (gdbpy_gdb_memory_error))
262 PyObject *type, *value, *trace;
264 PyErr_Fetch (&type, &value, &trace);
266 gdbpy_ref<> type_ref (type);
267 gdbpy_ref<> value_ref (value);
268 gdbpy_ref<> trace_ref (trace);
270 gdb::unique_xmalloc_ptr<char>
271 msg (gdbpy_exception_to_string (type, value));
273 if (msg == NULL || *msg == '\0')
274 fprintf_filtered (stream, _("<error reading variable>"));
276 fprintf_filtered (stream, _("<error reading variable: %s>"),
280 gdbpy_print_stack ();
283 /* Helper for gdbpy_apply_val_pretty_printer which calls to_string and
284 formats the result. */
286 static enum string_repr_result
287 print_string_repr (PyObject *printer, const char *hint,
288 struct ui_file *stream, int recurse,
289 const struct value_print_options *options,
290 const struct language_defn *language,
291 struct gdbarch *gdbarch)
293 struct value *replacement = NULL;
294 enum string_repr_result result = string_repr_ok;
296 gdbpy_ref<> py_str = pretty_print_one_value (printer, &replacement);
299 if (py_str == Py_None)
300 result = string_repr_none;
301 else if (gdbpy_is_lazy_string (py_str.get ()))
306 gdb::unique_xmalloc_ptr<char> encoding;
307 struct value_print_options local_opts = *options;
309 gdbpy_extract_lazy_string (py_str.get (), &addr, &type,
312 local_opts.addressprint = 0;
313 val_print_string (type, encoding.get (), addr, (int) length,
314 stream, &local_opts);
319 (python_string_to_target_python_string (py_str.get ()));
327 output = PyBytes_AS_STRING (string.get ());
328 length = PyBytes_GET_SIZE (string.get ());
330 output = PyString_AsString (string.get ());
331 length = PyString_Size (string.get ());
333 type = builtin_type (gdbarch)->builtin_char;
335 if (hint && !strcmp (hint, "string"))
336 LA_PRINT_STRING (stream, type, (gdb_byte *) output,
337 length, NULL, 0, options);
339 fputs_filtered (output, stream);
343 result = string_repr_error;
344 print_stack_unless_memory_error (stream);
348 else if (replacement)
350 struct value_print_options opts = *options;
352 opts.addressprint = 0;
353 common_val_print (replacement, stream, recurse, &opts, language);
357 result = string_repr_error;
358 print_stack_unless_memory_error (stream);
366 /* Create a dummy PyFrameObject, needed to work around
367 a Python-2.4 bug with generators. */
368 class dummy_python_frame
372 dummy_python_frame ();
374 ~dummy_python_frame ()
377 m_tstate->frame = m_saved_frame;
388 PyFrameObject *m_saved_frame;
390 PyThreadState *m_tstate;
393 dummy_python_frame::dummy_python_frame ()
395 m_saved_frame (NULL),
399 PyFrameObject *frame;
401 gdbpy_ref<> empty_string (PyString_FromString (""));
402 if (empty_string == NULL)
405 gdbpy_ref<> null_tuple (PyTuple_New (0));
406 if (null_tuple == NULL)
409 code = PyCode_New (0, /* argcount */
413 empty_string.get (), /* code */
414 null_tuple.get (), /* consts */
415 null_tuple.get (), /* names */
416 null_tuple.get (), /* varnames */
417 #if PYTHON_API_VERSION >= 1010
418 null_tuple.get (), /* freevars */
419 null_tuple.get (), /* cellvars */
421 empty_string.get (), /* filename */
422 empty_string.get (), /* name */
424 empty_string.get () /* lnotab */
428 gdbpy_ref<> code_holder ((PyObject *) code);
430 gdbpy_ref<> globals (PyDict_New ());
434 m_tstate = PyThreadState_GET ();
435 frame = PyFrame_New (m_tstate, code, globals.get (), NULL);
439 m_frame.reset ((PyObject *) frame);
440 m_tstate->frame = frame;
441 m_saved_frame = frame->f_back;
446 /* Helper for gdbpy_apply_val_pretty_printer that formats children of the
447 printer, if any exist. If is_py_none is true, then nothing has
448 been printed by to_string, and format output accordingly. */
450 print_children (PyObject *printer, const char *hint,
451 struct ui_file *stream, int recurse,
452 const struct value_print_options *options,
453 const struct language_defn *language,
456 int is_map, is_array, done_flag, pretty;
459 if (! PyObject_HasAttr (printer, gdbpy_children_cst))
462 /* If we are printing a map or an array, we want some special
464 is_map = hint && ! strcmp (hint, "map");
465 is_array = hint && ! strcmp (hint, "array");
467 gdbpy_ref<> children (PyObject_CallMethodObjArgs (printer, gdbpy_children_cst,
469 if (children == NULL)
471 print_stack_unless_memory_error (stream);
475 gdbpy_ref<> iter (PyObject_GetIter (children.get ()));
478 print_stack_unless_memory_error (stream);
482 /* Use the prettyformat_arrays option if we are printing an array,
483 and the pretty option otherwise. */
485 pretty = options->prettyformat_arrays;
488 if (options->prettyformat == Val_prettyformat)
491 pretty = options->prettyformat_structs;
494 /* Manufacture a dummy Python frame to work around Python 2.4 bug,
495 where it insists on having a non-NULL tstate->frame when
496 a generator is called. */
498 dummy_python_frame frame;
501 gdbpy_print_stack ();
507 for (i = 0; i < options->print_max; ++i)
512 gdbpy_ref<> item (PyIter_Next (iter.get ()));
515 if (PyErr_Occurred ())
516 print_stack_unless_memory_error (stream);
517 /* Set a flag so we can know whether we printed all the
518 available elements. */
524 if (! PyTuple_Check (item.get ()) || PyTuple_Size (item.get ()) != 2)
526 PyErr_SetString (PyExc_TypeError,
527 _("Result of children iterator not a tuple"
528 " of two elements."));
529 gdbpy_print_stack ();
532 if (! PyArg_ParseTuple (item.get (), "sO", &name, &py_v))
534 /* The user won't necessarily get a stack trace here, so provide
536 if (gdbpy_print_python_errors_p ())
537 fprintf_unfiltered (gdb_stderr,
538 _("Bad result from children iterator.\n"));
539 gdbpy_print_stack ();
543 /* Print initial "{". For other elements, there are three
545 1. Maps. Print a "," after each value element.
546 2. Arrays. Always print a ",".
547 3. Other. Always print a ",". */
551 fputs_filtered ("{", stream);
553 fputs_filtered (" = {", stream);
556 else if (! is_map || i % 2 == 0)
557 fputs_filtered (pretty ? "," : ", ", stream);
559 /* In summary mode, we just want to print "= {...}" if there is
561 if (options->summary)
563 /* This increment tricks the post-loop logic to print what
571 if (! is_map || i % 2 == 0)
575 fputs_filtered ("\n", stream);
576 print_spaces_filtered (2 + 2 * recurse, stream);
579 wrap_here (n_spaces (2 + 2 *recurse));
582 if (is_map && i % 2 == 0)
583 fputs_filtered ("[", stream);
586 /* We print the index, not whatever the child method
587 returned as the name. */
588 if (options->print_array_indexes)
589 fprintf_filtered (stream, "[%d] = ", i);
593 fputs_filtered (name, stream);
594 fputs_filtered (" = ", stream);
597 if (gdbpy_is_lazy_string (py_v))
602 gdb::unique_xmalloc_ptr<char> encoding;
603 struct value_print_options local_opts = *options;
605 gdbpy_extract_lazy_string (py_v, &addr, &type, &length, &encoding);
607 local_opts.addressprint = 0;
608 val_print_string (type, encoding.get (), addr, (int) length, stream,
611 else if (gdbpy_is_string (py_v))
613 gdb::unique_xmalloc_ptr<char> output;
615 output = python_string_to_host_string (py_v);
617 gdbpy_print_stack ();
619 fputs_filtered (output.get (), stream);
623 struct value *value = convert_value_from_python (py_v);
627 gdbpy_print_stack ();
628 error (_("Error while executing Python code."));
631 common_val_print (value, stream, recurse + 1, options, language);
634 if (is_map && i % 2 == 0)
635 fputs_filtered ("] = ", stream);
644 fputs_filtered ("\n", stream);
645 print_spaces_filtered (2 + 2 * recurse, stream);
647 fputs_filtered ("...", stream);
651 fputs_filtered ("\n", stream);
652 print_spaces_filtered (2 * recurse, stream);
654 fputs_filtered ("}", stream);
659 gdbpy_apply_val_pretty_printer (const struct extension_language_defn *extlang,
661 LONGEST embedded_offset, CORE_ADDR address,
662 struct ui_file *stream, int recurse,
664 const struct value_print_options *options,
665 const struct language_defn *language)
667 struct gdbarch *gdbarch = get_type_arch (type);
669 enum string_repr_result print_result;
671 if (value_lazy (val))
672 value_fetch_lazy (val);
674 /* No pretty-printer support for unavailable values. */
675 if (!value_bytes_available (val, embedded_offset, TYPE_LENGTH (type)))
676 return EXT_LANG_RC_NOP;
678 if (!gdb_python_initialized)
679 return EXT_LANG_RC_NOP;
681 gdbpy_enter enter_py (gdbarch, language);
683 /* Instantiate the printer. */
684 value = value_from_component (val, type, embedded_offset);
686 gdbpy_ref<> val_obj (value_to_value_object (value));
689 print_stack_unless_memory_error (stream);
690 return EXT_LANG_RC_ERROR;
693 /* Find the constructor. */
694 gdbpy_ref<> printer (find_pretty_printer (val_obj.get ()));
697 print_stack_unless_memory_error (stream);
698 return EXT_LANG_RC_ERROR;
701 if (printer == Py_None)
702 return EXT_LANG_RC_NOP;
704 /* If we are printing a map, we want some special formatting. */
705 gdb::unique_xmalloc_ptr<char> hint (gdbpy_get_display_hint (printer.get ()));
707 /* Print the section */
708 print_result = print_string_repr (printer.get (), hint.get (), stream,
709 recurse, options, language, gdbarch);
710 if (print_result != string_repr_error)
711 print_children (printer.get (), hint.get (), stream, recurse, options,
712 language, print_result == string_repr_none);
714 if (PyErr_Occurred ())
715 print_stack_unless_memory_error (stream);
716 return EXT_LANG_RC_OK;
720 /* Apply a pretty-printer for the varobj code. PRINTER_OBJ is the
721 print object. It must have a 'to_string' method (but this is
722 checked by varobj, not here) which takes no arguments and
723 returns a string. The printer will return a value and in the case
724 of a Python string being returned, this function will return a
725 PyObject containing the string. For any other type, *REPLACEMENT is
726 set to the replacement value and this function returns NULL. On
727 error, *REPLACEMENT is set to NULL and this function also returns
730 apply_varobj_pretty_printer (PyObject *printer_obj,
731 struct value **replacement,
732 struct ui_file *stream)
735 gdbpy_ref<> py_str = pretty_print_one_value (printer_obj, replacement);
737 if (*replacement == NULL && py_str == NULL)
738 print_stack_unless_memory_error (stream);
743 /* Find a pretty-printer object for the varobj module. Returns a new
744 reference to the object if successful; returns NULL if not. VALUE
745 is the value for which a printer tests to determine if it
746 can pretty-print the value. */
748 gdbpy_get_varobj_pretty_printer (struct value *value)
752 value = value_copy (value);
754 CATCH (except, RETURN_MASK_ALL)
756 GDB_PY_HANDLE_EXCEPTION (except);
760 gdbpy_ref<> val_obj (value_to_value_object (value));
764 return find_pretty_printer (val_obj.get ());
767 /* A Python function which wraps find_pretty_printer and instantiates
768 the resulting class. This accepts a Value argument and returns a
769 pretty printer instance, or None. This function is useful as an
770 argument to the MI command -var-set-visualizer. */
772 gdbpy_default_visualizer (PyObject *self, PyObject *args)
778 if (! PyArg_ParseTuple (args, "O", &val_obj))
780 value = value_object_to_value (val_obj);
783 PyErr_SetString (PyExc_TypeError,
784 _("Argument must be a gdb.Value."));
788 cons = find_pretty_printer (val_obj);