All instruction pointers are now scm_t_uint32*
[bpt/guile.git] / libguile / print.c
CommitLineData
f4bc4e59 1/* Copyright (C) 1995-1999, 2000, 2001, 2002, 2003, 2004, 2006, 2008,
e4598559 2 * 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
f4bc4e59 3 *
73be1d9e 4 * This library is free software; you can redistribute it and/or
53befeb7
NJ
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
0f2d19dd 8 *
53befeb7
NJ
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0f2d19dd 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
53befeb7
NJ
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
73be1d9e 18 */
1bbd0b84 19
1bbd0b84 20
0f2d19dd 21\f
dbb605f5
LC
22#ifdef HAVE_CONFIG_H
23# include <config.h>
24#endif
0f2d19dd 25
e6e2e95a 26#include <errno.h>
f4bc4e59
LC
27#include <iconv.h>
28#include <stdio.h>
29#include <assert.h>
30
eca29b02 31#include <uniconv.h>
904a78f1 32#include <unictype.h>
e6e2e95a 33
a0599745
MD
34#include "libguile/_scm.h"
35#include "libguile/chars.h"
a002f1a2 36#include "libguile/continuations.h"
a0599745 37#include "libguile/smob.h"
bbb2ecd1 38#include "libguile/control.h"
a0599745
MD
39#include "libguile/eval.h"
40#include "libguile/macros.h"
41#include "libguile/procprop.h"
42#include "libguile/read.h"
2fb924f6 43#include "libguile/programs.h"
a0599745
MD
44#include "libguile/alist.h"
45#include "libguile/struct.h"
a0599745 46#include "libguile/ports.h"
e4598559 47#include "libguile/ports-internal.h"
a0599745
MD
48#include "libguile/root.h"
49#include "libguile/strings.h"
50#include "libguile/strports.h"
51#include "libguile/vectors.h"
327967ef 52#include "libguile/numbers.h"
6f3b0cc2 53#include "libguile/vm.h"
a0599745
MD
54
55#include "libguile/validate.h"
56#include "libguile/print.h"
22fc179a
HWN
57
58#include "libguile/private-options.h"
59
0f2d19dd
JB
60\f
61
07f49ac7
LC
62/* Character printers. */
63
478848cb
LC
64#define PORT_CONVERSION_HANDLER(port) \
65 SCM_PTAB_ENTRY (port)->ilseq_handler
66
f4bc4e59
LC
67static size_t display_string (const void *, int, size_t, SCM,
68 scm_t_string_failed_conversion_handler);
69
07f49ac7
LC
70static int display_character (scm_t_wchar, SCM,
71 scm_t_string_failed_conversion_handler);
f4bc4e59 72
07f49ac7
LC
73static void write_character (scm_t_wchar, SCM, int);
74
f4bc4e59
LC
75static void write_character_escaped (scm_t_wchar, int, SCM);
76
07f49ac7
LC
77\f
78
0f2d19dd
JB
79/* {Names of immediate symbols}
80 *
81 * This table must agree with the declarations in scm.h: {Immediate Symbols}.
82 */
83
e17d318f
DH
84/* This table must agree with the list of flags in tags.h. */
85static const char *iflagnames[] =
86{
87 "#f",
45f4cbdf
MW
88 "#nil", /* Elisp nil value. Should print from elisp as symbol `nil'. */
89 "#<XXX UNUSED LISP FALSE -- DO NOT USE -- SHOULD NEVER BE SEEN XXX>",
90 "()",
e17d318f 91 "#t",
f60c2c4e
MW
92 "#<XXX UNUSED BOOLEAN 0 -- DO NOT USE -- SHOULD NEVER BE SEEN XXX>",
93 "#<XXX UNUSED BOOLEAN 1 -- DO NOT USE -- SHOULD NEVER BE SEEN XXX>",
94 "#<XXX UNUSED BOOLEAN 2 -- DO NOT USE -- SHOULD NEVER BE SEEN XXX>",
45f4cbdf 95 "#<unspecified>",
e17d318f
DH
96 "#<undefined>",
97 "#<eof>",
e17d318f
DH
98
99 /* Unbound slot marker for GOOPS. For internal use in GOOPS only. */
100 "#<unbound>",
e17d318f
DH
101};
102
475fa9a5
MV
103SCM_SYMBOL (sym_reader, "reader");
104
92c2555f 105scm_t_option scm_print_opts[] = {
210c0325 106 { SCM_OPTION_SCM, "highlight-prefix", (scm_t_bits)SCM_BOOL_F_BITS,
81ae25da 107 "The string to print before highlighted values." },
210c0325 108 { SCM_OPTION_SCM, "highlight-suffix", (scm_t_bits)SCM_BOOL_F_BITS,
475fa9a5 109 "The string to print after highlighted values." },
210c0325 110 { SCM_OPTION_SCM, "quote-keywordish-symbols", (scm_t_bits)SCM_BOOL_F_BITS,
475fa9a5
MV
111 "How to print symbols that have a colon as their first or last character. "
112 "The value '#f' does not quote the colons; '#t' quotes them; "
8500b186
AW
113 "'reader' quotes them when the reader option 'keywords' is not '#f'." },
114 { SCM_OPTION_BOOLEAN, "escape-newlines", 1,
115 "Render newlines as \\n when printing using `write'." },
62560650 116 { 0 },
e6e4c9af
MD
117};
118
a1ec6916 119SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0,
1bbd0b84 120 (SCM setting),
71331188 121 "Option interface for the print options. Instead of using\n"
1dd05fd8
MG
122 "this procedure directly, use the procedures\n"
123 "@code{print-enable}, @code{print-disable}, @code{print-set!}\n"
124 "and @code{print-options}.")
1bbd0b84 125#define FUNC_NAME s_scm_print_options
e6e4c9af 126{
a51ea417 127 SCM ans = scm_options (setting,
b7ff98dd 128 scm_print_opts,
1bbd0b84 129 FUNC_NAME);
e6e4c9af
MD
130 return ans;
131}
1bbd0b84 132#undef FUNC_NAME
e6e4c9af 133
0f2d19dd
JB
134\f
135/* {Printing of Scheme Objects}
136 */
137
a51ea417 138/* Detection of circular references.
c62fbfe1
MD
139 *
140 * Due to other constraints in the implementation, this code has bad
5d46ebe3
MD
141 * time complexity (O (depth * N)), The printer code can be
142 * rewritten to be O(N).
a51ea417 143 */
dbb5de29
NJ
144#define PUSH_REF(pstate, obj) \
145do \
146{ \
147 PSTATE_STACK_SET (pstate, pstate->top, obj); \
148 pstate->top++; \
149 if (pstate->top == pstate->ceiling) \
150 grow_ref_stack (pstate); \
1bbd0b84 151} while(0)
a51ea417 152
dbb5de29
NJ
153#define ENTER_NESTED_DATA(pstate, obj, label) \
154do \
155{ \
156 register unsigned long i; \
157 for (i = 0; i < pstate->top; ++i) \
158 if (scm_is_eq (PSTATE_STACK_REF (pstate, i), (obj))) \
159 goto label; \
160 if (pstate->fancyp) \
161 { \
162 if (pstate->top - pstate->list_offset >= pstate->level) \
163 { \
0607ebbf 164 scm_putc_unlocked ('#', port); \
dbb5de29
NJ
165 return; \
166 } \
167 } \
168 PUSH_REF(pstate, obj); \
1bbd0b84 169} while(0)
a51ea417 170
dbb5de29
NJ
171#define EXIT_NESTED_DATA(pstate) \
172do \
173{ \
174 --pstate->top; \
175 PSTATE_STACK_SET (pstate, pstate->top, SCM_UNDEFINED); \
176} \
177while (0)
c62fbfe1 178
d5cf5324
DH
179SCM scm_print_state_vtable = SCM_BOOL_F;
180static SCM print_state_pool = SCM_EOL;
9de87eea 181scm_i_pthread_mutex_t print_state_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
c4f37e80 182
f843a84c 183#ifdef GUILE_DEBUG /* Used for debugging purposes */
1cc91f1b 184
3b3b36dd 185SCM_DEFINE (scm_current_pstate, "current-pstate", 0, 0, 0,
1bbd0b84 186 (),
d5cf5324 187 "Return the current-pstate -- the car of the\n"
5352393c
MG
188 "@code{print_state_pool}. @code{current-pstate} is only\n"
189 "included in @code{--enable-guile-debug} builds.")
1bbd0b84 190#define FUNC_NAME s_scm_current_pstate
c62fbfe1 191{
d2e53ed6 192 if (!scm_is_null (print_state_pool))
d5cf5324 193 return SCM_CAR (print_state_pool);
a0adfbf0 194 else
0a284a4e 195 return SCM_BOOL_F;
c62fbfe1 196}
1bbd0b84
GB
197#undef FUNC_NAME
198
c62fbfe1
MD
199#endif
200
201#define PSTATE_SIZE 50L
202
698c0295 203static SCM
1bbd0b84 204make_print_state (void)
698c0295 205{
d5cf5324
DH
206 SCM print_state
207 = scm_make_struct (scm_print_state_vtable, SCM_INUM0, SCM_EOL);
bf685b6d 208 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
00ffa0e7 209 pstate->ref_vect = scm_c_make_vector (PSTATE_SIZE, SCM_UNDEFINED);
4057a3e0 210 pstate->ceiling = SCM_SIMPLE_VECTOR_LENGTH (pstate->ref_vect);
d232520a 211 pstate->highlight_objects = SCM_EOL;
698c0295
MD
212 return print_state;
213}
1cc91f1b 214
c62fbfe1
MD
215SCM
216scm_make_print_state ()
c62fbfe1 217{
230d095f 218 SCM answer = SCM_BOOL_F;
698c0295
MD
219
220 /* First try to allocate a print state from the pool */
9de87eea 221 scm_i_pthread_mutex_lock (&print_state_mutex);
d2e53ed6 222 if (!scm_is_null (print_state_pool))
698c0295 223 {
d5cf5324
DH
224 answer = SCM_CAR (print_state_pool);
225 print_state_pool = SCM_CDR (print_state_pool);
698c0295 226 }
9de87eea 227 scm_i_pthread_mutex_unlock (&print_state_mutex);
698c0295 228
7888309b 229 return scm_is_false (answer) ? make_print_state () : answer;
c62fbfe1 230}
a51ea417 231
698c0295 232void
6e8d25a6 233scm_free_print_state (SCM print_state)
698c0295
MD
234{
235 SCM handle;
236 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
237 /* Cleanup before returning print state to pool.
238 * It is better to do it here. Doing it in scm_prin1
239 * would cost more since that function is called much more
240 * often.
241 */
242 pstate->fancyp = 0;
bb35f315 243 pstate->revealed = 0;
d232520a 244 pstate->highlight_objects = SCM_EOL;
9de87eea 245 scm_i_pthread_mutex_lock (&print_state_mutex);
16d4699b 246 handle = scm_cons (print_state, print_state_pool);
d5cf5324 247 print_state_pool = handle;
9de87eea 248 scm_i_pthread_mutex_unlock (&print_state_mutex);
dfd03fb9
MD
249}
250
251SCM
252scm_i_port_with_print_state (SCM port, SCM print_state)
253{
254 if (SCM_UNBNDP (print_state))
255 {
256 if (SCM_PORT_WITH_PS_P (port))
257 return port;
258 else
259 print_state = scm_make_print_state ();
260 /* port does not need to be coerced since it doesn't have ps */
261 }
262 else
263 port = SCM_COERCE_OUTPORT (port);
264 SCM_RETURN_NEWSMOB (scm_tc16_port_with_ps,
265 SCM_UNPACK (scm_cons (port, print_state)));
698c0295 266}
1cc91f1b 267
a51ea417 268static void
1bbd0b84 269grow_ref_stack (scm_print_state *pstate)
a51ea417 270{
4057a3e0
MV
271 SCM old_vect = pstate->ref_vect;
272 size_t old_size = SCM_SIMPLE_VECTOR_LENGTH (old_vect);
273 size_t new_size = 2 * pstate->ceiling;
00ffa0e7 274 SCM new_vect = scm_c_make_vector (new_size, SCM_UNDEFINED);
b17004b8
DH
275 unsigned long int i;
276
277 for (i = 0; i != old_size; ++i)
4057a3e0 278 SCM_SIMPLE_VECTOR_SET (new_vect, i, SCM_SIMPLE_VECTOR_REF (old_vect, i));
b17004b8
DH
279
280 pstate->ref_vect = new_vect;
bf685b6d 281 pstate->ceiling = new_size;
a51ea417
MD
282}
283
509759dd
MV
284#define PSTATE_STACK_REF(p,i) SCM_SIMPLE_VECTOR_REF((p)->ref_vect, (i))
285#define PSTATE_STACK_SET(p,i,v) SCM_SIMPLE_VECTOR_SET((p)->ref_vect, (i), (v))
1cc91f1b 286
a51ea417 287static void
34d19ef6 288print_circref (SCM port, scm_print_state *pstate, SCM ref)
a51ea417 289{
c014a02e
ML
290 register long i;
291 long self = pstate->top - 1;
c62fbfe1 292 i = pstate->top - 1;
509759dd 293 if (scm_is_pair (PSTATE_STACK_REF (pstate, i)))
c62fbfe1
MD
294 {
295 while (i > 0)
296 {
509759dd
MV
297 if (!scm_is_pair (PSTATE_STACK_REF (pstate, i-1))
298 || !scm_is_eq (SCM_CDR (PSTATE_STACK_REF (pstate, i-1)),
299 SCM_CDR (PSTATE_STACK_REF (pstate, i))))
c62fbfe1
MD
300 break;
301 --i;
302 }
303 self = i;
304 }
305 for (i = pstate->top - 1; 1; --i)
509759dd 306 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), ref))
c62fbfe1 307 break;
0607ebbf 308 scm_putc_unlocked ('#', port);
c62fbfe1 309 scm_intprint (i - self, 10, port);
0607ebbf 310 scm_putc_unlocked ('#', port);
a51ea417
MD
311}
312
6662998f
MV
313/* Print the name of a symbol. */
314
475fa9a5 315static int
15671c6e 316quote_keywordish_symbols (void)
475fa9a5 317{
15671c6e 318 SCM option = SCM_PRINT_KEYWORD_STYLE;
475fa9a5 319
475fa9a5
MV
320 if (scm_is_false (option))
321 return 0;
322 if (scm_is_eq (option, sym_reader))
323 return scm_is_true (SCM_PACK (SCM_KEYWORD_STYLE));
324 return 1;
325}
326
2e9fc9fc
AW
327#define INITIAL_IDENTIFIER_MASK \
328 (UC_CATEGORY_MASK_Lu | UC_CATEGORY_MASK_Ll | UC_CATEGORY_MASK_Lt \
329 | UC_CATEGORY_MASK_Lm | UC_CATEGORY_MASK_Lo | UC_CATEGORY_MASK_Mn \
330 | UC_CATEGORY_MASK_Nl | UC_CATEGORY_MASK_No | UC_CATEGORY_MASK_Pd \
331 | UC_CATEGORY_MASK_Pc | UC_CATEGORY_MASK_Po | UC_CATEGORY_MASK_Sc \
332 | UC_CATEGORY_MASK_Sm | UC_CATEGORY_MASK_Sk | UC_CATEGORY_MASK_So \
333 | UC_CATEGORY_MASK_Co)
334
335#define SUBSEQUENT_IDENTIFIER_MASK \
336 (INITIAL_IDENTIFIER_MASK \
337 | UC_CATEGORY_MASK_Nd | UC_CATEGORY_MASK_Mc | UC_CATEGORY_MASK_Me)
338
4164dd6d 339/* FIXME: Cache this information on the symbol, somehow. */
15671c6e
AW
340static int
341symbol_has_extended_read_syntax (SCM sym)
6662998f 342{
15671c6e
AW
343 size_t pos, len = scm_i_symbol_length (sym);
344 scm_t_wchar c;
345
346 /* The empty symbol. */
347 if (len == 0)
348 return 1;
349
350 c = scm_i_symbol_ref (sym, 0);
351
4164dd6d
AW
352 switch (c)
353 {
354 case '\'':
355 case '`':
356 case ',':
357 case '"':
358 case ';':
359 case '#':
360 /* Some initial-character constraints. */
361 return 1;
15671c6e 362
4164dd6d
AW
363 case ':':
364 /* Symbols that look like keywords. */
365 return quote_keywordish_symbols ();
15671c6e 366
4164dd6d
AW
367 case '.':
368 /* Single dot conflicts with dotted-pair notation. */
369 if (len == 1)
370 return 1;
371 /* Fall through to check numbers. */
372 case '+':
373 case '-':
374 case '0':
375 case '1':
376 case '2':
377 case '3':
378 case '4':
379 case '5':
380 case '6':
381 case '7':
382 case '8':
383 case '9':
384 /* Number-ish symbols. Numbers with radixes already caught be #
385 above. */
386 if (scm_is_true (scm_i_string_to_number (scm_symbol_to_string (sym), 10)))
387 return 1;
388 break;
389
390 default:
391 break;
392 }
15671c6e 393
2e9fc9fc
AW
394 /* Other disallowed first characters. */
395 if (!uc_is_general_category_withtable (c, INITIAL_IDENTIFIER_MASK))
396 return 1;
397
4164dd6d
AW
398 /* Keywords can be identified by trailing colons too. */
399 if (scm_i_symbol_ref (sym, len - 1) == ':')
400 return quote_keywordish_symbols ();
401
2e9fc9fc
AW
402 /* Otherwise, any character that's in the identifier category mask is
403 fine to pass through as-is, provided it's not one of the ASCII
404 delimiters like `;'. */
405 for (pos = 1; pos < len; pos++)
6662998f 406 {
2e9fc9fc
AW
407 c = scm_i_symbol_ref (sym, pos);
408 if (!uc_is_general_category_withtable (c, SUBSEQUENT_IDENTIFIER_MASK))
409 return 1;
410 else if (c == '"' || c == ';' || c == '#')
411 return 1;
6662998f 412 }
c6b49e89 413
15671c6e
AW
414 return 0;
415}
416
417static void
418print_normal_symbol (SCM sym, SCM port)
419{
4164dd6d
AW
420 size_t len;
421 scm_t_string_failed_conversion_handler strategy;
422
423 len = scm_i_symbol_length (sym);
0dd7c540 424 strategy = SCM_PTAB_ENTRY (port)->ilseq_handler;
4164dd6d
AW
425
426 if (scm_i_is_narrow_symbol (sym))
427 display_string (scm_i_symbol_chars (sym), 1, len, port, strategy);
428 else
429 display_string (scm_i_symbol_wide_chars (sym), 0, len, port, strategy);
15671c6e
AW
430}
431
15671c6e
AW
432static void
433print_extended_symbol (SCM sym, SCM port)
434{
435 size_t pos, len;
436 scm_t_string_failed_conversion_handler strategy;
437
438 len = scm_i_symbol_length (sym);
478848cb 439 strategy = PORT_CONVERSION_HANDLER (port);
15671c6e 440
f209aeee 441 scm_lfwrite_unlocked ("#{", 2, port);
15671c6e
AW
442
443 for (pos = 0; pos < len; pos++)
444 {
445 scm_t_wchar c = scm_i_symbol_ref (sym, pos);
446
2e9fc9fc
AW
447 if (uc_is_general_category_withtable (c,
448 SUBSEQUENT_IDENTIFIER_MASK
449 | UC_CATEGORY_MASK_Zs))
15671c6e 450 {
b4a09988
DK
451 if (!display_character (c, port, strategy)
452 || (c == '\\' && !display_character (c, port, strategy)))
15671c6e
AW
453 scm_encoding_error ("print_extended_symbol", errno,
454 "cannot convert to output locale",
455 port, SCM_MAKE_CHAR (c));
2e9fc9fc
AW
456 }
457 else
458 {
459 display_string ("\\x", 1, 2, port, iconveh_question_mark);
460 scm_intprint (c, 16, port);
461 display_character (';', port, iconveh_question_mark);
15671c6e
AW
462 }
463 }
464
f209aeee 465 scm_lfwrite_unlocked ("}#", 2, port);
15671c6e
AW
466}
467
468/* FIXME: allow R6RS hex escapes instead of #{...}#. */
4164dd6d
AW
469static void
470print_symbol (SCM sym, SCM port)
15671c6e
AW
471{
472 if (symbol_has_extended_read_syntax (sym))
473 print_extended_symbol (sym, port);
474 else
475 print_normal_symbol (sym, port);
6662998f
MV
476}
477
e23106d5
MG
478void
479scm_print_symbol_name (const char *str, size_t len, SCM port)
480{
25d50a05 481 SCM symbol = scm_from_utf8_symboln (str, len);
4164dd6d 482 print_symbol (symbol, port);
e23106d5
MG
483}
484
c62fbfe1 485/* Print generally. Handles both write and display according to PSTATE.
0f2d19dd 486 */
8b840115
MD
487SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write);
488SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display);
1cc91f1b 489
d232520a
MV
490static void iprin1 (SCM exp, SCM port, scm_print_state *pstate);
491
dea901d6
MG
492
493/* Print a character as an octal or hex escape. */
494#define PRINT_CHAR_ESCAPE(i, port) \
495 do \
496 { \
497 if (!SCM_R6RS_ESCAPES_P) \
498 scm_intprint (i, 8, port); \
499 else \
500 { \
0607ebbf 501 scm_puts_unlocked ("x", port); \
dea901d6
MG
502 scm_intprint (i, 16, port); \
503 } \
504 } \
505 while (0)
506
507
0f2d19dd 508void
1bbd0b84 509scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate)
d232520a
MV
510{
511 if (pstate->fancyp
512 && scm_is_true (scm_memq (exp, pstate->highlight_objects)))
513 {
81ae25da 514 scm_display (SCM_PRINT_HIGHLIGHT_PREFIX, port);
d232520a 515 iprin1 (exp, port, pstate);
81ae25da 516 scm_display (SCM_PRINT_HIGHLIGHT_SUFFIX, port);
d232520a
MV
517 }
518 else
519 iprin1 (exp, port, pstate);
520}
521
522static void
523iprin1 (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 524{
54778cd3 525 switch (SCM_ITAG3 (exp))
0f2d19dd 526 {
e34f941a
DH
527 case scm_tc3_tc7_1:
528 case scm_tc3_tc7_2:
529 /* These tc3 tags should never occur in an immediate value. They are
530 * only used in cell types of non-immediates, i. e. the value returned
531 * by SCM_CELL_TYPE (exp) can use these tags.
532 */
533 scm_ipruk ("immediate", exp, port);
534 break;
535 case scm_tc3_int_1:
536 case scm_tc3_int_2:
e11e83f3 537 scm_intprint (SCM_I_INUM (exp), 10, port);
0f2d19dd 538 break;
e34f941a 539 case scm_tc3_imm24:
7866a09b 540 if (SCM_CHARP (exp))
0f2d19dd 541 {
b7f3516f 542 if (SCM_WRITINGP (pstate))
07f49ac7
LC
543 write_character (SCM_CHAR (exp), port, 0);
544 else
b7f3516f 545 {
07f49ac7 546 if (!display_character (SCM_CHAR (exp), port,
478848cb 547 PORT_CONVERSION_HANDLER (port)))
07f49ac7
LC
548 scm_encoding_error (__func__, errno,
549 "cannot convert to output locale",
6851d3be 550 port, exp);
b7f3516f 551 }
0f2d19dd 552 }
a51ea417 553 else if (SCM_IFLAGP (exp)
e17d318f
DH
554 && ((size_t) SCM_IFLAGNUM (exp) < (sizeof iflagnames / sizeof (char *))))
555 {
0607ebbf 556 scm_puts_unlocked (iflagnames [SCM_IFLAGNUM (exp)], port);
e17d318f 557 }
0f2d19dd 558 else
e34f941a
DH
559 {
560 /* unknown immediate value */
561 scm_ipruk ("immediate", exp, port);
562 }
0f2d19dd 563 break;
e34f941a 564 case scm_tc3_cons:
0f2d19dd
JB
565 switch (SCM_TYP7 (exp))
566 {
904a077d
MV
567 case scm_tcs_struct:
568 {
569 ENTER_NESTED_DATA (pstate, exp, circref);
570 if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
571 {
572 SCM pwps, print = pstate->writingp ? g_write : g_display;
b2b33168 573 if (SCM_UNPACK (print) == 0)
904a077d 574 goto print_struct;
dfd03fb9 575 pwps = scm_i_port_with_print_state (port, pstate->handle);
7663c008 576 pstate->revealed = 1;
fa075d40 577 scm_call_2 (print, exp, pwps);
904a077d
MV
578 }
579 else
580 {
581 print_struct:
582 scm_print_struct (exp, port, pstate);
583 }
584 EXIT_NESTED_DATA (pstate);
585 }
586 break;
0f2d19dd
JB
587 case scm_tcs_cons_imcar:
588 case scm_tcs_cons_nimcar:
c62fbfe1
MD
589 ENTER_NESTED_DATA (pstate, exp, circref);
590 scm_iprlist ("(", exp, ')', port, pstate);
591 EXIT_NESTED_DATA (pstate);
a51ea417
MD
592 break;
593 circref:
c62fbfe1 594 print_circref (port, pstate, exp);
0f2d19dd 595 break;
534c55a9
DH
596 case scm_tc7_number:
597 switch SCM_TYP16 (exp) {
598 case scm_tc16_big:
599 scm_bigprint (exp, port, pstate);
600 break;
601 case scm_tc16_real:
602 scm_print_real (exp, port, pstate);
603 break;
604 case scm_tc16_complex:
605 scm_print_complex (exp, port, pstate);
606 break;
f92e85f7
MV
607 case scm_tc16_fraction:
608 scm_i_print_fraction (exp, port, pstate);
609 break;
534c55a9
DH
610 }
611 break;
db071766
AW
612 case scm_tc7_stringbuf:
613 scm_i_print_stringbuf (exp, port, pstate);
614 break;
9c44cd45
MG
615 case scm_tc7_string:
616 if (SCM_WRITINGP (pstate))
617 {
07f49ac7 618 size_t len, i;
9c44cd45 619
f4bc4e59 620 display_character ('"', port, iconveh_question_mark);
9c44cd45
MG
621 len = scm_i_string_length (exp);
622 for (i = 0; i < len; ++i)
07f49ac7
LC
623 write_character (scm_i_string_ref (exp, i), port, 1);
624
f4bc4e59 625 display_character ('"', port, iconveh_question_mark);
9c44cd45
MG
626 scm_remember_upto_here_1 (exp);
627 }
628 else
f4bc4e59
LC
629 {
630 size_t len, printed;
631
632 len = scm_i_string_length (exp);
633 printed = display_string (scm_i_string_data (exp),
634 scm_i_is_narrow_string (exp),
635 len, port,
478848cb 636 PORT_CONVERSION_HANDLER (port));
f4bc4e59 637 if (SCM_UNLIKELY (printed < len))
f4bc4e59
LC
638 scm_encoding_error (__func__, errno,
639 "cannot convert to output locale",
6851d3be 640 port, scm_c_string_ref (exp, printed));
f4bc4e59
LC
641 }
642
9c44cd45
MG
643 scm_remember_upto_here_1 (exp);
644 break;
28b06554 645 case scm_tc7_symbol:
cc95e00a 646 if (scm_i_symbol_is_interned (exp))
9ff28a13 647 {
4164dd6d 648 print_symbol (exp, port);
9ff28a13
MV
649 scm_remember_upto_here_1 (exp);
650 }
651 else
652 {
0607ebbf 653 scm_puts_unlocked ("#<uninterned-symbol ", port);
4164dd6d 654 print_symbol (exp, port);
0607ebbf 655 scm_putc_unlocked (' ', port);
0345e278 656 scm_uintprint (SCM_UNPACK (exp), 16, port);
0607ebbf 657 scm_putc_unlocked ('>', port);
9ff28a13 658 }
6662998f 659 break;
e5aca4b5
MV
660 case scm_tc7_variable:
661 scm_i_variable_print (exp, port, pstate);
662 break;
510ca126 663 case scm_tc7_rtl_program:
2fb924f6
AW
664 scm_i_program_print (exp, port, pstate);
665 break;
5b46a8c2
LC
666 case scm_tc7_pointer:
667 scm_i_pointer_print (exp, port, pstate);
e2c2a699 668 break;
c99de5aa
AW
669 case scm_tc7_hashtable:
670 scm_i_hashtable_print (exp, port, pstate);
671 break;
26b26354
AW
672 case scm_tc7_weak_set:
673 scm_i_weak_set_print (exp, port, pstate);
674 break;
7005c60f
AW
675 case scm_tc7_weak_table:
676 scm_i_weak_table_print (exp, port, pstate);
677 break;
9ea31741
AW
678 case scm_tc7_fluid:
679 scm_i_fluid_print (exp, port, pstate);
680 break;
45cf2428
AW
681 case scm_tc7_dynamic_state:
682 scm_i_dynamic_state_print (exp, port, pstate);
683 break;
6f3b0cc2
AW
684 case scm_tc7_frame:
685 scm_i_frame_print (exp, port, pstate);
686 break;
6f3b0cc2
AW
687 case scm_tc7_vm:
688 scm_i_vm_print (exp, port, pstate);
689 break;
690 case scm_tc7_vm_cont:
691 scm_i_vm_cont_print (exp, port, pstate);
692 break;
b2637c98 693 case scm_tc7_array:
c62fbfe1 694 ENTER_NESTED_DATA (pstate, exp, circref);
b2637c98 695 scm_i_print_array (exp, port, pstate);
88c0a1d5 696 EXIT_NESTED_DATA (pstate);
b2637c98 697 break;
807e5a66
LC
698 case scm_tc7_bytevector:
699 scm_i_print_bytevector (exp, port, pstate);
700 break;
ff1feca9
AW
701 case scm_tc7_bitvector:
702 scm_i_print_bitvector (exp, port, pstate);
703 break;
0f2d19dd 704 case scm_tc7_wvect:
c62fbfe1 705 ENTER_NESTED_DATA (pstate, exp, circref);
91ee7515 706 scm_puts_unlocked ("#w(", port);
0f2d19dd 707 goto common_vector_printer;
0f2d19dd 708 case scm_tc7_vector:
c62fbfe1 709 ENTER_NESTED_DATA (pstate, exp, circref);
0607ebbf 710 scm_puts_unlocked ("#(", port);
0f2d19dd 711 common_vector_printer:
9fbaf27c 712 {
c014a02e 713 register long i;
4057a3e0 714 long last = SCM_SIMPLE_VECTOR_LENGTH (exp) - 1;
9fbaf27c 715 int cutp = 0;
4057a3e0
MV
716 if (pstate->fancyp
717 && SCM_SIMPLE_VECTOR_LENGTH (exp) > pstate->length)
9fbaf27c
MD
718 {
719 last = pstate->length - 1;
720 cutp = 1;
721 }
a141db86
AW
722 for (i = 0; i < last; ++i)
723 {
724 scm_iprin1 (scm_c_vector_ref (exp, i), port, pstate);
0607ebbf 725 scm_putc_unlocked (' ', port);
a141db86 726 }
9fbaf27c
MD
727 if (i == last)
728 {
729 /* CHECK_INTS; */
c367c4b4 730 scm_iprin1 (scm_c_vector_ref (exp, i), port, pstate);
9fbaf27c
MD
731 }
732 if (cutp)
0607ebbf
AW
733 scm_puts_unlocked (" ...", port);
734 scm_putc_unlocked (')', port);
9fbaf27c 735 }
c62fbfe1 736 EXIT_NESTED_DATA (pstate);
0f2d19dd 737 break;
0f2d19dd 738 case scm_tc7_port:
5ca6dc39 739 {
62bd5d66
AW
740 scm_t_ptob_descriptor *ptob = SCM_PORT_DESCRIPTOR (exp);
741 if (ptob->print && ptob->print (exp, port, pstate))
a51ea417 742 break;
5ca6dc39
JB
743 goto punk;
744 }
745 case scm_tc7_smob:
7a7f7c53
DH
746 ENTER_NESTED_DATA (pstate, exp, circref);
747 SCM_SMOB_DESCRIPTOR (exp).print (exp, port, pstate);
748 EXIT_NESTED_DATA (pstate);
749 break;
0f2d19dd 750 default:
314b8716 751 /* case scm_tcs_closures: */
a51ea417
MD
752 punk:
753 scm_ipruk ("type", exp, port);
0f2d19dd
JB
754 }
755 }
756}
757
c62fbfe1
MD
758/* Print states are necessary for circular reference safe printing.
759 * They are also expensive to allocate. Therefore print states are
760 * kept in a pool so that they can be reused.
761 */
1cc91f1b 762
bb35f315
MV
763/* The PORT argument can also be a print-state/port pair, which will
764 * then be used instead of allocating a new print state. This is
765 * useful for continuing a chain of print calls from Scheme. */
766
a51ea417 767void
1bbd0b84 768scm_prin1 (SCM exp, SCM port, int writingp)
a51ea417 769{
c4f37e80
MV
770 SCM handle = SCM_BOOL_F; /* Will GC protect the handle whilst unlinked */
771 SCM pstate_scm;
c62fbfe1 772 scm_print_state *pstate;
15635be5 773 int old_writingp;
c62fbfe1 774
bb35f315
MV
775 /* If PORT is a print-state/port pair, use that. Else create a new
776 print-state. */
c4f37e80 777
0c95b57d 778 if (SCM_PORT_WITH_PS_P (port))
bb35f315 779 {
52235e71
MD
780 pstate_scm = SCM_PORT_WITH_PS_PS (port);
781 port = SCM_PORT_WITH_PS_PORT (port);
bb35f315
MV
782 }
783 else
c62fbfe1 784 {
c4f37e80 785 /* First try to allocate a print state from the pool */
9de87eea 786 scm_i_pthread_mutex_lock (&print_state_mutex);
d2e53ed6 787 if (!scm_is_null (print_state_pool))
c4f37e80 788 {
d5cf5324
DH
789 handle = print_state_pool;
790 print_state_pool = SCM_CDR (print_state_pool);
c4f37e80 791 }
9de87eea 792 scm_i_pthread_mutex_unlock (&print_state_mutex);
7888309b 793 if (scm_is_false (handle))
d5cf5324 794 handle = scm_list_1 (make_print_state ());
c4f37e80 795 pstate_scm = SCM_CAR (handle);
c62fbfe1 796 }
c62fbfe1 797
c4f37e80 798 pstate = SCM_PRINT_STATE (pstate_scm);
15635be5 799 old_writingp = pstate->writingp;
c62fbfe1
MD
800 pstate->writingp = writingp;
801 scm_iprin1 (exp, port, pstate);
15635be5 802 pstate->writingp = old_writingp;
c62fbfe1 803
bb35f315
MV
804 /* Return print state to pool if it has been created above and
805 hasn't escaped to Scheme. */
806
7888309b 807 if (scm_is_true (handle) && !pstate->revealed)
c4f37e80 808 {
9de87eea 809 scm_i_pthread_mutex_lock (&print_state_mutex);
d5cf5324
DH
810 SCM_SETCDR (handle, print_state_pool);
811 print_state_pool = handle;
9de87eea 812 scm_i_pthread_mutex_unlock (&print_state_mutex);
c4f37e80 813 }
a51ea417
MD
814}
815
f4bc4e59
LC
816/* Convert codepoint CH to UTF-8 and store the result in UTF8. Return
817 the number of bytes of the UTF-8-encoded string. */
818static size_t
819codepoint_to_utf8 (scm_t_wchar ch, scm_t_uint8 utf8[4])
9c44cd45 820{
f4bc4e59
LC
821 size_t len;
822 scm_t_uint32 codepoint;
823
824 codepoint = (scm_t_uint32) ch;
07f49ac7 825
f4bc4e59 826 if (codepoint <= 0x7f)
07f49ac7 827 {
f4bc4e59
LC
828 len = 1;
829 utf8[0] = (scm_t_uint8) codepoint;
830 }
831 else if (codepoint <= 0x7ffUL)
832 {
833 len = 2;
834 utf8[0] = 0xc0 | (codepoint >> 6);
835 utf8[1] = 0x80 | (codepoint & 0x3f);
836 }
837 else if (codepoint <= 0xffffUL)
838 {
839 len = 3;
840 utf8[0] = 0xe0 | (codepoint >> 12);
841 utf8[1] = 0x80 | ((codepoint >> 6) & 0x3f);
842 utf8[2] = 0x80 | (codepoint & 0x3f);
07f49ac7
LC
843 }
844 else
845 {
f4bc4e59
LC
846 len = 4;
847 utf8[0] = 0xf0 | (codepoint >> 18);
848 utf8[1] = 0x80 | ((codepoint >> 12) & 0x3f);
849 utf8[2] = 0x80 | ((codepoint >> 6) & 0x3f);
850 utf8[3] = 0x80 | (codepoint & 0x3f);
851 }
852
853 return len;
854}
855
f4bc4e59
LC
856#define STR_REF(s, x) \
857 (narrow_p \
858 ? (scm_t_wchar) ((unsigned char *) (s))[x] \
859 : ((scm_t_wchar *) (s))[x])
860
7b292a9d
LC
861/* Write STR to PORT as UTF-8. STR is a LEN-codepoint string; it is
862 narrow if NARROW_P is true, wide otherwise. Return LEN. */
863static size_t
864display_string_as_utf8 (const void *str, int narrow_p, size_t len,
865 SCM port)
866{
867 size_t printed = 0;
868
869 while (len > printed)
870 {
871 size_t utf8_len, i;
872 char *input, utf8_buf[256];
873
874 /* Convert STR to UTF-8. */
875 for (i = printed, utf8_len = 0, input = utf8_buf;
876 i < len && utf8_len + 4 < sizeof (utf8_buf);
877 i++)
878 {
879 utf8_len += codepoint_to_utf8 (STR_REF (str, i),
880 (scm_t_uint8 *) input);
881 input = utf8_buf + utf8_len;
882 }
883
884 /* INPUT was successfully converted, entirely; print the
885 result. */
f209aeee 886 scm_lfwrite_unlocked (utf8_buf, utf8_len, port);
7b292a9d
LC
887 printed += i - printed;
888 }
889
890 assert (printed == len);
891
892 return len;
893}
894
79eb47ea
AW
895/* Write STR to PORT as ISO-8859-1. STR is a LEN-codepoint string; it
896 is narrow if NARROW_P is true, wide otherwise. Return LEN. */
897static size_t
898display_string_as_latin1 (const void *str, int narrow_p, size_t len,
899 SCM port,
900 scm_t_string_failed_conversion_handler strategy)
901{
902 size_t printed = 0;
903
904 if (narrow_p)
905 {
906 scm_lfwrite_unlocked (str, len, port);
907 return len;
908 }
909
910 while (printed < len)
911 {
912 char buf[256];
913 size_t i;
914
915 for (i = 0; i < sizeof(buf) && printed < len; i++, printed++)
916 {
917 scm_t_wchar c = STR_REF (str, printed);
918
919 if (c < 256)
920 buf[i] = c;
921 else
922 break;
923 }
924
925 scm_lfwrite_unlocked (buf, i, port);
926
927 if (i < sizeof(buf) && printed < len)
928 {
929 if (strategy == SCM_FAILED_CONVERSION_ERROR)
930 break;
931 else if (strategy == SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE)
932 write_character_escaped (STR_REF (str, printed), 1, port);
933 else
934 /* STRATEGY is `SCM_FAILED_CONVERSION_QUESTION_MARK'. */
935 display_string ("?", 1, 1, port, strategy);
936 printed++;
937 }
938 }
939
940 return printed;
941}
942
7b292a9d
LC
943/* Convert STR through PORT's output conversion descriptor and write the
944 output to PORT. Return the number of codepoints written. */
945static size_t
946display_string_using_iconv (const void *str, int narrow_p, size_t len,
947 SCM port,
948 scm_t_string_failed_conversion_handler strategy)
949{
f4bc4e59 950 size_t printed;
6c98257f 951 scm_t_iconv_descriptors *id;
cdd3d6c9 952 scm_t_port_internal *pti = SCM_PORT_GET_INTERNAL (port);
f4bc4e59 953
cdd3d6c9
MW
954 id = scm_i_port_iconv_descriptors (port, SCM_PORT_WRITE);
955
956 if (SCM_UNLIKELY (pti->at_stream_start_for_bom_write && len > 0))
957 {
958 scm_t_port *pt = SCM_PTAB_ENTRY (port);
959
960 /* Record that we're no longer at stream start. */
961 pti->at_stream_start_for_bom_write = 0;
962 if (pt->rw_random)
963 pti->at_stream_start_for_bom_read = 0;
964
965 /* Write a BOM if appropriate. */
f6f4feb0
MW
966 if (SCM_UNLIKELY (strcmp(pt->encoding, "UTF-16") == 0
967 || strcmp(pt->encoding, "UTF-32") == 0))
cdd3d6c9
MW
968 display_character (SCM_UNICODE_BOM, port, iconveh_error);
969 }
f4bc4e59 970
f4bc4e59
LC
971 printed = 0;
972
973 while (len > printed)
974 {
975 size_t done, utf8_len, input_left, output_left, i;
976 size_t codepoints_read, output_len;
977 char *input, *output;
978 char utf8_buf[256], encoded_output[256];
979 size_t offsets[256];
980
981 /* Convert STR to UTF-8. */
982 for (i = printed, utf8_len = 0, input = utf8_buf;
983 i < len && utf8_len + 4 < sizeof (utf8_buf);
984 i++)
07f49ac7 985 {
f4bc4e59
LC
986 offsets[utf8_len] = i;
987 utf8_len += codepoint_to_utf8 (STR_REF (str, i),
988 (scm_t_uint8 *) input);
989 input = utf8_buf + utf8_len;
990 }
991
992 input = utf8_buf;
993 input_left = utf8_len;
994
995 output = encoded_output;
996 output_left = sizeof (encoded_output);
997
6c98257f 998 done = iconv (id->output_cd, &input, &input_left,
f4bc4e59 999 &output, &output_left);
07f49ac7 1000
f4bc4e59
LC
1001 output_len = sizeof (encoded_output) - output_left;
1002
1003 if (SCM_UNLIKELY (done == (size_t) -1))
1004 {
b2548e23
AW
1005 int errno_save = errno;
1006
f4bc4e59 1007 /* Reset the `iconv' state. */
6c98257f 1008 iconv (id->output_cd, NULL, NULL, NULL, NULL);
f4bc4e59 1009
7174bc08 1010 /* Print the OUTPUT_LEN bytes successfully converted. */
f209aeee 1011 scm_lfwrite_unlocked (encoded_output, output_len, port);
7174bc08
LC
1012
1013 /* See how many input codepoints these OUTPUT_LEN bytes
1014 corresponds to. */
1015 codepoints_read = offsets[input - utf8_buf] - printed;
1016 printed += codepoints_read;
1017
b2548e23 1018 if (errno_save == EILSEQ &&
f4bc4e59 1019 strategy != SCM_FAILED_CONVERSION_ERROR)
07f49ac7 1020 {
f4bc4e59
LC
1021 /* Conversion failed somewhere in INPUT and we want to
1022 escape or substitute the offending input character. */
1023
f4bc4e59 1024 if (strategy == SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE)
f1ee6d54 1025 {
f4bc4e59
LC
1026 scm_t_wchar ch;
1027
1028 /* Find CH, the offending codepoint, and escape it. */
1029 ch = STR_REF (str, offsets[input - utf8_buf]);
1030 write_character_escaped (ch, 1, port);
f1ee6d54 1031 }
07f49ac7 1032 else
f4bc4e59
LC
1033 /* STRATEGY is `SCM_FAILED_CONVERSION_QUESTION_MARK'. */
1034 display_string ("?", 1, 1, port, strategy);
9c44cd45 1035
f4bc4e59
LC
1036 printed++;
1037 }
1038 else
1039 /* Something bad happened that we can't handle: bail out. */
1040 break;
07f49ac7
LC
1041 }
1042 else
f4bc4e59
LC
1043 {
1044 /* INPUT was successfully converted, entirely; print the
1045 result. */
f209aeee 1046 scm_lfwrite_unlocked (encoded_output, output_len, port);
f4bc4e59
LC
1047 codepoints_read = i - printed;
1048 printed += codepoints_read;
1049 }
07f49ac7
LC
1050 }
1051
1052 return printed;
7b292a9d
LC
1053}
1054
f4bc4e59 1055#undef STR_REF
7b292a9d
LC
1056
1057/* Display the LEN codepoints in STR to PORT according to STRATEGY;
1058 return the number of codepoints successfully displayed. If NARROW_P,
1059 then STR is interpreted as a sequence of `char', denoting a Latin-1
1060 string; otherwise it's interpreted as a sequence of
1061 `scm_t_wchar'. */
1062static size_t
1063display_string (const void *str, int narrow_p,
1064 size_t len, SCM port,
1065 scm_t_string_failed_conversion_handler strategy)
7b292a9d 1066{
e4598559 1067 scm_t_port_internal *pti;
7b292a9d 1068
e4598559 1069 pti = SCM_PORT_GET_INTERNAL (port);
7b292a9d 1070
337edc59 1071 if (pti->encoding_mode == SCM_PORT_ENCODING_MODE_UTF8)
7b292a9d 1072 return display_string_as_utf8 (str, narrow_p, len, port);
f6f4feb0 1073 else if (pti->encoding_mode == SCM_PORT_ENCODING_MODE_LATIN1)
79eb47ea 1074 return display_string_as_latin1 (str, narrow_p, len, port, strategy);
7b292a9d 1075 else
79eb47ea 1076 return display_string_using_iconv (str, narrow_p, len, port, strategy);
f4bc4e59
LC
1077}
1078
1079/* Attempt to display CH to PORT according to STRATEGY. Return non-zero
1080 if CH was successfully displayed, zero otherwise (e.g., if it was not
1081 representable in PORT's encoding.) */
1082static int
1083display_character (scm_t_wchar ch, SCM port,
1084 scm_t_string_failed_conversion_handler strategy)
1085{
1086 return display_string (&ch, 0, 1, port, strategy) == 1;
07f49ac7
LC
1087}
1088
33d92fe6
LC
1089/* Attempt to pretty-print CH, a combining character, to PORT. Return
1090 zero upon failure, non-zero otherwise. The idea is to print CH above
1091 a dotted circle to make it more visible. */
1092static int
1093write_combining_character (scm_t_wchar ch, SCM port)
1094{
f4bc4e59
LC
1095 scm_t_wchar str[2];
1096
1097 str[0] = SCM_CODEPOINT_DOTTED_CIRCLE;
1098 str[1] = ch;
1099
1100 return display_string (str, 0, 2, port, iconveh_error) == 2;
1101}
33d92fe6 1102
f4bc4e59
LC
1103/* Write CH to PORT in its escaped form, using the string escape syntax
1104 if STRING_ESCAPES_P is non-zero. */
1105static void
1106write_character_escaped (scm_t_wchar ch, int string_escapes_p, SCM port)
1107{
1108 if (string_escapes_p)
33d92fe6 1109 {
f4bc4e59
LC
1110 /* Represent CH using the in-string escape syntax. */
1111
1112 static const char hex[] = "0123456789abcdef";
1113 static const char escapes[7] = "abtnvfr";
1114 char buf[9];
1115
1116 if (ch >= 0x07 && ch <= 0x0D && ch != 0x0A)
33d92fe6 1117 {
f4bc4e59
LC
1118 /* Use special escapes for some C0 controls. */
1119 buf[0] = '\\';
1120 buf[1] = escapes[ch - 0x07];
f209aeee 1121 scm_lfwrite_unlocked (buf, 2, port);
f4bc4e59
LC
1122 }
1123 else if (!SCM_R6RS_ESCAPES_P)
1124 {
1125 if (ch <= 0xFF)
1126 {
1127 buf[0] = '\\';
1128 buf[1] = 'x';
1129 buf[2] = hex[ch / 16];
1130 buf[3] = hex[ch % 16];
f209aeee 1131 scm_lfwrite_unlocked (buf, 4, port);
f4bc4e59
LC
1132 }
1133 else if (ch <= 0xFFFF)
1134 {
1135 buf[0] = '\\';
1136 buf[1] = 'u';
1137 buf[2] = hex[(ch & 0xF000) >> 12];
1138 buf[3] = hex[(ch & 0xF00) >> 8];
1139 buf[4] = hex[(ch & 0xF0) >> 4];
1140 buf[5] = hex[(ch & 0xF)];
f209aeee 1141 scm_lfwrite_unlocked (buf, 6, port);
f4bc4e59
LC
1142 }
1143 else if (ch > 0xFFFF)
1144 {
1145 buf[0] = '\\';
1146 buf[1] = 'U';
1147 buf[2] = hex[(ch & 0xF00000) >> 20];
1148 buf[3] = hex[(ch & 0xF0000) >> 16];
1149 buf[4] = hex[(ch & 0xF000) >> 12];
1150 buf[5] = hex[(ch & 0xF00) >> 8];
1151 buf[6] = hex[(ch & 0xF0) >> 4];
1152 buf[7] = hex[(ch & 0xF)];
f209aeee 1153 scm_lfwrite_unlocked (buf, 8, port);
f4bc4e59 1154 }
33d92fe6
LC
1155 }
1156 else
f4bc4e59
LC
1157 {
1158 /* Print an R6RS variable-length hex escape: "\xNNNN;". */
1159 scm_t_wchar ch2 = ch;
1160
1161 int i = 8;
1162 buf[i] = ';';
1163 i --;
1164 if (ch == 0)
1165 buf[i--] = '0';
1166 else
1167 while (ch2 > 0)
1168 {
1169 buf[i] = hex[ch2 & 0xF];
1170 ch2 >>= 4;
1171 i --;
1172 }
1173 buf[i] = 'x';
1174 i --;
1175 buf[i] = '\\';
f209aeee 1176 scm_lfwrite_unlocked (buf + i, 9 - i, port);
f4bc4e59 1177 }
33d92fe6
LC
1178 }
1179 else
f4bc4e59
LC
1180 {
1181 /* Represent CH using the character escape syntax. */
1182 const char *name;
33d92fe6 1183
f4bc4e59
LC
1184 name = scm_i_charname (SCM_MAKE_CHAR (ch));
1185 if (name != NULL)
0607ebbf 1186 scm_puts_unlocked (name, port);
f4bc4e59
LC
1187 else
1188 PRINT_CHAR_ESCAPE (ch, port);
1189 }
33d92fe6
LC
1190}
1191
07f49ac7
LC
1192/* Write CH to PORT, escaping it if it's non-graphic or not
1193 representable in PORT's encoding. If STRING_ESCAPES_P is true and CH
1194 needs to be escaped, it is escaped using the in-string escape syntax;
1195 otherwise the character escape syntax is used. */
1196static void
1197write_character (scm_t_wchar ch, SCM port, int string_escapes_p)
1198{
1199 int printed = 0;
f4bc4e59
LC
1200 scm_t_string_failed_conversion_handler strategy;
1201
478848cb 1202 strategy = PORT_CONVERSION_HANDLER (port);
07f49ac7
LC
1203
1204 if (string_escapes_p)
1205 {
1206 /* Check if CH deserves special treatment. */
1207 if (ch == '"' || ch == '\\')
1208 {
f4bc4e59
LC
1209 display_character ('\\', port, iconveh_question_mark);
1210 display_character (ch, port, strategy);
07f49ac7
LC
1211 printed = 1;
1212 }
8500b186
AW
1213 else if (ch == '\n' && SCM_PRINT_ESCAPE_NEWLINES_P)
1214 {
1215 display_character ('\\', port, iconveh_question_mark);
1216 display_character ('n', port, strategy);
1217 printed = 1;
1218 }
07f49ac7
LC
1219 else if (ch == ' ' || ch == '\n')
1220 {
f4bc4e59 1221 display_character (ch, port, strategy);
07f49ac7
LC
1222 printed = 1;
1223 }
1224 }
1225 else
33d92fe6 1226 {
f4bc4e59 1227 display_string ("#\\", 1, 2, port, iconveh_question_mark);
33d92fe6
LC
1228
1229 if (uc_combining_class (ch) != UC_CCC_NR)
1230 /* Character is a combining character, so attempt to
1231 pretty-print it. */
1232 printed = write_combining_character (ch, port);
1233 }
07f49ac7
LC
1234
1235 if (!printed
1236 && uc_is_general_category_withtable (ch,
1237 UC_CATEGORY_MASK_L |
1238 UC_CATEGORY_MASK_M |
1239 UC_CATEGORY_MASK_N |
1240 UC_CATEGORY_MASK_P |
1241 UC_CATEGORY_MASK_S))
1242 /* CH is graphic; attempt to display it. */
1243 printed = display_character (ch, port, iconveh_error);
1244
1245 if (!printed)
f4bc4e59
LC
1246 /* CH isn't graphic or cannot be represented in PORT's encoding. */
1247 write_character_escaped (ch, string_escapes_p, port);
9c44cd45 1248}
0f2d19dd 1249
b908768a
LC
1250/* Display STR to PORT from START inclusive to END exclusive. */
1251void
1252scm_i_display_substring (SCM str, size_t start, size_t end, SCM port)
1253{
1254 int narrow_p;
1255 const char *buf;
1256 size_t len, printed;
1257
1258 buf = scm_i_string_data (str);
1259 len = end - start;
1260 narrow_p = scm_i_is_narrow_string (str);
1261 buf += start * (narrow_p ? sizeof (char) : sizeof (scm_t_wchar));
1262
1263 printed = display_string (buf, narrow_p, end - start, port,
1264 PORT_CONVERSION_HANDLER (port));
1265
1266 if (SCM_UNLIKELY (printed < len))
1267 scm_encoding_error (__func__, errno,
1268 "cannot convert to output locale",
1269 port, scm_c_string_ref (str, printed + start));
1270}
1271
1272\f
0f2d19dd
JB
1273/* Print an integer.
1274 */
1cc91f1b 1275
0f2d19dd 1276void
a406c9e9 1277scm_intprint (scm_t_intmax n, int radix, SCM port)
0f2d19dd
JB
1278{
1279 char num_buf[SCM_INTBUFLEN];
f209aeee 1280 scm_lfwrite_unlocked (num_buf, scm_iint2str (n, radix, num_buf), port);
0f2d19dd
JB
1281}
1282
a406c9e9
MV
1283void
1284scm_uintprint (scm_t_uintmax n, int radix, SCM port)
1285{
1286 char num_buf[SCM_INTBUFLEN];
f209aeee 1287 scm_lfwrite_unlocked (num_buf, scm_iuint2str (n, radix, num_buf), port);
a406c9e9
MV
1288}
1289
0f2d19dd
JB
1290/* Print an object of unrecognized type.
1291 */
1cc91f1b 1292
0f2d19dd 1293void
1bbd0b84 1294scm_ipruk (char *hdr, SCM ptr, SCM port)
0f2d19dd 1295{
0607ebbf
AW
1296 scm_puts_unlocked ("#<unknown-", port);
1297 scm_puts_unlocked (hdr, port);
26224b3f 1298 if (1) /* (scm_in_heap_p (ptr)) */ /* FIXME */
0f2d19dd 1299 {
0607ebbf 1300 scm_puts_unlocked (" (0x", port);
0345e278 1301 scm_uintprint (SCM_CELL_WORD_0 (ptr), 16, port);
0607ebbf 1302 scm_puts_unlocked (" . 0x", port);
0345e278 1303 scm_uintprint (SCM_CELL_WORD_1 (ptr), 16, port);
0607ebbf 1304 scm_puts_unlocked (") @", port);
0f2d19dd 1305 }
0607ebbf 1306 scm_puts_unlocked (" 0x", port);
0345e278 1307 scm_uintprint (SCM_UNPACK (ptr), 16, port);
0607ebbf 1308 scm_putc_unlocked ('>', port);
0f2d19dd
JB
1309}
1310
1cc91f1b 1311
904a077d 1312/* Print a list.
22a52da1 1313 */
0f2d19dd 1314void
34d19ef6 1315scm_iprlist (char *hdr, SCM exp, int tlr, SCM port, scm_print_state *pstate)
0f2d19dd 1316{
c62fbfe1 1317 register SCM hare, tortoise;
c014a02e 1318 long floor = pstate->top - 2;
0607ebbf 1319 scm_puts_unlocked (hdr, port);
0f2d19dd 1320 /* CHECK_INTS; */
c62fbfe1
MD
1321 if (pstate->fancyp)
1322 goto fancy_printing;
1323
1324 /* Run a hare and tortoise so that total time complexity will be
1325 O(depth * N) instead of O(N^2). */
1326 hare = SCM_CDR (exp);
1327 tortoise = exp;
d2e53ed6 1328 while (scm_is_pair (hare))
c62fbfe1 1329 {
bc36d050 1330 if (scm_is_eq (hare, tortoise))
c62fbfe1
MD
1331 goto fancy_printing;
1332 hare = SCM_CDR (hare);
d2e53ed6 1333 if (!scm_is_pair (hare))
c62fbfe1
MD
1334 break;
1335 hare = SCM_CDR (hare);
1336 tortoise = SCM_CDR (tortoise);
1337 }
1338
1339 /* No cdr cycles intrinsic to this list */
1340 scm_iprin1 (SCM_CAR (exp), port, pstate);
d2e53ed6 1341 for (exp = SCM_CDR (exp); scm_is_pair (exp); exp = SCM_CDR (exp))
0f2d19dd 1342 {
c014a02e 1343 register long i;
5ca6dc39 1344
c62fbfe1 1345 for (i = floor; i >= 0; --i)
509759dd 1346 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
c62fbfe1
MD
1347 goto circref;
1348 PUSH_REF (pstate, exp);
0607ebbf 1349 scm_putc_unlocked (' ', port);
0f2d19dd 1350 /* CHECK_INTS; */
c62fbfe1 1351 scm_iprin1 (SCM_CAR (exp), port, pstate);
0f2d19dd 1352 }
c96d76b8 1353 if (!SCM_NULL_OR_NIL_P (exp))
0f2d19dd 1354 {
0607ebbf 1355 scm_puts_unlocked (" . ", port);
c62fbfe1 1356 scm_iprin1 (exp, port, pstate);
0f2d19dd 1357 }
c62fbfe1 1358
a51ea417 1359end:
0607ebbf 1360 scm_putc_unlocked (tlr, port);
c62fbfe1 1361 pstate->top = floor + 2;
a51ea417 1362 return;
c62fbfe1
MD
1363
1364fancy_printing:
1365 {
c014a02e 1366 long n = pstate->length;
c62fbfe1
MD
1367
1368 scm_iprin1 (SCM_CAR (exp), port, pstate);
1369 exp = SCM_CDR (exp); --n;
d2e53ed6 1370 for (; scm_is_pair (exp); exp = SCM_CDR (exp))
c62fbfe1 1371 {
c014a02e 1372 register unsigned long i;
5ca6dc39 1373
c62fbfe1 1374 for (i = 0; i < pstate->top; ++i)
509759dd 1375 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
c62fbfe1
MD
1376 goto fancy_circref;
1377 if (pstate->fancyp)
1378 {
1379 if (n == 0)
1380 {
0607ebbf 1381 scm_puts_unlocked (" ...", port);
c62fbfe1
MD
1382 goto skip_tail;
1383 }
1384 else
1385 --n;
1386 }
1387 PUSH_REF(pstate, exp);
1388 ++pstate->list_offset;
0607ebbf 1389 scm_putc_unlocked (' ', port);
c62fbfe1
MD
1390 /* CHECK_INTS; */
1391 scm_iprin1 (SCM_CAR (exp), port, pstate);
1392 }
1393 }
c96d76b8 1394 if (!SCM_NULL_OR_NIL_P (exp))
c62fbfe1 1395 {
0607ebbf 1396 scm_puts_unlocked (" . ", port);
c62fbfe1
MD
1397 scm_iprin1 (exp, port, pstate);
1398 }
1399skip_tail:
1400 pstate->list_offset -= pstate->top - floor - 2;
a51ea417 1401 goto end;
a51ea417 1402
c62fbfe1
MD
1403fancy_circref:
1404 pstate->list_offset -= pstate->top - floor - 2;
1405
1406circref:
0607ebbf 1407 scm_puts_unlocked (" . ", port);
c62fbfe1
MD
1408 print_circref (port, pstate, exp);
1409 goto end;
0f2d19dd
JB
1410}
1411
1412\f
1413
bb35f315
MV
1414int
1415scm_valid_oport_value_p (SCM val)
1416{
368cf54d
GB
1417 return (SCM_OPOUTPORTP (val)
1418 || (SCM_PORT_WITH_PS_P (val)
1419 && SCM_OPOUTPORTP (SCM_PORT_WITH_PS_PORT (val))));
bb35f315
MV
1420}
1421
8b840115 1422/* SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write); */
1cc91f1b 1423
0f2d19dd 1424SCM
1bbd0b84 1425scm_write (SCM obj, SCM port)
0f2d19dd
JB
1426{
1427 if (SCM_UNBNDP (port))
9de87eea 1428 port = scm_current_output_port ();
3eb7e6ee
JB
1429
1430 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_write);
bb35f315 1431
215fe3a8 1432 scm_dynwind_begin (0);
92c0ebac 1433 scm_dynwind_lock_port (SCM_COERCE_OUTPORT (port));
a51ea417 1434 scm_prin1 (obj, port, 1);
215fe3a8
AW
1435 scm_dynwind_end ();
1436
0f2d19dd
JB
1437 return SCM_UNSPECIFIED;
1438}
1439
1440
8b840115 1441/* SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display); */
1cc91f1b 1442
0f2d19dd 1443SCM
1bbd0b84 1444scm_display (SCM obj, SCM port)
0f2d19dd
JB
1445{
1446 if (SCM_UNBNDP (port))
9de87eea 1447 port = scm_current_output_port ();
3eb7e6ee
JB
1448
1449 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_display);
bb35f315 1450
215fe3a8 1451 scm_dynwind_begin (0);
92c0ebac 1452 scm_dynwind_lock_port (SCM_COERCE_OUTPORT (port));
a51ea417 1453 scm_prin1 (obj, port, 0);
215fe3a8
AW
1454 scm_dynwind_end ();
1455
0f2d19dd
JB
1456 return SCM_UNSPECIFIED;
1457}
1458
70d63753
GB
1459
1460SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
1461 (SCM destination, SCM message, SCM args),
eca65e90
MG
1462 "Write @var{message} to @var{destination}, defaulting to\n"
1463 "the current output port.\n"
1464 "@var{message} can contain @code{~A} (was @code{%s}) and\n"
1465 "@code{~S} (was @code{%S}) escapes. When printed,\n"
1466 "the escapes are replaced with corresponding members of\n"
b7e64f8b 1467 "@var{args}:\n"
eca65e90
MG
1468 "@code{~A} formats using @code{display} and @code{~S} formats\n"
1469 "using @code{write}.\n"
1470 "If @var{destination} is @code{#t}, then use the current output\n"
1471 "port, if @var{destination} is @code{#f}, then return a string\n"
1472 "containing the formatted text. Does not add a trailing newline.")
70d63753
GB
1473#define FUNC_NAME s_scm_simple_format
1474{
dfd03fb9 1475 SCM port, answer = SCM_UNSPECIFIED;
70d63753
GB
1476 int fReturnString = 0;
1477 int writingp;
889975e5 1478 size_t start, p, end;
70d63753 1479
bc36d050 1480 if (scm_is_eq (destination, SCM_BOOL_T))
daba1a71 1481 {
9de87eea 1482 destination = port = scm_current_output_port ();
daba1a71 1483 }
7888309b 1484 else if (scm_is_false (destination))
daba1a71
MD
1485 {
1486 fReturnString = 1;
0b2c2ba3 1487 port = scm_mkstrport (SCM_INUM0, SCM_BOOL_F,
dfd03fb9
MD
1488 SCM_OPN | SCM_WRTNG,
1489 FUNC_NAME);
1490 destination = port;
daba1a71
MD
1491 }
1492 else
1493 {
1494 SCM_VALIDATE_OPORT_VALUE (1, destination);
dfd03fb9 1495 port = SCM_COERCE_OUTPORT (destination);
daba1a71
MD
1496 }
1497 SCM_VALIDATE_STRING (2, message);
af45e3b0 1498 SCM_VALIDATE_REST_ARGUMENT (args);
70d63753 1499
889975e5
MG
1500 p = 0;
1501 start = 0;
1502 end = scm_i_string_length (message);
b24b5e13 1503 for (p = start; p != end; ++p)
889975e5 1504 if (scm_i_string_ref (message, p) == '~')
70d63753 1505 {
b24b5e13 1506 if (++p == end)
6662998f
MV
1507 break;
1508
889975e5 1509 switch (scm_i_string_ref (message, p))
6662998f
MV
1510 {
1511 case 'A': case 'a':
1512 writingp = 0;
1513 break;
1514 case 'S': case 's':
1515 writingp = 1;
1516 break;
1517 case '~':
889975e5 1518 scm_lfwrite_substr (message, start, p, port);
6662998f
MV
1519 start = p + 1;
1520 continue;
1521 case '%':
889975e5 1522 scm_lfwrite_substr (message, start, p - 1, port);
dfd03fb9 1523 scm_newline (port);
6662998f
MV
1524 start = p + 1;
1525 continue;
1526 default:
1afff620 1527 SCM_MISC_ERROR ("FORMAT: Unsupported format option ~~~A - use (ice-9 format) instead",
889975e5 1528 scm_list_1 (SCM_MAKE_CHAR (scm_i_string_ref (message, p))));
6662998f
MV
1529
1530 }
70d63753 1531
6662998f 1532
d2e53ed6 1533 if (!scm_is_pair (args))
1afff620 1534 SCM_MISC_ERROR ("FORMAT: Missing argument for ~~~A",
889975e5 1535 scm_list_1 (SCM_MAKE_CHAR (scm_i_string_ref (message, p))));
6662998f 1536
889975e5 1537 scm_lfwrite_substr (message, start, p - 1, port);
dfd03fb9 1538 /* we pass destination here */
70d63753
GB
1539 scm_prin1 (SCM_CAR (args), destination, writingp);
1540 args = SCM_CDR (args);
1541 start = p + 1;
1542 }
6662998f 1543
889975e5 1544 scm_lfwrite_substr (message, start, p, port);
bc36d050 1545 if (!scm_is_eq (args, SCM_EOL))
1afff620
KN
1546 SCM_MISC_ERROR ("FORMAT: ~A superfluous arguments",
1547 scm_list_1 (scm_length (args)));
70d63753
GB
1548
1549 if (fReturnString)
1550 answer = scm_strport_to_string (destination);
1551
daba1a71 1552 return scm_return_first (answer, message);
70d63753
GB
1553}
1554#undef FUNC_NAME
1555
1556
3b3b36dd 1557SCM_DEFINE (scm_newline, "newline", 0, 1, 0,
b450f070 1558 (SCM port),
8f85c0c6
NJ
1559 "Send a newline to @var{port}.\n"
1560 "If @var{port} is omitted, send to the current output port.")
1bbd0b84 1561#define FUNC_NAME s_scm_newline
0f2d19dd
JB
1562{
1563 if (SCM_UNBNDP (port))
9de87eea 1564 port = scm_current_output_port ();
3eb7e6ee 1565
34d19ef6 1566 SCM_VALIDATE_OPORT_VALUE (1, port);
bb35f315 1567
0607ebbf 1568 scm_putc_unlocked ('\n', SCM_COERCE_OUTPORT (port));
0f2d19dd
JB
1569 return SCM_UNSPECIFIED;
1570}
1bbd0b84 1571#undef FUNC_NAME
0f2d19dd 1572
3b3b36dd 1573SCM_DEFINE (scm_write_char, "write-char", 1, 1, 0,
b450f070 1574 (SCM chr, SCM port),
eca65e90 1575 "Send character @var{chr} to @var{port}.")
1bbd0b84 1576#define FUNC_NAME s_scm_write_char
0f2d19dd
JB
1577{
1578 if (SCM_UNBNDP (port))
9de87eea 1579 port = scm_current_output_port ();
3eb7e6ee 1580
34d19ef6
HWN
1581 SCM_VALIDATE_CHAR (1, chr);
1582 SCM_VALIDATE_OPORT_VALUE (2, port);
07f49ac7
LC
1583
1584 port = SCM_COERCE_OUTPORT (port);
1585 if (!display_character (SCM_CHAR (chr), port,
478848cb 1586 PORT_CONVERSION_HANDLER (port)))
07f49ac7
LC
1587 scm_encoding_error (__func__, errno,
1588 "cannot convert to output locale",
6851d3be 1589 port, chr);
07f49ac7 1590
0f2d19dd
JB
1591 return SCM_UNSPECIFIED;
1592}
1bbd0b84 1593#undef FUNC_NAME
0f2d19dd 1594
0f2d19dd
JB
1595\f
1596
bb35f315 1597/* Call back to Scheme code to do the printing of special objects
c19bc088
MD
1598 * (like structs). SCM_PRINTER_APPLY applies PROC to EXP and a smob
1599 * containing PORT and PSTATE. This object can be used as the port for
1600 * display/write etc to continue the current print chain. The REVEALED
1601 * field of PSTATE is set to true to indicate that the print state has
1602 * escaped to Scheme and thus has to be freed by the GC.
1603 */
1604
92c2555f 1605scm_t_bits scm_tc16_port_with_ps;
c19bc088
MD
1606
1607/* Print exactly as the port itself would */
1608
1609static int
e841c3e0 1610port_with_ps_print (SCM obj, SCM port, scm_print_state *pstate)
c19bc088
MD
1611{
1612 obj = SCM_PORT_WITH_PS_PORT (obj);
62bd5d66 1613 return SCM_PORT_DESCRIPTOR (obj)->print (obj, port, pstate);
c19bc088 1614}
c4f37e80
MV
1615
1616SCM
1bbd0b84 1617scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate)
c4f37e80 1618{
bb35f315 1619 pstate->revealed = 1;
dfd03fb9
MD
1620 return scm_call_2 (proc, exp,
1621 scm_i_port_with_print_state (port, pstate->handle));
c19bc088
MD
1622}
1623
dfd03fb9 1624SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 1, 1, 0,
1bbd0b84 1625 (SCM port, SCM pstate),
71331188 1626 "Create a new port which behaves like @var{port}, but with an\n"
dfd03fb9
MD
1627 "included print state @var{pstate}. @var{pstate} is optional.\n"
1628 "If @var{pstate} isn't supplied and @var{port} already has\n"
1629 "a print state, the old print state is reused.")
1bbd0b84 1630#define FUNC_NAME s_scm_port_with_print_state
c19bc088 1631{
34d19ef6 1632 SCM_VALIDATE_OPORT_VALUE (1, port);
dfd03fb9
MD
1633 if (!SCM_UNBNDP (pstate))
1634 SCM_VALIDATE_PRINTSTATE (2, pstate);
1635 return scm_i_port_with_print_state (port, pstate);
c19bc088 1636}
1bbd0b84 1637#undef FUNC_NAME
c19bc088 1638
a1ec6916 1639SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0,
1bbd0b84 1640 (SCM port),
71331188
MG
1641 "Return the print state of the port @var{port}. If @var{port}\n"
1642 "has no associated print state, @code{#f} is returned.")
1bbd0b84 1643#define FUNC_NAME s_scm_get_print_state
c19bc088 1644{
368cf54d
GB
1645 if (SCM_PORT_WITH_PS_P (port))
1646 return SCM_PORT_WITH_PS_PS (port);
f5f2dcff 1647 if (SCM_OUTPUT_PORT_P (port))
368cf54d 1648 return SCM_BOOL_F;
276dd677 1649 SCM_WRONG_TYPE_ARG (1, port);
c4f37e80 1650}
1bbd0b84 1651#undef FUNC_NAME
bb35f315 1652
c4f37e80 1653\f
1cc91f1b 1654
0f2d19dd
JB
1655void
1656scm_init_print ()
0f2d19dd 1657{
231dd356 1658 SCM type;
d5cf5324 1659
231dd356
AW
1660 type = scm_make_vtable (scm_from_locale_string (SCM_PRINT_STATE_LAYOUT),
1661 SCM_BOOL_F);
4a655e50 1662 scm_set_struct_vtable_name_x (type, scm_from_latin1_symbol ("print-state"));
bb35f315 1663 scm_print_state_vtable = type;
c4f37e80 1664
c19bc088
MD
1665 /* Don't want to bind a wrapper class in GOOPS, so pass 0 as arg1. */
1666 scm_tc16_port_with_ps = scm_make_smob_type (0, 0);
e841c3e0 1667 scm_set_smob_print (scm_tc16_port_with_ps, port_with_ps_print);
81ae25da 1668
a0599745 1669#include "libguile/print.x"
475fa9a5 1670
8500b186
AW
1671 scm_init_opts (scm_print_options, scm_print_opts);
1672 scm_print_opts[SCM_PRINT_HIGHLIGHT_PREFIX_I].val =
1673 SCM_UNPACK (scm_from_locale_string ("{"));
1674 scm_print_opts[SCM_PRINT_HIGHLIGHT_SUFFIX_I].val =
1675 SCM_UNPACK (scm_from_locale_string ("}"));
475fa9a5 1676 scm_print_opts[SCM_PRINT_KEYWORD_STYLE_I].val = SCM_UNPACK (sym_reader);
0f2d19dd 1677}
89e00824
ML
1678
1679/*
1680 Local Variables:
1681 c-file-style: "gnu"
1682 End:
1683*/