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