Merge commit 'origin/master'
[bpt/guile.git] / libguile / print.c
1 /* Copyright (C) 1995-1999,2000,2001, 2002, 2003, 2004, 2006, 2008, 2009 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 License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful, but
9 * 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., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
17 */
18
19
20 \f
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <errno.h>
26 #include <unictype.h>
27
28 #include "libguile/_scm.h"
29 #include "libguile/chars.h"
30 #include "libguile/continuations.h"
31 #include "libguile/smob.h"
32 #include "libguile/eval.h"
33 #include "libguile/macros.h"
34 #include "libguile/procprop.h"
35 #include "libguile/read.h"
36 #include "libguile/weaks.h"
37 #include "libguile/unif.h"
38 #include "libguile/alist.h"
39 #include "libguile/struct.h"
40 #include "libguile/objects.h"
41 #include "libguile/ports.h"
42 #include "libguile/root.h"
43 #include "libguile/strings.h"
44 #include "libguile/strports.h"
45 #include "libguile/vectors.h"
46 #include "libguile/lang.h"
47 #include "libguile/numbers.h"
48
49 #include "libguile/validate.h"
50 #include "libguile/print.h"
51
52 #include "libguile/private-options.h"
53
54 \f
55
56 /* {Names of immediate symbols}
57 *
58 * This table must agree with the declarations in scm.h: {Immediate Symbols}.
59 */
60
61 /* This table must agree with the list of flags in tags.h. */
62 static const char *iflagnames[] =
63 {
64 "#f",
65 "#t",
66 "#<undefined>",
67 "#<eof>",
68 "()",
69 "#<unspecified>",
70
71 /* Unbound slot marker for GOOPS. For internal use in GOOPS only. */
72 "#<unbound>",
73
74 /* Elisp nil value. This is its Scheme name; whenever it's printed in
75 * Elisp, it should appear as the symbol `nil'. */
76 "#nil"
77 };
78
79 SCM_SYMBOL (sym_reader, "reader");
80
81 scm_t_option scm_print_opts[] = {
82 { SCM_OPTION_SCM, "closure-hook", SCM_UNPACK (SCM_BOOL_F),
83 "Hook for printing closures (should handle macros as well)." },
84 { SCM_OPTION_BOOLEAN, "source", 0,
85 "Print closures with source." },
86 { SCM_OPTION_SCM, "highlight-prefix", (unsigned long)SCM_BOOL_F,
87 "The string to print before highlighted values." },
88 { SCM_OPTION_SCM, "highlight-suffix", (unsigned long)SCM_BOOL_F,
89 "The string to print after highlighted values." },
90 { SCM_OPTION_SCM, "quote-keywordish-symbols", (unsigned long)SCM_BOOL_F,
91 "How to print symbols that have a colon as their first or last character. "
92 "The value '#f' does not quote the colons; '#t' quotes them; "
93 "'reader' quotes them when the reader option 'keywords' is not '#f'."
94 },
95 { 0 },
96
97 };
98
99 SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0,
100 (SCM setting),
101 "Option interface for the print options. Instead of using\n"
102 "this procedure directly, use the procedures\n"
103 "@code{print-enable}, @code{print-disable}, @code{print-set!}\n"
104 "and @code{print-options}.")
105 #define FUNC_NAME s_scm_print_options
106 {
107 SCM ans = scm_options (setting,
108 scm_print_opts,
109 FUNC_NAME);
110 return ans;
111 }
112 #undef FUNC_NAME
113
114 \f
115 /* {Printing of Scheme Objects}
116 */
117
118 /* Detection of circular references.
119 *
120 * Due to other constraints in the implementation, this code has bad
121 * time complexity (O (depth * N)), The printer code can be
122 * rewritten to be O(N).
123 */
124 #define PUSH_REF(pstate, obj) \
125 do \
126 { \
127 PSTATE_STACK_SET (pstate, pstate->top, obj); \
128 pstate->top++; \
129 if (pstate->top == pstate->ceiling) \
130 grow_ref_stack (pstate); \
131 } while(0)
132
133 #define ENTER_NESTED_DATA(pstate, obj, label) \
134 do \
135 { \
136 register unsigned long i; \
137 for (i = 0; i < pstate->top; ++i) \
138 if (scm_is_eq (PSTATE_STACK_REF (pstate, i), (obj))) \
139 goto label; \
140 if (pstate->fancyp) \
141 { \
142 if (pstate->top - pstate->list_offset >= pstate->level) \
143 { \
144 scm_putc ('#', port); \
145 return; \
146 } \
147 } \
148 PUSH_REF(pstate, obj); \
149 } while(0)
150
151 #define EXIT_NESTED_DATA(pstate) \
152 do \
153 { \
154 --pstate->top; \
155 PSTATE_STACK_SET (pstate, pstate->top, SCM_UNDEFINED); \
156 } \
157 while (0)
158
159 SCM scm_print_state_vtable = SCM_BOOL_F;
160 static SCM print_state_pool = SCM_EOL;
161 scm_i_pthread_mutex_t print_state_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
162
163 #ifdef GUILE_DEBUG /* Used for debugging purposes */
164
165 SCM_DEFINE (scm_current_pstate, "current-pstate", 0, 0, 0,
166 (),
167 "Return the current-pstate -- the car of the\n"
168 "@code{print_state_pool}. @code{current-pstate} is only\n"
169 "included in @code{--enable-guile-debug} builds.")
170 #define FUNC_NAME s_scm_current_pstate
171 {
172 if (!scm_is_null (print_state_pool))
173 return SCM_CAR (print_state_pool);
174 else
175 return SCM_BOOL_F;
176 }
177 #undef FUNC_NAME
178
179 #endif
180
181 #define PSTATE_SIZE 50L
182
183 static SCM
184 make_print_state (void)
185 {
186 SCM print_state
187 = scm_make_struct (scm_print_state_vtable, SCM_INUM0, SCM_EOL);
188 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
189 pstate->ref_vect = scm_c_make_vector (PSTATE_SIZE, SCM_UNDEFINED);
190 pstate->ceiling = SCM_SIMPLE_VECTOR_LENGTH (pstate->ref_vect);
191 pstate->highlight_objects = SCM_EOL;
192 return print_state;
193 }
194
195 SCM
196 scm_make_print_state ()
197 {
198 SCM answer = SCM_BOOL_F;
199
200 /* First try to allocate a print state from the pool */
201 scm_i_pthread_mutex_lock (&print_state_mutex);
202 if (!scm_is_null (print_state_pool))
203 {
204 answer = SCM_CAR (print_state_pool);
205 print_state_pool = SCM_CDR (print_state_pool);
206 }
207 scm_i_pthread_mutex_unlock (&print_state_mutex);
208
209 return scm_is_false (answer) ? make_print_state () : answer;
210 }
211
212 void
213 scm_free_print_state (SCM print_state)
214 {
215 SCM handle;
216 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
217 /* Cleanup before returning print state to pool.
218 * It is better to do it here. Doing it in scm_prin1
219 * would cost more since that function is called much more
220 * often.
221 */
222 pstate->fancyp = 0;
223 pstate->revealed = 0;
224 pstate->highlight_objects = SCM_EOL;
225 scm_i_pthread_mutex_lock (&print_state_mutex);
226 handle = scm_cons (print_state, print_state_pool);
227 print_state_pool = handle;
228 scm_i_pthread_mutex_unlock (&print_state_mutex);
229 }
230
231 SCM
232 scm_i_port_with_print_state (SCM port, SCM print_state)
233 {
234 if (SCM_UNBNDP (print_state))
235 {
236 if (SCM_PORT_WITH_PS_P (port))
237 return port;
238 else
239 print_state = scm_make_print_state ();
240 /* port does not need to be coerced since it doesn't have ps */
241 }
242 else
243 port = SCM_COERCE_OUTPORT (port);
244 SCM_RETURN_NEWSMOB (scm_tc16_port_with_ps,
245 SCM_UNPACK (scm_cons (port, print_state)));
246 }
247
248 static void
249 grow_ref_stack (scm_print_state *pstate)
250 {
251 SCM old_vect = pstate->ref_vect;
252 size_t old_size = SCM_SIMPLE_VECTOR_LENGTH (old_vect);
253 size_t new_size = 2 * pstate->ceiling;
254 SCM new_vect = scm_c_make_vector (new_size, SCM_UNDEFINED);
255 unsigned long int i;
256
257 for (i = 0; i != old_size; ++i)
258 SCM_SIMPLE_VECTOR_SET (new_vect, i, SCM_SIMPLE_VECTOR_REF (old_vect, i));
259
260 pstate->ref_vect = new_vect;
261 pstate->ceiling = new_size;
262 }
263
264 #define PSTATE_STACK_REF(p,i) SCM_SIMPLE_VECTOR_REF((p)->ref_vect, (i))
265 #define PSTATE_STACK_SET(p,i,v) SCM_SIMPLE_VECTOR_SET((p)->ref_vect, (i), (v))
266
267 static void
268 print_circref (SCM port, scm_print_state *pstate, SCM ref)
269 {
270 register long i;
271 long self = pstate->top - 1;
272 i = pstate->top - 1;
273 if (scm_is_pair (PSTATE_STACK_REF (pstate, i)))
274 {
275 while (i > 0)
276 {
277 if (!scm_is_pair (PSTATE_STACK_REF (pstate, i-1))
278 || !scm_is_eq (SCM_CDR (PSTATE_STACK_REF (pstate, i-1)),
279 SCM_CDR (PSTATE_STACK_REF (pstate, i))))
280 break;
281 --i;
282 }
283 self = i;
284 }
285 for (i = pstate->top - 1; 1; --i)
286 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), ref))
287 break;
288 scm_putc ('#', port);
289 scm_intprint (i - self, 10, port);
290 scm_putc ('#', port);
291 }
292
293 /* Print the name of a symbol. */
294
295 static int
296 quote_keywordish_symbol (const char *str, size_t len)
297 {
298 SCM option;
299
300 /* LEN is guaranteed to be > 0.
301 */
302 if (str[0] != ':' && str[len-1] != ':')
303 return 0;
304
305 option = SCM_PRINT_KEYWORD_STYLE;
306 if (scm_is_false (option))
307 return 0;
308 if (scm_is_eq (option, sym_reader))
309 return scm_is_true (SCM_PACK (SCM_KEYWORD_STYLE));
310 return 1;
311 }
312
313 void
314 scm_print_symbol_name (const char *str, size_t len, SCM port)
315 {
316 /* This points to the first character that has not yet been written to the
317 * port. */
318 size_t pos = 0;
319 /* This points to the character we're currently looking at. */
320 size_t end;
321 /* If the name contains weird characters, we'll escape them with
322 * backslashes and set this flag; it indicates that we should surround the
323 * name with "#{" and "}#". */
324 int weird = 0;
325 /* Backslashes are not sufficient to make a name weird, but if a name is
326 * weird because of other characters, backslahes need to be escaped too.
327 * The first time we see a backslash, we set maybe_weird, and mw_pos points
328 * to the backslash. Then if the name turns out to be weird, we re-process
329 * everything starting from mw_pos.
330 * We could instead make backslashes always weird. This is not necessary
331 * to ensure that the output is (read)-able, but it would make this code
332 * simpler and faster. */
333 int maybe_weird = 0;
334 size_t mw_pos = 0;
335
336 if (len == 0 || str[0] == '\'' || str[0] == '`' || str[0] == ','
337 || quote_keywordish_symbol (str, len)
338 || (str[0] == '.' && len == 1)
339 || scm_is_true (scm_c_locale_stringn_to_number (str, len, 10)))
340 {
341 scm_lfwrite ("#{", 2, port);
342 weird = 1;
343 }
344
345 for (end = pos; end < len; ++end)
346 switch (str[end])
347 {
348 #ifdef BRACKETS_AS_PARENS
349 case '[':
350 case ']':
351 #endif
352 case '(':
353 case ')':
354 case '"':
355 case ';':
356 case '#':
357 case SCM_WHITE_SPACES:
358 case SCM_LINE_INCREMENTORS:
359 weird_handler:
360 if (maybe_weird)
361 {
362 end = mw_pos;
363 maybe_weird = 0;
364 }
365 if (!weird)
366 {
367 scm_lfwrite ("#{", 2, port);
368 weird = 1;
369 }
370 if (pos < end)
371 scm_lfwrite (str + pos, end - pos, port);
372 {
373 char buf[2];
374 buf[0] = '\\';
375 buf[1] = str[end];
376 scm_lfwrite (buf, 2, port);
377 }
378 pos = end + 1;
379 break;
380 case '\\':
381 if (weird)
382 goto weird_handler;
383 if (!maybe_weird)
384 {
385 maybe_weird = 1;
386 mw_pos = pos;
387 }
388 break;
389 default:
390 break;
391 }
392 if (pos < end)
393 scm_lfwrite (str + pos, end - pos, port);
394 if (weird)
395 scm_lfwrite ("}#", 2, port);
396 }
397
398 /* Print generally. Handles both write and display according to PSTATE.
399 */
400 SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write);
401 SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display);
402
403 static void iprin1 (SCM exp, SCM port, scm_print_state *pstate);
404
405 void
406 scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate)
407 {
408 if (pstate->fancyp
409 && scm_is_true (scm_memq (exp, pstate->highlight_objects)))
410 {
411 scm_display (SCM_PRINT_HIGHLIGHT_PREFIX, port);
412 iprin1 (exp, port, pstate);
413 scm_display (SCM_PRINT_HIGHLIGHT_SUFFIX, port);
414 }
415 else
416 iprin1 (exp, port, pstate);
417 }
418
419 static void
420 iprin1 (SCM exp, SCM port, scm_print_state *pstate)
421 {
422 switch (SCM_ITAG3 (exp))
423 {
424 case scm_tc3_closure:
425 case scm_tc3_tc7_1:
426 case scm_tc3_tc7_2:
427 /* These tc3 tags should never occur in an immediate value. They are
428 * only used in cell types of non-immediates, i. e. the value returned
429 * by SCM_CELL_TYPE (exp) can use these tags.
430 */
431 scm_ipruk ("immediate", exp, port);
432 break;
433 case scm_tc3_int_1:
434 case scm_tc3_int_2:
435 scm_intprint (SCM_I_INUM (exp), 10, port);
436 break;
437 case scm_tc3_imm24:
438 if (SCM_CHARP (exp))
439 {
440 scm_t_wchar i = SCM_CHAR (exp);
441 const char *name;
442
443 if (SCM_WRITINGP (pstate))
444 {
445 scm_puts ("#\\", port);
446 name = scm_i_charname (exp);
447 if (name != NULL)
448 scm_puts (name, port);
449 else if (uc_is_general_category_withtable (i, UC_CATEGORY_MASK_L
450 | UC_CATEGORY_MASK_M
451 | UC_CATEGORY_MASK_N
452 | UC_CATEGORY_MASK_P
453 | UC_CATEGORY_MASK_S))
454 /* Print the character if is graphic character. */
455 {
456 if (i<256)
457 /* Character is graphic. Print it. */
458 scm_putc (i, port);
459 else
460 /* Character is graphic but unrepresentable in
461 this port's encoding. */
462 scm_intprint (i, 8, port);
463 }
464 else
465 /* Character is a non-graphical character. */
466 scm_intprint (i, 8, port);
467 }
468 else
469 scm_putc (i, port);
470 }
471 else if (SCM_IFLAGP (exp)
472 && ((size_t) SCM_IFLAGNUM (exp) < (sizeof iflagnames / sizeof (char *))))
473 {
474 scm_puts (iflagnames [SCM_IFLAGNUM (exp)], port);
475 }
476 else if (SCM_ISYMP (exp))
477 {
478 scm_i_print_isym (exp, port);
479 }
480 else if (SCM_ILOCP (exp))
481 {
482 scm_i_print_iloc (exp, port);
483 }
484 else
485 {
486 /* unknown immediate value */
487 scm_ipruk ("immediate", exp, port);
488 }
489 break;
490 case scm_tc3_cons:
491 switch (SCM_TYP7 (exp))
492 {
493 case scm_tcs_struct:
494 {
495 ENTER_NESTED_DATA (pstate, exp, circref);
496 if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
497 {
498 SCM pwps, print = pstate->writingp ? g_write : g_display;
499 if (!print)
500 goto print_struct;
501 pwps = scm_i_port_with_print_state (port, pstate->handle);
502 pstate->revealed = 1;
503 scm_call_generic_2 (print, exp, pwps);
504 }
505 else
506 {
507 print_struct:
508 scm_print_struct (exp, port, pstate);
509 }
510 EXIT_NESTED_DATA (pstate);
511 }
512 break;
513 case scm_tcs_cons_imcar:
514 case scm_tcs_cons_nimcar:
515 ENTER_NESTED_DATA (pstate, exp, circref);
516 scm_iprlist ("(", exp, ')', port, pstate);
517 EXIT_NESTED_DATA (pstate);
518 break;
519 circref:
520 print_circref (port, pstate, exp);
521 break;
522 case scm_tcs_closures:
523 if (scm_is_false (scm_procedure_p (SCM_PRINT_CLOSURE))
524 || scm_is_false (scm_printer_apply (SCM_PRINT_CLOSURE,
525 exp, port, pstate)))
526 {
527 SCM formals = SCM_CLOSURE_FORMALS (exp);
528 scm_puts ("#<procedure", port);
529 scm_putc (' ', port);
530 scm_iprin1 (scm_procedure_name (exp), port, pstate);
531 scm_putc (' ', port);
532 if (SCM_PRINT_SOURCE_P)
533 {
534 SCM env = SCM_ENV (exp);
535 SCM xenv = SCM_EXTEND_ENV (formals, SCM_EOL, env);
536 SCM src = scm_i_unmemocopy_body (SCM_CODE (exp), xenv);
537 ENTER_NESTED_DATA (pstate, exp, circref);
538 scm_iprin1 (src, port, pstate);
539 EXIT_NESTED_DATA (pstate);
540 }
541 else
542 scm_iprin1 (formals, port, pstate);
543 scm_putc ('>', port);
544 }
545 break;
546 case scm_tc7_number:
547 switch SCM_TYP16 (exp) {
548 case scm_tc16_big:
549 scm_bigprint (exp, port, pstate);
550 break;
551 case scm_tc16_real:
552 scm_print_real (exp, port, pstate);
553 break;
554 case scm_tc16_complex:
555 scm_print_complex (exp, port, pstate);
556 break;
557 case scm_tc16_fraction:
558 scm_i_print_fraction (exp, port, pstate);
559 break;
560 }
561 break;
562 case scm_tc7_string:
563 if (SCM_WRITINGP (pstate))
564 {
565 size_t i, j, len;
566 static char const hex[] = "0123456789abcdef";
567 char buf[8];
568
569
570 scm_putc ('"', port);
571 len = scm_i_string_length (exp);
572 for (i = 0; i < len; ++i)
573 {
574 scm_t_wchar ch = scm_i_string_ref (exp, i);
575 int printed = 0;
576
577 if (ch == ' ' || ch == '\n')
578 {
579 scm_putc (ch, port);
580 printed = 1;
581 }
582 else if (ch == '"' || ch == '\\')
583 {
584 scm_putc ('\\', port);
585 scm_charprint (ch, port);
586 printed = 1;
587 }
588 else
589 if (uc_is_general_category_withtable
590 (ch,
591 UC_CATEGORY_MASK_L | UC_CATEGORY_MASK_M |
592 UC_CATEGORY_MASK_N | UC_CATEGORY_MASK_P |
593 UC_CATEGORY_MASK_S))
594 {
595 /* Print the character since it is a graphic
596 character. */
597 scm_t_wchar *wbuf;
598 SCM wstr = scm_i_make_wide_string (1, &wbuf);
599 char *buf;
600 size_t len;
601
602 wbuf[0] = ch;
603
604 buf = u32_conv_to_encoding ("ISO-8859-1",
605 iconveh_error,
606 (scm_t_uint32 *) wbuf,
607 1, NULL, NULL, &len);
608 if (buf != NULL)
609 {
610 /* Character is graphic and representable in
611 this encoding. Print it. */
612 scm_lfwrite_str (wstr, port);
613 free (buf);
614 printed = 1;
615 }
616 }
617
618 if (!printed)
619 {
620 /* Character is graphic but unrepresentable in
621 this port's encoding or is not graphic. */
622 if (ch <= 0xFF)
623 {
624 buf[0] = '\\';
625 buf[1] = 'x';
626 buf[2] = hex[ch / 16];
627 buf[3] = hex[ch % 16];
628 scm_lfwrite (buf, 4, port);
629 }
630 else if (ch <= 0xFFFF)
631 {
632 buf[0] = '\\';
633 buf[1] = 'u';
634 buf[2] = hex[(ch & 0xF000) >> 12];
635 buf[3] = hex[(ch & 0xF00) >> 8];
636 buf[4] = hex[(ch & 0xF0) >> 4];
637 buf[5] = hex[(ch & 0xF)];
638 scm_lfwrite (buf, 6, port);
639 j = i + 1;
640 }
641 else if (ch > 0xFFFF)
642 {
643 buf[0] = '\\';
644 buf[1] = 'U';
645 buf[2] = hex[(ch & 0xF00000) >> 20];
646 buf[3] = hex[(ch & 0xF0000) >> 16];
647 buf[4] = hex[(ch & 0xF000) >> 12];
648 buf[5] = hex[(ch & 0xF00) >> 8];
649 buf[6] = hex[(ch & 0xF0) >> 4];
650 buf[7] = hex[(ch & 0xF)];
651 scm_lfwrite (buf, 8, port);
652 j = i + 1;
653 }
654 }
655 }
656 scm_putc ('"', port);
657 scm_remember_upto_here_1 (exp);
658 }
659 else
660 scm_lfwrite (scm_i_string_chars (exp), scm_i_string_length (exp),
661 port);
662 scm_remember_upto_here_1 (exp);
663 break;
664 case scm_tc7_symbol:
665 if (scm_i_symbol_is_interned (exp))
666 {
667 scm_print_symbol_name (scm_i_symbol_chars (exp),
668 scm_i_symbol_length (exp), port);
669 scm_remember_upto_here_1 (exp);
670 }
671 else
672 {
673 scm_puts ("#<uninterned-symbol ", port);
674 scm_print_symbol_name (scm_i_symbol_chars (exp),
675 scm_i_symbol_length (exp),
676 port);
677 scm_putc (' ', port);
678 scm_uintprint (SCM_UNPACK (exp), 16, port);
679 scm_putc ('>', port);
680 }
681 break;
682 case scm_tc7_variable:
683 scm_i_variable_print (exp, port, pstate);
684 break;
685 case scm_tc7_wvect:
686 ENTER_NESTED_DATA (pstate, exp, circref);
687 if (SCM_IS_WHVEC (exp))
688 scm_puts ("#wh(", port);
689 else
690 scm_puts ("#w(", port);
691 goto common_vector_printer;
692
693 case scm_tc7_vector:
694 ENTER_NESTED_DATA (pstate, exp, circref);
695 scm_puts ("#(", port);
696 common_vector_printer:
697 {
698 register long i;
699 long last = SCM_SIMPLE_VECTOR_LENGTH (exp) - 1;
700 int cutp = 0;
701 if (pstate->fancyp
702 && SCM_SIMPLE_VECTOR_LENGTH (exp) > pstate->length)
703 {
704 last = pstate->length - 1;
705 cutp = 1;
706 }
707 for (i = 0; i < last; ++i)
708 {
709 /* CHECK_INTS; */
710 scm_iprin1 (SCM_SIMPLE_VECTOR_REF (exp, i), port, pstate);
711 scm_putc (' ', port);
712 }
713 if (i == last)
714 {
715 /* CHECK_INTS; */
716 scm_iprin1 (SCM_SIMPLE_VECTOR_REF (exp, i), port, pstate);
717 }
718 if (cutp)
719 scm_puts (" ...", port);
720 scm_putc (')', port);
721 }
722 EXIT_NESTED_DATA (pstate);
723 break;
724 case scm_tcs_subrs:
725 scm_puts (SCM_SUBR_GENERIC (exp)
726 ? "#<primitive-generic "
727 : "#<primitive-procedure ",
728 port);
729 scm_puts (scm_i_symbol_chars (SCM_SUBR_NAME (exp)), port);
730 scm_putc ('>', port);
731 break;
732
733 case scm_tc7_pws:
734 scm_puts ("#<procedure-with-setter", port);
735 {
736 SCM name = scm_procedure_name (exp);
737 if (scm_is_true (name))
738 {
739 scm_putc (' ', port);
740 scm_display (name, port);
741 }
742 }
743 scm_putc ('>', port);
744 break;
745 case scm_tc7_port:
746 {
747 register long i = SCM_PTOBNUM (exp);
748 if (i < scm_numptob
749 && scm_ptobs[i].print
750 && (scm_ptobs[i].print) (exp, port, pstate))
751 break;
752 goto punk;
753 }
754 case scm_tc7_smob:
755 ENTER_NESTED_DATA (pstate, exp, circref);
756 SCM_SMOB_DESCRIPTOR (exp).print (exp, port, pstate);
757 EXIT_NESTED_DATA (pstate);
758 break;
759 default:
760 punk:
761 scm_ipruk ("type", exp, port);
762 }
763 }
764 }
765
766 /* Print states are necessary for circular reference safe printing.
767 * They are also expensive to allocate. Therefore print states are
768 * kept in a pool so that they can be reused.
769 */
770
771 /* The PORT argument can also be a print-state/port pair, which will
772 * then be used instead of allocating a new print state. This is
773 * useful for continuing a chain of print calls from Scheme. */
774
775 void
776 scm_prin1 (SCM exp, SCM port, int writingp)
777 {
778 SCM handle = SCM_BOOL_F; /* Will GC protect the handle whilst unlinked */
779 SCM pstate_scm;
780 scm_print_state *pstate;
781 int old_writingp;
782
783 /* If PORT is a print-state/port pair, use that. Else create a new
784 print-state. */
785
786 if (SCM_PORT_WITH_PS_P (port))
787 {
788 pstate_scm = SCM_PORT_WITH_PS_PS (port);
789 port = SCM_PORT_WITH_PS_PORT (port);
790 }
791 else
792 {
793 /* First try to allocate a print state from the pool */
794 scm_i_pthread_mutex_lock (&print_state_mutex);
795 if (!scm_is_null (print_state_pool))
796 {
797 handle = print_state_pool;
798 print_state_pool = SCM_CDR (print_state_pool);
799 }
800 scm_i_pthread_mutex_unlock (&print_state_mutex);
801 if (scm_is_false (handle))
802 handle = scm_list_1 (make_print_state ());
803 pstate_scm = SCM_CAR (handle);
804 }
805
806 pstate = SCM_PRINT_STATE (pstate_scm);
807 old_writingp = pstate->writingp;
808 pstate->writingp = writingp;
809 scm_iprin1 (exp, port, pstate);
810 pstate->writingp = old_writingp;
811
812 /* Return print state to pool if it has been created above and
813 hasn't escaped to Scheme. */
814
815 if (scm_is_true (handle) && !pstate->revealed)
816 {
817 scm_i_pthread_mutex_lock (&print_state_mutex);
818 SCM_SETCDR (handle, print_state_pool);
819 print_state_pool = handle;
820 scm_i_pthread_mutex_unlock (&print_state_mutex);
821 }
822 }
823
824 /* Print a character.
825 */
826 void
827 scm_charprint (scm_t_uint32 ch, SCM port)
828 {
829 scm_t_wchar *wbuf;
830 SCM wstr = scm_i_make_wide_string (1, &wbuf);
831
832 wbuf[0] = ch;
833 scm_lfwrite_str (wstr, port);
834 }
835
836 /* Print an integer.
837 */
838
839 void
840 scm_intprint (scm_t_intmax n, int radix, SCM port)
841 {
842 char num_buf[SCM_INTBUFLEN];
843 scm_lfwrite (num_buf, scm_iint2str (n, radix, num_buf), port);
844 }
845
846 void
847 scm_uintprint (scm_t_uintmax n, int radix, SCM port)
848 {
849 char num_buf[SCM_INTBUFLEN];
850 scm_lfwrite (num_buf, scm_iuint2str (n, radix, num_buf), port);
851 }
852
853 /* Print an object of unrecognized type.
854 */
855
856 void
857 scm_ipruk (char *hdr, SCM ptr, SCM port)
858 {
859 scm_puts ("#<unknown-", port);
860 scm_puts (hdr, port);
861 if (scm_in_heap_p (ptr))
862 {
863 scm_puts (" (0x", port);
864 scm_uintprint (SCM_CELL_WORD_0 (ptr), 16, port);
865 scm_puts (" . 0x", port);
866 scm_uintprint (SCM_CELL_WORD_1 (ptr), 16, port);
867 scm_puts (") @", port);
868 }
869 scm_puts (" 0x", port);
870 scm_uintprint (SCM_UNPACK (ptr), 16, port);
871 scm_putc ('>', port);
872 }
873
874
875 /* Print a list.
876 */
877 void
878 scm_iprlist (char *hdr, SCM exp, int tlr, SCM port, scm_print_state *pstate)
879 {
880 register SCM hare, tortoise;
881 long floor = pstate->top - 2;
882 scm_puts (hdr, port);
883 /* CHECK_INTS; */
884 if (pstate->fancyp)
885 goto fancy_printing;
886
887 /* Run a hare and tortoise so that total time complexity will be
888 O(depth * N) instead of O(N^2). */
889 hare = SCM_CDR (exp);
890 tortoise = exp;
891 while (scm_is_pair (hare))
892 {
893 if (scm_is_eq (hare, tortoise))
894 goto fancy_printing;
895 hare = SCM_CDR (hare);
896 if (!scm_is_pair (hare))
897 break;
898 hare = SCM_CDR (hare);
899 tortoise = SCM_CDR (tortoise);
900 }
901
902 /* No cdr cycles intrinsic to this list */
903 scm_iprin1 (SCM_CAR (exp), port, pstate);
904 for (exp = SCM_CDR (exp); scm_is_pair (exp); exp = SCM_CDR (exp))
905 {
906 register long i;
907
908 for (i = floor; i >= 0; --i)
909 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
910 goto circref;
911 PUSH_REF (pstate, exp);
912 scm_putc (' ', port);
913 /* CHECK_INTS; */
914 scm_iprin1 (SCM_CAR (exp), port, pstate);
915 }
916 if (!SCM_NULL_OR_NIL_P (exp))
917 {
918 scm_puts (" . ", port);
919 scm_iprin1 (exp, port, pstate);
920 }
921
922 end:
923 scm_putc (tlr, port);
924 pstate->top = floor + 2;
925 return;
926
927 fancy_printing:
928 {
929 long n = pstate->length;
930
931 scm_iprin1 (SCM_CAR (exp), port, pstate);
932 exp = SCM_CDR (exp); --n;
933 for (; scm_is_pair (exp); exp = SCM_CDR (exp))
934 {
935 register unsigned long i;
936
937 for (i = 0; i < pstate->top; ++i)
938 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
939 goto fancy_circref;
940 if (pstate->fancyp)
941 {
942 if (n == 0)
943 {
944 scm_puts (" ...", port);
945 goto skip_tail;
946 }
947 else
948 --n;
949 }
950 PUSH_REF(pstate, exp);
951 ++pstate->list_offset;
952 scm_putc (' ', port);
953 /* CHECK_INTS; */
954 scm_iprin1 (SCM_CAR (exp), port, pstate);
955 }
956 }
957 if (!SCM_NULL_OR_NIL_P (exp))
958 {
959 scm_puts (" . ", port);
960 scm_iprin1 (exp, port, pstate);
961 }
962 skip_tail:
963 pstate->list_offset -= pstate->top - floor - 2;
964 goto end;
965
966 fancy_circref:
967 pstate->list_offset -= pstate->top - floor - 2;
968
969 circref:
970 scm_puts (" . ", port);
971 print_circref (port, pstate, exp);
972 goto end;
973 }
974
975 \f
976
977 int
978 scm_valid_oport_value_p (SCM val)
979 {
980 return (SCM_OPOUTPORTP (val)
981 || (SCM_PORT_WITH_PS_P (val)
982 && SCM_OPOUTPORTP (SCM_PORT_WITH_PS_PORT (val))));
983 }
984
985 /* SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write); */
986
987 SCM
988 scm_write (SCM obj, SCM port)
989 {
990 if (SCM_UNBNDP (port))
991 port = scm_current_output_port ();
992
993 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_write);
994
995 scm_prin1 (obj, port, 1);
996 #if 0
997 #ifdef HAVE_PIPE
998 # ifdef EPIPE
999 if (EPIPE == errno)
1000 scm_close_port (port);
1001 # endif
1002 #endif
1003 #endif
1004 return SCM_UNSPECIFIED;
1005 }
1006
1007
1008 /* SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display); */
1009
1010 SCM
1011 scm_display (SCM obj, SCM port)
1012 {
1013 if (SCM_UNBNDP (port))
1014 port = scm_current_output_port ();
1015
1016 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_display);
1017
1018 scm_prin1 (obj, port, 0);
1019 #if 0
1020 #ifdef HAVE_PIPE
1021 # ifdef EPIPE
1022 if (EPIPE == errno)
1023 scm_close_port (port);
1024 # endif
1025 #endif
1026 #endif
1027 return SCM_UNSPECIFIED;
1028 }
1029
1030
1031 SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
1032 (SCM destination, SCM message, SCM args),
1033 "Write @var{message} to @var{destination}, defaulting to\n"
1034 "the current output port.\n"
1035 "@var{message} can contain @code{~A} (was @code{%s}) and\n"
1036 "@code{~S} (was @code{%S}) escapes. When printed,\n"
1037 "the escapes are replaced with corresponding members of\n"
1038 "@var{ARGS}:\n"
1039 "@code{~A} formats using @code{display} and @code{~S} formats\n"
1040 "using @code{write}.\n"
1041 "If @var{destination} is @code{#t}, then use the current output\n"
1042 "port, if @var{destination} is @code{#f}, then return a string\n"
1043 "containing the formatted text. Does not add a trailing newline.")
1044 #define FUNC_NAME s_scm_simple_format
1045 {
1046 SCM port, answer = SCM_UNSPECIFIED;
1047 int fReturnString = 0;
1048 int writingp;
1049 const char *start;
1050 const char *end;
1051 const char *p;
1052
1053 if (scm_is_eq (destination, SCM_BOOL_T))
1054 {
1055 destination = port = scm_current_output_port ();
1056 }
1057 else if (scm_is_false (destination))
1058 {
1059 fReturnString = 1;
1060 port = scm_mkstrport (SCM_INUM0,
1061 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
1062 SCM_OPN | SCM_WRTNG,
1063 FUNC_NAME);
1064 destination = port;
1065 }
1066 else
1067 {
1068 SCM_VALIDATE_OPORT_VALUE (1, destination);
1069 port = SCM_COERCE_OUTPORT (destination);
1070 }
1071 SCM_VALIDATE_STRING (2, message);
1072 SCM_VALIDATE_REST_ARGUMENT (args);
1073
1074 start = scm_i_string_chars (message);
1075 end = start + scm_i_string_length (message);
1076 for (p = start; p != end; ++p)
1077 if (*p == '~')
1078 {
1079 if (++p == end)
1080 break;
1081
1082 switch (*p)
1083 {
1084 case 'A': case 'a':
1085 writingp = 0;
1086 break;
1087 case 'S': case 's':
1088 writingp = 1;
1089 break;
1090 case '~':
1091 scm_lfwrite (start, p - start, port);
1092 start = p + 1;
1093 continue;
1094 case '%':
1095 scm_lfwrite (start, p - start - 1, port);
1096 scm_newline (port);
1097 start = p + 1;
1098 continue;
1099 default:
1100 SCM_MISC_ERROR ("FORMAT: Unsupported format option ~~~A - use (ice-9 format) instead",
1101 scm_list_1 (SCM_MAKE_CHAR (*p)));
1102
1103 }
1104
1105
1106 if (!scm_is_pair (args))
1107 SCM_MISC_ERROR ("FORMAT: Missing argument for ~~~A",
1108 scm_list_1 (SCM_MAKE_CHAR (*p)));
1109
1110 scm_lfwrite (start, p - start - 1, port);
1111 /* we pass destination here */
1112 scm_prin1 (SCM_CAR (args), destination, writingp);
1113 args = SCM_CDR (args);
1114 start = p + 1;
1115 }
1116
1117 scm_lfwrite (start, p - start, port);
1118 if (!scm_is_eq (args, SCM_EOL))
1119 SCM_MISC_ERROR ("FORMAT: ~A superfluous arguments",
1120 scm_list_1 (scm_length (args)));
1121
1122 if (fReturnString)
1123 answer = scm_strport_to_string (destination);
1124
1125 return scm_return_first (answer, message);
1126 }
1127 #undef FUNC_NAME
1128
1129
1130 SCM_DEFINE (scm_newline, "newline", 0, 1, 0,
1131 (SCM port),
1132 "Send a newline to @var{port}.\n"
1133 "If @var{port} is omitted, send to the current output port.")
1134 #define FUNC_NAME s_scm_newline
1135 {
1136 if (SCM_UNBNDP (port))
1137 port = scm_current_output_port ();
1138
1139 SCM_VALIDATE_OPORT_VALUE (1, port);
1140
1141 scm_putc ('\n', SCM_COERCE_OUTPORT (port));
1142 return SCM_UNSPECIFIED;
1143 }
1144 #undef FUNC_NAME
1145
1146 SCM_DEFINE (scm_write_char, "write-char", 1, 1, 0,
1147 (SCM chr, SCM port),
1148 "Send character @var{chr} to @var{port}.")
1149 #define FUNC_NAME s_scm_write_char
1150 {
1151 if (SCM_UNBNDP (port))
1152 port = scm_current_output_port ();
1153
1154 SCM_VALIDATE_CHAR (1, chr);
1155 SCM_VALIDATE_OPORT_VALUE (2, port);
1156
1157 scm_putc ((int) SCM_CHAR (chr), SCM_COERCE_OUTPORT (port));
1158 #if 0
1159 #ifdef HAVE_PIPE
1160 # ifdef EPIPE
1161 if (EPIPE == errno)
1162 scm_close_port (port);
1163 # endif
1164 #endif
1165 #endif
1166 return SCM_UNSPECIFIED;
1167 }
1168 #undef FUNC_NAME
1169
1170 \f
1171
1172 /* Call back to Scheme code to do the printing of special objects
1173 * (like structs). SCM_PRINTER_APPLY applies PROC to EXP and a smob
1174 * containing PORT and PSTATE. This object can be used as the port for
1175 * display/write etc to continue the current print chain. The REVEALED
1176 * field of PSTATE is set to true to indicate that the print state has
1177 * escaped to Scheme and thus has to be freed by the GC.
1178 */
1179
1180 scm_t_bits scm_tc16_port_with_ps;
1181
1182 /* Print exactly as the port itself would */
1183
1184 static int
1185 port_with_ps_print (SCM obj, SCM port, scm_print_state *pstate)
1186 {
1187 obj = SCM_PORT_WITH_PS_PORT (obj);
1188 return scm_ptobs[SCM_PTOBNUM (obj)].print (obj, port, pstate);
1189 }
1190
1191 SCM
1192 scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate)
1193 {
1194 pstate->revealed = 1;
1195 return scm_call_2 (proc, exp,
1196 scm_i_port_with_print_state (port, pstate->handle));
1197 }
1198
1199 SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 1, 1, 0,
1200 (SCM port, SCM pstate),
1201 "Create a new port which behaves like @var{port}, but with an\n"
1202 "included print state @var{pstate}. @var{pstate} is optional.\n"
1203 "If @var{pstate} isn't supplied and @var{port} already has\n"
1204 "a print state, the old print state is reused.")
1205 #define FUNC_NAME s_scm_port_with_print_state
1206 {
1207 SCM_VALIDATE_OPORT_VALUE (1, port);
1208 if (!SCM_UNBNDP (pstate))
1209 SCM_VALIDATE_PRINTSTATE (2, pstate);
1210 return scm_i_port_with_print_state (port, pstate);
1211 }
1212 #undef FUNC_NAME
1213
1214 SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0,
1215 (SCM port),
1216 "Return the print state of the port @var{port}. If @var{port}\n"
1217 "has no associated print state, @code{#f} is returned.")
1218 #define FUNC_NAME s_scm_get_print_state
1219 {
1220 if (SCM_PORT_WITH_PS_P (port))
1221 return SCM_PORT_WITH_PS_PS (port);
1222 if (SCM_OUTPUT_PORT_P (port))
1223 return SCM_BOOL_F;
1224 SCM_WRONG_TYPE_ARG (1, port);
1225 }
1226 #undef FUNC_NAME
1227
1228 \f
1229
1230 void
1231 scm_init_print ()
1232 {
1233 SCM vtable, layout, type;
1234
1235 scm_init_opts (scm_print_options, scm_print_opts);
1236
1237 scm_print_options (scm_list_4 (scm_from_locale_symbol ("highlight-prefix"),
1238 scm_from_locale_string ("{"),
1239 scm_from_locale_symbol ("highlight-suffix"),
1240 scm_from_locale_string ("}")));
1241
1242 scm_gc_register_root (&print_state_pool);
1243 scm_gc_register_root (&scm_print_state_vtable);
1244 vtable = scm_make_vtable_vtable (scm_nullstr, SCM_INUM0, SCM_EOL);
1245 layout =
1246 scm_make_struct_layout (scm_from_locale_string (SCM_PRINT_STATE_LAYOUT));
1247 type = scm_make_struct (vtable, SCM_INUM0, scm_list_1 (layout));
1248 scm_set_struct_vtable_name_x (type, scm_from_locale_symbol ("print-state"));
1249 scm_print_state_vtable = type;
1250
1251 /* Don't want to bind a wrapper class in GOOPS, so pass 0 as arg1. */
1252 scm_tc16_port_with_ps = scm_make_smob_type (0, 0);
1253 scm_set_smob_mark (scm_tc16_port_with_ps, scm_markcdr);
1254 scm_set_smob_print (scm_tc16_port_with_ps, port_with_ps_print);
1255
1256 #include "libguile/print.x"
1257
1258 scm_print_opts[SCM_PRINT_KEYWORD_STYLE_I].val = SCM_UNPACK (sym_reader);
1259 }
1260
1261 /*
1262 Local Variables:
1263 c-file-style: "gnu"
1264 End:
1265 */