*** empty log message ***
[bpt/guile.git] / libguile / print.c
CommitLineData
f76af603 1/* Copyright (C) 1995-1999,2000,2001, 2002 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84 41
1bbd0b84 42
0f2d19dd
JB
43\f
44
e6e2e95a
MD
45#include <errno.h>
46
a0599745
MD
47#include "libguile/_scm.h"
48#include "libguile/chars.h"
a002f1a2 49#include "libguile/continuations.h"
a0599745
MD
50#include "libguile/smob.h"
51#include "libguile/eval.h"
52#include "libguile/macros.h"
53#include "libguile/procprop.h"
54#include "libguile/read.h"
55#include "libguile/weaks.h"
56#include "libguile/unif.h"
57#include "libguile/alist.h"
58#include "libguile/struct.h"
59#include "libguile/objects.h"
60#include "libguile/ports.h"
61#include "libguile/root.h"
62#include "libguile/strings.h"
63#include "libguile/strports.h"
64#include "libguile/vectors.h"
c96d76b8 65#include "libguile/lang.h"
a0599745
MD
66
67#include "libguile/validate.h"
68#include "libguile/print.h"
0f2d19dd
JB
69\f
70
71/* {Names of immediate symbols}
72 *
73 * This table must agree with the declarations in scm.h: {Immediate Symbols}.
74 */
75
76char *scm_isymnames[] =
77{
c96d76b8 78 /* This table must agree with the list of SCM_IM_ constants in tags.h */
0f2d19dd
JB
79 "#@and",
80 "#@begin",
81 "#@case",
82 "#@cond",
83 "#@do",
84 "#@if",
85 "#@lambda",
86 "#@let",
87 "#@let*",
88 "#@letrec",
89 "#@or",
90 "#@quote",
91 "#@set!",
92 "#@define",
93#if 0
94 "#@literal-variable-ref",
95 "#@literal-variable-set!",
96#endif
97 "#@apply",
98 "#@call-with-current-continuation",
99
100 /* user visible ISYMS */
101 /* other keywords */
102 /* Flags */
103
104 "#f",
105 "#t",
106 "#<undefined>",
107 "#<eof>",
108 "()",
4df91bd6
MD
109 "#<unspecified>",
110 "#@dispatch",
43c667e9
MD
111 "#@slot-ref",
112 "#@slot-set!",
159500fb 113
159500fb
MD
114 /* Multi-language support */
115
116 "#@nil-cond",
ccd0e478
MD
117 "#@bind",
118
5623a9b4 119 "#@delay",
28d52ebb 120 "#@future",
24d1fde8
MV
121 "#@call-with-values",
122
c96d76b8
NJ
123 "#<unbound>",
124
125 /* Elisp nil value. This is its Scheme name; whenever it's printed
126 in Elisp, it should appear as the symbol `nil'. */
127
128 "#nil"
0f2d19dd
JB
129};
130
92c2555f 131scm_t_option scm_print_opts[] = {
726d810a
DH
132 { SCM_OPTION_SCM, "closure-hook", SCM_UNPACK (SCM_BOOL_F),
133 "Hook for printing closures (should handle macros as well)." },
84f6a34a
MD
134 { SCM_OPTION_BOOLEAN, "source", 0,
135 "Print closures with source." }
e6e4c9af
MD
136};
137
a1ec6916 138SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0,
1bbd0b84 139 (SCM setting),
71331188 140 "Option interface for the print options. Instead of using\n"
1dd05fd8
MG
141 "this procedure directly, use the procedures\n"
142 "@code{print-enable}, @code{print-disable}, @code{print-set!}\n"
143 "and @code{print-options}.")
1bbd0b84 144#define FUNC_NAME s_scm_print_options
e6e4c9af 145{
a51ea417 146 SCM ans = scm_options (setting,
b7ff98dd
MD
147 scm_print_opts,
148 SCM_N_PRINT_OPTIONS,
1bbd0b84 149 FUNC_NAME);
e6e4c9af
MD
150 return ans;
151}
1bbd0b84 152#undef FUNC_NAME
e6e4c9af 153
0f2d19dd
JB
154\f
155/* {Printing of Scheme Objects}
156 */
157
a51ea417 158/* Detection of circular references.
c62fbfe1
MD
159 *
160 * Due to other constraints in the implementation, this code has bad
5d46ebe3
MD
161 * time complexity (O (depth * N)), The printer code can be
162 * rewritten to be O(N).
a51ea417 163 */
c62fbfe1 164#define PUSH_REF(pstate, obj) \
1bbd0b84 165do { \
c62fbfe1
MD
166 pstate->ref_stack[pstate->top++] = (obj); \
167 if (pstate->top == pstate->ceiling) \
168 grow_ref_stack (pstate); \
1bbd0b84 169} while(0)
a51ea417 170
c62fbfe1 171#define ENTER_NESTED_DATA(pstate, obj, label) \
1bbd0b84 172do { \
5ca6dc39 173 register unsigned long i; \
c62fbfe1 174 for (i = 0; i < pstate->top; ++i) \
230d095f 175 if (SCM_EQ_P (pstate->ref_stack[i], (obj))) \
c62fbfe1
MD
176 goto label; \
177 if (pstate->fancyp) \
178 { \
179 if (pstate->top - pstate->list_offset >= pstate->level) \
180 { \
b7f3516f 181 scm_putc ('#', port); \
c62fbfe1
MD
182 return; \
183 } \
184 } \
185 PUSH_REF(pstate, obj); \
1bbd0b84 186} while(0)
a51ea417 187
c62fbfe1
MD
188#define EXIT_NESTED_DATA(pstate) { --pstate->top; }
189
d5cf5324
DH
190SCM scm_print_state_vtable = SCM_BOOL_F;
191static SCM print_state_pool = SCM_EOL;
c4f37e80 192
f843a84c 193#ifdef GUILE_DEBUG /* Used for debugging purposes */
1cc91f1b 194
3b3b36dd 195SCM_DEFINE (scm_current_pstate, "current-pstate", 0, 0, 0,
1bbd0b84 196 (),
d5cf5324 197 "Return the current-pstate -- the car of the\n"
5352393c
MG
198 "@code{print_state_pool}. @code{current-pstate} is only\n"
199 "included in @code{--enable-guile-debug} builds.")
1bbd0b84 200#define FUNC_NAME s_scm_current_pstate
c62fbfe1 201{
d5cf5324
DH
202 if (!SCM_NULLP (print_state_pool))
203 return SCM_CAR (print_state_pool);
a0adfbf0 204 else
0a284a4e 205 return SCM_BOOL_F;
c62fbfe1 206}
1bbd0b84
GB
207#undef FUNC_NAME
208
c62fbfe1
MD
209#endif
210
211#define PSTATE_SIZE 50L
212
698c0295 213static SCM
1bbd0b84 214make_print_state (void)
698c0295 215{
d5cf5324
DH
216 SCM print_state
217 = scm_make_struct (scm_print_state_vtable, SCM_INUM0, SCM_EOL);
bf685b6d 218 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
00ffa0e7 219 pstate->ref_vect = scm_c_make_vector (PSTATE_SIZE, SCM_UNDEFINED);
34d19ef6 220 pstate->ref_stack = SCM_WRITABLE_VELTS (pstate->ref_vect);
b17004b8 221 pstate->ceiling = SCM_VECTOR_LENGTH (pstate->ref_vect);
698c0295
MD
222 return print_state;
223}
1cc91f1b 224
c62fbfe1
MD
225SCM
226scm_make_print_state ()
c62fbfe1 227{
230d095f 228 SCM answer = SCM_BOOL_F;
698c0295
MD
229
230 /* First try to allocate a print state from the pool */
231 SCM_DEFER_INTS;
d5cf5324 232 if (!SCM_NULLP (print_state_pool))
698c0295 233 {
d5cf5324
DH
234 answer = SCM_CAR (print_state_pool);
235 print_state_pool = SCM_CDR (print_state_pool);
698c0295
MD
236 }
237 SCM_ALLOW_INTS;
238
230d095f 239 return SCM_FALSEP (answer) ? make_print_state () : answer;
c62fbfe1 240}
a51ea417 241
698c0295 242void
6e8d25a6 243scm_free_print_state (SCM print_state)
698c0295
MD
244{
245 SCM handle;
246 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
247 /* Cleanup before returning print state to pool.
248 * It is better to do it here. Doing it in scm_prin1
249 * would cost more since that function is called much more
250 * often.
251 */
252 pstate->fancyp = 0;
bb35f315 253 pstate->revealed = 0;
698c0295 254 SCM_DEFER_INTS;
16d4699b 255 handle = scm_cons (print_state, print_state_pool);
d5cf5324 256 print_state_pool = handle;
698c0295
MD
257 SCM_ALLOW_INTS;
258}
1cc91f1b 259
a51ea417 260static void
1bbd0b84 261grow_ref_stack (scm_print_state *pstate)
a51ea417 262{
b17004b8 263 unsigned long int old_size = SCM_VECTOR_LENGTH (pstate->ref_vect);
34d19ef6 264 SCM const *old_elts = SCM_VELTS (pstate->ref_vect);
b17004b8 265 unsigned long int new_size = 2 * pstate->ceiling;
00ffa0e7 266 SCM new_vect = scm_c_make_vector (new_size, SCM_UNDEFINED);
b17004b8
DH
267 unsigned long int i;
268
269 for (i = 0; i != old_size; ++i)
34d19ef6 270 SCM_VECTOR_SET (new_vect, i, old_elts [i]);
b17004b8
DH
271
272 pstate->ref_vect = new_vect;
34d19ef6 273 pstate->ref_stack = SCM_WRITABLE_VELTS(new_vect);
bf685b6d 274 pstate->ceiling = new_size;
a51ea417
MD
275}
276
1cc91f1b 277
a51ea417 278static void
34d19ef6 279print_circref (SCM port, scm_print_state *pstate, SCM ref)
a51ea417 280{
c014a02e
ML
281 register long i;
282 long self = pstate->top - 1;
c62fbfe1
MD
283 i = pstate->top - 1;
284 if (SCM_CONSP (pstate->ref_stack[i]))
285 {
286 while (i > 0)
287 {
d5cf5324 288 if (!SCM_CONSP (pstate->ref_stack[i - 1])
230d095f
DH
289 || !SCM_EQ_P (SCM_CDR (pstate->ref_stack[i - 1]),
290 pstate->ref_stack[i]))
c62fbfe1
MD
291 break;
292 --i;
293 }
294 self = i;
295 }
296 for (i = pstate->top - 1; 1; --i)
230d095f 297 if (SCM_EQ_P (pstate->ref_stack[i], ref))
c62fbfe1 298 break;
b7f3516f 299 scm_putc ('#', port);
c62fbfe1 300 scm_intprint (i - self, 10, port);
b7f3516f 301 scm_putc ('#', port);
a51ea417
MD
302}
303
6662998f
MV
304/* Print the name of a symbol. */
305
306void
307scm_print_symbol_name (const char *str, size_t len, SCM port)
308{
309 size_t pos;
310 size_t end;
311 int weird;
312 int maybe_weird;
313 size_t mw_pos = 0;
314
315 pos = 0;
316 weird = 0;
317 maybe_weird = 0;
318
319 /* XXX - Lots of weird symbol names are missed, such as "12" or
320 "'a". */
321
322 if (len == 0)
323 scm_lfwrite ("#{}#", 4, port);
324 else if (str[0] == '#' || str[0] == ':' || str[len-1] == ':')
325 {
326 scm_lfwrite ("#{", 2, port);
327 weird = 1;
328 }
329
330 for (end = pos; end < len; ++end)
331 switch (str[end])
332 {
333#ifdef BRACKETS_AS_PARENS
334 case '[':
335 case ']':
336#endif
337 case '(':
338 case ')':
339 case '"':
340 case ';':
341 case SCM_WHITE_SPACES:
342 case SCM_LINE_INCREMENTORS:
343 weird_handler:
344 if (maybe_weird)
345 {
346 end = mw_pos;
347 maybe_weird = 0;
348 }
349 if (!weird)
350 {
351 scm_lfwrite ("#{", 2, port);
352 weird = 1;
353 }
354 if (pos < end)
355 {
356 scm_lfwrite (str + pos, end - pos, port);
357 }
358 {
359 char buf[2];
360 buf[0] = '\\';
361 buf[1] = str[end];
362 scm_lfwrite (buf, 2, port);
363 }
364 pos = end + 1;
365 break;
366 case '\\':
367 if (weird)
368 goto weird_handler;
369 if (!maybe_weird)
370 {
371 maybe_weird = 1;
372 mw_pos = pos;
373 }
374 break;
375 case '}':
376 case '#':
377 if (weird)
378 goto weird_handler;
379 break;
380 default:
381 break;
382 }
383 if (pos < end)
384 scm_lfwrite (str + pos, end - pos, port);
385 if (weird)
386 scm_lfwrite ("}#", 2, port);
387}
388
c62fbfe1 389/* Print generally. Handles both write and display according to PSTATE.
0f2d19dd 390 */
8b840115
MD
391SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write);
392SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display);
1cc91f1b 393
0f2d19dd 394void
1bbd0b84 395scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 396{
54778cd3 397 switch (SCM_ITAG3 (exp))
0f2d19dd 398 {
e34f941a
DH
399 case scm_tc3_closure:
400 case scm_tc3_tc7_1:
401 case scm_tc3_tc7_2:
402 /* These tc3 tags should never occur in an immediate value. They are
403 * only used in cell types of non-immediates, i. e. the value returned
404 * by SCM_CELL_TYPE (exp) can use these tags.
405 */
406 scm_ipruk ("immediate", exp, port);
407 break;
408 case scm_tc3_int_1:
409 case scm_tc3_int_2:
0f2d19dd
JB
410 scm_intprint (SCM_INUM (exp), 10, port);
411 break;
e34f941a 412 case scm_tc3_imm24:
7866a09b 413 if (SCM_CHARP (exp))
0f2d19dd 414 {
e34f941a 415 long i = SCM_CHAR (exp);
5ca6dc39 416
b7f3516f
TT
417 if (SCM_WRITINGP (pstate))
418 {
419 scm_puts ("#\\", port);
420 if ((i >= 0) && (i <= ' ') && scm_charnames[i])
421 scm_puts (scm_charnames[i], port);
57b74422
GH
422#ifndef EBCDIC
423 else if (i == '\177')
424 scm_puts (scm_charnames[scm_n_charnames - 1], port);
425#endif
b7f3516f
TT
426 else if (i < 0 || i > '\177')
427 scm_intprint (i, 8, port);
428 else
429 scm_putc (i, port);
430 }
431 else
432 scm_putc (i, port);
0f2d19dd 433 }
a51ea417 434 else if (SCM_IFLAGP (exp)
5ca6dc39 435 && ((size_t) SCM_ISYMNUM (exp) < (sizeof scm_isymnames / sizeof (char *))))
b7f3516f 436 scm_puts (SCM_ISYMCHARS (exp), port);
0f2d19dd
JB
437 else if (SCM_ILOCP (exp))
438 {
b7f3516f 439 scm_puts ("#@", port);
1be6b49c 440 scm_intprint ((long) SCM_IFRAME (exp), 10, port);
b7f3516f 441 scm_putc (SCM_ICDRP (exp) ? '-' : '+', port);
1be6b49c 442 scm_intprint ((long) SCM_IDIST (exp), 10, port);
0f2d19dd
JB
443 }
444 else
e34f941a
DH
445 {
446 /* unknown immediate value */
447 scm_ipruk ("immediate", exp, port);
448 }
0f2d19dd 449 break;
e34f941a 450 case scm_tc3_cons:
0f2d19dd
JB
451 switch (SCM_TYP7 (exp))
452 {
904a077d
MV
453 case scm_tcs_struct:
454 {
455 ENTER_NESTED_DATA (pstate, exp, circref);
456 if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
457 {
458 SCM pwps, print = pstate->writingp ? g_write : g_display;
459 if (!print)
460 goto print_struct;
461 SCM_NEWSMOB (pwps,
462 scm_tc16_port_with_ps,
463 SCM_UNPACK (scm_cons (port, pstate->handle)));
7663c008 464 pstate->revealed = 1;
904a077d
MV
465 scm_call_generic_2 (print, exp, pwps);
466 }
467 else
468 {
469 print_struct:
470 scm_print_struct (exp, port, pstate);
471 }
472 EXIT_NESTED_DATA (pstate);
473 }
474 break;
0f2d19dd
JB
475 case scm_tcs_cons_imcar:
476 case scm_tcs_cons_nimcar:
c62fbfe1
MD
477 ENTER_NESTED_DATA (pstate, exp, circref);
478 scm_iprlist ("(", exp, ')', port, pstate);
479 EXIT_NESTED_DATA (pstate);
a51ea417
MD
480 break;
481 circref:
c62fbfe1 482 print_circref (port, pstate, exp);
0f2d19dd
JB
483 break;
484 case scm_tcs_closures:
bb35f315
MV
485 if (SCM_FALSEP (scm_procedure_p (SCM_PRINT_CLOSURE))
486 || SCM_FALSEP (scm_printer_apply (SCM_PRINT_CLOSURE,
77c25af7 487 exp, port, pstate)))
726d810a
DH
488 {
489 SCM formals = SCM_CLOSURE_FORMALS (exp);
490 scm_puts ("#<procedure", port);
491 scm_putc (' ', port);
492 scm_iprin1 (scm_procedure_name (exp), port, pstate);
493 scm_putc (' ', port);
494 if (SCM_PRINT_SOURCE_P)
495 {
496 SCM env = SCM_ENV (exp);
497 SCM xenv = SCM_EXTEND_ENV (formals, SCM_EOL, env);
498 SCM src = scm_unmemocopy (SCM_CODE (exp), xenv);
499 ENTER_NESTED_DATA (pstate, exp, circref);
500 scm_iprin1 (src, port, pstate);
501 EXIT_NESTED_DATA (pstate);
502 }
503 else
504 scm_iprin1 (formals, port, pstate);
b7f3516f 505 scm_putc ('>', port);
726d810a 506 }
0f2d19dd 507 break;
0f2d19dd 508 case scm_tc7_string:
c62fbfe1 509 if (SCM_WRITINGP (pstate))
0f2d19dd 510 {
1be6b49c 511 size_t i;
5ca6dc39 512
b7f3516f 513 scm_putc ('"', port);
d1ca2c64 514 for (i = 0; i < SCM_STRING_LENGTH (exp); ++i)
34f0f2b8 515 switch (SCM_STRING_CHARS (exp)[i])
0f2d19dd 516 {
dbef8851 517 case '"':
0f2d19dd 518 case '\\':
b7f3516f 519 scm_putc ('\\', port);
0f2d19dd 520 default:
34f0f2b8 521 scm_putc (SCM_STRING_CHARS (exp)[i], port);
0f2d19dd 522 }
b7f3516f 523 scm_putc ('"', port);
0f2d19dd
JB
524 break;
525 }
526 else
34f0f2b8 527 scm_lfwrite (SCM_STRING_CHARS (exp), SCM_STRING_LENGTH (exp), port);
0f2d19dd 528 break;
28b06554 529 case scm_tc7_symbol:
9ff28a13
MV
530 if (SCM_SYMBOL_INTERNED_P (exp))
531 {
532 scm_print_symbol_name (SCM_SYMBOL_CHARS (exp),
533 SCM_SYMBOL_LENGTH (exp),
534 port);
535 scm_remember_upto_here_1 (exp);
536 }
537 else
538 {
539 scm_puts ("#<uninterned-symbol ", port);
540 scm_print_symbol_name (SCM_SYMBOL_CHARS (exp),
541 SCM_SYMBOL_LENGTH (exp),
542 port);
543 scm_putc (' ', port);
544 scm_intprint ((long)exp, 16, port);
545 scm_putc ('>', port);
546 }
6662998f 547 break;
e5aca4b5
MV
548 case scm_tc7_variable:
549 scm_i_variable_print (exp, port, pstate);
550 break;
0f2d19dd 551 case scm_tc7_wvect:
c62fbfe1 552 ENTER_NESTED_DATA (pstate, exp, circref);
0f2d19dd 553 if (SCM_IS_WHVEC (exp))
b7f3516f 554 scm_puts ("#wh(", port);
0f2d19dd 555 else
b7f3516f 556 scm_puts ("#w(", port);
0f2d19dd
JB
557 goto common_vector_printer;
558
559 case scm_tc7_vector:
c62fbfe1 560 ENTER_NESTED_DATA (pstate, exp, circref);
b7f3516f 561 scm_puts ("#(", port);
0f2d19dd 562 common_vector_printer:
9fbaf27c 563 {
c014a02e
ML
564 register long i;
565 long last = SCM_VECTOR_LENGTH (exp) - 1;
9fbaf27c 566 int cutp = 0;
b17004b8 567 if (pstate->fancyp && SCM_VECTOR_LENGTH (exp) > pstate->length)
9fbaf27c
MD
568 {
569 last = pstate->length - 1;
570 cutp = 1;
571 }
572 for (i = 0; i < last; ++i)
573 {
574 /* CHECK_INTS; */
575 scm_iprin1 (SCM_VELTS (exp)[i], port, pstate);
b7f3516f 576 scm_putc (' ', port);
9fbaf27c
MD
577 }
578 if (i == last)
579 {
580 /* CHECK_INTS; */
581 scm_iprin1 (SCM_VELTS (exp)[i], port, pstate);
582 }
583 if (cutp)
b7f3516f
TT
584 scm_puts (" ...", port);
585 scm_putc (')', port);
9fbaf27c 586 }
c62fbfe1 587 EXIT_NESTED_DATA (pstate);
0f2d19dd 588 break;
5f4df973 589#if SCM_HAVE_ARRAYS
0f2d19dd
JB
590 case scm_tc7_bvect:
591 case scm_tc7_byvect:
592 case scm_tc7_svect:
593 case scm_tc7_ivect:
594 case scm_tc7_uvect:
595 case scm_tc7_fvect:
596 case scm_tc7_dvect:
597 case scm_tc7_cvect:
ffbda747 598#if SCM_SIZEOF_LONG_LONG != 0
0f2d19dd
JB
599 case scm_tc7_llvect:
600#endif
c62fbfe1 601 scm_raprin1 (exp, port, pstate);
0f2d19dd 602 break;
afe5177e 603#endif
0f2d19dd 604 case scm_tcs_subrs:
f76af603 605 scm_puts (SCM_SUBR_GENERIC (exp)
9de33deb
MD
606 ? "#<primitive-generic "
607 : "#<primitive-procedure ",
608 port);
a002f1a2 609 scm_puts (SCM_SYMBOL_CHARS (SCM_SNAME (exp)), port);
b7f3516f 610 scm_putc ('>', port);
0f2d19dd
JB
611 break;
612#ifdef CCLO
613 case scm_tc7_cclo:
56977059
MD
614 {
615 SCM proc = SCM_CCLO_SUBR (exp);
54778cd3 616 if (SCM_EQ_P (proc, scm_f_gsubr_apply))
56977059
MD
617 {
618 /* Print gsubrs as primitives */
c180dfd3 619 SCM name = scm_procedure_name (exp);
56977059 620 scm_puts ("#<primitive-procedure", port);
d5cf5324 621 if (!SCM_FALSEP (name))
56977059
MD
622 {
623 scm_putc (' ', port);
a002f1a2 624 scm_puts (SCM_SYMBOL_CHARS (name), port);
56977059
MD
625 }
626 }
627 else
628 {
629 scm_puts ("#<compiled-closure ", port);
630 scm_iprin1 (proc, port, pstate);
631 }
632 scm_putc ('>', port);
633 }
0f2d19dd
JB
634 break;
635#endif
c180dfd3
MD
636 case scm_tc7_pws:
637 scm_puts ("#<procedure-with-setter", port);
638 {
639 SCM name = scm_procedure_name (exp);
d5cf5324 640 if (!SCM_FALSEP (name))
c180dfd3
MD
641 {
642 scm_putc (' ', port);
b24b5e13 643 scm_display (name, port);
c180dfd3
MD
644 }
645 }
646 scm_putc ('>', port);
647 break;
0f2d19dd 648 case scm_tc7_port:
5ca6dc39
JB
649 {
650 register long i = SCM_PTOBNUM (exp);
651 if (i < scm_numptob
652 && scm_ptobs[i].print
653 && (scm_ptobs[i].print) (exp, port, pstate))
a51ea417 654 break;
5ca6dc39
JB
655 goto punk;
656 }
657 case scm_tc7_smob:
7a7f7c53
DH
658 ENTER_NESTED_DATA (pstate, exp, circref);
659 SCM_SMOB_DESCRIPTOR (exp).print (exp, port, pstate);
660 EXIT_NESTED_DATA (pstate);
661 break;
0f2d19dd 662 default:
a51ea417
MD
663 punk:
664 scm_ipruk ("type", exp, port);
0f2d19dd
JB
665 }
666 }
667}
668
c62fbfe1
MD
669/* Print states are necessary for circular reference safe printing.
670 * They are also expensive to allocate. Therefore print states are
671 * kept in a pool so that they can be reused.
672 */
1cc91f1b 673
bb35f315
MV
674/* The PORT argument can also be a print-state/port pair, which will
675 * then be used instead of allocating a new print state. This is
676 * useful for continuing a chain of print calls from Scheme. */
677
a51ea417 678void
1bbd0b84 679scm_prin1 (SCM exp, SCM port, int writingp)
a51ea417 680{
c4f37e80
MV
681 SCM handle = SCM_BOOL_F; /* Will GC protect the handle whilst unlinked */
682 SCM pstate_scm;
c62fbfe1
MD
683 scm_print_state *pstate;
684
bb35f315
MV
685 /* If PORT is a print-state/port pair, use that. Else create a new
686 print-state. */
c4f37e80 687
0c95b57d 688 if (SCM_PORT_WITH_PS_P (port))
bb35f315 689 {
52235e71
MD
690 pstate_scm = SCM_PORT_WITH_PS_PS (port);
691 port = SCM_PORT_WITH_PS_PORT (port);
bb35f315
MV
692 }
693 else
c62fbfe1 694 {
c4f37e80
MV
695 /* First try to allocate a print state from the pool */
696 SCM_DEFER_INTS;
d5cf5324 697 if (!SCM_NULLP (print_state_pool))
c4f37e80 698 {
d5cf5324
DH
699 handle = print_state_pool;
700 print_state_pool = SCM_CDR (print_state_pool);
c4f37e80
MV
701 }
702 SCM_ALLOW_INTS;
54778cd3 703 if (SCM_FALSEP (handle))
d5cf5324 704 handle = scm_list_1 (make_print_state ());
c4f37e80 705 pstate_scm = SCM_CAR (handle);
c62fbfe1 706 }
c62fbfe1 707
c4f37e80 708 pstate = SCM_PRINT_STATE (pstate_scm);
c62fbfe1
MD
709 pstate->writingp = writingp;
710 scm_iprin1 (exp, port, pstate);
711
bb35f315
MV
712 /* Return print state to pool if it has been created above and
713 hasn't escaped to Scheme. */
714
54778cd3 715 if (!SCM_FALSEP (handle) && !pstate->revealed)
c4f37e80
MV
716 {
717 SCM_DEFER_INTS;
d5cf5324
DH
718 SCM_SETCDR (handle, print_state_pool);
719 print_state_pool = handle;
c4f37e80
MV
720 SCM_ALLOW_INTS;
721 }
a51ea417
MD
722}
723
0f2d19dd
JB
724
725/* Print an integer.
726 */
1cc91f1b 727
0f2d19dd 728void
1bbd0b84 729scm_intprint (long n, int radix, SCM port)
0f2d19dd
JB
730{
731 char num_buf[SCM_INTBUFLEN];
b7f3516f 732 scm_lfwrite (num_buf, scm_iint2str (n, radix, num_buf), port);
0f2d19dd
JB
733}
734
735/* Print an object of unrecognized type.
736 */
1cc91f1b 737
0f2d19dd 738void
1bbd0b84 739scm_ipruk (char *hdr, SCM ptr, SCM port)
0f2d19dd 740{
b7f3516f
TT
741 scm_puts ("#<unknown-", port);
742 scm_puts (hdr, port);
c8a1bdc4 743 if (scm_in_heap_p (ptr))
0f2d19dd 744 {
b7f3516f 745 scm_puts (" (0x", port);
54778cd3 746 scm_intprint (SCM_CELL_WORD_0 (ptr), 16, port);
b7f3516f 747 scm_puts (" . 0x", port);
54778cd3 748 scm_intprint (SCM_CELL_WORD_1 (ptr), 16, port);
b7f3516f 749 scm_puts (") @", port);
0f2d19dd 750 }
b7f3516f 751 scm_puts (" 0x", port);
54778cd3 752 scm_intprint (SCM_UNPACK (ptr), 16, port);
b7f3516f 753 scm_putc ('>', port);
0f2d19dd
JB
754}
755
1cc91f1b 756
904a077d 757/* Print a list.
22a52da1 758 */
0f2d19dd 759void
34d19ef6 760scm_iprlist (char *hdr, SCM exp, int tlr, SCM port, scm_print_state *pstate)
0f2d19dd 761{
c62fbfe1 762 register SCM hare, tortoise;
c014a02e 763 long floor = pstate->top - 2;
b7f3516f 764 scm_puts (hdr, port);
0f2d19dd 765 /* CHECK_INTS; */
c62fbfe1
MD
766 if (pstate->fancyp)
767 goto fancy_printing;
768
769 /* Run a hare and tortoise so that total time complexity will be
770 O(depth * N) instead of O(N^2). */
771 hare = SCM_CDR (exp);
772 tortoise = exp;
904a077d 773 while (SCM_CONSP (hare))
c62fbfe1 774 {
54778cd3 775 if (SCM_EQ_P (hare, tortoise))
c62fbfe1
MD
776 goto fancy_printing;
777 hare = SCM_CDR (hare);
d5cf5324 778 if (!SCM_CONSP (hare))
c62fbfe1
MD
779 break;
780 hare = SCM_CDR (hare);
781 tortoise = SCM_CDR (tortoise);
782 }
783
784 /* No cdr cycles intrinsic to this list */
785 scm_iprin1 (SCM_CAR (exp), port, pstate);
904a077d 786 for (exp = SCM_CDR (exp); SCM_CONSP (exp); exp = SCM_CDR (exp))
0f2d19dd 787 {
c014a02e 788 register long i;
5ca6dc39 789
c62fbfe1 790 for (i = floor; i >= 0; --i)
230d095f 791 if (SCM_EQ_P (pstate->ref_stack[i], exp))
c62fbfe1
MD
792 goto circref;
793 PUSH_REF (pstate, exp);
b7f3516f 794 scm_putc (' ', port);
0f2d19dd 795 /* CHECK_INTS; */
c62fbfe1 796 scm_iprin1 (SCM_CAR (exp), port, pstate);
0f2d19dd 797 }
c96d76b8 798 if (!SCM_NULL_OR_NIL_P (exp))
0f2d19dd 799 {
b7f3516f 800 scm_puts (" . ", port);
c62fbfe1 801 scm_iprin1 (exp, port, pstate);
0f2d19dd 802 }
c62fbfe1 803
a51ea417 804end:
b7f3516f 805 scm_putc (tlr, port);
c62fbfe1 806 pstate->top = floor + 2;
a51ea417 807 return;
c62fbfe1
MD
808
809fancy_printing:
810 {
c014a02e 811 long n = pstate->length;
c62fbfe1
MD
812
813 scm_iprin1 (SCM_CAR (exp), port, pstate);
814 exp = SCM_CDR (exp); --n;
904a077d 815 for (; SCM_CONSP (exp); exp = SCM_CDR (exp))
c62fbfe1 816 {
c014a02e 817 register unsigned long i;
5ca6dc39 818
c62fbfe1 819 for (i = 0; i < pstate->top; ++i)
230d095f 820 if (SCM_EQ_P (pstate->ref_stack[i], exp))
c62fbfe1
MD
821 goto fancy_circref;
822 if (pstate->fancyp)
823 {
824 if (n == 0)
825 {
b7f3516f 826 scm_puts (" ...", port);
c62fbfe1
MD
827 goto skip_tail;
828 }
829 else
830 --n;
831 }
832 PUSH_REF(pstate, exp);
833 ++pstate->list_offset;
b7f3516f 834 scm_putc (' ', port);
c62fbfe1
MD
835 /* CHECK_INTS; */
836 scm_iprin1 (SCM_CAR (exp), port, pstate);
837 }
838 }
c96d76b8 839 if (!SCM_NULL_OR_NIL_P (exp))
c62fbfe1 840 {
b7f3516f 841 scm_puts (" . ", port);
c62fbfe1
MD
842 scm_iprin1 (exp, port, pstate);
843 }
844skip_tail:
845 pstate->list_offset -= pstate->top - floor - 2;
a51ea417 846 goto end;
a51ea417 847
c62fbfe1
MD
848fancy_circref:
849 pstate->list_offset -= pstate->top - floor - 2;
850
851circref:
b7f3516f 852 scm_puts (" . ", port);
c62fbfe1
MD
853 print_circref (port, pstate, exp);
854 goto end;
0f2d19dd
JB
855}
856
857\f
858
bb35f315
MV
859int
860scm_valid_oport_value_p (SCM val)
861{
368cf54d
GB
862 return (SCM_OPOUTPORTP (val)
863 || (SCM_PORT_WITH_PS_P (val)
864 && SCM_OPOUTPORTP (SCM_PORT_WITH_PS_PORT (val))));
bb35f315
MV
865}
866
8b840115 867/* SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write); */
1cc91f1b 868
0f2d19dd 869SCM
1bbd0b84 870scm_write (SCM obj, SCM port)
0f2d19dd
JB
871{
872 if (SCM_UNBNDP (port))
873 port = scm_cur_outp;
3eb7e6ee
JB
874
875 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_write);
bb35f315 876
a51ea417 877 scm_prin1 (obj, port, 1);
0f2d19dd
JB
878#ifdef HAVE_PIPE
879# ifdef EPIPE
880 if (EPIPE == errno)
881 scm_close_port (port);
882# endif
883#endif
884 return SCM_UNSPECIFIED;
885}
886
887
8b840115 888/* SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display); */
1cc91f1b 889
0f2d19dd 890SCM
1bbd0b84 891scm_display (SCM obj, SCM port)
0f2d19dd
JB
892{
893 if (SCM_UNBNDP (port))
894 port = scm_cur_outp;
3eb7e6ee
JB
895
896 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_display);
bb35f315 897
a51ea417 898 scm_prin1 (obj, port, 0);
0f2d19dd
JB
899#ifdef HAVE_PIPE
900# ifdef EPIPE
901 if (EPIPE == errno)
902 scm_close_port (port);
903# endif
904#endif
905 return SCM_UNSPECIFIED;
906}
907
70d63753
GB
908
909SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
910 (SCM destination, SCM message, SCM args),
eca65e90
MG
911 "Write @var{message} to @var{destination}, defaulting to\n"
912 "the current output port.\n"
913 "@var{message} can contain @code{~A} (was @code{%s}) and\n"
914 "@code{~S} (was @code{%S}) escapes. When printed,\n"
915 "the escapes are replaced with corresponding members of\n"
916 "@var{ARGS}:\n"
917 "@code{~A} formats using @code{display} and @code{~S} formats\n"
918 "using @code{write}.\n"
919 "If @var{destination} is @code{#t}, then use the current output\n"
920 "port, if @var{destination} is @code{#f}, then return a string\n"
921 "containing the formatted text. Does not add a trailing newline.")
70d63753
GB
922#define FUNC_NAME s_scm_simple_format
923{
924 SCM answer = SCM_UNSPECIFIED;
925 int fReturnString = 0;
926 int writingp;
927 char *start;
b24b5e13 928 char *end;
70d63753
GB
929 char *p;
930
daba1a71
MD
931 if (SCM_EQ_P (destination, SCM_BOOL_T))
932 {
933 destination = scm_cur_outp;
934 }
935 else if (SCM_FALSEP (destination))
936 {
937 fReturnString = 1;
938 destination = scm_mkstrport (SCM_INUM0,
939 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
940 SCM_OPN | SCM_WRTNG,
941 FUNC_NAME);
942 }
943 else
944 {
945 SCM_VALIDATE_OPORT_VALUE (1, destination);
946 destination = SCM_COERCE_OUTPORT (destination);
947 }
948 SCM_VALIDATE_STRING (2, message);
af45e3b0 949 SCM_VALIDATE_REST_ARGUMENT (args);
70d63753 950
34f0f2b8 951 start = SCM_STRING_CHARS (message);
b24b5e13
DH
952 end = start + SCM_STRING_LENGTH (message);
953 for (p = start; p != end; ++p)
70d63753
GB
954 if (*p == '~')
955 {
b24b5e13 956 if (++p == end)
6662998f
MV
957 break;
958
959 switch (*p)
960 {
961 case 'A': case 'a':
962 writingp = 0;
963 break;
964 case 'S': case 's':
965 writingp = 1;
966 break;
967 case '~':
968 scm_lfwrite (start, p - start, destination);
969 start = p + 1;
970 continue;
971 case '%':
ba427176 972 scm_lfwrite (start, p - start - 1, destination);
6662998f
MV
973 scm_newline (destination);
974 start = p + 1;
975 continue;
976 default:
1afff620
KN
977 SCM_MISC_ERROR ("FORMAT: Unsupported format option ~~~A - use (ice-9 format) instead",
978 scm_list_1 (SCM_MAKE_CHAR (*p)));
6662998f
MV
979
980 }
70d63753 981
6662998f
MV
982
983 if (!SCM_CONSP (args))
1afff620
KN
984 SCM_MISC_ERROR ("FORMAT: Missing argument for ~~~A",
985 scm_list_1 (SCM_MAKE_CHAR (*p)));
6662998f 986
70d63753
GB
987 scm_lfwrite (start, p - start - 1, destination);
988 scm_prin1 (SCM_CAR (args), destination, writingp);
989 args = SCM_CDR (args);
990 start = p + 1;
991 }
6662998f 992
70d63753 993 scm_lfwrite (start, p - start, destination);
d5cf5324 994 if (!SCM_EQ_P (args, SCM_EOL))
1afff620
KN
995 SCM_MISC_ERROR ("FORMAT: ~A superfluous arguments",
996 scm_list_1 (scm_length (args)));
70d63753
GB
997
998 if (fReturnString)
999 answer = scm_strport_to_string (destination);
1000
daba1a71 1001 return scm_return_first (answer, message);
70d63753
GB
1002}
1003#undef FUNC_NAME
1004
1005
3b3b36dd 1006SCM_DEFINE (scm_newline, "newline", 0, 1, 0,
b450f070 1007 (SCM port),
8f85c0c6
NJ
1008 "Send a newline to @var{port}.\n"
1009 "If @var{port} is omitted, send to the current output port.")
1bbd0b84 1010#define FUNC_NAME s_scm_newline
0f2d19dd
JB
1011{
1012 if (SCM_UNBNDP (port))
bb35f315 1013 port = scm_cur_outp;
3eb7e6ee 1014
34d19ef6 1015 SCM_VALIDATE_OPORT_VALUE (1, port);
bb35f315 1016
0ef4ae82 1017 scm_putc ('\n', SCM_COERCE_OUTPORT (port));
0f2d19dd
JB
1018 return SCM_UNSPECIFIED;
1019}
1bbd0b84 1020#undef FUNC_NAME
0f2d19dd 1021
3b3b36dd 1022SCM_DEFINE (scm_write_char, "write-char", 1, 1, 0,
b450f070 1023 (SCM chr, SCM port),
eca65e90 1024 "Send character @var{chr} to @var{port}.")
1bbd0b84 1025#define FUNC_NAME s_scm_write_char
0f2d19dd
JB
1026{
1027 if (SCM_UNBNDP (port))
bb35f315 1028 port = scm_cur_outp;
3eb7e6ee 1029
34d19ef6
HWN
1030 SCM_VALIDATE_CHAR (1, chr);
1031 SCM_VALIDATE_OPORT_VALUE (2, port);
bb35f315 1032
7866a09b 1033 scm_putc ((int) SCM_CHAR (chr), SCM_COERCE_OUTPORT (port));
0f2d19dd
JB
1034#ifdef HAVE_PIPE
1035# ifdef EPIPE
1036 if (EPIPE == errno)
1037 scm_close_port (port);
1038# endif
1039#endif
1040 return SCM_UNSPECIFIED;
1041}
1bbd0b84 1042#undef FUNC_NAME
0f2d19dd 1043
0f2d19dd
JB
1044\f
1045
bb35f315 1046/* Call back to Scheme code to do the printing of special objects
c19bc088
MD
1047 * (like structs). SCM_PRINTER_APPLY applies PROC to EXP and a smob
1048 * containing PORT and PSTATE. This object can be used as the port for
1049 * display/write etc to continue the current print chain. The REVEALED
1050 * field of PSTATE is set to true to indicate that the print state has
1051 * escaped to Scheme and thus has to be freed by the GC.
1052 */
1053
92c2555f 1054scm_t_bits scm_tc16_port_with_ps;
c19bc088
MD
1055
1056/* Print exactly as the port itself would */
1057
1058static int
e841c3e0 1059port_with_ps_print (SCM obj, SCM port, scm_print_state *pstate)
c19bc088
MD
1060{
1061 obj = SCM_PORT_WITH_PS_PORT (obj);
1062 return scm_ptobs[SCM_PTOBNUM (obj)].print (obj, port, pstate);
1063}
c4f37e80
MV
1064
1065SCM
1bbd0b84 1066scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate)
c4f37e80 1067{
c19bc088 1068 SCM pwps;
bb35f315 1069 SCM pair = scm_cons (port, pstate->handle);
54778cd3 1070 SCM_NEWSMOB (pwps, scm_tc16_port_with_ps, SCM_UNPACK (pair));
bb35f315 1071 pstate->revealed = 1;
fdc28395 1072 return scm_call_2 (proc, exp, pwps);
c19bc088
MD
1073}
1074
a1ec6916 1075SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 2, 0, 0,
1bbd0b84 1076 (SCM port, SCM pstate),
71331188
MG
1077 "Create a new port which behaves like @var{port}, but with an\n"
1078 "included print state @var{pstate}.")
1bbd0b84 1079#define FUNC_NAME s_scm_port_with_print_state
c19bc088
MD
1080{
1081 SCM pwps;
34d19ef6
HWN
1082 SCM_VALIDATE_OPORT_VALUE (1, port);
1083 SCM_VALIDATE_PRINTSTATE (2, pstate);
c19bc088 1084 port = SCM_COERCE_OUTPORT (port);
54778cd3 1085 SCM_NEWSMOB (pwps, scm_tc16_port_with_ps, SCM_UNPACK (scm_cons (port, pstate)));
c19bc088
MD
1086 return pwps;
1087}
1bbd0b84 1088#undef FUNC_NAME
c19bc088 1089
a1ec6916 1090SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0,
1bbd0b84 1091 (SCM port),
71331188
MG
1092 "Return the print state of the port @var{port}. If @var{port}\n"
1093 "has no associated print state, @code{#f} is returned.")
1bbd0b84 1094#define FUNC_NAME s_scm_get_print_state
c19bc088 1095{
368cf54d
GB
1096 if (SCM_PORT_WITH_PS_P (port))
1097 return SCM_PORT_WITH_PS_PS (port);
f5f2dcff 1098 if (SCM_OUTPUT_PORT_P (port))
368cf54d 1099 return SCM_BOOL_F;
276dd677 1100 SCM_WRONG_TYPE_ARG (1, port);
c4f37e80 1101}
1bbd0b84 1102#undef FUNC_NAME
bb35f315 1103
c4f37e80 1104\f
1cc91f1b 1105
0f2d19dd
JB
1106void
1107scm_init_print ()
0f2d19dd 1108{
c19bc088 1109 SCM vtable, layout, type;
d5cf5324 1110
b7ff98dd 1111 scm_init_opts (scm_print_options, scm_print_opts, SCM_N_PRINT_OPTIONS);
d5cf5324
DH
1112
1113 scm_gc_register_root (&print_state_pool);
1114 scm_gc_register_root (&scm_print_state_vtable);
3ce4544c 1115 vtable = scm_make_vtable_vtable (scm_nullstr, SCM_INUM0, SCM_EOL);
4bfdf158 1116 layout = scm_make_struct_layout (scm_makfrom0str (SCM_PRINT_STATE_LAYOUT));
1afff620 1117 type = scm_make_struct (vtable, SCM_INUM0, scm_list_1 (layout));
38ae064c 1118 scm_set_struct_vtable_name_x (type, scm_str2symbol ("print-state"));
bb35f315 1119 scm_print_state_vtable = type;
c4f37e80 1120
c19bc088
MD
1121 /* Don't want to bind a wrapper class in GOOPS, so pass 0 as arg1. */
1122 scm_tc16_port_with_ps = scm_make_smob_type (0, 0);
1123 scm_set_smob_mark (scm_tc16_port_with_ps, scm_markcdr);
e841c3e0 1124 scm_set_smob_print (scm_tc16_port_with_ps, port_with_ps_print);
c19bc088 1125
a0599745 1126#include "libguile/print.x"
0f2d19dd 1127}
89e00824
ML
1128
1129/*
1130 Local Variables:
1131 c-file-style: "gnu"
1132 End:
1133*/