Unicode-capable srfi-14 charsets
[bpt/guile.git] / libguile / print.c
CommitLineData
e20d7001 1/* Copyright (C) 1995-1999,2000,2001, 2002, 2003, 2004, 2006, 2008, 2009 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
MD
32#include "libguile/smob.h"
33#include "libguile/eval.h"
34#include "libguile/macros.h"
35#include "libguile/procprop.h"
36#include "libguile/read.h"
37#include "libguile/weaks.h"
2fb924f6 38#include "libguile/programs.h"
a0599745
MD
39#include "libguile/alist.h"
40#include "libguile/struct.h"
41#include "libguile/objects.h"
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"
c96d76b8 47#include "libguile/lang.h"
327967ef 48#include "libguile/numbers.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",
66 "#t",
67 "#<undefined>",
68 "#<eof>",
69 "()",
70 "#<unspecified>",
71
72 /* Unbound slot marker for GOOPS. For internal use in GOOPS only. */
73 "#<unbound>",
74
75 /* Elisp nil value. This is its Scheme name; whenever it's printed in
76 * Elisp, it should appear as the symbol `nil'. */
77 "#nil"
78};
79
475fa9a5
MV
80SCM_SYMBOL (sym_reader, "reader");
81
92c2555f 82scm_t_option scm_print_opts[] = {
726d810a
DH
83 { SCM_OPTION_SCM, "closure-hook", SCM_UNPACK (SCM_BOOL_F),
84 "Hook for printing closures (should handle macros as well)." },
84f6a34a 85 { SCM_OPTION_BOOLEAN, "source", 0,
81ae25da
MV
86 "Print closures with source." },
87 { SCM_OPTION_SCM, "highlight-prefix", (unsigned long)SCM_BOOL_F,
88 "The string to print before highlighted values." },
89 { SCM_OPTION_SCM, "highlight-suffix", (unsigned long)SCM_BOOL_F,
475fa9a5
MV
90 "The string to print after highlighted values." },
91 { SCM_OPTION_SCM, "quote-keywordish-symbols", (unsigned long)SCM_BOOL_F,
92 "How to print symbols that have a colon as their first or last character. "
93 "The value '#f' does not quote the colons; '#t' quotes them; "
94 "'reader' quotes them when the reader option 'keywords' is not '#f'."
62560650
HWN
95 },
96 { 0 },
97
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);
404 return scm_i_print_symbol_name (symbol, port);
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
0f2d19dd 414void
1bbd0b84 415scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate)
d232520a
MV
416{
417 if (pstate->fancyp
418 && scm_is_true (scm_memq (exp, pstate->highlight_objects)))
419 {
81ae25da 420 scm_display (SCM_PRINT_HIGHLIGHT_PREFIX, port);
d232520a 421 iprin1 (exp, port, pstate);
81ae25da 422 scm_display (SCM_PRINT_HIGHLIGHT_SUFFIX, port);
d232520a
MV
423 }
424 else
425 iprin1 (exp, port, pstate);
426}
427
428static void
429iprin1 (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 430{
54778cd3 431 switch (SCM_ITAG3 (exp))
0f2d19dd 432 {
e34f941a
DH
433 case scm_tc3_closure:
434 case scm_tc3_tc7_1:
435 case scm_tc3_tc7_2:
436 /* These tc3 tags should never occur in an immediate value. They are
437 * only used in cell types of non-immediates, i. e. the value returned
438 * by SCM_CELL_TYPE (exp) can use these tags.
439 */
440 scm_ipruk ("immediate", exp, port);
441 break;
442 case scm_tc3_int_1:
443 case scm_tc3_int_2:
e11e83f3 444 scm_intprint (SCM_I_INUM (exp), 10, port);
0f2d19dd 445 break;
e34f941a 446 case scm_tc3_imm24:
7866a09b 447 if (SCM_CHARP (exp))
0f2d19dd 448 {
904a78f1 449 scm_t_wchar i = SCM_CHAR (exp);
77332b21 450 const char *name;
5ca6dc39 451
b7f3516f
TT
452 if (SCM_WRITINGP (pstate))
453 {
454 scm_puts ("#\\", port);
77332b21
MG
455 name = scm_i_charname (exp);
456 if (name != NULL)
457 scm_puts (name, port);
904a78f1
MG
458 else if (uc_is_general_category_withtable (i, UC_CATEGORY_MASK_L
459 | UC_CATEGORY_MASK_M
460 | UC_CATEGORY_MASK_N
461 | UC_CATEGORY_MASK_P
462 | UC_CATEGORY_MASK_S))
463 /* Print the character if is graphic character. */
464 {
889975e5
MG
465 scm_t_wchar *wbuf;
466 SCM wstr = scm_i_make_wide_string (1, &wbuf);
467 char *buf;
468 size_t len;
469 const char *enc;
470
471 enc = scm_i_get_port_encoding (port);
472 wbuf[0] = i;
473 if (enc == NULL && i <= 0xFF)
474 {
475 /* Character is graphic and Latin-1. Print it */
476 scm_lfwrite_str (wstr, port);
477 }
904a78f1 478 else
889975e5
MG
479 {
480 buf = u32_conv_to_encoding (enc,
481 iconveh_error,
482 (scm_t_uint32 *) wbuf,
483 1,
484 NULL,
485 NULL, &len);
486 if (buf != NULL)
487 {
488 /* Character is graphic. Print it. */
489 scm_lfwrite_str (wstr, port);
490 free (buf);
491 }
492 else
493 /* Character is graphic but unrepresentable in
494 this port's encoding. */
495 scm_intprint (i, 8, port);
496 }
904a78f1
MG
497 }
498 else
f7118e35
MG
499 /* Character is a non-graphical character. */
500 scm_intprint (i, 8, port);
b7f3516f
TT
501 }
502 else
889975e5 503 scm_i_charprint (i, port);
0f2d19dd 504 }
a51ea417 505 else if (SCM_IFLAGP (exp)
e17d318f
DH
506 && ((size_t) SCM_IFLAGNUM (exp) < (sizeof iflagnames / sizeof (char *))))
507 {
508 scm_puts (iflagnames [SCM_IFLAGNUM (exp)], port);
509 }
7e6e6b37 510 else if (SCM_ISYMP (exp))
e17d318f 511 {
7e6e6b37 512 scm_i_print_isym (exp, port);
e17d318f 513 }
0f2d19dd
JB
514 else if (SCM_ILOCP (exp))
515 {
7e6e6b37 516 scm_i_print_iloc (exp, port);
0f2d19dd
JB
517 }
518 else
e34f941a
DH
519 {
520 /* unknown immediate value */
521 scm_ipruk ("immediate", exp, port);
522 }
0f2d19dd 523 break;
e34f941a 524 case scm_tc3_cons:
0f2d19dd
JB
525 switch (SCM_TYP7 (exp))
526 {
904a077d
MV
527 case scm_tcs_struct:
528 {
529 ENTER_NESTED_DATA (pstate, exp, circref);
530 if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
531 {
532 SCM pwps, print = pstate->writingp ? g_write : g_display;
533 if (!print)
534 goto print_struct;
dfd03fb9 535 pwps = scm_i_port_with_print_state (port, pstate->handle);
7663c008 536 pstate->revealed = 1;
904a077d
MV
537 scm_call_generic_2 (print, exp, pwps);
538 }
539 else
540 {
541 print_struct:
542 scm_print_struct (exp, port, pstate);
543 }
544 EXIT_NESTED_DATA (pstate);
545 }
546 break;
0f2d19dd
JB
547 case scm_tcs_cons_imcar:
548 case scm_tcs_cons_nimcar:
c62fbfe1
MD
549 ENTER_NESTED_DATA (pstate, exp, circref);
550 scm_iprlist ("(", exp, ')', port, pstate);
551 EXIT_NESTED_DATA (pstate);
a51ea417
MD
552 break;
553 circref:
c62fbfe1 554 print_circref (port, pstate, exp);
0f2d19dd
JB
555 break;
556 case scm_tcs_closures:
7888309b
MV
557 if (scm_is_false (scm_procedure_p (SCM_PRINT_CLOSURE))
558 || scm_is_false (scm_printer_apply (SCM_PRINT_CLOSURE,
77c25af7 559 exp, port, pstate)))
726d810a
DH
560 {
561 SCM formals = SCM_CLOSURE_FORMALS (exp);
562 scm_puts ("#<procedure", port);
563 scm_putc (' ', port);
564 scm_iprin1 (scm_procedure_name (exp), port, pstate);
565 scm_putc (' ', port);
566 if (SCM_PRINT_SOURCE_P)
567 {
568 SCM env = SCM_ENV (exp);
569 SCM xenv = SCM_EXTEND_ENV (formals, SCM_EOL, env);
9fcf3cbb 570 SCM src = scm_i_unmemocopy_body (SCM_CODE (exp), xenv);
726d810a
DH
571 ENTER_NESTED_DATA (pstate, exp, circref);
572 scm_iprin1 (src, port, pstate);
573 EXIT_NESTED_DATA (pstate);
574 }
575 else
576 scm_iprin1 (formals, port, pstate);
b7f3516f 577 scm_putc ('>', port);
726d810a 578 }
0f2d19dd 579 break;
534c55a9
DH
580 case scm_tc7_number:
581 switch SCM_TYP16 (exp) {
582 case scm_tc16_big:
583 scm_bigprint (exp, port, pstate);
584 break;
585 case scm_tc16_real:
586 scm_print_real (exp, port, pstate);
587 break;
588 case scm_tc16_complex:
589 scm_print_complex (exp, port, pstate);
590 break;
f92e85f7
MV
591 case scm_tc16_fraction:
592 scm_i_print_fraction (exp, port, pstate);
593 break;
534c55a9
DH
594 }
595 break;
9c44cd45
MG
596 case scm_tc7_string:
597 if (SCM_WRITINGP (pstate))
598 {
599 size_t i, j, len;
600 static char const hex[] = "0123456789abcdef";
601 char buf[8];
5ca6dc39 602
9c44cd45
MG
603
604 scm_putc ('"', port);
605 len = scm_i_string_length (exp);
606 for (i = 0; i < len; ++i)
607 {
608 scm_t_wchar ch = scm_i_string_ref (exp, i);
609 int printed = 0;
610
611 if (ch == ' ' || ch == '\n')
612 {
613 scm_putc (ch, port);
614 printed = 1;
615 }
616 else if (ch == '"' || ch == '\\')
617 {
618 scm_putc ('\\', port);
32be5735 619 scm_i_charprint (ch, port);
9c44cd45
MG
620 printed = 1;
621 }
622 else
623 if (uc_is_general_category_withtable
624 (ch,
625 UC_CATEGORY_MASK_L | UC_CATEGORY_MASK_M |
626 UC_CATEGORY_MASK_N | UC_CATEGORY_MASK_P |
627 UC_CATEGORY_MASK_S))
628 {
629 /* Print the character since it is a graphic
630 character. */
631 scm_t_wchar *wbuf;
632 SCM wstr = scm_i_make_wide_string (1, &wbuf);
633 char *buf;
634 size_t len;
889975e5
MG
635
636 if (scm_i_get_port_encoding (port))
9c44cd45 637 {
889975e5
MG
638 wstr = scm_i_make_wide_string (1, &wbuf);
639 wbuf[0] = ch;
640 buf = u32_conv_to_encoding (scm_i_get_port_encoding (port),
641 iconveh_error,
642 (scm_t_uint32 *) wbuf,
643 1 ,
644 NULL,
645 NULL, &len);
646 if (buf != NULL)
647 {
648 /* Character is graphic and representable in
649 this encoding. Print it. */
650 scm_lfwrite_str (wstr, port);
651 free (buf);
652 printed = 1;
653 }
9c44cd45 654 }
889975e5
MG
655 else
656 if (ch <= 0xFF)
657 {
658 scm_putc (ch, port);
659 printed = 1;
660 }
9c44cd45
MG
661 }
662
663 if (!printed)
664 {
665 /* Character is graphic but unrepresentable in
666 this port's encoding or is not graphic. */
667 if (ch <= 0xFF)
668 {
669 buf[0] = '\\';
670 buf[1] = 'x';
671 buf[2] = hex[ch / 16];
672 buf[3] = hex[ch % 16];
673 scm_lfwrite (buf, 4, port);
674 }
675 else if (ch <= 0xFFFF)
676 {
677 buf[0] = '\\';
678 buf[1] = 'u';
679 buf[2] = hex[(ch & 0xF000) >> 12];
680 buf[3] = hex[(ch & 0xF00) >> 8];
681 buf[4] = hex[(ch & 0xF0) >> 4];
682 buf[5] = hex[(ch & 0xF)];
683 scm_lfwrite (buf, 6, port);
684 j = i + 1;
685 }
686 else if (ch > 0xFFFF)
687 {
688 buf[0] = '\\';
689 buf[1] = 'U';
690 buf[2] = hex[(ch & 0xF00000) >> 20];
691 buf[3] = hex[(ch & 0xF0000) >> 16];
692 buf[4] = hex[(ch & 0xF000) >> 12];
693 buf[5] = hex[(ch & 0xF00) >> 8];
694 buf[6] = hex[(ch & 0xF0) >> 4];
695 buf[7] = hex[(ch & 0xF)];
696 scm_lfwrite (buf, 8, port);
697 j = i + 1;
698 }
699 }
700 }
701 scm_putc ('"', port);
702 scm_remember_upto_here_1 (exp);
703 }
704 else
6234ff20 705 scm_lfwrite_str (exp, port);
9c44cd45
MG
706 scm_remember_upto_here_1 (exp);
707 break;
28b06554 708 case scm_tc7_symbol:
cc95e00a 709 if (scm_i_symbol_is_interned (exp))
9ff28a13 710 {
e23106d5 711 scm_i_print_symbol_name (exp, port);
9ff28a13
MV
712 scm_remember_upto_here_1 (exp);
713 }
714 else
715 {
716 scm_puts ("#<uninterned-symbol ", port);
e23106d5 717 scm_i_print_symbol_name (exp, port);
9ff28a13 718 scm_putc (' ', port);
0345e278 719 scm_uintprint (SCM_UNPACK (exp), 16, port);
9ff28a13
MV
720 scm_putc ('>', port);
721 }
6662998f 722 break;
e5aca4b5
MV
723 case scm_tc7_variable:
724 scm_i_variable_print (exp, port, pstate);
725 break;
2fb924f6
AW
726 case scm_tc7_program:
727 scm_i_program_print (exp, port, pstate);
728 break;
0f2d19dd 729 case scm_tc7_wvect:
c62fbfe1 730 ENTER_NESTED_DATA (pstate, exp, circref);
0f2d19dd 731 if (SCM_IS_WHVEC (exp))
b7f3516f 732 scm_puts ("#wh(", port);
0f2d19dd 733 else
b7f3516f 734 scm_puts ("#w(", port);
0f2d19dd
JB
735 goto common_vector_printer;
736
737 case scm_tc7_vector:
c62fbfe1 738 ENTER_NESTED_DATA (pstate, exp, circref);
b7f3516f 739 scm_puts ("#(", port);
0f2d19dd 740 common_vector_printer:
9fbaf27c 741 {
c014a02e 742 register long i;
4057a3e0 743 long last = SCM_SIMPLE_VECTOR_LENGTH (exp) - 1;
9fbaf27c 744 int cutp = 0;
4057a3e0
MV
745 if (pstate->fancyp
746 && SCM_SIMPLE_VECTOR_LENGTH (exp) > pstate->length)
9fbaf27c
MD
747 {
748 last = pstate->length - 1;
749 cutp = 1;
750 }
751 for (i = 0; i < last; ++i)
752 {
753 /* CHECK_INTS; */
4057a3e0 754 scm_iprin1 (SCM_SIMPLE_VECTOR_REF (exp, i), port, pstate);
b7f3516f 755 scm_putc (' ', port);
9fbaf27c
MD
756 }
757 if (i == last)
758 {
759 /* CHECK_INTS; */
4057a3e0 760 scm_iprin1 (SCM_SIMPLE_VECTOR_REF (exp, i), port, pstate);
9fbaf27c
MD
761 }
762 if (cutp)
b7f3516f
TT
763 scm_puts (" ...", port);
764 scm_putc (')', port);
9fbaf27c 765 }
c62fbfe1 766 EXIT_NESTED_DATA (pstate);
0f2d19dd 767 break;
0f2d19dd 768 case scm_tcs_subrs:
e23106d5
MG
769 {
770 SCM name = scm_symbol_to_string (SCM_SUBR_NAME (exp));
771 scm_puts (SCM_SUBR_GENERIC (exp)
772 ? "#<primitive-generic "
773 : "#<primitive-procedure ",
774 port);
775 scm_lfwrite_str (name, port);
776 scm_putc ('>', port);
777 break;
778 }
c180dfd3
MD
779 case scm_tc7_pws:
780 scm_puts ("#<procedure-with-setter", port);
781 {
782 SCM name = scm_procedure_name (exp);
7888309b 783 if (scm_is_true (name))
c180dfd3
MD
784 {
785 scm_putc (' ', port);
b24b5e13 786 scm_display (name, port);
c180dfd3
MD
787 }
788 }
789 scm_putc ('>', port);
790 break;
0f2d19dd 791 case scm_tc7_port:
5ca6dc39
JB
792 {
793 register long i = SCM_PTOBNUM (exp);
794 if (i < scm_numptob
795 && scm_ptobs[i].print
796 && (scm_ptobs[i].print) (exp, port, pstate))
a51ea417 797 break;
5ca6dc39
JB
798 goto punk;
799 }
800 case scm_tc7_smob:
7a7f7c53
DH
801 ENTER_NESTED_DATA (pstate, exp, circref);
802 SCM_SMOB_DESCRIPTOR (exp).print (exp, port, pstate);
803 EXIT_NESTED_DATA (pstate);
804 break;
0f2d19dd 805 default:
a51ea417
MD
806 punk:
807 scm_ipruk ("type", exp, port);
0f2d19dd
JB
808 }
809 }
810}
811
c62fbfe1
MD
812/* Print states are necessary for circular reference safe printing.
813 * They are also expensive to allocate. Therefore print states are
814 * kept in a pool so that they can be reused.
815 */
1cc91f1b 816
bb35f315
MV
817/* The PORT argument can also be a print-state/port pair, which will
818 * then be used instead of allocating a new print state. This is
819 * useful for continuing a chain of print calls from Scheme. */
820
a51ea417 821void
1bbd0b84 822scm_prin1 (SCM exp, SCM port, int writingp)
a51ea417 823{
c4f37e80
MV
824 SCM handle = SCM_BOOL_F; /* Will GC protect the handle whilst unlinked */
825 SCM pstate_scm;
c62fbfe1 826 scm_print_state *pstate;
15635be5 827 int old_writingp;
c62fbfe1 828
bb35f315
MV
829 /* If PORT is a print-state/port pair, use that. Else create a new
830 print-state. */
c4f37e80 831
0c95b57d 832 if (SCM_PORT_WITH_PS_P (port))
bb35f315 833 {
52235e71
MD
834 pstate_scm = SCM_PORT_WITH_PS_PS (port);
835 port = SCM_PORT_WITH_PS_PORT (port);
bb35f315
MV
836 }
837 else
c62fbfe1 838 {
c4f37e80 839 /* First try to allocate a print state from the pool */
9de87eea 840 scm_i_pthread_mutex_lock (&print_state_mutex);
d2e53ed6 841 if (!scm_is_null (print_state_pool))
c4f37e80 842 {
d5cf5324
DH
843 handle = print_state_pool;
844 print_state_pool = SCM_CDR (print_state_pool);
c4f37e80 845 }
9de87eea 846 scm_i_pthread_mutex_unlock (&print_state_mutex);
7888309b 847 if (scm_is_false (handle))
d5cf5324 848 handle = scm_list_1 (make_print_state ());
c4f37e80 849 pstate_scm = SCM_CAR (handle);
c62fbfe1 850 }
c62fbfe1 851
c4f37e80 852 pstate = SCM_PRINT_STATE (pstate_scm);
15635be5 853 old_writingp = pstate->writingp;
c62fbfe1
MD
854 pstate->writingp = writingp;
855 scm_iprin1 (exp, port, pstate);
15635be5 856 pstate->writingp = old_writingp;
c62fbfe1 857
bb35f315
MV
858 /* Return print state to pool if it has been created above and
859 hasn't escaped to Scheme. */
860
7888309b 861 if (scm_is_true (handle) && !pstate->revealed)
c4f37e80 862 {
9de87eea 863 scm_i_pthread_mutex_lock (&print_state_mutex);
d5cf5324
DH
864 SCM_SETCDR (handle, print_state_pool);
865 print_state_pool = handle;
9de87eea 866 scm_i_pthread_mutex_unlock (&print_state_mutex);
c4f37e80 867 }
a51ea417
MD
868}
869
9c44cd45
MG
870/* Print a character.
871 */
872void
889975e5 873scm_i_charprint (scm_t_wchar ch, SCM port)
9c44cd45
MG
874{
875 scm_t_wchar *wbuf;
876 SCM wstr = scm_i_make_wide_string (1, &wbuf);
877
878 wbuf[0] = ch;
879 scm_lfwrite_str (wstr, port);
880}
0f2d19dd
JB
881
882/* Print an integer.
883 */
1cc91f1b 884
0f2d19dd 885void
a406c9e9 886scm_intprint (scm_t_intmax n, int radix, SCM port)
0f2d19dd
JB
887{
888 char num_buf[SCM_INTBUFLEN];
b7f3516f 889 scm_lfwrite (num_buf, scm_iint2str (n, radix, num_buf), port);
0f2d19dd
JB
890}
891
a406c9e9
MV
892void
893scm_uintprint (scm_t_uintmax n, int radix, SCM port)
894{
895 char num_buf[SCM_INTBUFLEN];
896 scm_lfwrite (num_buf, scm_iuint2str (n, radix, num_buf), port);
897}
898
0f2d19dd
JB
899/* Print an object of unrecognized type.
900 */
1cc91f1b 901
0f2d19dd 902void
1bbd0b84 903scm_ipruk (char *hdr, SCM ptr, SCM port)
0f2d19dd 904{
b7f3516f
TT
905 scm_puts ("#<unknown-", port);
906 scm_puts (hdr, port);
c8a1bdc4 907 if (scm_in_heap_p (ptr))
0f2d19dd 908 {
b7f3516f 909 scm_puts (" (0x", port);
0345e278 910 scm_uintprint (SCM_CELL_WORD_0 (ptr), 16, port);
b7f3516f 911 scm_puts (" . 0x", port);
0345e278 912 scm_uintprint (SCM_CELL_WORD_1 (ptr), 16, port);
b7f3516f 913 scm_puts (") @", port);
0f2d19dd 914 }
b7f3516f 915 scm_puts (" 0x", port);
0345e278 916 scm_uintprint (SCM_UNPACK (ptr), 16, port);
b7f3516f 917 scm_putc ('>', port);
0f2d19dd
JB
918}
919
1cc91f1b 920
904a077d 921/* Print a list.
22a52da1 922 */
0f2d19dd 923void
34d19ef6 924scm_iprlist (char *hdr, SCM exp, int tlr, SCM port, scm_print_state *pstate)
0f2d19dd 925{
c62fbfe1 926 register SCM hare, tortoise;
c014a02e 927 long floor = pstate->top - 2;
b7f3516f 928 scm_puts (hdr, port);
0f2d19dd 929 /* CHECK_INTS; */
c62fbfe1
MD
930 if (pstate->fancyp)
931 goto fancy_printing;
932
933 /* Run a hare and tortoise so that total time complexity will be
934 O(depth * N) instead of O(N^2). */
935 hare = SCM_CDR (exp);
936 tortoise = exp;
d2e53ed6 937 while (scm_is_pair (hare))
c62fbfe1 938 {
bc36d050 939 if (scm_is_eq (hare, tortoise))
c62fbfe1
MD
940 goto fancy_printing;
941 hare = SCM_CDR (hare);
d2e53ed6 942 if (!scm_is_pair (hare))
c62fbfe1
MD
943 break;
944 hare = SCM_CDR (hare);
945 tortoise = SCM_CDR (tortoise);
946 }
947
948 /* No cdr cycles intrinsic to this list */
949 scm_iprin1 (SCM_CAR (exp), port, pstate);
d2e53ed6 950 for (exp = SCM_CDR (exp); scm_is_pair (exp); exp = SCM_CDR (exp))
0f2d19dd 951 {
c014a02e 952 register long i;
5ca6dc39 953
c62fbfe1 954 for (i = floor; i >= 0; --i)
509759dd 955 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
c62fbfe1
MD
956 goto circref;
957 PUSH_REF (pstate, exp);
b7f3516f 958 scm_putc (' ', port);
0f2d19dd 959 /* CHECK_INTS; */
c62fbfe1 960 scm_iprin1 (SCM_CAR (exp), port, pstate);
0f2d19dd 961 }
c96d76b8 962 if (!SCM_NULL_OR_NIL_P (exp))
0f2d19dd 963 {
b7f3516f 964 scm_puts (" . ", port);
c62fbfe1 965 scm_iprin1 (exp, port, pstate);
0f2d19dd 966 }
c62fbfe1 967
a51ea417 968end:
b7f3516f 969 scm_putc (tlr, port);
c62fbfe1 970 pstate->top = floor + 2;
a51ea417 971 return;
c62fbfe1
MD
972
973fancy_printing:
974 {
c014a02e 975 long n = pstate->length;
c62fbfe1
MD
976
977 scm_iprin1 (SCM_CAR (exp), port, pstate);
978 exp = SCM_CDR (exp); --n;
d2e53ed6 979 for (; scm_is_pair (exp); exp = SCM_CDR (exp))
c62fbfe1 980 {
c014a02e 981 register unsigned long i;
5ca6dc39 982
c62fbfe1 983 for (i = 0; i < pstate->top; ++i)
509759dd 984 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
c62fbfe1
MD
985 goto fancy_circref;
986 if (pstate->fancyp)
987 {
988 if (n == 0)
989 {
b7f3516f 990 scm_puts (" ...", port);
c62fbfe1
MD
991 goto skip_tail;
992 }
993 else
994 --n;
995 }
996 PUSH_REF(pstate, exp);
997 ++pstate->list_offset;
b7f3516f 998 scm_putc (' ', port);
c62fbfe1
MD
999 /* CHECK_INTS; */
1000 scm_iprin1 (SCM_CAR (exp), port, pstate);
1001 }
1002 }
c96d76b8 1003 if (!SCM_NULL_OR_NIL_P (exp))
c62fbfe1 1004 {
b7f3516f 1005 scm_puts (" . ", port);
c62fbfe1
MD
1006 scm_iprin1 (exp, port, pstate);
1007 }
1008skip_tail:
1009 pstate->list_offset -= pstate->top - floor - 2;
a51ea417 1010 goto end;
a51ea417 1011
c62fbfe1
MD
1012fancy_circref:
1013 pstate->list_offset -= pstate->top - floor - 2;
1014
1015circref:
b7f3516f 1016 scm_puts (" . ", port);
c62fbfe1
MD
1017 print_circref (port, pstate, exp);
1018 goto end;
0f2d19dd
JB
1019}
1020
1021\f
1022
bb35f315
MV
1023int
1024scm_valid_oport_value_p (SCM val)
1025{
368cf54d
GB
1026 return (SCM_OPOUTPORTP (val)
1027 || (SCM_PORT_WITH_PS_P (val)
1028 && SCM_OPOUTPORTP (SCM_PORT_WITH_PS_PORT (val))));
bb35f315
MV
1029}
1030
8b840115 1031/* SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write); */
1cc91f1b 1032
0f2d19dd 1033SCM
1bbd0b84 1034scm_write (SCM obj, SCM port)
0f2d19dd
JB
1035{
1036 if (SCM_UNBNDP (port))
9de87eea 1037 port = scm_current_output_port ();
3eb7e6ee
JB
1038
1039 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_write);
bb35f315 1040
a51ea417 1041 scm_prin1 (obj, port, 1);
23d72566 1042#if 0
0f2d19dd
JB
1043#ifdef HAVE_PIPE
1044# ifdef EPIPE
1045 if (EPIPE == errno)
1046 scm_close_port (port);
1047# endif
23d72566 1048#endif
0f2d19dd
JB
1049#endif
1050 return SCM_UNSPECIFIED;
1051}
1052
1053
8b840115 1054/* SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display); */
1cc91f1b 1055
0f2d19dd 1056SCM
1bbd0b84 1057scm_display (SCM obj, SCM port)
0f2d19dd
JB
1058{
1059 if (SCM_UNBNDP (port))
9de87eea 1060 port = scm_current_output_port ();
3eb7e6ee
JB
1061
1062 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_display);
bb35f315 1063
a51ea417 1064 scm_prin1 (obj, port, 0);
23d72566 1065#if 0
0f2d19dd
JB
1066#ifdef HAVE_PIPE
1067# ifdef EPIPE
1068 if (EPIPE == errno)
1069 scm_close_port (port);
1070# endif
23d72566 1071#endif
0f2d19dd
JB
1072#endif
1073 return SCM_UNSPECIFIED;
1074}
1075
70d63753
GB
1076
1077SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
1078 (SCM destination, SCM message, SCM args),
eca65e90
MG
1079 "Write @var{message} to @var{destination}, defaulting to\n"
1080 "the current output port.\n"
1081 "@var{message} can contain @code{~A} (was @code{%s}) and\n"
1082 "@code{~S} (was @code{%S}) escapes. When printed,\n"
1083 "the escapes are replaced with corresponding members of\n"
1084 "@var{ARGS}:\n"
1085 "@code{~A} formats using @code{display} and @code{~S} formats\n"
1086 "using @code{write}.\n"
1087 "If @var{destination} is @code{#t}, then use the current output\n"
1088 "port, if @var{destination} is @code{#f}, then return a string\n"
1089 "containing the formatted text. Does not add a trailing newline.")
70d63753
GB
1090#define FUNC_NAME s_scm_simple_format
1091{
dfd03fb9 1092 SCM port, answer = SCM_UNSPECIFIED;
70d63753
GB
1093 int fReturnString = 0;
1094 int writingp;
889975e5 1095 size_t start, p, end;
70d63753 1096
bc36d050 1097 if (scm_is_eq (destination, SCM_BOOL_T))
daba1a71 1098 {
9de87eea 1099 destination = port = scm_current_output_port ();
daba1a71 1100 }
7888309b 1101 else if (scm_is_false (destination))
daba1a71
MD
1102 {
1103 fReturnString = 1;
dfd03fb9
MD
1104 port = scm_mkstrport (SCM_INUM0,
1105 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
1106 SCM_OPN | SCM_WRTNG,
1107 FUNC_NAME);
1108 destination = port;
daba1a71
MD
1109 }
1110 else
1111 {
1112 SCM_VALIDATE_OPORT_VALUE (1, destination);
dfd03fb9 1113 port = SCM_COERCE_OUTPORT (destination);
daba1a71
MD
1114 }
1115 SCM_VALIDATE_STRING (2, message);
af45e3b0 1116 SCM_VALIDATE_REST_ARGUMENT (args);
70d63753 1117
889975e5
MG
1118 p = 0;
1119 start = 0;
1120 end = scm_i_string_length (message);
b24b5e13 1121 for (p = start; p != end; ++p)
889975e5 1122 if (scm_i_string_ref (message, p) == '~')
70d63753 1123 {
b24b5e13 1124 if (++p == end)
6662998f
MV
1125 break;
1126
889975e5 1127 switch (scm_i_string_ref (message, p))
6662998f
MV
1128 {
1129 case 'A': case 'a':
1130 writingp = 0;
1131 break;
1132 case 'S': case 's':
1133 writingp = 1;
1134 break;
1135 case '~':
889975e5 1136 scm_lfwrite_substr (message, start, p, port);
6662998f
MV
1137 start = p + 1;
1138 continue;
1139 case '%':
889975e5 1140 scm_lfwrite_substr (message, start, p - 1, port);
dfd03fb9 1141 scm_newline (port);
6662998f
MV
1142 start = p + 1;
1143 continue;
1144 default:
1afff620 1145 SCM_MISC_ERROR ("FORMAT: Unsupported format option ~~~A - use (ice-9 format) instead",
889975e5 1146 scm_list_1 (SCM_MAKE_CHAR (scm_i_string_ref (message, p))));
6662998f
MV
1147
1148 }
70d63753 1149
6662998f 1150
d2e53ed6 1151 if (!scm_is_pair (args))
1afff620 1152 SCM_MISC_ERROR ("FORMAT: Missing argument for ~~~A",
889975e5 1153 scm_list_1 (SCM_MAKE_CHAR (scm_i_string_ref (message, p))));
6662998f 1154
889975e5 1155 scm_lfwrite_substr (message, start, p - 1, port);
dfd03fb9 1156 /* we pass destination here */
70d63753
GB
1157 scm_prin1 (SCM_CAR (args), destination, writingp);
1158 args = SCM_CDR (args);
1159 start = p + 1;
1160 }
6662998f 1161
889975e5 1162 scm_lfwrite_substr (message, start, p, port);
bc36d050 1163 if (!scm_is_eq (args, SCM_EOL))
1afff620
KN
1164 SCM_MISC_ERROR ("FORMAT: ~A superfluous arguments",
1165 scm_list_1 (scm_length (args)));
70d63753
GB
1166
1167 if (fReturnString)
1168 answer = scm_strport_to_string (destination);
1169
daba1a71 1170 return scm_return_first (answer, message);
70d63753
GB
1171}
1172#undef FUNC_NAME
1173
1174
3b3b36dd 1175SCM_DEFINE (scm_newline, "newline", 0, 1, 0,
b450f070 1176 (SCM port),
8f85c0c6
NJ
1177 "Send a newline to @var{port}.\n"
1178 "If @var{port} is omitted, send to the current output port.")
1bbd0b84 1179#define FUNC_NAME s_scm_newline
0f2d19dd
JB
1180{
1181 if (SCM_UNBNDP (port))
9de87eea 1182 port = scm_current_output_port ();
3eb7e6ee 1183
34d19ef6 1184 SCM_VALIDATE_OPORT_VALUE (1, port);
bb35f315 1185
0ef4ae82 1186 scm_putc ('\n', SCM_COERCE_OUTPORT (port));
0f2d19dd
JB
1187 return SCM_UNSPECIFIED;
1188}
1bbd0b84 1189#undef FUNC_NAME
0f2d19dd 1190
3b3b36dd 1191SCM_DEFINE (scm_write_char, "write-char", 1, 1, 0,
b450f070 1192 (SCM chr, SCM port),
eca65e90 1193 "Send character @var{chr} to @var{port}.")
1bbd0b84 1194#define FUNC_NAME s_scm_write_char
0f2d19dd
JB
1195{
1196 if (SCM_UNBNDP (port))
9de87eea 1197 port = scm_current_output_port ();
3eb7e6ee 1198
34d19ef6
HWN
1199 SCM_VALIDATE_CHAR (1, chr);
1200 SCM_VALIDATE_OPORT_VALUE (2, port);
bb35f315 1201
7866a09b 1202 scm_putc ((int) SCM_CHAR (chr), SCM_COERCE_OUTPORT (port));
23d72566 1203#if 0
0f2d19dd
JB
1204#ifdef HAVE_PIPE
1205# ifdef EPIPE
1206 if (EPIPE == errno)
1207 scm_close_port (port);
1208# endif
23d72566 1209#endif
0f2d19dd
JB
1210#endif
1211 return SCM_UNSPECIFIED;
1212}
1bbd0b84 1213#undef FUNC_NAME
0f2d19dd 1214
0f2d19dd
JB
1215\f
1216
bb35f315 1217/* Call back to Scheme code to do the printing of special objects
c19bc088
MD
1218 * (like structs). SCM_PRINTER_APPLY applies PROC to EXP and a smob
1219 * containing PORT and PSTATE. This object can be used as the port for
1220 * display/write etc to continue the current print chain. The REVEALED
1221 * field of PSTATE is set to true to indicate that the print state has
1222 * escaped to Scheme and thus has to be freed by the GC.
1223 */
1224
92c2555f 1225scm_t_bits scm_tc16_port_with_ps;
c19bc088
MD
1226
1227/* Print exactly as the port itself would */
1228
1229static int
e841c3e0 1230port_with_ps_print (SCM obj, SCM port, scm_print_state *pstate)
c19bc088
MD
1231{
1232 obj = SCM_PORT_WITH_PS_PORT (obj);
1233 return scm_ptobs[SCM_PTOBNUM (obj)].print (obj, port, pstate);
1234}
c4f37e80
MV
1235
1236SCM
1bbd0b84 1237scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate)
c4f37e80 1238{
bb35f315 1239 pstate->revealed = 1;
dfd03fb9
MD
1240 return scm_call_2 (proc, exp,
1241 scm_i_port_with_print_state (port, pstate->handle));
c19bc088
MD
1242}
1243
dfd03fb9 1244SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 1, 1, 0,
1bbd0b84 1245 (SCM port, SCM pstate),
71331188 1246 "Create a new port which behaves like @var{port}, but with an\n"
dfd03fb9
MD
1247 "included print state @var{pstate}. @var{pstate} is optional.\n"
1248 "If @var{pstate} isn't supplied and @var{port} already has\n"
1249 "a print state, the old print state is reused.")
1bbd0b84 1250#define FUNC_NAME s_scm_port_with_print_state
c19bc088 1251{
34d19ef6 1252 SCM_VALIDATE_OPORT_VALUE (1, port);
dfd03fb9
MD
1253 if (!SCM_UNBNDP (pstate))
1254 SCM_VALIDATE_PRINTSTATE (2, pstate);
1255 return scm_i_port_with_print_state (port, pstate);
c19bc088 1256}
1bbd0b84 1257#undef FUNC_NAME
c19bc088 1258
a1ec6916 1259SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0,
1bbd0b84 1260 (SCM port),
71331188
MG
1261 "Return the print state of the port @var{port}. If @var{port}\n"
1262 "has no associated print state, @code{#f} is returned.")
1bbd0b84 1263#define FUNC_NAME s_scm_get_print_state
c19bc088 1264{
368cf54d
GB
1265 if (SCM_PORT_WITH_PS_P (port))
1266 return SCM_PORT_WITH_PS_PS (port);
f5f2dcff 1267 if (SCM_OUTPUT_PORT_P (port))
368cf54d 1268 return SCM_BOOL_F;
276dd677 1269 SCM_WRONG_TYPE_ARG (1, port);
c4f37e80 1270}
1bbd0b84 1271#undef FUNC_NAME
bb35f315 1272
c4f37e80 1273\f
1cc91f1b 1274
0f2d19dd
JB
1275void
1276scm_init_print ()
0f2d19dd 1277{
c19bc088 1278 SCM vtable, layout, type;
d5cf5324 1279
62560650 1280 scm_init_opts (scm_print_options, scm_print_opts);
d5cf5324 1281
81ae25da
MV
1282 scm_print_options (scm_list_4 (scm_from_locale_symbol ("highlight-prefix"),
1283 scm_from_locale_string ("{"),
1284 scm_from_locale_symbol ("highlight-suffix"),
1285 scm_from_locale_string ("}")));
1286
d5cf5324
DH
1287 scm_gc_register_root (&print_state_pool);
1288 scm_gc_register_root (&scm_print_state_vtable);
3ce4544c 1289 vtable = scm_make_vtable_vtable (scm_nullstr, SCM_INUM0, SCM_EOL);
cc95e00a
MV
1290 layout =
1291 scm_make_struct_layout (scm_from_locale_string (SCM_PRINT_STATE_LAYOUT));
1afff620 1292 type = scm_make_struct (vtable, SCM_INUM0, scm_list_1 (layout));
cc95e00a 1293 scm_set_struct_vtable_name_x (type, scm_from_locale_symbol ("print-state"));
bb35f315 1294 scm_print_state_vtable = type;
c4f37e80 1295
c19bc088
MD
1296 /* Don't want to bind a wrapper class in GOOPS, so pass 0 as arg1. */
1297 scm_tc16_port_with_ps = scm_make_smob_type (0, 0);
1298 scm_set_smob_mark (scm_tc16_port_with_ps, scm_markcdr);
e841c3e0 1299 scm_set_smob_print (scm_tc16_port_with_ps, port_with_ps_print);
81ae25da 1300
a0599745 1301#include "libguile/print.x"
475fa9a5
MV
1302
1303 scm_print_opts[SCM_PRINT_KEYWORD_STYLE_I].val = SCM_UNPACK (sym_reader);
0f2d19dd 1304}
89e00824
ML
1305
1306/*
1307 Local Variables:
1308 c-file-style: "gnu"
1309 End:
1310*/