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