* tags.h, deprecated.h (SCM_EQ_P): Deprecated by moving it into
[bpt/guile.git] / libguile / backtrace.c
1 /* Printing of backtraces and error messages
2 * Copyright (C) 1996,1997,1998,1999,2000,2001, 2003, 2004 Free Software Foundation
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 #if HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 #include <stdio.h>
24 #include <ctype.h>
25
26 #include "libguile/_scm.h"
27
28 #ifdef HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
31 #ifdef HAVE_IO_H
32 #include <io.h>
33 #endif
34
35 #include "libguile/stacks.h"
36 #include "libguile/srcprop.h"
37 #include "libguile/struct.h"
38 #include "libguile/strports.h"
39 #include "libguile/throw.h"
40 #include "libguile/fluids.h"
41 #include "libguile/ports.h"
42 #include "libguile/strings.h"
43 #include "libguile/dynwind.h"
44
45 #include "libguile/validate.h"
46 #include "libguile/lang.h"
47 #include "libguile/backtrace.h"
48 #include "libguile/filesys.h"
49
50 /* {Error reporting and backtraces}
51 *
52 * Note that these functions shouldn't generate errors themselves.
53 */
54
55 /* Print parameters for error messages. */
56
57 #define DISPLAY_ERROR_MESSAGE_MAX_LEVEL 7
58 #define DISPLAY_ERROR_MESSAGE_MAX_LENGTH 10
59
60 /* Print parameters for failing expressions in error messages.
61 * (See also `print_params' below for backtrace print parameters.)
62 */
63
64 #define DISPLAY_EXPRESSION_MAX_LEVEL 2
65 #define DISPLAY_EXPRESSION_MAX_LENGTH 3
66
67 #undef SCM_ASSERT
68 #define SCM_ASSERT(_cond, _arg, _pos, _subr) \
69 if (!(_cond)) \
70 return SCM_BOOL_F;
71
72 SCM scm_the_last_stack_fluid_var;
73
74 static void
75 display_header (SCM source, SCM port)
76 {
77 if (SCM_MEMOIZEDP (source))
78 {
79 SCM fname = scm_source_property (source, scm_sym_filename);
80 SCM line = scm_source_property (source, scm_sym_line);
81 SCM col = scm_source_property (source, scm_sym_column);
82
83 /* Dirk:FIXME:: Maybe we should store the _port_ rather than the
84 * filename with the source properties? Then we could in case of
85 * non-file ports give at least some more details than just
86 * "<unnamed port>". */
87 if (SCM_STRINGP (fname))
88 scm_prin1 (fname, port, 0);
89 else
90 scm_puts ("<unnamed port>", port);
91
92 if (scm_is_true (line) && scm_is_true (col))
93 {
94 scm_putc (':', port);
95 scm_intprint (scm_to_long (line) + 1, 10, port);
96 scm_putc (':', port);
97 scm_intprint (scm_to_long (col) + 1, 10, port);
98 }
99 }
100 else
101 scm_puts ("ERROR", port);
102 scm_puts (": ", port);
103 }
104
105
106 struct display_error_message_data {
107 SCM message;
108 SCM args;
109 SCM port;
110 scm_print_state *pstate;
111 int old_fancyp;
112 int old_level;
113 int old_length;
114 };
115
116 static SCM
117 display_error_message (struct display_error_message_data *d)
118 {
119 if (SCM_STRINGP (d->message) && scm_is_true (scm_list_p (d->args)))
120 scm_simple_format (d->port, d->message, d->args);
121 else
122 scm_display (d->message, d->port);
123 scm_newline (d->port);
124 return SCM_UNSPECIFIED;
125 }
126
127 static void
128 before_display_error_message (struct display_error_message_data *d)
129 {
130 scm_print_state *pstate = d->pstate;
131 d->old_fancyp = pstate->fancyp;
132 d->old_level = pstate->level;
133 d->old_length = pstate->length;
134 pstate->fancyp = 1;
135 pstate->level = DISPLAY_ERROR_MESSAGE_MAX_LEVEL;
136 pstate->length = DISPLAY_ERROR_MESSAGE_MAX_LENGTH;
137 }
138
139 static void
140 after_display_error_message (struct display_error_message_data *d)
141 {
142 scm_print_state *pstate = d->pstate;
143 pstate->fancyp = d->old_fancyp;
144 pstate->level = d->old_level;
145 pstate->length = d->old_length;
146 }
147
148 void
149 scm_display_error_message (SCM message, SCM args, SCM port)
150 {
151 struct display_error_message_data d;
152 SCM print_state;
153 scm_print_state *pstate;
154
155 port = scm_i_port_with_print_state (port, SCM_UNDEFINED);
156 print_state = SCM_PORT_WITH_PS_PS (port);
157 pstate = SCM_PRINT_STATE (print_state);
158
159 d.message = message;
160 d.args = args;
161 d.port = port;
162 d.pstate = pstate;
163 scm_internal_dynamic_wind ((scm_t_guard) before_display_error_message,
164 (scm_t_inner) display_error_message,
165 (scm_t_guard) after_display_error_message,
166 &d,
167 &d);
168 }
169
170 static void
171 display_expression (SCM frame, SCM pname, SCM source, SCM port)
172 {
173 SCM print_state = scm_make_print_state ();
174 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
175 pstate->writingp = 0;
176 pstate->fancyp = 1;
177 pstate->level = DISPLAY_EXPRESSION_MAX_LEVEL;
178 pstate->length = DISPLAY_EXPRESSION_MAX_LENGTH;
179 if (SCM_SYMBOLP (pname) || SCM_STRINGP (pname))
180 {
181 if (SCM_FRAMEP (frame)
182 && SCM_FRAME_EVAL_ARGS_P (frame))
183 scm_puts ("While evaluating arguments to ", port);
184 else
185 scm_puts ("In procedure ", port);
186 scm_iprin1 (pname, port, pstate);
187 if (SCM_MEMOIZEDP (source))
188 {
189 scm_puts (" in expression ", port);
190 pstate->writingp = 1;
191 scm_iprin1 (scm_i_unmemoize_expr (source), port, pstate);
192 }
193 }
194 else if (SCM_MEMOIZEDP (source))
195 {
196 scm_puts ("In expression ", port);
197 pstate->writingp = 1;
198 scm_iprin1 (scm_i_unmemoize_expr (source), port, pstate);
199 }
200 scm_puts (":\n", port);
201 scm_free_print_state (print_state);
202 }
203
204 struct display_error_args {
205 SCM stack;
206 SCM port;
207 SCM subr;
208 SCM message;
209 SCM args;
210 SCM rest;
211 };
212
213 static SCM
214 display_error_body (struct display_error_args *a)
215 {
216 SCM current_frame = SCM_BOOL_F;
217 SCM source = SCM_BOOL_F;
218 SCM prev_frame = SCM_BOOL_F;
219 SCM pname = a->subr;
220
221 if (scm_debug_mode_p
222 && SCM_STACKP (a->stack)
223 && SCM_STACK_LENGTH (a->stack) > 0)
224 {
225 current_frame = scm_stack_ref (a->stack, SCM_INUM0);
226 source = SCM_FRAME_SOURCE (current_frame);
227 prev_frame = SCM_FRAME_PREV (current_frame);
228 if (!SCM_MEMOIZEDP (source) && scm_is_true (prev_frame))
229 source = SCM_FRAME_SOURCE (prev_frame);
230 if (!SCM_SYMBOLP (pname) && !SCM_STRINGP (pname) && SCM_FRAME_PROC_P (current_frame)
231 && scm_is_true (scm_procedure_p (SCM_FRAME_PROC (current_frame))))
232 pname = scm_procedure_name (SCM_FRAME_PROC (current_frame));
233 }
234 if (SCM_SYMBOLP (pname) || SCM_STRINGP (pname) || SCM_MEMOIZEDP (source))
235 {
236 display_header (source, a->port);
237 display_expression (current_frame, pname, source, a->port);
238 }
239 display_header (source, a->port);
240 scm_display_error_message (a->message, a->args, a->port);
241 return SCM_UNSPECIFIED;
242 }
243
244 struct display_error_handler_data {
245 char *mode;
246 SCM port;
247 };
248
249 /* This is the exception handler for error reporting routines.
250 Note that it is very important that this handler *doesn't* try to
251 print more than the error tag, since the error very probably is
252 caused by an erroneous print call-back routine. If we would
253 try to print all objects, we would enter an infinite loop. */
254 static SCM
255 display_error_handler (struct display_error_handler_data *data,
256 SCM tag, SCM args SCM_UNUSED)
257 {
258 SCM print_state = scm_make_print_state ();
259 scm_puts ("\nException during displaying of ", data->port);
260 scm_puts (data->mode, data->port);
261 scm_puts (": ", data->port);
262 scm_iprin1 (tag, data->port, SCM_PRINT_STATE (print_state));
263 scm_putc ('\n', data->port);
264 return SCM_UNSPECIFIED;
265 }
266
267
268 /* The function scm_i_display_error prints out a detailed error message. This
269 * function will be called directly within libguile to signal error messages.
270 * No parameter checks will be performed by scm_i_display_error. Thus, User
271 * code should rather use the function scm_display_error.
272 */
273 void
274 scm_i_display_error (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest)
275 {
276 struct display_error_args a;
277 struct display_error_handler_data data;
278 a.stack = stack;
279 a.port = port;
280 a.subr = subr;
281 a.message = message;
282 a.args = args;
283 a.rest = rest;
284 data.mode = "error";
285 data.port = port;
286 scm_internal_catch (SCM_BOOL_T,
287 (scm_t_catch_body) display_error_body, &a,
288 (scm_t_catch_handler) display_error_handler, &data);
289 }
290
291
292 SCM_DEFINE (scm_display_error, "display-error", 6, 0, 0,
293 (SCM stack, SCM port, SCM subr, SCM message, SCM args, SCM rest),
294 "Display an error message to the output port @var{port}.\n"
295 "@var{stack} is the saved stack for the error, @var{subr} is\n"
296 "the name of the procedure in which the error occurred and\n"
297 "@var{message} is the actual error message, which may contain\n"
298 "formatting instructions. These will format the arguments in\n"
299 "the list @var{args} accordingly. @var{rest} is currently\n"
300 "ignored.")
301 #define FUNC_NAME s_scm_display_error
302 {
303 SCM_VALIDATE_OUTPUT_PORT (2, port);
304
305 scm_i_display_error (stack, port, subr, message, args, rest);
306
307 return SCM_UNSPECIFIED;
308 }
309 #undef FUNC_NAME
310
311
312 typedef struct {
313 int level;
314 int length;
315 } print_params_t;
316
317 static int n_print_params = 9;
318 static print_params_t default_print_params[] = {
319 { 4, 9 }, { 4, 3 },
320 { 3, 4 }, { 3, 3 },
321 { 2, 4 }, { 2, 3 },
322 { 1, 4 }, { 1, 3 }, { 1, 2 }
323 };
324 static print_params_t *print_params = default_print_params;
325
326 #ifdef GUILE_DEBUG
327 SCM_DEFINE (scm_set_print_params_x, "set-print-params!", 1, 0, 0,
328 (SCM params),
329 "Set the print parameters to the values from @var{params}.\n"
330 "@var{params} must be a list of two-element lists which must\n"
331 "hold two integer values.")
332 #define FUNC_NAME s_scm_set_print_params_x
333 {
334 int i;
335 int n;
336 SCM ls;
337 print_params_t *new_params;
338
339 SCM_VALIDATE_NONEMPTYLIST_COPYLEN (2, params, n);
340 for (ls = params; !SCM_NULL_OR_NIL_P (ls); ls = SCM_CDR (ls))
341 SCM_ASSERT (scm_ilength (SCM_CAR (params)) == 2
342 && scm_is_unsigned_integer (SCM_CAAR (ls), 0, INT_MAX)
343 && scm_is_unsigned_integer (SCM_CADAR (ls), 0, INT_MAX),
344 params,
345 SCM_ARG2,
346 s_scm_set_print_params_x);
347 new_params = scm_malloc (n * sizeof (print_params_t));
348 if (print_params != default_print_params)
349 free (print_params);
350 print_params = new_params;
351 for (i = 0; i < n; ++i)
352 {
353 print_params[i].level = scm_to_int (SCM_CAAR (params));
354 print_params[i].length = scm_to_int (SCM_CADAR (params));
355 params = SCM_CDR (params);
356 }
357 n_print_params = n;
358 return SCM_UNSPECIFIED;
359 }
360 #undef FUNC_NAME
361 #endif
362
363 static void
364 indent (int n, SCM port)
365 {
366 int i;
367 for (i = 0; i < n; ++i)
368 scm_putc (' ', port);
369 }
370
371 static void
372 display_frame_expr (char *hdr, SCM exp, char *tlr, int indentation, SCM sport, SCM port, scm_print_state *pstate)
373 {
374 SCM string;
375 int i = 0, n;
376 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (sport);
377 do
378 {
379 pstate->length = print_params[i].length;
380 ptob->seek (sport, 0, SEEK_SET);
381 if (SCM_CONSP (exp))
382 {
383 pstate->level = print_params[i].level - 1;
384 scm_iprlist (hdr, exp, tlr[0], sport, pstate);
385 scm_puts (&tlr[1], sport);
386 }
387 else
388 {
389 pstate->level = print_params[i].level;
390 scm_iprin1 (exp, sport, pstate);
391 }
392 ptob->flush (sport);
393 n = ptob->seek (sport, 0, SEEK_CUR);
394 ++i;
395 }
396 while (indentation + n > SCM_BACKTRACE_WIDTH && i < n_print_params);
397 ptob->truncate (sport, n);
398 string = scm_strport_to_string (sport);
399 /* Remove control characters */
400 for (i = 0; i < n; ++i)
401 if (iscntrl ((int) (unsigned char) SCM_STRING_CHARS (string)[i]))
402 SCM_STRING_CHARS (string)[i] = ' ';
403 /* Truncate */
404 if (indentation + n > SCM_BACKTRACE_WIDTH)
405 {
406 n = SCM_BACKTRACE_WIDTH - indentation;
407 SCM_STRING_CHARS (string)[n - 1] = '$';
408 }
409
410 scm_lfwrite (SCM_STRING_CHARS (string), n, port);
411 }
412
413 static void
414 display_application (SCM frame, int indentation, SCM sport, SCM port, scm_print_state *pstate)
415 {
416 SCM proc = SCM_FRAME_PROC (frame);
417 SCM name = (scm_is_true (scm_procedure_p (proc))
418 ? scm_procedure_name (proc)
419 : SCM_BOOL_F);
420 display_frame_expr ("[",
421 scm_cons (scm_is_true (name) ? name : proc,
422 SCM_FRAME_ARGS (frame)),
423 SCM_FRAME_EVAL_ARGS_P (frame) ? " ..." : "]",
424 indentation,
425 sport,
426 port,
427 pstate);
428 }
429
430 SCM_DEFINE (scm_display_application, "display-application", 1, 2, 0,
431 (SCM frame, SCM port, SCM indent),
432 "Display a procedure application @var{frame} to the output port\n"
433 "@var{port}. @var{indent} specifies the indentation of the\n"
434 "output.")
435 #define FUNC_NAME s_scm_display_application
436 {
437 SCM_VALIDATE_FRAME (1, frame);
438 if (SCM_UNBNDP (port))
439 port = scm_cur_outp;
440 else
441 SCM_VALIDATE_OPOUTPORT (2, port);
442 if (SCM_UNBNDP (indent))
443 indent = SCM_INUM0;
444
445 if (SCM_FRAME_PROC_P (frame))
446 /* Display an application. */
447 {
448 SCM sport, print_state;
449 scm_print_state *pstate;
450
451 /* Create a string port used for adaptation of printing parameters. */
452 sport = scm_mkstrport (SCM_INUM0,
453 scm_make_string (scm_from_int (240),
454 SCM_UNDEFINED),
455 SCM_OPN | SCM_WRTNG,
456 FUNC_NAME);
457
458 /* Create a print state for printing of frames. */
459 print_state = scm_make_print_state ();
460 pstate = SCM_PRINT_STATE (print_state);
461 pstate->writingp = 1;
462 pstate->fancyp = 1;
463
464 display_application (frame, scm_to_int (indent), sport, port, pstate);
465 return SCM_BOOL_T;
466 }
467 else
468 return SCM_BOOL_F;
469 }
470 #undef FUNC_NAME
471
472 SCM_SYMBOL (sym_base, "base");
473
474 static void
475 display_backtrace_get_file_line (SCM frame, SCM *file, SCM *line)
476 {
477 SCM source = SCM_FRAME_SOURCE (frame);
478 *file = SCM_MEMOIZEDP (source) ? scm_source_property (source, scm_sym_filename) : SCM_BOOL_F;
479 *line = (SCM_MEMOIZEDP (source)) ? scm_source_property (source, scm_sym_line) : SCM_BOOL_F;
480 }
481
482 static void
483 display_backtrace_file (frame, last_file, port, pstate)
484 SCM frame;
485 SCM *last_file;
486 SCM port;
487 scm_print_state *pstate;
488 {
489 SCM file, line;
490
491 display_backtrace_get_file_line (frame, &file, &line);
492
493 if (scm_is_eq (file, *last_file))
494 return;
495
496 *last_file = file;
497
498 scm_puts ("In ", port);
499 if (scm_is_false (file))
500 if (scm_is_false (line))
501 scm_puts ("unknown file", port);
502 else
503 scm_puts ("current input", port);
504 else
505 {
506 pstate->writingp = 0;
507 scm_iprin1 (file, port, pstate);
508 pstate->writingp = 1;
509 }
510 scm_puts (":\n", port);
511 }
512
513 static void
514 display_backtrace_file_and_line (SCM frame, SCM port, scm_print_state *pstate)
515 {
516 SCM file, line;
517
518 display_backtrace_get_file_line (frame, &file, &line);
519
520 if (scm_is_eq (SCM_PACK (SCM_SHOW_FILE_NAME), sym_base))
521 {
522 if (scm_is_false (file))
523 {
524 if (scm_is_false (line))
525 scm_putc ('?', port);
526 else
527 scm_puts ("<stdin>", port);
528 }
529 else
530 {
531 pstate -> writingp = 0;
532 #ifdef HAVE_POSIX
533 scm_iprin1 (SCM_STRINGP (file) ? scm_basename (file, SCM_UNDEFINED) : file,
534 port, pstate);
535 #else
536 scm_iprin1 (file, port, pstate);
537 #endif
538 pstate -> writingp = 1;
539 }
540
541 scm_putc (':', port);
542 }
543 else if (scm_is_true (line))
544 {
545 int i, j=0;
546 for (i = scm_to_int (line)+1; i > 0; i = i/10, j++)
547 ;
548 indent (4-j, port);
549 }
550
551 if (scm_is_false (line))
552 scm_puts (" ?", port);
553 else
554 scm_intprint (scm_to_int (line) + 1, 10, port);
555 scm_puts (": ", port);
556 }
557
558 static void
559 display_frame (SCM frame, int nfield, int indentation, SCM sport, SCM port, scm_print_state *pstate)
560 {
561 int n, i, j;
562
563 /* Announce missing frames? */
564 if (!SCM_BACKWARDS_P && SCM_FRAME_OVERFLOW_P (frame))
565 {
566 indent (nfield + 1 + indentation, port);
567 scm_puts ("...\n", port);
568 }
569
570 /* display file name and line number */
571 if (scm_is_true (SCM_PACK (SCM_SHOW_FILE_NAME)))
572 display_backtrace_file_and_line (frame, port, pstate);
573
574 /* Check size of frame number. */
575 n = SCM_FRAME_NUMBER (frame);
576 for (i = 0, j = n; j > 0; ++i) j /= 10;
577
578 /* Number indentation. */
579 indent (nfield - (i ? i : 1), port);
580
581 /* Frame number. */
582 scm_iprin1 (scm_from_int (n), port, pstate);
583
584 /* Real frame marker */
585 scm_putc (SCM_FRAME_REAL_P (frame) ? '*' : ' ', port);
586
587 /* Indentation. */
588 indent (indentation, port);
589
590 if (SCM_FRAME_PROC_P (frame))
591 /* Display an application. */
592 display_application (frame, nfield + 1 + indentation, sport, port, pstate);
593 else
594 /* Display a special form. */
595 {
596 SCM source = SCM_FRAME_SOURCE (frame);
597 SCM copy = (SCM_CONSP (source)
598 ? scm_source_property (source, scm_sym_copy)
599 : SCM_BOOL_F);
600 SCM umcopy = (SCM_MEMOIZEDP (source)
601 ? scm_i_unmemoize_expr (source)
602 : SCM_BOOL_F);
603 display_frame_expr ("(",
604 SCM_CONSP (copy) ? copy : umcopy,
605 ")",
606 nfield + 1 + indentation,
607 sport,
608 port,
609 pstate);
610 }
611 scm_putc ('\n', port);
612
613 /* Announce missing frames? */
614 if (SCM_BACKWARDS_P && SCM_FRAME_OVERFLOW_P (frame))
615 {
616 indent (nfield + 1 + indentation, port);
617 scm_puts ("...\n", port);
618 }
619 }
620
621 struct display_backtrace_args {
622 SCM stack;
623 SCM port;
624 SCM first;
625 SCM depth;
626 };
627
628 static SCM
629 display_backtrace_body (struct display_backtrace_args *a)
630 #define FUNC_NAME "display_backtrace_body"
631 {
632 int n_frames, beg, end, n, i, j;
633 int nfield, indent_p, indentation;
634 SCM frame, sport, print_state;
635 SCM last_file;
636 scm_print_state *pstate;
637
638 a->port = SCM_COERCE_OUTPORT (a->port);
639
640 /* Argument checking and extraction. */
641 SCM_VALIDATE_STACK (1, a->stack);
642 SCM_VALIDATE_OPOUTPORT (2, a->port);
643 n_frames = scm_to_int (scm_stack_length (a->stack));
644 n = scm_is_integer (a->depth) ? scm_to_int (a->depth) : SCM_BACKTRACE_DEPTH;
645 if (SCM_BACKWARDS_P)
646 {
647 beg = scm_is_integer (a->first) ? scm_to_int (a->first) : 0;
648 end = beg + n - 1;
649 if (end >= n_frames)
650 end = n_frames - 1;
651 n = end - beg + 1;
652 }
653 else
654 {
655 if (scm_is_integer (a->first))
656 {
657 beg = scm_to_int (a->first);
658 end = beg - n + 1;
659 if (end < 0)
660 end = 0;
661 }
662 else
663 {
664 beg = n - 1;
665 end = 0;
666 if (beg >= n_frames)
667 beg = n_frames - 1;
668 }
669 n = beg - end + 1;
670 }
671 SCM_ASSERT (beg >= 0 && beg < n_frames, a->first, SCM_ARG3, s_display_backtrace);
672 SCM_ASSERT (n > 0, a->depth, SCM_ARG4, s_display_backtrace);
673
674 /* Create a string port used for adaptation of printing parameters. */
675 sport = scm_mkstrport (SCM_INUM0,
676 scm_make_string (scm_from_int (240), SCM_UNDEFINED),
677 SCM_OPN | SCM_WRTNG,
678 FUNC_NAME);
679
680 /* Create a print state for printing of frames. */
681 print_state = scm_make_print_state ();
682 pstate = SCM_PRINT_STATE (print_state);
683 pstate->writingp = 1;
684 pstate->fancyp = 1;
685
686 /* First find out if it's reasonable to do indentation. */
687 if (SCM_BACKWARDS_P)
688 indent_p = 0;
689 else
690 {
691 unsigned int j;
692
693 indent_p = 1;
694 frame = scm_stack_ref (a->stack, scm_from_int (beg));
695 for (i = 0, j = 0; i < n; ++i)
696 {
697 if (SCM_FRAME_REAL_P (frame))
698 ++j;
699 if (j > SCM_BACKTRACE_INDENT)
700 {
701 indent_p = 0;
702 break;
703 }
704 frame = (SCM_BACKWARDS_P
705 ? SCM_FRAME_PREV (frame)
706 : SCM_FRAME_NEXT (frame));
707 }
708 }
709
710 /* Determine size of frame number field. */
711 j = SCM_FRAME_NUMBER (scm_stack_ref (a->stack, scm_from_int (end)));
712 for (i = 0; j > 0; ++i) j /= 10;
713 nfield = i ? i : 1;
714
715 /* Print frames. */
716 frame = scm_stack_ref (a->stack, scm_from_int (beg));
717 indentation = 1;
718 last_file = SCM_UNDEFINED;
719 for (i = 0; i < n; ++i)
720 {
721 if (!scm_is_eq (SCM_PACK (SCM_SHOW_FILE_NAME), sym_base))
722 display_backtrace_file (frame, &last_file, a->port, pstate);
723
724 display_frame (frame, nfield, indentation, sport, a->port, pstate);
725 if (indent_p && SCM_FRAME_EVAL_ARGS_P (frame))
726 ++indentation;
727 frame = (SCM_BACKWARDS_P ?
728 SCM_FRAME_PREV (frame) : SCM_FRAME_NEXT (frame));
729 }
730
731 scm_remember_upto_here_1 (print_state);
732
733 return SCM_UNSPECIFIED;
734 }
735 #undef FUNC_NAME
736
737 SCM_DEFINE (scm_display_backtrace, "display-backtrace", 2, 2, 0,
738 (SCM stack, SCM port, SCM first, SCM depth),
739 "Display a backtrace to the output port @var{port}. @var{stack}\n"
740 "is the stack to take the backtrace from, @var{first} specifies\n"
741 "where in the stack to start and @var{depth} how much frames\n"
742 "to display. Both @var{first} and @var{depth} can be @code{#f},\n"
743 "which means that default values will be used.")
744 #define FUNC_NAME s_scm_display_backtrace
745 {
746 struct display_backtrace_args a;
747 struct display_error_handler_data data;
748 a.stack = stack;
749 a.port = port;
750 a.first = first;
751 a.depth = depth;
752 data.mode = "backtrace";
753 data.port = port;
754 scm_internal_catch (SCM_BOOL_T,
755 (scm_t_catch_body) display_backtrace_body, &a,
756 (scm_t_catch_handler) display_error_handler, &data);
757 return SCM_UNSPECIFIED;
758 }
759 #undef FUNC_NAME
760
761 SCM_VARIABLE (scm_has_shown_backtrace_hint_p_var, "has-shown-backtrace-hint?");
762
763 SCM_DEFINE (scm_backtrace, "backtrace", 0, 0, 0,
764 (),
765 "Display a backtrace of the stack saved by the last error\n"
766 "to the current output port.")
767 #define FUNC_NAME s_scm_backtrace
768 {
769 SCM the_last_stack =
770 scm_fluid_ref (SCM_VARIABLE_REF (scm_the_last_stack_fluid_var));
771 if (scm_is_true (the_last_stack))
772 {
773 scm_newline (scm_cur_outp);
774 scm_puts ("Backtrace:\n", scm_cur_outp);
775 scm_display_backtrace (the_last_stack,
776 scm_cur_outp,
777 SCM_UNDEFINED,
778 SCM_UNDEFINED);
779 scm_newline (scm_cur_outp);
780 if (scm_is_false (SCM_VARIABLE_REF (scm_has_shown_backtrace_hint_p_var))
781 && !SCM_BACKTRACE_P)
782 {
783 scm_puts ("Type \"(debug-enable 'backtrace)\" if you would like "
784 "a backtrace\n"
785 "automatically if an error occurs in the future.\n",
786 scm_cur_outp);
787 SCM_VARIABLE_SET (scm_has_shown_backtrace_hint_p_var, SCM_BOOL_T);
788 }
789 }
790 else
791 {
792 scm_puts ("No backtrace available.\n", scm_cur_outp);
793 }
794 return SCM_UNSPECIFIED;
795 }
796 #undef FUNC_NAME
797
798 \f
799
800 void
801 scm_init_backtrace ()
802 {
803 SCM f = scm_make_fluid ();
804 scm_the_last_stack_fluid_var = scm_c_define ("the-last-stack", f);
805
806 #include "libguile/backtrace.x"
807 }
808
809 /*
810 Local Variables:
811 c-file-style: "gnu"
812 End:
813 */