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