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