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