* Removed SCM_TRUE_P since it may get confused with !SCM_FALSEP.
[bpt/guile.git] / libguile / print.c
1 /* Copyright (C) 1995-1999 Free Software Foundation, Inc.
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
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
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.
40 * If you do not wish that, delete this exception notice. */
41
42 /* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
45 \f
46
47 #include <stdio.h>
48 #include "libguile/_scm.h"
49 #include "libguile/chars.h"
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"
65
66 #include "libguile/validate.h"
67 #include "libguile/print.h"
68 \f
69
70 /* {Names of immediate symbols}
71 *
72 * This table must agree with the declarations in scm.h: {Immediate Symbols}.
73 */
74
75 char *scm_isymnames[] =
76 {
77 /* This table must agree with the declarations */
78 "#@and",
79 "#@begin",
80 "#@case",
81 "#@cond",
82 "#@do",
83 "#@if",
84 "#@lambda",
85 "#@let",
86 "#@let*",
87 "#@letrec",
88 "#@or",
89 "#@quote",
90 "#@set!",
91 "#@define",
92 #if 0
93 "#@literal-variable-ref",
94 "#@literal-variable-set!",
95 #endif
96 "#@apply",
97 "#@call-with-current-continuation",
98
99 /* user visible ISYMS */
100 /* other keywords */
101 /* Flags */
102
103 "#f",
104 "#t",
105 "#<undefined>",
106 "#<eof>",
107 "()",
108 "#<unspecified>",
109 "#@dispatch",
110 "#@slot-ref",
111 "#@slot-set!",
112
113 /* Multi-language support */
114
115 "#@nil-cond",
116 "#@nil-ify",
117 "#@t-ify",
118 "#@0-cond",
119 "#@0-ify",
120 "#@1-ify",
121 "#@bind",
122
123 "#@delay",
124
125 "#<unbound>"
126 };
127
128 scm_option scm_print_opts[] = {
129 { SCM_OPTION_SCM, "closure-hook", SCM_UNPACK(SCM_BOOL_F),
130 "Hook for printing closures." },
131 { SCM_OPTION_BOOLEAN, "source", 0,
132 "Print closures with source." }
133 };
134
135 SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0,
136 (SCM setting),
137 "")
138 #define FUNC_NAME s_scm_print_options
139 {
140 SCM ans = scm_options (setting,
141 scm_print_opts,
142 SCM_N_PRINT_OPTIONS,
143 FUNC_NAME);
144 return ans;
145 }
146 #undef FUNC_NAME
147
148 \f
149 /* {Printing of Scheme Objects}
150 */
151
152 /* Detection of circular references.
153 *
154 * Due to other constraints in the implementation, this code has bad
155 * time complexity (O (depth * N)), The printer code can be
156 * rewritten to be O(N).
157 */
158 #define PUSH_REF(pstate, obj) \
159 do { \
160 pstate->ref_stack[pstate->top++] = (obj); \
161 if (pstate->top == pstate->ceiling) \
162 grow_ref_stack (pstate); \
163 } while(0)
164
165 #define ENTER_NESTED_DATA(pstate, obj, label) \
166 do { \
167 register unsigned long i; \
168 for (i = 0; i < pstate->top; ++i) \
169 if (SCM_EQ_P (pstate->ref_stack[i], (obj))) \
170 goto label; \
171 if (pstate->fancyp) \
172 { \
173 if (pstate->top - pstate->list_offset >= pstate->level) \
174 { \
175 scm_putc ('#', port); \
176 return; \
177 } \
178 } \
179 PUSH_REF(pstate, obj); \
180 } while(0)
181
182 #define EXIT_NESTED_DATA(pstate) { --pstate->top; }
183
184 SCM scm_print_state_vtable;
185
186 static SCM print_state_pool;
187
188 #ifdef GUILE_DEBUG /* Used for debugging purposes */
189
190 SCM_DEFINE (scm_current_pstate, "current-pstate", 0, 0, 0,
191 (),
192 "Return the current-pstate--the `cadr' of the print_state_pool.\n"
193 "`current-pstate' is only included in GUILE_DEBUG builds.")
194 #define FUNC_NAME s_scm_current_pstate
195 {
196 return SCM_CADR (print_state_pool);
197 }
198 #undef FUNC_NAME
199
200 #endif
201
202 #define PSTATE_SIZE 50L
203
204 static SCM
205 make_print_state (void)
206 {
207 SCM print_state = scm_make_struct (SCM_CAR (print_state_pool), /* pstate type */
208 SCM_INUM0,
209 SCM_EOL);
210 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
211 pstate->ref_vect = scm_make_vector (SCM_MAKINUM (PSTATE_SIZE),
212 SCM_UNDEFINED);
213 pstate->ref_stack = SCM_VELTS (pstate->ref_vect);
214 pstate->ceiling = SCM_LENGTH (pstate->ref_vect);
215 return print_state;
216 }
217
218 SCM
219 scm_make_print_state ()
220 {
221 SCM answer = SCM_BOOL_F;
222
223 /* First try to allocate a print state from the pool */
224 SCM_DEFER_INTS;
225 if (SCM_NNULLP (SCM_CDR (print_state_pool)))
226 {
227 answer = SCM_CADR (print_state_pool);
228 SCM_SETCDR (print_state_pool, SCM_CDDR (print_state_pool));
229 }
230 SCM_ALLOW_INTS;
231
232 return SCM_FALSEP (answer) ? make_print_state () : answer;
233 }
234
235 void
236 scm_free_print_state (SCM print_state)
237 {
238 SCM handle;
239 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
240 /* Cleanup before returning print state to pool.
241 * It is better to do it here. Doing it in scm_prin1
242 * would cost more since that function is called much more
243 * often.
244 */
245 pstate->fancyp = 0;
246 pstate->revealed = 0;
247 SCM_NEWCELL (handle);
248 SCM_DEFER_INTS;
249 SCM_SETCAR (handle, print_state);
250 SCM_SETCDR (handle, SCM_CDR (print_state_pool));
251 SCM_SETCDR (print_state_pool, handle);
252 SCM_ALLOW_INTS;
253 }
254
255 static void
256 grow_ref_stack (scm_print_state *pstate)
257 {
258 int new_size = 2 * pstate->ceiling;
259 scm_vector_set_length_x (pstate->ref_vect, SCM_MAKINUM (new_size));
260 pstate->ref_stack = SCM_VELTS (pstate->ref_vect);
261 pstate->ceiling = new_size;
262 }
263
264
265 static void
266 print_circref (SCM port,scm_print_state *pstate,SCM ref)
267 {
268 register int i;
269 int self = pstate->top - 1;
270 i = pstate->top - 1;
271 if (SCM_CONSP (pstate->ref_stack[i]))
272 {
273 while (i > 0)
274 {
275 if (SCM_NCONSP (pstate->ref_stack[i - 1])
276 || !SCM_EQ_P (SCM_CDR (pstate->ref_stack[i - 1]),
277 pstate->ref_stack[i]))
278 break;
279 --i;
280 }
281 self = i;
282 }
283 for (i = pstate->top - 1; 1; --i)
284 if (SCM_EQ_P (pstate->ref_stack[i], ref))
285 break;
286 scm_putc ('#', port);
287 scm_intprint (i - self, 10, port);
288 scm_putc ('#', port);
289 }
290
291 /* Print generally. Handles both write and display according to PSTATE.
292 */
293 SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write);
294 SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display);
295
296 void
297 scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate)
298 {
299 taloop:
300 switch (SCM_ITAG3 (exp))
301 {
302 case 2:
303 case 6:
304 scm_intprint (SCM_INUM (exp), 10, port);
305 break;
306 case 4:
307 if (SCM_CHARP (exp))
308 {
309 register long i;
310
311 i = SCM_CHAR (exp);
312 if (SCM_WRITINGP (pstate))
313 {
314 scm_puts ("#\\", port);
315 if ((i >= 0) && (i <= ' ') && scm_charnames[i])
316 scm_puts (scm_charnames[i], port);
317 else if (i < 0 || i > '\177')
318 scm_intprint (i, 8, port);
319 else
320 scm_putc (i, port);
321 }
322 else
323 scm_putc (i, port);
324 }
325 else if (SCM_IFLAGP (exp)
326 && ((size_t) SCM_ISYMNUM (exp) < (sizeof scm_isymnames / sizeof (char *))))
327 scm_puts (SCM_ISYMCHARS (exp), port);
328 else if (SCM_ILOCP (exp))
329 {
330 scm_puts ("#@", port);
331 scm_intprint (SCM_IFRAME (exp), 10, port);
332 scm_putc (SCM_ICDRP (exp) ? '-' : '+', port);
333 scm_intprint (SCM_IDIST (exp), 10, port);
334 }
335 else
336 goto idef;
337 break;
338 case 1:
339 /* gloc */
340 scm_puts ("#@", port);
341 exp = SCM_GLOC_SYM (exp);
342 goto taloop;
343 default:
344 idef:
345 scm_ipruk ("immediate", exp, port);
346 break;
347 case 0:
348 switch (SCM_TYP7 (exp))
349 {
350 case scm_tcs_cons_gloc:
351
352 if (SCM_STRUCT_VTABLE_DATA (exp) [scm_vtable_index_vcell] == 0)
353 {
354 ENTER_NESTED_DATA (pstate, exp, circref);
355 if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
356 {
357 SCM pwps, print = pstate->writingp ? g_write : g_display;
358 if (!print)
359 goto print_struct;
360 SCM_NEWSMOB (pwps,
361 scm_tc16_port_with_ps,
362 SCM_UNPACK (scm_cons (port, pstate->handle)));
363 scm_call_generic_2 (print, exp, pwps);
364 }
365 else
366 {
367 print_struct:
368 scm_print_struct (exp, port, pstate);
369 }
370 EXIT_NESTED_DATA (pstate);
371 break;
372 }
373
374 case scm_tcs_cons_imcar:
375 case scm_tcs_cons_nimcar:
376 ENTER_NESTED_DATA (pstate, exp, circref);
377 scm_iprlist ("(", exp, ')', port, pstate);
378 EXIT_NESTED_DATA (pstate);
379 break;
380 circref:
381 print_circref (port, pstate, exp);
382 break;
383 macros:
384 if (!SCM_CLOSUREP (SCM_CDR (exp)))
385 goto prinmacro;
386 case scm_tcs_closures:
387 /* The user supplied print closure procedure must handle
388 macro closures as well. */
389 if (SCM_FALSEP (scm_procedure_p (SCM_PRINT_CLOSURE))
390 || SCM_FALSEP (scm_printer_apply (SCM_PRINT_CLOSURE,
391 exp, port, pstate)))
392 {
393 SCM name, code, env;
394 if (SCM_TYP16 (exp) == scm_tc16_macro)
395 {
396 /* Printing a macro. */
397 prinmacro:
398 name = scm_macro_name (exp);
399 if (!SCM_CLOSUREP (SCM_CDR (exp)))
400 {
401 code = env = SCM_UNDEFINED;
402 scm_puts ("#<primitive-", port);
403 }
404 else
405 {
406 code = SCM_CODE (SCM_CDR (exp));
407 env = SCM_ENV (SCM_CDR (exp));
408 scm_puts ("#<", port);
409 }
410 if (SCM_CELL_WORD_0 (exp) & (3L << 16))
411 scm_puts ("macro", port);
412 else
413 scm_puts ("syntax", port);
414 if (SCM_CELL_WORD_0 (exp) & (2L << 16))
415 scm_putc ('!', port);
416 }
417 else
418 {
419 /* Printing a closure. */
420 name = scm_procedure_name (exp);
421 code = SCM_CODE (exp);
422 env = SCM_ENV (exp);
423 scm_puts ("#<procedure", port);
424 }
425 if (SCM_ROSTRINGP (name))
426 {
427 scm_putc (' ', port);
428 scm_puts (SCM_ROCHARS (name), port);
429 }
430 if (!SCM_UNBNDP (code))
431 {
432 if (SCM_PRINT_SOURCE_P)
433 {
434 code = scm_unmemocopy (code,
435 SCM_EXTEND_ENV (SCM_CAR (code),
436 SCM_EOL,
437 env));
438 ENTER_NESTED_DATA (pstate, exp, circref);
439 scm_iprlist (" ", code, '>', port, pstate);
440 EXIT_NESTED_DATA (pstate);
441 }
442 else
443 {
444 if (SCM_TYP16 (exp) != scm_tc16_macro)
445 {
446 scm_putc (' ', port);
447 scm_iprin1 (SCM_CAR (code), port, pstate);
448 }
449 scm_putc ('>', port);
450 }
451 }
452 else
453 scm_putc ('>', port);
454 }
455 break;
456 case scm_tc7_substring:
457 case scm_tc7_string:
458 if (SCM_WRITINGP (pstate))
459 {
460 scm_sizet i;
461
462 scm_putc ('"', port);
463 for (i = 0; i < SCM_ROLENGTH (exp); ++i)
464 switch (SCM_ROCHARS (exp)[i])
465 {
466 case '"':
467 case '\\':
468 scm_putc ('\\', port);
469 default:
470 scm_putc (SCM_ROCHARS (exp)[i], port);
471 }
472 scm_putc ('"', port);
473 break;
474 }
475 else
476 scm_lfwrite (SCM_ROCHARS (exp), (scm_sizet) SCM_ROLENGTH (exp),
477 port);
478 break;
479 case scm_tcs_symbols:
480 {
481 int pos;
482 int end;
483 int len;
484 char * str;
485 int weird;
486 int maybe_weird;
487 int mw_pos = 0;
488
489 len = SCM_LENGTH (exp);
490 str = SCM_CHARS (exp);
491 scm_remember (&exp);
492 pos = 0;
493 weird = 0;
494 maybe_weird = 0;
495
496 if (len == 0)
497 scm_lfwrite ("#{}#", 4, port);
498
499 for (end = pos; end < len; ++end)
500 switch (str[end])
501 {
502 #ifdef BRACKETS_AS_PARENS
503 case '[':
504 case ']':
505 #endif
506 case '(':
507 case ')':
508 case '"':
509 case ';':
510 case SCM_WHITE_SPACES:
511 case SCM_LINE_INCREMENTORS:
512 weird_handler:
513 if (maybe_weird)
514 {
515 end = mw_pos;
516 maybe_weird = 0;
517 }
518 if (!weird)
519 {
520 scm_lfwrite ("#{", 2, port);
521 weird = 1;
522 }
523 if (pos < end)
524 {
525 scm_lfwrite (str + pos, end - pos, port);
526 }
527 {
528 char buf[2];
529 buf[0] = '\\';
530 buf[1] = str[end];
531 scm_lfwrite (buf, 2, port);
532 }
533 pos = end + 1;
534 break;
535 case '\\':
536 if (weird)
537 goto weird_handler;
538 if (!maybe_weird)
539 {
540 maybe_weird = 1;
541 mw_pos = pos;
542 }
543 break;
544 case '}':
545 case '#':
546 if (weird)
547 goto weird_handler;
548 break;
549 default:
550 break;
551 }
552 if (pos < end)
553 scm_lfwrite (str + pos, end - pos, port);
554 if (weird)
555 scm_lfwrite ("}#", 2, port);
556 break;
557 }
558 case scm_tc7_wvect:
559 ENTER_NESTED_DATA (pstate, exp, circref);
560 if (SCM_IS_WHVEC (exp))
561 scm_puts ("#wh(", port);
562 else
563 scm_puts ("#w(", port);
564 goto common_vector_printer;
565
566 case scm_tc7_vector:
567 ENTER_NESTED_DATA (pstate, exp, circref);
568 scm_puts ("#(", port);
569 common_vector_printer:
570 {
571 register long i;
572 int last = SCM_LENGTH (exp) - 1;
573 int cutp = 0;
574 if (pstate->fancyp && SCM_LENGTH (exp) > pstate->length)
575 {
576 last = pstate->length - 1;
577 cutp = 1;
578 }
579 for (i = 0; i < last; ++i)
580 {
581 /* CHECK_INTS; */
582 scm_iprin1 (SCM_VELTS (exp)[i], port, pstate);
583 scm_putc (' ', port);
584 }
585 if (i == last)
586 {
587 /* CHECK_INTS; */
588 scm_iprin1 (SCM_VELTS (exp)[i], port, pstate);
589 }
590 if (cutp)
591 scm_puts (" ...", port);
592 scm_putc (')', port);
593 }
594 EXIT_NESTED_DATA (pstate);
595 break;
596 #ifdef HAVE_ARRAYS
597 case scm_tc7_bvect:
598 case scm_tc7_byvect:
599 case scm_tc7_svect:
600 case scm_tc7_ivect:
601 case scm_tc7_uvect:
602 case scm_tc7_fvect:
603 case scm_tc7_dvect:
604 case scm_tc7_cvect:
605 #ifdef HAVE_LONG_LONGS
606 case scm_tc7_llvect:
607 #endif
608 scm_raprin1 (exp, port, pstate);
609 break;
610 #endif
611 case scm_tcs_subrs:
612 scm_puts (SCM_SUBR_GENERIC (exp) && *SCM_SUBR_GENERIC (exp)
613 ? "#<primitive-generic "
614 : "#<primitive-procedure ",
615 port);
616 scm_puts (SCM_CHARS (SCM_SNAME (exp)), port);
617 scm_putc ('>', port);
618 break;
619 #ifdef CCLO
620 case scm_tc7_cclo:
621 {
622 SCM proc = SCM_CCLO_SUBR (exp);
623 if (SCM_EQ_P (proc, scm_f_gsubr_apply))
624 {
625 /* Print gsubrs as primitives */
626 SCM name = scm_procedure_name (exp);
627 scm_puts ("#<primitive-procedure", port);
628 if (SCM_NFALSEP (name))
629 {
630 scm_putc (' ', port);
631 scm_puts (SCM_CHARS (name), port);
632 }
633 }
634 else
635 {
636 scm_puts ("#<compiled-closure ", port);
637 scm_iprin1 (proc, port, pstate);
638 }
639 scm_putc ('>', port);
640 }
641 break;
642 #endif
643 case scm_tc7_pws:
644 scm_puts ("#<procedure-with-setter", port);
645 {
646 SCM name = scm_procedure_name (exp);
647 if (SCM_NFALSEP (name))
648 {
649 scm_putc (' ', port);
650 scm_puts (SCM_ROCHARS (name), port);
651 }
652 }
653 scm_putc ('>', port);
654 break;
655 case scm_tc7_contin:
656 scm_puts ("#<continuation ", port);
657 scm_intprint (SCM_LENGTH (exp), 10, port);
658 scm_puts (" @ ", port);
659 scm_intprint ((long) SCM_CHARS (exp), 16, port);
660 scm_putc ('>', port);
661 break;
662 case scm_tc7_port:
663 {
664 register long i = SCM_PTOBNUM (exp);
665 if (i < scm_numptob
666 && scm_ptobs[i].print
667 && (scm_ptobs[i].print) (exp, port, pstate))
668 break;
669 goto punk;
670 }
671 case scm_tc7_smob:
672 {
673 register long i;
674 ENTER_NESTED_DATA (pstate, exp, circref);
675 i = SCM_SMOBNUM (exp);
676 if (i < scm_numsmob && scm_smobs[i].print
677 && (scm_smobs[i].print) (exp, port, pstate))
678 {
679 EXIT_NESTED_DATA (pstate);
680 break;
681 }
682 EXIT_NESTED_DATA (pstate);
683 /* Macros have their print field set to NULL. They are
684 handled at the same place as closures in order to achieve
685 non-redundancy. Placing the condition here won't slow
686 down printing of other smobs. */
687 if (SCM_TYP16 (exp) == scm_tc16_macro)
688 goto macros;
689 }
690 default:
691 punk:
692 scm_ipruk ("type", exp, port);
693 }
694 }
695 }
696
697 /* Print states are necessary for circular reference safe printing.
698 * They are also expensive to allocate. Therefore print states are
699 * kept in a pool so that they can be reused.
700 */
701
702 /* The PORT argument can also be a print-state/port pair, which will
703 * then be used instead of allocating a new print state. This is
704 * useful for continuing a chain of print calls from Scheme. */
705
706 void
707 scm_prin1 (SCM exp, SCM port, int writingp)
708 {
709 SCM handle = SCM_BOOL_F; /* Will GC protect the handle whilst unlinked */
710 SCM pstate_scm;
711 scm_print_state *pstate;
712
713 /* If PORT is a print-state/port pair, use that. Else create a new
714 print-state. */
715
716 if (SCM_PORT_WITH_PS_P (port))
717 {
718 pstate_scm = SCM_PORT_WITH_PS_PS (port);
719 port = SCM_PORT_WITH_PS_PORT (port);
720 }
721 else
722 {
723 /* First try to allocate a print state from the pool */
724 SCM_DEFER_INTS;
725 if (SCM_NNULLP (SCM_CDR (print_state_pool)))
726 {
727 handle = SCM_CDR (print_state_pool);
728 SCM_SETCDR (print_state_pool, SCM_CDDR (print_state_pool));
729 }
730 SCM_ALLOW_INTS;
731 if (SCM_FALSEP (handle))
732 handle = scm_cons (make_print_state (), SCM_EOL);
733 pstate_scm = SCM_CAR (handle);
734 }
735
736 pstate = SCM_PRINT_STATE (pstate_scm);
737 pstate->writingp = writingp;
738 scm_iprin1 (exp, port, pstate);
739
740 /* Return print state to pool if it has been created above and
741 hasn't escaped to Scheme. */
742
743 if (!SCM_FALSEP (handle) && !pstate->revealed)
744 {
745 SCM_DEFER_INTS;
746 SCM_SETCDR (handle, SCM_CDR (print_state_pool));
747 SCM_SETCDR (print_state_pool, handle);
748 SCM_ALLOW_INTS;
749 }
750 }
751
752
753 /* Print an integer.
754 */
755
756 void
757 scm_intprint (long n, int radix, SCM port)
758 {
759 char num_buf[SCM_INTBUFLEN];
760 scm_lfwrite (num_buf, scm_iint2str (n, radix, num_buf), port);
761 }
762
763 /* Print an object of unrecognized type.
764 */
765
766 void
767 scm_ipruk (char *hdr, SCM ptr, SCM port)
768 {
769 scm_puts ("#<unknown-", port);
770 scm_puts (hdr, port);
771 if (SCM_CELLP (ptr))
772 {
773 scm_puts (" (0x", port);
774 scm_intprint (SCM_CELL_WORD_0 (ptr), 16, port);
775 scm_puts (" . 0x", port);
776 scm_intprint (SCM_CELL_WORD_1 (ptr), 16, port);
777 scm_puts (") @", port);
778 }
779 scm_puts (" 0x", port);
780 scm_intprint (SCM_UNPACK (ptr), 16, port);
781 scm_putc ('>', port);
782 }
783
784 /* Print a list.
785 */
786
787
788 void
789 scm_iprlist (char *hdr,SCM exp,int tlr,SCM port,scm_print_state *pstate)
790 {
791 register SCM hare, tortoise;
792 int floor = pstate->top - 2;
793 scm_puts (hdr, port);
794 /* CHECK_INTS; */
795 if (pstate->fancyp)
796 goto fancy_printing;
797
798 /* Run a hare and tortoise so that total time complexity will be
799 O(depth * N) instead of O(N^2). */
800 hare = SCM_CDR (exp);
801 tortoise = exp;
802 while (SCM_ECONSP (hare))
803 {
804 if (SCM_EQ_P (hare, tortoise))
805 goto fancy_printing;
806 hare = SCM_CDR (hare);
807 if (SCM_IMP (hare) || SCM_NECONSP (hare))
808 break;
809 hare = SCM_CDR (hare);
810 tortoise = SCM_CDR (tortoise);
811 }
812
813 /* No cdr cycles intrinsic to this list */
814 scm_iprin1 (SCM_CAR (exp), port, pstate);
815 exp = SCM_CDR (exp);
816 for (; SCM_NIMP (exp); exp = SCM_CDR (exp))
817 {
818 register int i;
819
820 if (SCM_NECONSP (exp))
821 break;
822 for (i = floor; i >= 0; --i)
823 if (SCM_EQ_P (pstate->ref_stack[i], exp))
824 goto circref;
825 PUSH_REF (pstate, exp);
826 scm_putc (' ', port);
827 /* CHECK_INTS; */
828 scm_iprin1 (SCM_CAR (exp), port, pstate);
829 }
830 if (SCM_NNULLP (exp))
831 {
832 scm_puts (" . ", port);
833 scm_iprin1 (exp, port, pstate);
834 }
835
836 end:
837 scm_putc (tlr, port);
838 pstate->top = floor + 2;
839 return;
840
841 fancy_printing:
842 {
843 int n = pstate->length;
844
845 scm_iprin1 (SCM_CAR (exp), port, pstate);
846 exp = SCM_CDR (exp); --n;
847 for (; SCM_NIMP (exp); exp = SCM_CDR (exp))
848 {
849 register unsigned long i;
850
851 if (SCM_NECONSP (exp))
852 break;
853 for (i = 0; i < pstate->top; ++i)
854 if (SCM_EQ_P (pstate->ref_stack[i], exp))
855 goto fancy_circref;
856 if (pstate->fancyp)
857 {
858 if (n == 0)
859 {
860 scm_puts (" ...", port);
861 goto skip_tail;
862 }
863 else
864 --n;
865 }
866 PUSH_REF(pstate, exp);
867 ++pstate->list_offset;
868 scm_putc (' ', port);
869 /* CHECK_INTS; */
870 scm_iprin1 (SCM_CAR (exp), port, pstate);
871 }
872 }
873 if (SCM_NNULLP (exp))
874 {
875 scm_puts (" . ", port);
876 scm_iprin1 (exp, port, pstate);
877 }
878 skip_tail:
879 pstate->list_offset -= pstate->top - floor - 2;
880 goto end;
881
882 fancy_circref:
883 pstate->list_offset -= pstate->top - floor - 2;
884
885 circref:
886 scm_puts (" . ", port);
887 print_circref (port, pstate, exp);
888 goto end;
889 }
890
891 \f
892
893 int
894 scm_valid_oport_value_p (SCM val)
895 {
896 return (SCM_OPOUTPORTP (val)
897 || (SCM_PORT_WITH_PS_P (val)
898 && SCM_OPOUTPORTP (SCM_PORT_WITH_PS_PORT (val))));
899 }
900
901 /* SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write); */
902
903 SCM
904 scm_write (SCM obj, SCM port)
905 {
906 if (SCM_UNBNDP (port))
907 port = scm_cur_outp;
908
909 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_write);
910
911 scm_prin1 (obj, port, 1);
912 #ifdef HAVE_PIPE
913 # ifdef EPIPE
914 if (EPIPE == errno)
915 scm_close_port (port);
916 # endif
917 #endif
918 return SCM_UNSPECIFIED;
919 }
920
921
922 /* SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display); */
923
924 SCM
925 scm_display (SCM obj, SCM port)
926 {
927 if (SCM_UNBNDP (port))
928 port = scm_cur_outp;
929
930 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_display);
931
932 scm_prin1 (obj, port, 0);
933 #ifdef HAVE_PIPE
934 # ifdef EPIPE
935 if (EPIPE == errno)
936 scm_close_port (port);
937 # endif
938 #endif
939 return SCM_UNSPECIFIED;
940 }
941
942
943 SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
944 (SCM destination, SCM message, SCM args),
945 "Write MESSAGE to DESTINATION, defaulting to `current-output-port'.\n"
946 "MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,\n"
947 "the escapes are replaced with corresponding members of ARGS:\n"
948 "~A formats using `display' and ~S formats using `write'.\n"
949 "If DESTINATION is #t, then use the `current-output-port',\n"
950 "if DESTINATION is #f, then return a string containing the formatted text.\n"
951 "Does not add a trailing newline.")
952 #define FUNC_NAME s_scm_simple_format
953 {
954 SCM answer = SCM_UNSPECIFIED;
955 int fReturnString = 0;
956 int writingp;
957 char *start;
958 char *p;
959
960 if (SCM_EQ_P (destination, SCM_BOOL_T)) {
961 destination = scm_cur_outp;
962 } else if (SCM_FALSEP (destination)) {
963 fReturnString = 1;
964 destination = scm_mkstrport (SCM_INUM0,
965 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
966 SCM_OPN | SCM_WRTNG,
967 FUNC_NAME);
968 } else {
969 SCM_VALIDATE_OPORT_VALUE (1,destination);
970 }
971 SCM_VALIDATE_STRING(2,message);
972 SCM_VALIDATE_REST_ARGUMENT (args);
973
974 start = SCM_ROCHARS (message);
975 for (p = start; *p != '\0'; ++p)
976 if (*p == '~')
977 {
978 if (SCM_IMP (args) || SCM_NCONSP (args))
979 continue;
980
981 ++p;
982 if (*p == 'A')
983 writingp = 0;
984 else if (*p == 'S')
985 writingp = 1;
986 else
987 continue;
988
989 scm_lfwrite (start, p - start - 1, destination);
990 scm_prin1 (SCM_CAR (args), destination, writingp);
991 args = SCM_CDR (args);
992 start = p + 1;
993 }
994 scm_lfwrite (start, p - start, destination);
995
996 if (fReturnString)
997 answer = scm_strport_to_string (destination);
998
999 return scm_return_first(answer,message);
1000 }
1001 #undef FUNC_NAME
1002
1003
1004 SCM_DEFINE (scm_newline, "newline", 0, 1, 0,
1005 (SCM port),
1006 "Send a newline to PORT.")
1007 #define FUNC_NAME s_scm_newline
1008 {
1009 if (SCM_UNBNDP (port))
1010 port = scm_cur_outp;
1011
1012 SCM_VALIDATE_OPORT_VALUE (1,port);
1013
1014 scm_putc ('\n', SCM_COERCE_OUTPORT (port));
1015 return SCM_UNSPECIFIED;
1016 }
1017 #undef FUNC_NAME
1018
1019 SCM_DEFINE (scm_write_char, "write-char", 1, 1, 0,
1020 (SCM chr, SCM port),
1021 "Send character CHR to PORT.")
1022 #define FUNC_NAME s_scm_write_char
1023 {
1024 if (SCM_UNBNDP (port))
1025 port = scm_cur_outp;
1026
1027 SCM_VALIDATE_CHAR (1,chr);
1028 SCM_VALIDATE_OPORT_VALUE (2,port);
1029
1030 scm_putc ((int) SCM_CHAR (chr), SCM_COERCE_OUTPORT (port));
1031 #ifdef HAVE_PIPE
1032 # ifdef EPIPE
1033 if (EPIPE == errno)
1034 scm_close_port (port);
1035 # endif
1036 #endif
1037 return SCM_UNSPECIFIED;
1038 }
1039 #undef FUNC_NAME
1040
1041 \f
1042
1043 /* Call back to Scheme code to do the printing of special objects
1044 * (like structs). SCM_PRINTER_APPLY applies PROC to EXP and a smob
1045 * containing PORT and PSTATE. This object can be used as the port for
1046 * display/write etc to continue the current print chain. The REVEALED
1047 * field of PSTATE is set to true to indicate that the print state has
1048 * escaped to Scheme and thus has to be freed by the GC.
1049 */
1050
1051 long scm_tc16_port_with_ps;
1052
1053 /* Print exactly as the port itself would */
1054
1055 static int
1056 print_port_with_ps (SCM obj, SCM port, scm_print_state *pstate)
1057 {
1058 obj = SCM_PORT_WITH_PS_PORT (obj);
1059 return scm_ptobs[SCM_PTOBNUM (obj)].print (obj, port, pstate);
1060 }
1061
1062 SCM
1063 scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate)
1064 {
1065 SCM pwps;
1066 SCM pair = scm_cons (port, pstate->handle);
1067 SCM_NEWSMOB (pwps, scm_tc16_port_with_ps, SCM_UNPACK (pair));
1068 pstate->revealed = 1;
1069 return scm_apply (proc, exp, scm_cons (pwps, scm_listofnull));
1070 }
1071
1072 SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 2, 0, 0,
1073 (SCM port, SCM pstate),
1074 "")
1075 #define FUNC_NAME s_scm_port_with_print_state
1076 {
1077 SCM pwps;
1078 SCM_VALIDATE_OPORT_VALUE (1,port);
1079 SCM_VALIDATE_PRINTSTATE (2,pstate);
1080 port = SCM_COERCE_OUTPORT (port);
1081 SCM_NEWSMOB (pwps, scm_tc16_port_with_ps, SCM_UNPACK (scm_cons (port, pstate)));
1082 return pwps;
1083 }
1084 #undef FUNC_NAME
1085
1086 SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0,
1087 (SCM port),
1088 "")
1089 #define FUNC_NAME s_scm_get_print_state
1090 {
1091 if (SCM_PORT_WITH_PS_P (port))
1092 return SCM_PORT_WITH_PS_PS (port);
1093 if (SCM_OUTPUT_PORT_P (port))
1094 return SCM_BOOL_F;
1095 RETURN_SCM_WTA (1,port);
1096 }
1097 #undef FUNC_NAME
1098
1099 \f
1100
1101 void
1102 scm_init_print ()
1103 {
1104 SCM vtable, layout, type;
1105
1106 scm_init_opts (scm_print_options, scm_print_opts, SCM_N_PRINT_OPTIONS);
1107 vtable = scm_make_vtable_vtable (scm_make_struct_layout (scm_nullstr),
1108 SCM_INUM0,
1109 SCM_EOL);
1110 layout = scm_make_struct_layout (scm_makfrom0str (SCM_PRINT_STATE_LAYOUT));
1111 type = scm_make_struct (vtable, SCM_INUM0, SCM_LIST1 (layout));
1112 scm_set_struct_vtable_name_x (type, SCM_CAR (scm_intern0 ("print-state")));
1113 print_state_pool = scm_permanent_object (scm_cons (type, SCM_EOL));
1114
1115 scm_print_state_vtable = type;
1116
1117 /* Don't want to bind a wrapper class in GOOPS, so pass 0 as arg1. */
1118 scm_tc16_port_with_ps = scm_make_smob_type (0, 0);
1119 scm_set_smob_mark (scm_tc16_port_with_ps, scm_markcdr);
1120 scm_set_smob_print (scm_tc16_port_with_ps, print_port_with_ps);
1121
1122 #include "libguile/print.x"
1123 }
1124
1125 /*
1126 Local Variables:
1127 c-file-style: "gnu"
1128 End:
1129 */