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