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