Change gdbscm_exception_message_to_string to return a unique_xmalloc_ptr
[deliverable/binutils-gdb.git] / gdb / guile / scm-pretty-print.c
1 /* GDB/Scheme pretty-printing.
2
3 Copyright (C) 2008-2018 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20 /* See README file in this directory for implementation notes, coding
21 conventions, et.al. */
22
23 #include "defs.h"
24 #include "charset.h"
25 #include "symtab.h" /* Needed by language.h. */
26 #include "language.h"
27 #include "objfiles.h"
28 #include "value.h"
29 #include "valprint.h"
30 #include "guile-internal.h"
31
32 /* Return type of print_string_repr. */
33
34 enum string_repr_result
35 {
36 /* The string method returned None. */
37 STRING_REPR_NONE,
38 /* The string method had an error. */
39 STRING_REPR_ERROR,
40 /* Everything ok. */
41 STRING_REPR_OK
42 };
43
44 /* Display hints. */
45
46 enum display_hint
47 {
48 /* No display hint. */
49 HINT_NONE,
50 /* The display hint has a bad value. */
51 HINT_ERROR,
52 /* Print as an array. */
53 HINT_ARRAY,
54 /* Print as a map. */
55 HINT_MAP,
56 /* Print as a string. */
57 HINT_STRING
58 };
59
60 /* The <gdb:pretty-printer> smob. */
61
62 typedef struct
63 {
64 /* This must appear first. */
65 gdb_smob base;
66
67 /* A string representing the name of the printer. */
68 SCM name;
69
70 /* A boolean indicating whether the printer is enabled. */
71 SCM enabled;
72
73 /* A procedure called to look up the printer for the given value.
74 The procedure is called as (lookup gdb:pretty-printer value).
75 The result should either be a gdb:pretty-printer object that will print
76 the value, or #f if the value is not recognized. */
77 SCM lookup;
78
79 /* Note: Attaching subprinters to this smob is left to Scheme. */
80 } pretty_printer_smob;
81
82 /* The <gdb:pretty-printer-worker> smob. */
83
84 typedef struct
85 {
86 /* This must appear first. */
87 gdb_smob base;
88
89 /* Either #f or one of the supported display hints: map, array, string.
90 If neither of those then the display hint is ignored (treated as #f). */
91 SCM display_hint;
92
93 /* A procedure called to pretty-print the value.
94 (lambda (printer) ...) -> string | <gdb:lazy-string> | <gdb:value> */
95 SCM to_string;
96
97 /* A procedure called to print children of the value.
98 (lambda (printer) ...) -> <gdb:iterator>
99 The iterator returns a pair for each iteration: (name . value),
100 where "value" can have the same types as to_string. */
101 SCM children;
102 } pretty_printer_worker_smob;
103
104 static const char pretty_printer_smob_name[] =
105 "gdb:pretty-printer";
106 static const char pretty_printer_worker_smob_name[] =
107 "gdb:pretty-printer-worker";
108
109 /* The tag Guile knows the pretty-printer smobs by. */
110 static scm_t_bits pretty_printer_smob_tag;
111 static scm_t_bits pretty_printer_worker_smob_tag;
112
113 /* The global pretty-printer list. */
114 static SCM pretty_printer_list;
115
116 /* gdb:pp-type-error. */
117 static SCM pp_type_error_symbol;
118
119 /* Pretty-printer display hints are specified by strings. */
120 static SCM ppscm_map_string;
121 static SCM ppscm_array_string;
122 static SCM ppscm_string_string;
123 \f
124 /* Administrivia for pretty-printer matcher smobs. */
125
126 /* The smob "print" function for <gdb:pretty-printer>. */
127
128 static int
129 ppscm_print_pretty_printer_smob (SCM self, SCM port, scm_print_state *pstate)
130 {
131 pretty_printer_smob *pp_smob = (pretty_printer_smob *) SCM_SMOB_DATA (self);
132
133 gdbscm_printf (port, "#<%s ", pretty_printer_smob_name);
134 scm_write (pp_smob->name, port);
135 scm_puts (gdbscm_is_true (pp_smob->enabled) ? " enabled" : " disabled",
136 port);
137 scm_puts (">", port);
138
139 scm_remember_upto_here_1 (self);
140
141 /* Non-zero means success. */
142 return 1;
143 }
144
145 /* (make-pretty-printer string procedure) -> <gdb:pretty-printer> */
146
147 static SCM
148 gdbscm_make_pretty_printer (SCM name, SCM lookup)
149 {
150 pretty_printer_smob *pp_smob = (pretty_printer_smob *)
151 scm_gc_malloc (sizeof (pretty_printer_smob),
152 pretty_printer_smob_name);
153 SCM smob;
154
155 SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG1, FUNC_NAME,
156 _("string"));
157 SCM_ASSERT_TYPE (gdbscm_is_procedure (lookup), lookup, SCM_ARG2, FUNC_NAME,
158 _("procedure"));
159
160 pp_smob->name = name;
161 pp_smob->lookup = lookup;
162 pp_smob->enabled = SCM_BOOL_T;
163 smob = scm_new_smob (pretty_printer_smob_tag, (scm_t_bits) pp_smob);
164 gdbscm_init_gsmob (&pp_smob->base);
165
166 return smob;
167 }
168
169 /* Return non-zero if SCM is a <gdb:pretty-printer> object. */
170
171 static int
172 ppscm_is_pretty_printer (SCM scm)
173 {
174 return SCM_SMOB_PREDICATE (pretty_printer_smob_tag, scm);
175 }
176
177 /* (pretty-printer? object) -> boolean */
178
179 static SCM
180 gdbscm_pretty_printer_p (SCM scm)
181 {
182 return scm_from_bool (ppscm_is_pretty_printer (scm));
183 }
184
185 /* Returns the <gdb:pretty-printer> object in SELF.
186 Throws an exception if SELF is not a <gdb:pretty-printer> object. */
187
188 static SCM
189 ppscm_get_pretty_printer_arg_unsafe (SCM self, int arg_pos,
190 const char *func_name)
191 {
192 SCM_ASSERT_TYPE (ppscm_is_pretty_printer (self), self, arg_pos, func_name,
193 pretty_printer_smob_name);
194
195 return self;
196 }
197
198 /* Returns a pointer to the pretty-printer smob of SELF.
199 Throws an exception if SELF is not a <gdb:pretty-printer> object. */
200
201 static pretty_printer_smob *
202 ppscm_get_pretty_printer_smob_arg_unsafe (SCM self, int arg_pos,
203 const char *func_name)
204 {
205 SCM pp_scm = ppscm_get_pretty_printer_arg_unsafe (self, arg_pos, func_name);
206 pretty_printer_smob *pp_smob
207 = (pretty_printer_smob *) SCM_SMOB_DATA (pp_scm);
208
209 return pp_smob;
210 }
211 \f
212 /* Pretty-printer methods. */
213
214 /* (pretty-printer-enabled? <gdb:pretty-printer>) -> boolean */
215
216 static SCM
217 gdbscm_pretty_printer_enabled_p (SCM self)
218 {
219 pretty_printer_smob *pp_smob
220 = ppscm_get_pretty_printer_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
221
222 return pp_smob->enabled;
223 }
224
225 /* (set-pretty-printer-enabled! <gdb:pretty-printer> boolean)
226 -> unspecified */
227
228 static SCM
229 gdbscm_set_pretty_printer_enabled_x (SCM self, SCM enabled)
230 {
231 pretty_printer_smob *pp_smob
232 = ppscm_get_pretty_printer_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
233
234 pp_smob->enabled = scm_from_bool (gdbscm_is_true (enabled));
235
236 return SCM_UNSPECIFIED;
237 }
238
239 /* (pretty-printers) -> list
240 Returns the list of global pretty-printers. */
241
242 static SCM
243 gdbscm_pretty_printers (void)
244 {
245 return pretty_printer_list;
246 }
247
248 /* (set-pretty-printers! list) -> unspecified
249 Set the global pretty-printers list. */
250
251 static SCM
252 gdbscm_set_pretty_printers_x (SCM printers)
253 {
254 SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (printers)), printers,
255 SCM_ARG1, FUNC_NAME, _("list"));
256
257 pretty_printer_list = printers;
258
259 return SCM_UNSPECIFIED;
260 }
261 \f
262 /* Administrivia for pretty-printer-worker smobs.
263 These are created when a matcher recognizes a value. */
264
265 /* The smob "print" function for <gdb:pretty-printer-worker>. */
266
267 static int
268 ppscm_print_pretty_printer_worker_smob (SCM self, SCM port,
269 scm_print_state *pstate)
270 {
271 pretty_printer_worker_smob *w_smob
272 = (pretty_printer_worker_smob *) SCM_SMOB_DATA (self);
273
274 gdbscm_printf (port, "#<%s ", pretty_printer_worker_smob_name);
275 scm_write (w_smob->display_hint, port);
276 scm_puts (" ", port);
277 scm_write (w_smob->to_string, port);
278 scm_puts (" ", port);
279 scm_write (w_smob->children, port);
280 scm_puts (">", port);
281
282 scm_remember_upto_here_1 (self);
283
284 /* Non-zero means success. */
285 return 1;
286 }
287
288 /* (make-pretty-printer-worker string procedure procedure)
289 -> <gdb:pretty-printer-worker> */
290
291 static SCM
292 gdbscm_make_pretty_printer_worker (SCM display_hint, SCM to_string,
293 SCM children)
294 {
295 pretty_printer_worker_smob *w_smob = (pretty_printer_worker_smob *)
296 scm_gc_malloc (sizeof (pretty_printer_worker_smob),
297 pretty_printer_worker_smob_name);
298 SCM w_scm;
299
300 w_smob->display_hint = display_hint;
301 w_smob->to_string = to_string;
302 w_smob->children = children;
303 w_scm = scm_new_smob (pretty_printer_worker_smob_tag, (scm_t_bits) w_smob);
304 gdbscm_init_gsmob (&w_smob->base);
305 return w_scm;
306 }
307
308 /* Return non-zero if SCM is a <gdb:pretty-printer-worker> object. */
309
310 static int
311 ppscm_is_pretty_printer_worker (SCM scm)
312 {
313 return SCM_SMOB_PREDICATE (pretty_printer_worker_smob_tag, scm);
314 }
315
316 /* (pretty-printer-worker? object) -> boolean */
317
318 static SCM
319 gdbscm_pretty_printer_worker_p (SCM scm)
320 {
321 return scm_from_bool (ppscm_is_pretty_printer_worker (scm));
322 }
323 \f
324 /* Helper function to create a <gdb:exception> object indicating that the
325 type of some value returned from a pretty-printer is invalid. */
326
327 static SCM
328 ppscm_make_pp_type_error_exception (const char *message, SCM object)
329 {
330 std::string msg = string_printf ("%s: ~S", message);
331 return gdbscm_make_error (pp_type_error_symbol,
332 NULL /* func */, msg.c_str (),
333 scm_list_1 (object), scm_list_1 (object));
334 }
335
336 /* Print MESSAGE as an exception (meaning it is controlled by
337 "guile print-stack").
338 Called from the printer code when the Scheme code returns an invalid type
339 for something. */
340
341 static void
342 ppscm_print_pp_type_error (const char *message, SCM object)
343 {
344 SCM exception = ppscm_make_pp_type_error_exception (message, object);
345
346 gdbscm_print_gdb_exception (SCM_BOOL_F, exception);
347 }
348
349 /* Helper function for find_pretty_printer which iterates over a list,
350 calls each function and inspects output. This will return a
351 <gdb:pretty-printer> object if one recognizes VALUE. If no printer is
352 found, it will return #f. On error, it will return a <gdb:exception>
353 object.
354
355 Note: This has to be efficient and careful.
356 We don't want to excessively slow down printing of values, but any kind of
357 random crud can appear in the pretty-printer list, and we can't crash
358 because of it. */
359
360 static SCM
361 ppscm_search_pp_list (SCM list, SCM value)
362 {
363 SCM orig_list = list;
364
365 if (scm_is_null (list))
366 return SCM_BOOL_F;
367 if (gdbscm_is_false (scm_list_p (list))) /* scm_is_pair? */
368 {
369 return ppscm_make_pp_type_error_exception
370 (_("pretty-printer list is not a list"), list);
371 }
372
373 for ( ; scm_is_pair (list); list = scm_cdr (list))
374 {
375 SCM matcher = scm_car (list);
376 SCM worker;
377 pretty_printer_smob *pp_smob;
378
379 if (!ppscm_is_pretty_printer (matcher))
380 {
381 return ppscm_make_pp_type_error_exception
382 (_("pretty-printer list contains non-pretty-printer object"),
383 matcher);
384 }
385
386 pp_smob = (pretty_printer_smob *) SCM_SMOB_DATA (matcher);
387
388 /* Skip if disabled. */
389 if (gdbscm_is_false (pp_smob->enabled))
390 continue;
391
392 if (!gdbscm_is_procedure (pp_smob->lookup))
393 {
394 return ppscm_make_pp_type_error_exception
395 (_("invalid lookup object in pretty-printer matcher"),
396 pp_smob->lookup);
397 }
398
399 worker = gdbscm_safe_call_2 (pp_smob->lookup, matcher,
400 value, gdbscm_memory_error_p);
401 if (!gdbscm_is_false (worker))
402 {
403 if (gdbscm_is_exception (worker))
404 return worker;
405 if (ppscm_is_pretty_printer_worker (worker))
406 return worker;
407 return ppscm_make_pp_type_error_exception
408 (_("invalid result from pretty-printer lookup"), worker);
409 }
410 }
411
412 if (!scm_is_null (list))
413 {
414 return ppscm_make_pp_type_error_exception
415 (_("pretty-printer list is not a list"), orig_list);
416 }
417
418 return SCM_BOOL_F;
419 }
420
421 /* Subroutine of find_pretty_printer to simplify it.
422 Look for a pretty-printer to print VALUE in all objfiles.
423 If there's an error an exception smob is returned.
424 The result is #f, if no pretty-printer was found.
425 Otherwise the result is the pretty-printer smob. */
426
427 static SCM
428 ppscm_find_pretty_printer_from_objfiles (SCM value)
429 {
430 struct objfile *objfile;
431
432 ALL_OBJFILES (objfile)
433 {
434 objfile_smob *o_smob = ofscm_objfile_smob_from_objfile (objfile);
435 SCM pp = ppscm_search_pp_list (ofscm_objfile_smob_pretty_printers (o_smob),
436 value);
437
438 /* Note: This will return if pp is a <gdb:exception> object,
439 which is what we want. */
440 if (gdbscm_is_true (pp))
441 return pp;
442 }
443
444 return SCM_BOOL_F;
445 }
446
447 /* Subroutine of find_pretty_printer to simplify it.
448 Look for a pretty-printer to print VALUE in the current program space.
449 If there's an error an exception smob is returned.
450 The result is #f, if no pretty-printer was found.
451 Otherwise the result is the pretty-printer smob. */
452
453 static SCM
454 ppscm_find_pretty_printer_from_progspace (SCM value)
455 {
456 pspace_smob *p_smob = psscm_pspace_smob_from_pspace (current_program_space);
457 SCM pp
458 = ppscm_search_pp_list (psscm_pspace_smob_pretty_printers (p_smob), value);
459
460 return pp;
461 }
462
463 /* Subroutine of find_pretty_printer to simplify it.
464 Look for a pretty-printer to print VALUE in the gdb module.
465 If there's an error a Scheme exception is returned.
466 The result is #f, if no pretty-printer was found.
467 Otherwise the result is the pretty-printer smob. */
468
469 static SCM
470 ppscm_find_pretty_printer_from_gdb (SCM value)
471 {
472 SCM pp = ppscm_search_pp_list (pretty_printer_list, value);
473
474 return pp;
475 }
476
477 /* Find the pretty-printing constructor function for VALUE. If no
478 pretty-printer exists, return #f. If one exists, return the
479 gdb:pretty-printer smob that implements it. On error, an exception smob
480 is returned.
481
482 Note: In the end it may be better to call out to Scheme once, and then
483 do all of the lookup from Scheme. TBD. */
484
485 static SCM
486 ppscm_find_pretty_printer (SCM value)
487 {
488 SCM pp;
489
490 /* Look at the pretty-printer list for each objfile
491 in the current program-space. */
492 pp = ppscm_find_pretty_printer_from_objfiles (value);
493 /* Note: This will return if function is a <gdb:exception> object,
494 which is what we want. */
495 if (gdbscm_is_true (pp))
496 return pp;
497
498 /* Look at the pretty-printer list for the current program-space. */
499 pp = ppscm_find_pretty_printer_from_progspace (value);
500 /* Note: This will return if function is a <gdb:exception> object,
501 which is what we want. */
502 if (gdbscm_is_true (pp))
503 return pp;
504
505 /* Look at the pretty-printer list in the gdb module. */
506 pp = ppscm_find_pretty_printer_from_gdb (value);
507 return pp;
508 }
509
510 /* Pretty-print a single value, via the PRINTER, which must be a
511 <gdb:pretty-printer-worker> object.
512 The caller is responsible for ensuring PRINTER is valid.
513 If the function returns a string, an SCM containing the string
514 is returned. If the function returns #f that means the pretty
515 printer returned #f as a value. Otherwise, if the function returns a
516 <gdb:value> object, *OUT_VALUE is set to the value and #t is returned.
517 It is an error if the printer returns #t.
518 On error, an exception smob is returned. */
519
520 static SCM
521 ppscm_pretty_print_one_value (SCM printer, struct value **out_value,
522 struct gdbarch *gdbarch,
523 const struct language_defn *language)
524 {
525 SCM result = SCM_BOOL_F;
526
527 *out_value = NULL;
528 TRY
529 {
530 pretty_printer_worker_smob *w_smob
531 = (pretty_printer_worker_smob *) SCM_SMOB_DATA (printer);
532
533 result = gdbscm_safe_call_1 (w_smob->to_string, printer,
534 gdbscm_memory_error_p);
535 if (gdbscm_is_false (result))
536 ; /* Done. */
537 else if (scm_is_string (result)
538 || lsscm_is_lazy_string (result))
539 ; /* Done. */
540 else if (vlscm_is_value (result))
541 {
542 SCM except_scm;
543
544 *out_value
545 = vlscm_convert_value_from_scheme (FUNC_NAME, GDBSCM_ARG_NONE,
546 result, &except_scm,
547 gdbarch, language);
548 if (*out_value != NULL)
549 result = SCM_BOOL_T;
550 else
551 result = except_scm;
552 }
553 else if (gdbscm_is_exception (result))
554 ; /* Done. */
555 else
556 {
557 /* Invalid result from to-string. */
558 result = ppscm_make_pp_type_error_exception
559 (_("invalid result from pretty-printer to-string"), result);
560 }
561 }
562 CATCH (except, RETURN_MASK_ALL)
563 {
564 }
565 END_CATCH
566
567 return result;
568 }
569
570 /* Return the display hint for PRINTER as a Scheme object.
571 The caller is responsible for ensuring PRINTER is a
572 <gdb:pretty-printer-worker> object. */
573
574 static SCM
575 ppscm_get_display_hint_scm (SCM printer)
576 {
577 pretty_printer_worker_smob *w_smob
578 = (pretty_printer_worker_smob *) SCM_SMOB_DATA (printer);
579
580 return w_smob->display_hint;
581 }
582
583 /* Return the display hint for the pretty-printer PRINTER.
584 The caller is responsible for ensuring PRINTER is a
585 <gdb:pretty-printer-worker> object.
586 Returns the display hint or #f if the hint is not a string. */
587
588 static enum display_hint
589 ppscm_get_display_hint_enum (SCM printer)
590 {
591 SCM hint = ppscm_get_display_hint_scm (printer);
592
593 if (gdbscm_is_false (hint))
594 return HINT_NONE;
595 if (scm_is_string (hint))
596 {
597 if (gdbscm_is_true (scm_string_equal_p (hint, ppscm_array_string)))
598 return HINT_STRING;
599 if (gdbscm_is_true (scm_string_equal_p (hint, ppscm_map_string)))
600 return HINT_STRING;
601 if (gdbscm_is_true (scm_string_equal_p (hint, ppscm_string_string)))
602 return HINT_STRING;
603 return HINT_ERROR;
604 }
605 return HINT_ERROR;
606 }
607
608 /* A wrapper for gdbscm_print_gdb_exception that ignores memory errors.
609 EXCEPTION is a <gdb:exception> object. */
610
611 static void
612 ppscm_print_exception_unless_memory_error (SCM exception,
613 struct ui_file *stream)
614 {
615 if (gdbscm_memory_error_p (gdbscm_exception_key (exception)))
616 {
617 gdb::unique_xmalloc_ptr<char> msg
618 = gdbscm_exception_message_to_string (exception);
619
620 /* This "shouldn't happen", but play it safe. */
621 if (msg == NULL || msg.get ()[0] == '\0')
622 fprintf_filtered (stream, _("<error reading variable>"));
623 else
624 {
625 /* Remove the trailing newline. We could instead call a special
626 routine for printing memory error messages, but this is easy
627 enough for now. */
628 char *msg_text = msg.get ();
629 size_t len = strlen (msg_text);
630
631 if (msg_text[len - 1] == '\n')
632 msg_text[len - 1] = '\0';
633 fprintf_filtered (stream, _("<error reading variable: %s>"), msg_text);
634 }
635 }
636 else
637 gdbscm_print_gdb_exception (SCM_BOOL_F, exception);
638 }
639
640 /* Helper for gdbscm_apply_val_pretty_printer which calls to_string and
641 formats the result. */
642
643 static enum string_repr_result
644 ppscm_print_string_repr (SCM printer, enum display_hint hint,
645 struct ui_file *stream, int recurse,
646 const struct value_print_options *options,
647 struct gdbarch *gdbarch,
648 const struct language_defn *language)
649 {
650 struct value *replacement = NULL;
651 SCM str_scm;
652 enum string_repr_result result = STRING_REPR_ERROR;
653
654 str_scm = ppscm_pretty_print_one_value (printer, &replacement,
655 gdbarch, language);
656 if (gdbscm_is_false (str_scm))
657 {
658 result = STRING_REPR_NONE;
659 }
660 else if (scm_is_eq (str_scm, SCM_BOOL_T))
661 {
662 struct value_print_options opts = *options;
663
664 gdb_assert (replacement != NULL);
665 opts.addressprint = 0;
666 common_val_print (replacement, stream, recurse, &opts, language);
667 result = STRING_REPR_OK;
668 }
669 else if (scm_is_string (str_scm))
670 {
671 struct cleanup *cleanup;
672 size_t length;
673 char *string
674 = gdbscm_scm_to_string (str_scm, &length,
675 target_charset (gdbarch), 0 /*!strict*/, NULL);
676
677 cleanup = make_cleanup (xfree, string);
678 if (hint == HINT_STRING)
679 {
680 struct type *type = builtin_type (gdbarch)->builtin_char;
681
682 LA_PRINT_STRING (stream, type, (gdb_byte *) string,
683 length, NULL, 0, options);
684 }
685 else
686 {
687 /* Alas scm_to_stringn doesn't nul-terminate the string if we
688 ask for the length. */
689 size_t i;
690
691 for (i = 0; i < length; ++i)
692 {
693 if (string[i] == '\0')
694 fputs_filtered ("\\000", stream);
695 else
696 fputc_filtered (string[i], stream);
697 }
698 }
699 result = STRING_REPR_OK;
700 do_cleanups (cleanup);
701 }
702 else if (lsscm_is_lazy_string (str_scm))
703 {
704 struct value_print_options local_opts = *options;
705
706 local_opts.addressprint = 0;
707 lsscm_val_print_lazy_string (str_scm, stream, &local_opts);
708 result = STRING_REPR_OK;
709 }
710 else
711 {
712 gdb_assert (gdbscm_is_exception (str_scm));
713 ppscm_print_exception_unless_memory_error (str_scm, stream);
714 result = STRING_REPR_ERROR;
715 }
716
717 return result;
718 }
719
720 /* Helper for gdbscm_apply_val_pretty_printer that formats children of the
721 printer, if any exist.
722 The caller is responsible for ensuring PRINTER is a printer smob.
723 If PRINTED_NOTHING is true, then nothing has been printed by to_string,
724 and format output accordingly. */
725
726 static void
727 ppscm_print_children (SCM printer, enum display_hint hint,
728 struct ui_file *stream, int recurse,
729 const struct value_print_options *options,
730 struct gdbarch *gdbarch,
731 const struct language_defn *language,
732 int printed_nothing)
733 {
734 pretty_printer_worker_smob *w_smob
735 = (pretty_printer_worker_smob *) SCM_SMOB_DATA (printer);
736 int is_map, is_array, done_flag, pretty;
737 unsigned int i;
738 SCM children;
739 SCM iter = SCM_BOOL_F; /* -Wall */
740 struct cleanup *cleanups;
741
742 if (gdbscm_is_false (w_smob->children))
743 return;
744 if (!gdbscm_is_procedure (w_smob->children))
745 {
746 ppscm_print_pp_type_error
747 (_("pretty-printer \"children\" object is not a procedure or #f"),
748 w_smob->children);
749 return;
750 }
751
752 cleanups = make_cleanup (null_cleanup, NULL);
753
754 /* If we are printing a map or an array, we want special formatting. */
755 is_map = hint == HINT_MAP;
756 is_array = hint == HINT_ARRAY;
757
758 children = gdbscm_safe_call_1 (w_smob->children, printer,
759 gdbscm_memory_error_p);
760 if (gdbscm_is_exception (children))
761 {
762 ppscm_print_exception_unless_memory_error (children, stream);
763 goto done;
764 }
765 /* We combine two steps here: get children, make an iterator out of them.
766 This simplifies things because there's no language means of creating
767 iterators, and it's the printer object that knows how it will want its
768 children iterated over. */
769 if (!itscm_is_iterator (children))
770 {
771 ppscm_print_pp_type_error
772 (_("result of pretty-printer \"children\" procedure is not"
773 " a <gdb:iterator> object"), children);
774 goto done;
775 }
776 iter = children;
777
778 /* Use the prettyformat_arrays option if we are printing an array,
779 and the pretty option otherwise. */
780 if (is_array)
781 pretty = options->prettyformat_arrays;
782 else
783 {
784 if (options->prettyformat == Val_prettyformat)
785 pretty = 1;
786 else
787 pretty = options->prettyformat_structs;
788 }
789
790 done_flag = 0;
791 for (i = 0; i < options->print_max; ++i)
792 {
793 SCM scm_name, v_scm;
794 char *name;
795 SCM item = itscm_safe_call_next_x (iter, gdbscm_memory_error_p);
796 struct cleanup *inner_cleanup = make_cleanup (null_cleanup, NULL);
797
798 if (gdbscm_is_exception (item))
799 {
800 ppscm_print_exception_unless_memory_error (item, stream);
801 break;
802 }
803 if (itscm_is_end_of_iteration (item))
804 {
805 /* Set a flag so we can know whether we printed all the
806 available elements. */
807 done_flag = 1;
808 break;
809 }
810
811 if (! scm_is_pair (item))
812 {
813 ppscm_print_pp_type_error
814 (_("result of pretty-printer children iterator is not a pair"
815 " or (end-of-iteration)"),
816 item);
817 continue;
818 }
819 scm_name = scm_car (item);
820 v_scm = scm_cdr (item);
821 if (!scm_is_string (scm_name))
822 {
823 ppscm_print_pp_type_error
824 (_("first element of pretty-printer children iterator is not"
825 " a string"), item);
826 continue;
827 }
828 name = gdbscm_scm_to_c_string (scm_name);
829 make_cleanup (xfree, name);
830
831 /* Print initial "{". For other elements, there are three cases:
832 1. Maps. Print a "," after each value element.
833 2. Arrays. Always print a ",".
834 3. Other. Always print a ",". */
835 if (i == 0)
836 {
837 if (printed_nothing)
838 fputs_filtered ("{", stream);
839 else
840 fputs_filtered (" = {", stream);
841 }
842
843 else if (! is_map || i % 2 == 0)
844 fputs_filtered (pretty ? "," : ", ", stream);
845
846 /* In summary mode, we just want to print "= {...}" if there is
847 a value. */
848 if (options->summary)
849 {
850 /* This increment tricks the post-loop logic to print what
851 we want. */
852 ++i;
853 /* Likewise. */
854 pretty = 0;
855 break;
856 }
857
858 if (! is_map || i % 2 == 0)
859 {
860 if (pretty)
861 {
862 fputs_filtered ("\n", stream);
863 print_spaces_filtered (2 + 2 * recurse, stream);
864 }
865 else
866 wrap_here (n_spaces (2 + 2 *recurse));
867 }
868
869 if (is_map && i % 2 == 0)
870 fputs_filtered ("[", stream);
871 else if (is_array)
872 {
873 /* We print the index, not whatever the child method
874 returned as the name. */
875 if (options->print_array_indexes)
876 fprintf_filtered (stream, "[%d] = ", i);
877 }
878 else if (! is_map)
879 {
880 fputs_filtered (name, stream);
881 fputs_filtered (" = ", stream);
882 }
883
884 if (lsscm_is_lazy_string (v_scm))
885 {
886 struct value_print_options local_opts = *options;
887
888 local_opts.addressprint = 0;
889 lsscm_val_print_lazy_string (v_scm, stream, &local_opts);
890 }
891 else if (scm_is_string (v_scm))
892 {
893 char *output = gdbscm_scm_to_c_string (v_scm);
894
895 fputs_filtered (output, stream);
896 xfree (output);
897 }
898 else
899 {
900 SCM except_scm;
901 struct value *value
902 = vlscm_convert_value_from_scheme (FUNC_NAME, GDBSCM_ARG_NONE,
903 v_scm, &except_scm,
904 gdbarch, language);
905
906 if (value == NULL)
907 {
908 ppscm_print_exception_unless_memory_error (except_scm, stream);
909 break;
910 }
911 common_val_print (value, stream, recurse + 1, options, language);
912 }
913
914 if (is_map && i % 2 == 0)
915 fputs_filtered ("] = ", stream);
916
917 do_cleanups (inner_cleanup);
918 }
919
920 if (i)
921 {
922 if (!done_flag)
923 {
924 if (pretty)
925 {
926 fputs_filtered ("\n", stream);
927 print_spaces_filtered (2 + 2 * recurse, stream);
928 }
929 fputs_filtered ("...", stream);
930 }
931 if (pretty)
932 {
933 fputs_filtered ("\n", stream);
934 print_spaces_filtered (2 * recurse, stream);
935 }
936 fputs_filtered ("}", stream);
937 }
938
939 done:
940 do_cleanups (cleanups);
941
942 /* Play it safe, make sure ITER doesn't get GC'd. */
943 scm_remember_upto_here_1 (iter);
944 }
945
946 /* This is the extension_language_ops.apply_val_pretty_printer "method". */
947
948 enum ext_lang_rc
949 gdbscm_apply_val_pretty_printer (const struct extension_language_defn *extlang,
950 struct type *type,
951 LONGEST embedded_offset, CORE_ADDR address,
952 struct ui_file *stream, int recurse,
953 struct value *val,
954 const struct value_print_options *options,
955 const struct language_defn *language)
956 {
957 struct gdbarch *gdbarch = get_type_arch (type);
958 SCM exception = SCM_BOOL_F;
959 SCM printer = SCM_BOOL_F;
960 SCM val_obj = SCM_BOOL_F;
961 struct value *value;
962 enum display_hint hint;
963 struct cleanup *cleanups;
964 enum ext_lang_rc result = EXT_LANG_RC_NOP;
965 enum string_repr_result print_result;
966 const gdb_byte *valaddr = value_contents_for_printing (val);
967
968 /* No pretty-printer support for unavailable values. */
969 if (!value_bytes_available (val, embedded_offset, TYPE_LENGTH (type)))
970 return EXT_LANG_RC_NOP;
971
972 if (!gdb_scheme_initialized)
973 return EXT_LANG_RC_NOP;
974
975 cleanups = make_cleanup (null_cleanup, NULL);
976
977 /* Instantiate the printer. */
978 value = value_from_component (val, type, embedded_offset);
979
980 val_obj = vlscm_scm_from_value (value);
981 if (gdbscm_is_exception (val_obj))
982 {
983 exception = val_obj;
984 result = EXT_LANG_RC_ERROR;
985 goto done;
986 }
987
988 printer = ppscm_find_pretty_printer (val_obj);
989
990 if (gdbscm_is_exception (printer))
991 {
992 exception = printer;
993 result = EXT_LANG_RC_ERROR;
994 goto done;
995 }
996 if (gdbscm_is_false (printer))
997 {
998 result = EXT_LANG_RC_NOP;
999 goto done;
1000 }
1001 gdb_assert (ppscm_is_pretty_printer_worker (printer));
1002
1003 /* If we are printing a map, we want some special formatting. */
1004 hint = ppscm_get_display_hint_enum (printer);
1005 if (hint == HINT_ERROR)
1006 {
1007 /* Print the error as an exception for consistency. */
1008 SCM hint_scm = ppscm_get_display_hint_scm (printer);
1009
1010 ppscm_print_pp_type_error ("Invalid display hint", hint_scm);
1011 /* Fall through. A bad hint doesn't stop pretty-printing. */
1012 hint = HINT_NONE;
1013 }
1014
1015 /* Print the section. */
1016 print_result = ppscm_print_string_repr (printer, hint, stream, recurse,
1017 options, gdbarch, language);
1018 if (print_result != STRING_REPR_ERROR)
1019 {
1020 ppscm_print_children (printer, hint, stream, recurse, options,
1021 gdbarch, language,
1022 print_result == STRING_REPR_NONE);
1023 }
1024
1025 result = EXT_LANG_RC_OK;
1026
1027 done:
1028 if (gdbscm_is_exception (exception))
1029 ppscm_print_exception_unless_memory_error (exception, stream);
1030 do_cleanups (cleanups);
1031 return result;
1032 }
1033 \f
1034 /* Initialize the Scheme pretty-printer code. */
1035
1036 static const scheme_function pretty_printer_functions[] =
1037 {
1038 { "make-pretty-printer", 2, 0, 0,
1039 as_a_scm_t_subr (gdbscm_make_pretty_printer),
1040 "\
1041 Create a <gdb:pretty-printer> object.\n\
1042 \n\
1043 Arguments: name lookup\n\
1044 name: a string naming the matcher\n\
1045 lookup: a procedure:\n\
1046 (pretty-printer <gdb:value>) -> <gdb:pretty-printer-worker> | #f." },
1047
1048 { "pretty-printer?", 1, 0, 0, as_a_scm_t_subr (gdbscm_pretty_printer_p),
1049 "\
1050 Return #t if the object is a <gdb:pretty-printer> object." },
1051
1052 { "pretty-printer-enabled?", 1, 0, 0,
1053 as_a_scm_t_subr (gdbscm_pretty_printer_enabled_p),
1054 "\
1055 Return #t if the pretty-printer is enabled." },
1056
1057 { "set-pretty-printer-enabled!", 2, 0, 0,
1058 as_a_scm_t_subr (gdbscm_set_pretty_printer_enabled_x),
1059 "\
1060 Set the enabled flag of the pretty-printer.\n\
1061 Returns \"unspecified\"." },
1062
1063 { "make-pretty-printer-worker", 3, 0, 0,
1064 as_a_scm_t_subr (gdbscm_make_pretty_printer_worker),
1065 "\
1066 Create a <gdb:pretty-printer-worker> object.\n\
1067 \n\
1068 Arguments: display-hint to-string children\n\
1069 display-hint: either #f or one of \"array\", \"map\", or \"string\"\n\
1070 to-string: a procedure:\n\
1071 (pretty-printer) -> string | #f | <gdb:value>\n\
1072 children: either #f or a procedure:\n\
1073 (pretty-printer) -> <gdb:iterator>" },
1074
1075 { "pretty-printer-worker?", 1, 0, 0,
1076 as_a_scm_t_subr (gdbscm_pretty_printer_worker_p),
1077 "\
1078 Return #t if the object is a <gdb:pretty-printer-worker> object." },
1079
1080 { "pretty-printers", 0, 0, 0, as_a_scm_t_subr (gdbscm_pretty_printers),
1081 "\
1082 Return the list of global pretty-printers." },
1083
1084 { "set-pretty-printers!", 1, 0, 0,
1085 as_a_scm_t_subr (gdbscm_set_pretty_printers_x),
1086 "\
1087 Set the list of global pretty-printers." },
1088
1089 END_FUNCTIONS
1090 };
1091
1092 void
1093 gdbscm_initialize_pretty_printers (void)
1094 {
1095 pretty_printer_smob_tag
1096 = gdbscm_make_smob_type (pretty_printer_smob_name,
1097 sizeof (pretty_printer_smob));
1098 scm_set_smob_print (pretty_printer_smob_tag,
1099 ppscm_print_pretty_printer_smob);
1100
1101 pretty_printer_worker_smob_tag
1102 = gdbscm_make_smob_type (pretty_printer_worker_smob_name,
1103 sizeof (pretty_printer_worker_smob));
1104 scm_set_smob_print (pretty_printer_worker_smob_tag,
1105 ppscm_print_pretty_printer_worker_smob);
1106
1107 gdbscm_define_functions (pretty_printer_functions, 1);
1108
1109 pretty_printer_list = SCM_EOL;
1110
1111 pp_type_error_symbol = scm_from_latin1_symbol ("gdb:pp-type-error");
1112
1113 ppscm_map_string = scm_from_latin1_string ("map");
1114 ppscm_array_string = scm_from_latin1_string ("array");
1115 ppscm_string_string = scm_from_latin1_string ("string");
1116 }
This page took 0.10176 seconds and 5 git commands to generate.