* Replaced a lot of calls to SCM_C[AD]R with more appropriate macros.
[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_option scm_print_opts[] = {
131 { SCM_OPTION_SCM, "closure-hook", SCM_UNPACK(SCM_BOOL_F),
132 "Hook for printing closures." },
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 int i;
286 int 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 generally. Handles both write and display according to PSTATE.
309 */
310 SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write);
311 SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display);
312
313 void
314 scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate)
315 {
316 taloop:
317 switch (SCM_ITAG3 (exp))
318 {
319 case scm_tc3_closure:
320 case scm_tc3_tc7_1:
321 case scm_tc3_tc7_2:
322 /* These tc3 tags should never occur in an immediate value. They are
323 * only used in cell types of non-immediates, i. e. the value returned
324 * by SCM_CELL_TYPE (exp) can use these tags.
325 */
326 scm_ipruk ("immediate", exp, port);
327 break;
328 case scm_tc3_int_1:
329 case scm_tc3_int_2:
330 scm_intprint (SCM_INUM (exp), 10, port);
331 break;
332 case scm_tc3_imm24:
333 if (SCM_CHARP (exp))
334 {
335 long i = SCM_CHAR (exp);
336
337 if (SCM_WRITINGP (pstate))
338 {
339 scm_puts ("#\\", port);
340 if ((i >= 0) && (i <= ' ') && scm_charnames[i])
341 scm_puts (scm_charnames[i], port);
342 #ifndef EBCDIC
343 else if (i == '\177')
344 scm_puts (scm_charnames[scm_n_charnames - 1], port);
345 #endif
346 else if (i < 0 || i > '\177')
347 scm_intprint (i, 8, port);
348 else
349 scm_putc (i, port);
350 }
351 else
352 scm_putc (i, port);
353 }
354 else if (SCM_IFLAGP (exp)
355 && ((size_t) SCM_ISYMNUM (exp) < (sizeof scm_isymnames / sizeof (char *))))
356 scm_puts (SCM_ISYMCHARS (exp), port);
357 else if (SCM_ILOCP (exp))
358 {
359 scm_puts ("#@", port);
360 scm_intprint (SCM_IFRAME (exp), 10, port);
361 scm_putc (SCM_ICDRP (exp) ? '-' : '+', port);
362 scm_intprint (SCM_IDIST (exp), 10, port);
363 }
364 else
365 {
366 /* unknown immediate value */
367 scm_ipruk ("immediate", exp, port);
368 }
369 break;
370 case scm_tc3_cons_gloc:
371 /* gloc */
372 scm_puts ("#@", port);
373 exp = SCM_GLOC_SYM (exp);
374 goto taloop;
375 case scm_tc3_cons:
376 switch (SCM_TYP7 (exp))
377 {
378 case scm_tcs_cons_gloc:
379
380 if (SCM_STRUCT_VTABLE_DATA (exp) [scm_vtable_index_vcell] == 0)
381 {
382 ENTER_NESTED_DATA (pstate, exp, circref);
383 if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
384 {
385 SCM pwps, print = pstate->writingp ? g_write : g_display;
386 if (!print)
387 goto print_struct;
388 SCM_NEWSMOB (pwps,
389 scm_tc16_port_with_ps,
390 SCM_UNPACK (scm_cons (port, pstate->handle)));
391 scm_call_generic_2 (print, exp, pwps);
392 }
393 else
394 {
395 print_struct:
396 scm_print_struct (exp, port, pstate);
397 }
398 EXIT_NESTED_DATA (pstate);
399 break;
400 }
401
402 case scm_tcs_cons_imcar:
403 case scm_tcs_cons_nimcar:
404 ENTER_NESTED_DATA (pstate, exp, circref);
405 scm_iprlist ("(", exp, ')', port, pstate);
406 EXIT_NESTED_DATA (pstate);
407 break;
408 circref:
409 print_circref (port, pstate, exp);
410 break;
411 macros:
412 if (!SCM_CLOSUREP (SCM_CDR (exp)))
413 goto prinmacro;
414 case scm_tcs_closures:
415 /* The user supplied print closure procedure must handle
416 macro closures as well. */
417 if (SCM_FALSEP (scm_procedure_p (SCM_PRINT_CLOSURE))
418 || SCM_FALSEP (scm_printer_apply (SCM_PRINT_CLOSURE,
419 exp, port, pstate)))
420 {
421 SCM name, code, env;
422 if (SCM_MACROP (exp))
423 {
424 /* Printing a macro. */
425 prinmacro:
426 name = scm_macro_name (exp);
427 if (!SCM_CLOSUREP (SCM_CDR (exp)))
428 {
429 code = env = SCM_UNDEFINED;
430 scm_puts ("#<primitive-", port);
431 }
432 else
433 {
434 code = SCM_CODE (SCM_CDR (exp));
435 env = SCM_ENV (SCM_CDR (exp));
436 scm_puts ("#<", port);
437 }
438 if (SCM_CELL_WORD_0 (exp) & (3L << 16))
439 scm_puts ("macro", port);
440 else
441 scm_puts ("syntax", port);
442 if (SCM_CELL_WORD_0 (exp) & (2L << 16))
443 scm_putc ('!', port);
444 }
445 else
446 {
447 /* Printing a closure. */
448 name = scm_procedure_name (exp);
449 code = SCM_CODE (exp);
450 env = SCM_ENV (exp);
451 scm_puts ("#<procedure", port);
452 }
453 if (SCM_SYMBOLP (name))
454 {
455 scm_putc (' ', port);
456 scm_lfwrite (SCM_SYMBOL_CHARS (name), SCM_SYMBOL_LENGTH (name), port);
457 }
458 else if (SCM_STRINGP (name))
459 {
460 scm_putc (' ', port);
461 scm_lfwrite (SCM_STRING_CHARS (name), SCM_STRING_LENGTH (name), port);
462 }
463 if (!SCM_UNBNDP (code))
464 {
465 if (SCM_PRINT_SOURCE_P)
466 {
467 code = scm_unmemocopy (code,
468 SCM_EXTEND_ENV (SCM_CAR (code),
469 SCM_EOL,
470 env));
471 ENTER_NESTED_DATA (pstate, exp, circref);
472 scm_iprlist (" ", code, '>', port, pstate);
473 EXIT_NESTED_DATA (pstate);
474 }
475 else
476 {
477 if (SCM_TYP16 (exp) != scm_tc16_macro)
478 {
479 scm_putc (' ', port);
480 scm_iprin1 (SCM_CAR (code), port, pstate);
481 }
482 scm_putc ('>', port);
483 }
484 }
485 else
486 scm_putc ('>', port);
487 }
488 break;
489 case scm_tc7_substring:
490 case scm_tc7_string:
491 if (SCM_WRITINGP (pstate))
492 {
493 scm_sizet i;
494
495 scm_putc ('"', port);
496 for (i = 0; i < SCM_STRING_LENGTH (exp); ++i)
497 switch (SCM_STRING_CHARS (exp)[i])
498 {
499 case '"':
500 case '\\':
501 scm_putc ('\\', port);
502 default:
503 scm_putc (SCM_STRING_CHARS (exp)[i], port);
504 }
505 scm_putc ('"', port);
506 break;
507 }
508 else
509 scm_lfwrite (SCM_STRING_CHARS (exp), SCM_STRING_LENGTH (exp), port);
510 break;
511 case scm_tc7_symbol:
512 {
513 int pos;
514 int end;
515 int len;
516 char * str;
517 int weird;
518 int maybe_weird;
519 int mw_pos = 0;
520
521 len = SCM_SYMBOL_LENGTH (exp);
522 str = SCM_SYMBOL_CHARS (exp);
523 pos = 0;
524 weird = 0;
525 maybe_weird = 0;
526
527 if (len == 0)
528 scm_lfwrite ("#{}#", 4, port);
529
530 for (end = pos; end < len; ++end)
531 switch (str[end])
532 {
533 #ifdef BRACKETS_AS_PARENS
534 case '[':
535 case ']':
536 #endif
537 case '(':
538 case ')':
539 case '"':
540 case ';':
541 case SCM_WHITE_SPACES:
542 case SCM_LINE_INCREMENTORS:
543 weird_handler:
544 if (maybe_weird)
545 {
546 end = mw_pos;
547 maybe_weird = 0;
548 }
549 if (!weird)
550 {
551 scm_lfwrite ("#{", 2, port);
552 weird = 1;
553 }
554 if (pos < end)
555 {
556 scm_lfwrite (str + pos, end - pos, port);
557 }
558 {
559 char buf[2];
560 buf[0] = '\\';
561 buf[1] = str[end];
562 scm_lfwrite (buf, 2, port);
563 }
564 pos = end + 1;
565 break;
566 case '\\':
567 if (weird)
568 goto weird_handler;
569 if (!maybe_weird)
570 {
571 maybe_weird = 1;
572 mw_pos = pos;
573 }
574 break;
575 case '}':
576 case '#':
577 if (weird)
578 goto weird_handler;
579 break;
580 default:
581 break;
582 }
583 if (pos < end)
584 scm_lfwrite (str + pos, end - pos, port);
585 scm_remember_upto_here_1 (exp);
586 if (weird)
587 scm_lfwrite ("}#", 2, port);
588 break;
589 }
590 case scm_tc7_wvect:
591 ENTER_NESTED_DATA (pstate, exp, circref);
592 if (SCM_IS_WHVEC (exp))
593 scm_puts ("#wh(", port);
594 else
595 scm_puts ("#w(", port);
596 goto common_vector_printer;
597
598 case scm_tc7_vector:
599 ENTER_NESTED_DATA (pstate, exp, circref);
600 scm_puts ("#(", port);
601 common_vector_printer:
602 {
603 register long i;
604 int last = SCM_VECTOR_LENGTH (exp) - 1;
605 int cutp = 0;
606 if (pstate->fancyp && SCM_VECTOR_LENGTH (exp) > pstate->length)
607 {
608 last = pstate->length - 1;
609 cutp = 1;
610 }
611 for (i = 0; i < last; ++i)
612 {
613 /* CHECK_INTS; */
614 scm_iprin1 (SCM_VELTS (exp)[i], port, pstate);
615 scm_putc (' ', port);
616 }
617 if (i == last)
618 {
619 /* CHECK_INTS; */
620 scm_iprin1 (SCM_VELTS (exp)[i], port, pstate);
621 }
622 if (cutp)
623 scm_puts (" ...", port);
624 scm_putc (')', port);
625 }
626 EXIT_NESTED_DATA (pstate);
627 break;
628 #ifdef HAVE_ARRAYS
629 case scm_tc7_bvect:
630 case scm_tc7_byvect:
631 case scm_tc7_svect:
632 case scm_tc7_ivect:
633 case scm_tc7_uvect:
634 case scm_tc7_fvect:
635 case scm_tc7_dvect:
636 case scm_tc7_cvect:
637 #ifdef HAVE_LONG_LONGS
638 case scm_tc7_llvect:
639 #endif
640 scm_raprin1 (exp, port, pstate);
641 break;
642 #endif
643 case scm_tcs_subrs:
644 scm_puts (SCM_SUBR_GENERIC (exp) && *SCM_SUBR_GENERIC (exp)
645 ? "#<primitive-generic "
646 : "#<primitive-procedure ",
647 port);
648 scm_puts (SCM_SYMBOL_CHARS (SCM_SNAME (exp)), port);
649 scm_putc ('>', port);
650 break;
651 #ifdef CCLO
652 case scm_tc7_cclo:
653 {
654 SCM proc = SCM_CCLO_SUBR (exp);
655 if (SCM_EQ_P (proc, scm_f_gsubr_apply))
656 {
657 /* Print gsubrs as primitives */
658 SCM name = scm_procedure_name (exp);
659 scm_puts ("#<primitive-procedure", port);
660 if (SCM_NFALSEP (name))
661 {
662 scm_putc (' ', port);
663 scm_puts (SCM_SYMBOL_CHARS (name), port);
664 }
665 }
666 else
667 {
668 scm_puts ("#<compiled-closure ", port);
669 scm_iprin1 (proc, port, pstate);
670 }
671 scm_putc ('>', port);
672 }
673 break;
674 #endif
675 case scm_tc7_pws:
676 scm_puts ("#<procedure-with-setter", port);
677 {
678 SCM name = scm_procedure_name (exp);
679 if (SCM_NFALSEP (name))
680 {
681 scm_putc (' ', port);
682 scm_display (name, port);
683 }
684 }
685 scm_putc ('>', port);
686 break;
687 case scm_tc7_port:
688 {
689 register long i = SCM_PTOBNUM (exp);
690 if (i < scm_numptob
691 && scm_ptobs[i].print
692 && (scm_ptobs[i].print) (exp, port, pstate))
693 break;
694 goto punk;
695 }
696 case scm_tc7_smob:
697 {
698 register long i;
699 ENTER_NESTED_DATA (pstate, exp, circref);
700 i = SCM_SMOBNUM (exp);
701 if (i < scm_numsmob && scm_smobs[i].print
702 && (scm_smobs[i].print) (exp, port, pstate))
703 {
704 EXIT_NESTED_DATA (pstate);
705 break;
706 }
707 EXIT_NESTED_DATA (pstate);
708 /* Macros have their print field set to NULL. They are
709 handled at the same place as closures in order to achieve
710 non-redundancy. Placing the condition here won't slow
711 down printing of other smobs. */
712 if (SCM_TYP16 (exp) == scm_tc16_macro)
713 goto macros;
714 }
715 default:
716 punk:
717 scm_ipruk ("type", exp, port);
718 }
719 }
720 }
721
722 /* Print states are necessary for circular reference safe printing.
723 * They are also expensive to allocate. Therefore print states are
724 * kept in a pool so that they can be reused.
725 */
726
727 /* The PORT argument can also be a print-state/port pair, which will
728 * then be used instead of allocating a new print state. This is
729 * useful for continuing a chain of print calls from Scheme. */
730
731 void
732 scm_prin1 (SCM exp, SCM port, int writingp)
733 {
734 SCM handle = SCM_BOOL_F; /* Will GC protect the handle whilst unlinked */
735 SCM pstate_scm;
736 scm_print_state *pstate;
737
738 /* If PORT is a print-state/port pair, use that. Else create a new
739 print-state. */
740
741 if (SCM_PORT_WITH_PS_P (port))
742 {
743 pstate_scm = SCM_PORT_WITH_PS_PS (port);
744 port = SCM_PORT_WITH_PS_PORT (port);
745 }
746 else
747 {
748 /* First try to allocate a print state from the pool */
749 SCM_DEFER_INTS;
750 if (SCM_NNULLP (SCM_CDR (print_state_pool)))
751 {
752 handle = SCM_CDR (print_state_pool);
753 SCM_SETCDR (print_state_pool, SCM_CDDR (print_state_pool));
754 }
755 SCM_ALLOW_INTS;
756 if (SCM_FALSEP (handle))
757 handle = scm_cons (make_print_state (), SCM_EOL);
758 pstate_scm = SCM_CAR (handle);
759 }
760
761 pstate = SCM_PRINT_STATE (pstate_scm);
762 pstate->writingp = writingp;
763 scm_iprin1 (exp, port, pstate);
764
765 /* Return print state to pool if it has been created above and
766 hasn't escaped to Scheme. */
767
768 if (!SCM_FALSEP (handle) && !pstate->revealed)
769 {
770 SCM_DEFER_INTS;
771 SCM_SETCDR (handle, SCM_CDR (print_state_pool));
772 SCM_SETCDR (print_state_pool, handle);
773 SCM_ALLOW_INTS;
774 }
775 }
776
777
778 /* Print an integer.
779 */
780
781 void
782 scm_intprint (long n, int radix, SCM port)
783 {
784 char num_buf[SCM_INTBUFLEN];
785 scm_lfwrite (num_buf, scm_iint2str (n, radix, num_buf), port);
786 }
787
788 /* Print an object of unrecognized type.
789 */
790
791 void
792 scm_ipruk (char *hdr, SCM ptr, SCM port)
793 {
794 scm_puts ("#<unknown-", port);
795 scm_puts (hdr, port);
796 if (SCM_CELLP (ptr))
797 {
798 scm_puts (" (0x", port);
799 scm_intprint (SCM_CELL_WORD_0 (ptr), 16, port);
800 scm_puts (" . 0x", port);
801 scm_intprint (SCM_CELL_WORD_1 (ptr), 16, port);
802 scm_puts (") @", port);
803 }
804 scm_puts (" 0x", port);
805 scm_intprint (SCM_UNPACK (ptr), 16, port);
806 scm_putc ('>', port);
807 }
808
809
810 /* Print a list. The list may be either a list of ordinary data, or it may be
811 a list that represents code. Lists that represent code may contain gloc
812 cells.
813 */
814 void
815 scm_iprlist (char *hdr,SCM exp,int tlr,SCM port,scm_print_state *pstate)
816 {
817 register SCM hare, tortoise;
818 int floor = pstate->top - 2;
819 scm_puts (hdr, port);
820 /* CHECK_INTS; */
821 if (pstate->fancyp)
822 goto fancy_printing;
823
824 /* Run a hare and tortoise so that total time complexity will be
825 O(depth * N) instead of O(N^2). */
826 hare = SCM_CDR (exp);
827 tortoise = exp;
828 while (SCM_ECONSP (hare))
829 {
830 if (SCM_EQ_P (hare, tortoise))
831 goto fancy_printing;
832 hare = SCM_CDR (hare);
833 if (SCM_IMP (hare) || SCM_NECONSP (hare))
834 break;
835 hare = SCM_CDR (hare);
836 tortoise = SCM_CDR (tortoise);
837 }
838
839 /* No cdr cycles intrinsic to this list */
840 scm_iprin1 (SCM_CAR (exp), port, pstate);
841 for (exp = SCM_CDR (exp); SCM_ECONSP (exp); exp = SCM_CDR (exp))
842 {
843 register int i;
844
845 for (i = floor; i >= 0; --i)
846 if (SCM_EQ_P (pstate->ref_stack[i], exp))
847 goto circref;
848 PUSH_REF (pstate, exp);
849 scm_putc (' ', port);
850 /* CHECK_INTS; */
851 scm_iprin1 (SCM_CAR (exp), port, pstate);
852 }
853 if (!SCM_NULLP (exp))
854 {
855 scm_puts (" . ", port);
856 scm_iprin1 (exp, port, pstate);
857 }
858
859 end:
860 scm_putc (tlr, port);
861 pstate->top = floor + 2;
862 return;
863
864 fancy_printing:
865 {
866 int n = pstate->length;
867
868 scm_iprin1 (SCM_CAR (exp), port, pstate);
869 exp = SCM_CDR (exp); --n;
870 for (; SCM_ECONSP (exp); exp = SCM_CDR (exp))
871 {
872 register unsigned long i;
873
874 for (i = 0; i < pstate->top; ++i)
875 if (SCM_EQ_P (pstate->ref_stack[i], exp))
876 goto fancy_circref;
877 if (pstate->fancyp)
878 {
879 if (n == 0)
880 {
881 scm_puts (" ...", port);
882 goto skip_tail;
883 }
884 else
885 --n;
886 }
887 PUSH_REF(pstate, exp);
888 ++pstate->list_offset;
889 scm_putc (' ', port);
890 /* CHECK_INTS; */
891 scm_iprin1 (SCM_CAR (exp), port, pstate);
892 }
893 }
894 if (SCM_NNULLP (exp))
895 {
896 scm_puts (" . ", port);
897 scm_iprin1 (exp, port, pstate);
898 }
899 skip_tail:
900 pstate->list_offset -= pstate->top - floor - 2;
901 goto end;
902
903 fancy_circref:
904 pstate->list_offset -= pstate->top - floor - 2;
905
906 circref:
907 scm_puts (" . ", port);
908 print_circref (port, pstate, exp);
909 goto end;
910 }
911
912 \f
913
914 int
915 scm_valid_oport_value_p (SCM val)
916 {
917 return (SCM_OPOUTPORTP (val)
918 || (SCM_PORT_WITH_PS_P (val)
919 && SCM_OPOUTPORTP (SCM_PORT_WITH_PS_PORT (val))));
920 }
921
922 /* SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write); */
923
924 SCM
925 scm_write (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_write);
931
932 scm_prin1 (obj, port, 1);
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_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display); */
944
945 SCM
946 scm_display (SCM obj, SCM port)
947 {
948 if (SCM_UNBNDP (port))
949 port = scm_cur_outp;
950
951 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_display);
952
953 scm_prin1 (obj, port, 0);
954 #ifdef HAVE_PIPE
955 # ifdef EPIPE
956 if (EPIPE == errno)
957 scm_close_port (port);
958 # endif
959 #endif
960 return SCM_UNSPECIFIED;
961 }
962
963
964 SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
965 (SCM destination, SCM message, SCM args),
966 "Write @var{message} to @var{destination}, defaulting to\n"
967 "the current output port.\n"
968 "@var{message} can contain @code{~A} (was @code{%s}) and\n"
969 "@code{~S} (was @code{%S}) escapes. When printed,\n"
970 "the escapes are replaced with corresponding members of\n"
971 "@var{ARGS}:\n"
972 "@code{~A} formats using @code{display} and @code{~S} formats\n"
973 "using @code{write}.\n"
974 "If @var{destination} is @code{#t}, then use the current output\n"
975 "port, if @var{destination} is @code{#f}, then return a string\n"
976 "containing the formatted text. Does not add a trailing newline.")
977 #define FUNC_NAME s_scm_simple_format
978 {
979 SCM answer = SCM_UNSPECIFIED;
980 int fReturnString = 0;
981 int writingp;
982 char *start;
983 char *end;
984 char *p;
985
986 if (SCM_EQ_P (destination, SCM_BOOL_T))
987 {
988 destination = scm_cur_outp;
989 }
990 else if (SCM_FALSEP (destination))
991 {
992 fReturnString = 1;
993 destination = scm_mkstrport (SCM_INUM0,
994 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
995 SCM_OPN | SCM_WRTNG,
996 FUNC_NAME);
997 }
998 else
999 {
1000 SCM_VALIDATE_OPORT_VALUE (1, destination);
1001 destination = SCM_COERCE_OUTPORT (destination);
1002 }
1003 SCM_VALIDATE_STRING (2, message);
1004 SCM_VALIDATE_REST_ARGUMENT (args);
1005
1006 start = SCM_STRING_CHARS (message);
1007 end = start + SCM_STRING_LENGTH (message);
1008 for (p = start; p != end; ++p)
1009 if (*p == '~')
1010 {
1011 if (!SCM_CONSP (args))
1012 continue;
1013
1014 if (++p == end)
1015 continue;
1016
1017 if (*p == 'A' || *p == 'a')
1018 writingp = 0;
1019 else if (*p == 'S' || *p == 's')
1020 writingp = 1;
1021 else
1022 continue;
1023
1024 scm_lfwrite (start, p - start - 1, destination);
1025 scm_prin1 (SCM_CAR (args), destination, writingp);
1026 args = SCM_CDR (args);
1027 start = p + 1;
1028 }
1029 scm_lfwrite (start, p - start, destination);
1030
1031 if (fReturnString)
1032 answer = scm_strport_to_string (destination);
1033
1034 return scm_return_first (answer, message);
1035 }
1036 #undef FUNC_NAME
1037
1038
1039 SCM_DEFINE (scm_newline, "newline", 0, 1, 0,
1040 (SCM port),
1041 "Send a newline to @var{port}.")
1042 #define FUNC_NAME s_scm_newline
1043 {
1044 if (SCM_UNBNDP (port))
1045 port = scm_cur_outp;
1046
1047 SCM_VALIDATE_OPORT_VALUE (1,port);
1048
1049 scm_putc ('\n', SCM_COERCE_OUTPORT (port));
1050 return SCM_UNSPECIFIED;
1051 }
1052 #undef FUNC_NAME
1053
1054 SCM_DEFINE (scm_write_char, "write-char", 1, 1, 0,
1055 (SCM chr, SCM port),
1056 "Send character @var{chr} to @var{port}.")
1057 #define FUNC_NAME s_scm_write_char
1058 {
1059 if (SCM_UNBNDP (port))
1060 port = scm_cur_outp;
1061
1062 SCM_VALIDATE_CHAR (1,chr);
1063 SCM_VALIDATE_OPORT_VALUE (2,port);
1064
1065 scm_putc ((int) SCM_CHAR (chr), SCM_COERCE_OUTPORT (port));
1066 #ifdef HAVE_PIPE
1067 # ifdef EPIPE
1068 if (EPIPE == errno)
1069 scm_close_port (port);
1070 # endif
1071 #endif
1072 return SCM_UNSPECIFIED;
1073 }
1074 #undef FUNC_NAME
1075
1076 \f
1077
1078 /* Call back to Scheme code to do the printing of special objects
1079 * (like structs). SCM_PRINTER_APPLY applies PROC to EXP and a smob
1080 * containing PORT and PSTATE. This object can be used as the port for
1081 * display/write etc to continue the current print chain. The REVEALED
1082 * field of PSTATE is set to true to indicate that the print state has
1083 * escaped to Scheme and thus has to be freed by the GC.
1084 */
1085
1086 scm_bits_t scm_tc16_port_with_ps;
1087
1088 /* Print exactly as the port itself would */
1089
1090 static int
1091 port_with_ps_print (SCM obj, SCM port, scm_print_state *pstate)
1092 {
1093 obj = SCM_PORT_WITH_PS_PORT (obj);
1094 return scm_ptobs[SCM_PTOBNUM (obj)].print (obj, port, pstate);
1095 }
1096
1097 SCM
1098 scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate)
1099 {
1100 SCM pwps;
1101 SCM pair = scm_cons (port, pstate->handle);
1102 SCM_NEWSMOB (pwps, scm_tc16_port_with_ps, SCM_UNPACK (pair));
1103 pstate->revealed = 1;
1104 return scm_apply (proc, exp, scm_cons (pwps, scm_listofnull));
1105 }
1106
1107 SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 2, 0, 0,
1108 (SCM port, SCM pstate),
1109 "Create a new port which behaves like @var{port}, but with an\n"
1110 "included print state @var{pstate}.")
1111 #define FUNC_NAME s_scm_port_with_print_state
1112 {
1113 SCM pwps;
1114 SCM_VALIDATE_OPORT_VALUE (1,port);
1115 SCM_VALIDATE_PRINTSTATE (2,pstate);
1116 port = SCM_COERCE_OUTPORT (port);
1117 SCM_NEWSMOB (pwps, scm_tc16_port_with_ps, SCM_UNPACK (scm_cons (port, pstate)));
1118 return pwps;
1119 }
1120 #undef FUNC_NAME
1121
1122 SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0,
1123 (SCM port),
1124 "Return the print state of the port @var{port}. If @var{port}\n"
1125 "has no associated print state, @code{#f} is returned.")
1126 #define FUNC_NAME s_scm_get_print_state
1127 {
1128 if (SCM_PORT_WITH_PS_P (port))
1129 return SCM_PORT_WITH_PS_PS (port);
1130 if (SCM_OUTPUT_PORT_P (port))
1131 return SCM_BOOL_F;
1132 SCM_WRONG_TYPE_ARG (1, port);
1133 }
1134 #undef FUNC_NAME
1135
1136 \f
1137
1138 void
1139 scm_init_print ()
1140 {
1141 SCM vtable, layout, type;
1142
1143 scm_init_opts (scm_print_options, scm_print_opts, SCM_N_PRINT_OPTIONS);
1144 vtable = scm_make_vtable_vtable (scm_nullstr, SCM_INUM0, SCM_EOL);
1145 layout = scm_make_struct_layout (scm_makfrom0str (SCM_PRINT_STATE_LAYOUT));
1146 type = scm_make_struct (vtable, SCM_INUM0, SCM_LIST1 (layout));
1147 scm_set_struct_vtable_name_x (type, scm_str2symbol ("print-state"));
1148 print_state_pool = scm_permanent_object (scm_cons (type, SCM_EOL));
1149
1150 scm_print_state_vtable = type;
1151
1152 /* Don't want to bind a wrapper class in GOOPS, so pass 0 as arg1. */
1153 scm_tc16_port_with_ps = scm_make_smob_type (0, 0);
1154 scm_set_smob_mark (scm_tc16_port_with_ps, scm_markcdr);
1155 scm_set_smob_print (scm_tc16_port_with_ps, port_with_ps_print);
1156
1157 #ifndef SCM_MAGIC_SNARFER
1158 #include "libguile/print.x"
1159 #endif
1160 }
1161
1162 /*
1163 Local Variables:
1164 c-file-style: "gnu"
1165 End:
1166 */