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