Don't use GNU extensions for SCM_MAKE_CHAR macro
[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>
904a78f1 26#include <unictype.h>
e6e2e95a 27
a0599745
MD
28#include "libguile/_scm.h"
29#include "libguile/chars.h"
a002f1a2 30#include "libguile/continuations.h"
a0599745
MD
31#include "libguile/smob.h"
32#include "libguile/eval.h"
33#include "libguile/macros.h"
34#include "libguile/procprop.h"
35#include "libguile/read.h"
36#include "libguile/weaks.h"
37#include "libguile/unif.h"
38#include "libguile/alist.h"
39#include "libguile/struct.h"
40#include "libguile/objects.h"
41#include "libguile/ports.h"
42#include "libguile/root.h"
43#include "libguile/strings.h"
44#include "libguile/strports.h"
45#include "libguile/vectors.h"
c96d76b8 46#include "libguile/lang.h"
327967ef 47#include "libguile/numbers.h"
a0599745
MD
48
49#include "libguile/validate.h"
50#include "libguile/print.h"
22fc179a
HWN
51
52#include "libguile/private-options.h"
53
0f2d19dd
JB
54\f
55
56/* {Names of immediate symbols}
57 *
58 * This table must agree with the declarations in scm.h: {Immediate Symbols}.
59 */
60
e17d318f
DH
61/* This table must agree with the list of flags in tags.h. */
62static const char *iflagnames[] =
63{
64 "#f",
65 "#t",
66 "#<undefined>",
67 "#<eof>",
68 "()",
69 "#<unspecified>",
70
71 /* Unbound slot marker for GOOPS. For internal use in GOOPS only. */
72 "#<unbound>",
73
74 /* Elisp nil value. This is its Scheme name; whenever it's printed in
75 * Elisp, it should appear as the symbol `nil'. */
76 "#nil"
77};
78
475fa9a5
MV
79SCM_SYMBOL (sym_reader, "reader");
80
92c2555f 81scm_t_option scm_print_opts[] = {
726d810a
DH
82 { SCM_OPTION_SCM, "closure-hook", SCM_UNPACK (SCM_BOOL_F),
83 "Hook for printing closures (should handle macros as well)." },
84f6a34a 84 { SCM_OPTION_BOOLEAN, "source", 0,
81ae25da
MV
85 "Print closures with source." },
86 { SCM_OPTION_SCM, "highlight-prefix", (unsigned long)SCM_BOOL_F,
87 "The string to print before highlighted values." },
88 { SCM_OPTION_SCM, "highlight-suffix", (unsigned long)SCM_BOOL_F,
475fa9a5
MV
89 "The string to print after highlighted values." },
90 { SCM_OPTION_SCM, "quote-keywordish-symbols", (unsigned long)SCM_BOOL_F,
91 "How to print symbols that have a colon as their first or last character. "
92 "The value '#f' does not quote the colons; '#t' quotes them; "
93 "'reader' quotes them when the reader option 'keywords' is not '#f'."
62560650
HWN
94 },
95 { 0 },
96
e6e4c9af
MD
97};
98
a1ec6916 99SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0,
1bbd0b84 100 (SCM setting),
71331188 101 "Option interface for the print options. Instead of using\n"
1dd05fd8
MG
102 "this procedure directly, use the procedures\n"
103 "@code{print-enable}, @code{print-disable}, @code{print-set!}\n"
104 "and @code{print-options}.")
1bbd0b84 105#define FUNC_NAME s_scm_print_options
e6e4c9af 106{
a51ea417 107 SCM ans = scm_options (setting,
b7ff98dd 108 scm_print_opts,
1bbd0b84 109 FUNC_NAME);
e6e4c9af
MD
110 return ans;
111}
1bbd0b84 112#undef FUNC_NAME
e6e4c9af 113
0f2d19dd
JB
114\f
115/* {Printing of Scheme Objects}
116 */
117
a51ea417 118/* Detection of circular references.
c62fbfe1
MD
119 *
120 * Due to other constraints in the implementation, this code has bad
5d46ebe3
MD
121 * time complexity (O (depth * N)), The printer code can be
122 * rewritten to be O(N).
a51ea417 123 */
dbb5de29
NJ
124#define PUSH_REF(pstate, obj) \
125do \
126{ \
127 PSTATE_STACK_SET (pstate, pstate->top, obj); \
128 pstate->top++; \
129 if (pstate->top == pstate->ceiling) \
130 grow_ref_stack (pstate); \
1bbd0b84 131} while(0)
a51ea417 132
dbb5de29
NJ
133#define ENTER_NESTED_DATA(pstate, obj, label) \
134do \
135{ \
136 register unsigned long i; \
137 for (i = 0; i < pstate->top; ++i) \
138 if (scm_is_eq (PSTATE_STACK_REF (pstate, i), (obj))) \
139 goto label; \
140 if (pstate->fancyp) \
141 { \
142 if (pstate->top - pstate->list_offset >= pstate->level) \
143 { \
144 scm_putc ('#', port); \
145 return; \
146 } \
147 } \
148 PUSH_REF(pstate, obj); \
1bbd0b84 149} while(0)
a51ea417 150
dbb5de29
NJ
151#define EXIT_NESTED_DATA(pstate) \
152do \
153{ \
154 --pstate->top; \
155 PSTATE_STACK_SET (pstate, pstate->top, SCM_UNDEFINED); \
156} \
157while (0)
c62fbfe1 158
d5cf5324
DH
159SCM scm_print_state_vtable = SCM_BOOL_F;
160static SCM print_state_pool = SCM_EOL;
9de87eea 161scm_i_pthread_mutex_t print_state_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
c4f37e80 162
f843a84c 163#ifdef GUILE_DEBUG /* Used for debugging purposes */
1cc91f1b 164
3b3b36dd 165SCM_DEFINE (scm_current_pstate, "current-pstate", 0, 0, 0,
1bbd0b84 166 (),
d5cf5324 167 "Return the current-pstate -- the car of the\n"
5352393c
MG
168 "@code{print_state_pool}. @code{current-pstate} is only\n"
169 "included in @code{--enable-guile-debug} builds.")
1bbd0b84 170#define FUNC_NAME s_scm_current_pstate
c62fbfe1 171{
d2e53ed6 172 if (!scm_is_null (print_state_pool))
d5cf5324 173 return SCM_CAR (print_state_pool);
a0adfbf0 174 else
0a284a4e 175 return SCM_BOOL_F;
c62fbfe1 176}
1bbd0b84
GB
177#undef FUNC_NAME
178
c62fbfe1
MD
179#endif
180
181#define PSTATE_SIZE 50L
182
698c0295 183static SCM
1bbd0b84 184make_print_state (void)
698c0295 185{
d5cf5324
DH
186 SCM print_state
187 = scm_make_struct (scm_print_state_vtable, SCM_INUM0, SCM_EOL);
bf685b6d 188 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
00ffa0e7 189 pstate->ref_vect = scm_c_make_vector (PSTATE_SIZE, SCM_UNDEFINED);
4057a3e0 190 pstate->ceiling = SCM_SIMPLE_VECTOR_LENGTH (pstate->ref_vect);
d232520a 191 pstate->highlight_objects = SCM_EOL;
698c0295
MD
192 return print_state;
193}
1cc91f1b 194
c62fbfe1
MD
195SCM
196scm_make_print_state ()
c62fbfe1 197{
230d095f 198 SCM answer = SCM_BOOL_F;
698c0295
MD
199
200 /* First try to allocate a print state from the pool */
9de87eea 201 scm_i_pthread_mutex_lock (&print_state_mutex);
d2e53ed6 202 if (!scm_is_null (print_state_pool))
698c0295 203 {
d5cf5324
DH
204 answer = SCM_CAR (print_state_pool);
205 print_state_pool = SCM_CDR (print_state_pool);
698c0295 206 }
9de87eea 207 scm_i_pthread_mutex_unlock (&print_state_mutex);
698c0295 208
7888309b 209 return scm_is_false (answer) ? make_print_state () : answer;
c62fbfe1 210}
a51ea417 211
698c0295 212void
6e8d25a6 213scm_free_print_state (SCM print_state)
698c0295
MD
214{
215 SCM handle;
216 scm_print_state *pstate = SCM_PRINT_STATE (print_state);
217 /* Cleanup before returning print state to pool.
218 * It is better to do it here. Doing it in scm_prin1
219 * would cost more since that function is called much more
220 * often.
221 */
222 pstate->fancyp = 0;
bb35f315 223 pstate->revealed = 0;
d232520a 224 pstate->highlight_objects = SCM_EOL;
9de87eea 225 scm_i_pthread_mutex_lock (&print_state_mutex);
16d4699b 226 handle = scm_cons (print_state, print_state_pool);
d5cf5324 227 print_state_pool = handle;
9de87eea 228 scm_i_pthread_mutex_unlock (&print_state_mutex);
dfd03fb9
MD
229}
230
231SCM
232scm_i_port_with_print_state (SCM port, SCM print_state)
233{
234 if (SCM_UNBNDP (print_state))
235 {
236 if (SCM_PORT_WITH_PS_P (port))
237 return port;
238 else
239 print_state = scm_make_print_state ();
240 /* port does not need to be coerced since it doesn't have ps */
241 }
242 else
243 port = SCM_COERCE_OUTPORT (port);
244 SCM_RETURN_NEWSMOB (scm_tc16_port_with_ps,
245 SCM_UNPACK (scm_cons (port, print_state)));
698c0295 246}
1cc91f1b 247
a51ea417 248static void
1bbd0b84 249grow_ref_stack (scm_print_state *pstate)
a51ea417 250{
4057a3e0
MV
251 SCM old_vect = pstate->ref_vect;
252 size_t old_size = SCM_SIMPLE_VECTOR_LENGTH (old_vect);
253 size_t new_size = 2 * pstate->ceiling;
00ffa0e7 254 SCM new_vect = scm_c_make_vector (new_size, SCM_UNDEFINED);
b17004b8
DH
255 unsigned long int i;
256
257 for (i = 0; i != old_size; ++i)
4057a3e0 258 SCM_SIMPLE_VECTOR_SET (new_vect, i, SCM_SIMPLE_VECTOR_REF (old_vect, i));
b17004b8
DH
259
260 pstate->ref_vect = new_vect;
bf685b6d 261 pstate->ceiling = new_size;
a51ea417
MD
262}
263
509759dd
MV
264#define PSTATE_STACK_REF(p,i) SCM_SIMPLE_VECTOR_REF((p)->ref_vect, (i))
265#define PSTATE_STACK_SET(p,i,v) SCM_SIMPLE_VECTOR_SET((p)->ref_vect, (i), (v))
1cc91f1b 266
a51ea417 267static void
34d19ef6 268print_circref (SCM port, scm_print_state *pstate, SCM ref)
a51ea417 269{
c014a02e
ML
270 register long i;
271 long self = pstate->top - 1;
c62fbfe1 272 i = pstate->top - 1;
509759dd 273 if (scm_is_pair (PSTATE_STACK_REF (pstate, i)))
c62fbfe1
MD
274 {
275 while (i > 0)
276 {
509759dd
MV
277 if (!scm_is_pair (PSTATE_STACK_REF (pstate, i-1))
278 || !scm_is_eq (SCM_CDR (PSTATE_STACK_REF (pstate, i-1)),
279 SCM_CDR (PSTATE_STACK_REF (pstate, i))))
c62fbfe1
MD
280 break;
281 --i;
282 }
283 self = i;
284 }
285 for (i = pstate->top - 1; 1; --i)
509759dd 286 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), ref))
c62fbfe1 287 break;
b7f3516f 288 scm_putc ('#', port);
c62fbfe1 289 scm_intprint (i - self, 10, port);
b7f3516f 290 scm_putc ('#', port);
a51ea417
MD
291}
292
6662998f
MV
293/* Print the name of a symbol. */
294
475fa9a5
MV
295static int
296quote_keywordish_symbol (const char *str, size_t len)
297{
298 SCM option;
299
300 /* LEN is guaranteed to be > 0.
301 */
302 if (str[0] != ':' && str[len-1] != ':')
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
MV
313void
314scm_print_symbol_name (const char *str, size_t len, SCM port)
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;
6662998f 335
475fa9a5
MV
336 if (len == 0 || str[0] == '\'' || str[0] == '`' || str[0] == ','
337 || quote_keywordish_symbol (str, len)
338 || (str[0] == '.' && len == 1)
2b829bbb 339 || scm_is_true (scm_c_locale_stringn_to_number (str, len, 10)))
6662998f
MV
340 {
341 scm_lfwrite ("#{", 2, port);
342 weird = 1;
343 }
c6b49e89 344
6662998f
MV
345 for (end = pos; end < len; ++end)
346 switch (str[end])
347 {
348#ifdef BRACKETS_AS_PARENS
349 case '[':
350 case ']':
351#endif
352 case '(':
353 case ')':
354 case '"':
355 case ';':
c6b49e89 356 case '#':
6662998f
MV
357 case SCM_WHITE_SPACES:
358 case SCM_LINE_INCREMENTORS:
359 weird_handler:
360 if (maybe_weird)
361 {
362 end = mw_pos;
363 maybe_weird = 0;
364 }
365 if (!weird)
366 {
367 scm_lfwrite ("#{", 2, port);
368 weird = 1;
369 }
370 if (pos < end)
c6b49e89 371 scm_lfwrite (str + pos, end - pos, port);
6662998f
MV
372 {
373 char buf[2];
374 buf[0] = '\\';
375 buf[1] = str[end];
376 scm_lfwrite (buf, 2, port);
377 }
378 pos = end + 1;
379 break;
380 case '\\':
381 if (weird)
382 goto weird_handler;
383 if (!maybe_weird)
384 {
385 maybe_weird = 1;
386 mw_pos = pos;
387 }
388 break;
6662998f
MV
389 default:
390 break;
391 }
392 if (pos < end)
393 scm_lfwrite (str + pos, end - pos, port);
394 if (weird)
395 scm_lfwrite ("}#", 2, port);
396}
397
c62fbfe1 398/* Print generally. Handles both write and display according to PSTATE.
0f2d19dd 399 */
8b840115
MD
400SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write);
401SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display);
1cc91f1b 402
d232520a
MV
403static void iprin1 (SCM exp, SCM port, scm_print_state *pstate);
404
0f2d19dd 405void
1bbd0b84 406scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate)
d232520a
MV
407{
408 if (pstate->fancyp
409 && scm_is_true (scm_memq (exp, pstate->highlight_objects)))
410 {
81ae25da 411 scm_display (SCM_PRINT_HIGHLIGHT_PREFIX, port);
d232520a 412 iprin1 (exp, port, pstate);
81ae25da 413 scm_display (SCM_PRINT_HIGHLIGHT_SUFFIX, port);
d232520a
MV
414 }
415 else
416 iprin1 (exp, port, pstate);
417}
418
419static void
420iprin1 (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 421{
54778cd3 422 switch (SCM_ITAG3 (exp))
0f2d19dd 423 {
e34f941a
DH
424 case scm_tc3_closure:
425 case scm_tc3_tc7_1:
426 case scm_tc3_tc7_2:
427 /* These tc3 tags should never occur in an immediate value. They are
428 * only used in cell types of non-immediates, i. e. the value returned
429 * by SCM_CELL_TYPE (exp) can use these tags.
430 */
431 scm_ipruk ("immediate", exp, port);
432 break;
433 case scm_tc3_int_1:
434 case scm_tc3_int_2:
e11e83f3 435 scm_intprint (SCM_I_INUM (exp), 10, port);
0f2d19dd 436 break;
e34f941a 437 case scm_tc3_imm24:
7866a09b 438 if (SCM_CHARP (exp))
0f2d19dd 439 {
904a78f1 440 scm_t_wchar i = SCM_CHAR (exp);
77332b21 441 const char *name;
5ca6dc39 442
b7f3516f
TT
443 if (SCM_WRITINGP (pstate))
444 {
445 scm_puts ("#\\", port);
77332b21
MG
446 name = scm_i_charname (exp);
447 if (name != NULL)
448 scm_puts (name, port);
904a78f1
MG
449 else if (uc_is_general_category_withtable (i, UC_CATEGORY_MASK_L
450 | UC_CATEGORY_MASK_M
451 | UC_CATEGORY_MASK_N
452 | UC_CATEGORY_MASK_P
453 | UC_CATEGORY_MASK_S))
454 /* Print the character if is graphic character. */
455 {
456 if (i<256)
457 {
458 /* Character is graphic. Print it. */
459 scm_putc (i, port);
460 }
461 else
462 {
463 /* Character is graphic but unrepresentable in
464 this port's encoding. */
465 scm_intprint (i, 8, port);
466 }
467 }
468 else
469 {
470 /* Character is a non-graphical character. */
471 scm_intprint (i, 8, port);
472 }
b7f3516f
TT
473 }
474 else
475 scm_putc (i, port);
0f2d19dd 476 }
a51ea417 477 else if (SCM_IFLAGP (exp)
e17d318f
DH
478 && ((size_t) SCM_IFLAGNUM (exp) < (sizeof iflagnames / sizeof (char *))))
479 {
480 scm_puts (iflagnames [SCM_IFLAGNUM (exp)], port);
481 }
7e6e6b37 482 else if (SCM_ISYMP (exp))
e17d318f 483 {
7e6e6b37 484 scm_i_print_isym (exp, port);
e17d318f 485 }
0f2d19dd
JB
486 else if (SCM_ILOCP (exp))
487 {
7e6e6b37 488 scm_i_print_iloc (exp, port);
0f2d19dd
JB
489 }
490 else
e34f941a
DH
491 {
492 /* unknown immediate value */
493 scm_ipruk ("immediate", exp, port);
494 }
0f2d19dd 495 break;
e34f941a 496 case scm_tc3_cons:
0f2d19dd
JB
497 switch (SCM_TYP7 (exp))
498 {
904a077d
MV
499 case scm_tcs_struct:
500 {
501 ENTER_NESTED_DATA (pstate, exp, circref);
502 if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
503 {
504 SCM pwps, print = pstate->writingp ? g_write : g_display;
505 if (!print)
506 goto print_struct;
dfd03fb9 507 pwps = scm_i_port_with_print_state (port, pstate->handle);
7663c008 508 pstate->revealed = 1;
904a077d
MV
509 scm_call_generic_2 (print, exp, pwps);
510 }
511 else
512 {
513 print_struct:
514 scm_print_struct (exp, port, pstate);
515 }
516 EXIT_NESTED_DATA (pstate);
517 }
518 break;
0f2d19dd
JB
519 case scm_tcs_cons_imcar:
520 case scm_tcs_cons_nimcar:
c62fbfe1
MD
521 ENTER_NESTED_DATA (pstate, exp, circref);
522 scm_iprlist ("(", exp, ')', port, pstate);
523 EXIT_NESTED_DATA (pstate);
a51ea417
MD
524 break;
525 circref:
c62fbfe1 526 print_circref (port, pstate, exp);
0f2d19dd
JB
527 break;
528 case scm_tcs_closures:
7888309b
MV
529 if (scm_is_false (scm_procedure_p (SCM_PRINT_CLOSURE))
530 || scm_is_false (scm_printer_apply (SCM_PRINT_CLOSURE,
77c25af7 531 exp, port, pstate)))
726d810a
DH
532 {
533 SCM formals = SCM_CLOSURE_FORMALS (exp);
534 scm_puts ("#<procedure", port);
535 scm_putc (' ', port);
536 scm_iprin1 (scm_procedure_name (exp), port, pstate);
537 scm_putc (' ', port);
538 if (SCM_PRINT_SOURCE_P)
539 {
540 SCM env = SCM_ENV (exp);
541 SCM xenv = SCM_EXTEND_ENV (formals, SCM_EOL, env);
9fcf3cbb 542 SCM src = scm_i_unmemocopy_body (SCM_CODE (exp), xenv);
726d810a
DH
543 ENTER_NESTED_DATA (pstate, exp, circref);
544 scm_iprin1 (src, port, pstate);
545 EXIT_NESTED_DATA (pstate);
546 }
547 else
548 scm_iprin1 (formals, port, pstate);
b7f3516f 549 scm_putc ('>', port);
726d810a 550 }
0f2d19dd 551 break;
534c55a9
DH
552 case scm_tc7_number:
553 switch SCM_TYP16 (exp) {
554 case scm_tc16_big:
555 scm_bigprint (exp, port, pstate);
556 break;
557 case scm_tc16_real:
558 scm_print_real (exp, port, pstate);
559 break;
560 case scm_tc16_complex:
561 scm_print_complex (exp, port, pstate);
562 break;
f92e85f7
MV
563 case scm_tc16_fraction:
564 scm_i_print_fraction (exp, port, pstate);
565 break;
534c55a9
DH
566 }
567 break;
0f2d19dd 568 case scm_tc7_string:
c62fbfe1 569 if (SCM_WRITINGP (pstate))
0f2d19dd 570 {
6d92f14f 571 size_t i, j, len;
cc95e00a 572 const char *data;
5ca6dc39 573
b7f3516f 574 scm_putc ('"', port);
cc95e00a
MV
575 len = scm_i_string_length (exp);
576 data = scm_i_string_chars (exp);
6d92f14f 577 for (i = 0, j = 0; i < len; ++i)
fea8e142 578 {
cc95e00a 579 unsigned char ch = data[i];
fea8e142
MV
580 if ((ch < 32 && ch != '\n') || (127 <= ch && ch < 148))
581 {
582 static char const hex[]="0123456789abcdef";
6d92f14f
MV
583 char buf[4];
584
585 scm_lfwrite (data+j, i-j, port);
586 buf[0] = '\\';
587 buf[1] = 'x';
588 buf[2] = hex [ch / 16];
589 buf[3] = hex [ch % 16];
590 scm_lfwrite (buf, 4, port);
591 data = scm_i_string_chars (exp);
592 j = i+1;
fea8e142 593 }
6d92f14f 594 else if (ch == '"' || ch == '\\')
fea8e142 595 {
6d92f14f
MV
596 scm_lfwrite (data+j, i-j, port);
597 scm_putc ('\\', port);
598 data = scm_i_string_chars (exp);
599 j = i;
fea8e142
MV
600 }
601 }
6d92f14f 602 scm_lfwrite (data+j, i-j, port);
b7f3516f 603 scm_putc ('"', port);
cc95e00a 604 scm_remember_upto_here_1 (exp);
0f2d19dd
JB
605 }
606 else
cc95e00a 607 scm_lfwrite (scm_i_string_chars (exp), scm_i_string_length (exp),
fea8e142 608 port);
8824ac88 609 scm_remember_upto_here_1 (exp);
0f2d19dd 610 break;
28b06554 611 case scm_tc7_symbol:
cc95e00a 612 if (scm_i_symbol_is_interned (exp))
9ff28a13 613 {
cc95e00a
MV
614 scm_print_symbol_name (scm_i_symbol_chars (exp),
615 scm_i_symbol_length (exp),
9ff28a13
MV
616 port);
617 scm_remember_upto_here_1 (exp);
618 }
619 else
620 {
621 scm_puts ("#<uninterned-symbol ", port);
cc95e00a
MV
622 scm_print_symbol_name (scm_i_symbol_chars (exp),
623 scm_i_symbol_length (exp),
9ff28a13
MV
624 port);
625 scm_putc (' ', port);
0345e278 626 scm_uintprint (SCM_UNPACK (exp), 16, port);
9ff28a13
MV
627 scm_putc ('>', port);
628 }
6662998f 629 break;
e5aca4b5
MV
630 case scm_tc7_variable:
631 scm_i_variable_print (exp, port, pstate);
632 break;
0f2d19dd 633 case scm_tc7_wvect:
c62fbfe1 634 ENTER_NESTED_DATA (pstate, exp, circref);
0f2d19dd 635 if (SCM_IS_WHVEC (exp))
b7f3516f 636 scm_puts ("#wh(", port);
0f2d19dd 637 else
b7f3516f 638 scm_puts ("#w(", port);
0f2d19dd
JB
639 goto common_vector_printer;
640
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 }
655 for (i = 0; i < last; ++i)
656 {
657 /* CHECK_INTS; */
4057a3e0 658 scm_iprin1 (SCM_SIMPLE_VECTOR_REF (exp, i), port, pstate);
b7f3516f 659 scm_putc (' ', port);
9fbaf27c
MD
660 }
661 if (i == last)
662 {
663 /* CHECK_INTS; */
4057a3e0 664 scm_iprin1 (SCM_SIMPLE_VECTOR_REF (exp, i), port, pstate);
9fbaf27c
MD
665 }
666 if (cutp)
b7f3516f
TT
667 scm_puts (" ...", port);
668 scm_putc (')', port);
9fbaf27c 669 }
c62fbfe1 670 EXIT_NESTED_DATA (pstate);
0f2d19dd 671 break;
0f2d19dd 672 case scm_tcs_subrs:
f76af603 673 scm_puts (SCM_SUBR_GENERIC (exp)
9de33deb
MD
674 ? "#<primitive-generic "
675 : "#<primitive-procedure ",
676 port);
ce471ab8 677 scm_puts (scm_i_symbol_chars (SCM_SUBR_NAME (exp)), port);
b7f3516f 678 scm_putc ('>', port);
0f2d19dd 679 break;
e20d7001 680
c180dfd3
MD
681 case scm_tc7_pws:
682 scm_puts ("#<procedure-with-setter", port);
683 {
684 SCM name = scm_procedure_name (exp);
7888309b 685 if (scm_is_true (name))
c180dfd3
MD
686 {
687 scm_putc (' ', port);
b24b5e13 688 scm_display (name, port);
c180dfd3
MD
689 }
690 }
691 scm_putc ('>', port);
692 break;
0f2d19dd 693 case scm_tc7_port:
5ca6dc39
JB
694 {
695 register long i = SCM_PTOBNUM (exp);
696 if (i < scm_numptob
697 && scm_ptobs[i].print
698 && (scm_ptobs[i].print) (exp, port, pstate))
a51ea417 699 break;
5ca6dc39
JB
700 goto punk;
701 }
702 case scm_tc7_smob:
7a7f7c53
DH
703 ENTER_NESTED_DATA (pstate, exp, circref);
704 SCM_SMOB_DESCRIPTOR (exp).print (exp, port, pstate);
705 EXIT_NESTED_DATA (pstate);
706 break;
0f2d19dd 707 default:
a51ea417
MD
708 punk:
709 scm_ipruk ("type", exp, port);
0f2d19dd
JB
710 }
711 }
712}
713
c62fbfe1
MD
714/* Print states are necessary for circular reference safe printing.
715 * They are also expensive to allocate. Therefore print states are
716 * kept in a pool so that they can be reused.
717 */
1cc91f1b 718
bb35f315
MV
719/* The PORT argument can also be a print-state/port pair, which will
720 * then be used instead of allocating a new print state. This is
721 * useful for continuing a chain of print calls from Scheme. */
722
a51ea417 723void
1bbd0b84 724scm_prin1 (SCM exp, SCM port, int writingp)
a51ea417 725{
c4f37e80
MV
726 SCM handle = SCM_BOOL_F; /* Will GC protect the handle whilst unlinked */
727 SCM pstate_scm;
c62fbfe1 728 scm_print_state *pstate;
15635be5 729 int old_writingp;
c62fbfe1 730
bb35f315
MV
731 /* If PORT is a print-state/port pair, use that. Else create a new
732 print-state. */
c4f37e80 733
0c95b57d 734 if (SCM_PORT_WITH_PS_P (port))
bb35f315 735 {
52235e71
MD
736 pstate_scm = SCM_PORT_WITH_PS_PS (port);
737 port = SCM_PORT_WITH_PS_PORT (port);
bb35f315
MV
738 }
739 else
c62fbfe1 740 {
c4f37e80 741 /* First try to allocate a print state from the pool */
9de87eea 742 scm_i_pthread_mutex_lock (&print_state_mutex);
d2e53ed6 743 if (!scm_is_null (print_state_pool))
c4f37e80 744 {
d5cf5324
DH
745 handle = print_state_pool;
746 print_state_pool = SCM_CDR (print_state_pool);
c4f37e80 747 }
9de87eea 748 scm_i_pthread_mutex_unlock (&print_state_mutex);
7888309b 749 if (scm_is_false (handle))
d5cf5324 750 handle = scm_list_1 (make_print_state ());
c4f37e80 751 pstate_scm = SCM_CAR (handle);
c62fbfe1 752 }
c62fbfe1 753
c4f37e80 754 pstate = SCM_PRINT_STATE (pstate_scm);
15635be5 755 old_writingp = pstate->writingp;
c62fbfe1
MD
756 pstate->writingp = writingp;
757 scm_iprin1 (exp, port, pstate);
15635be5 758 pstate->writingp = old_writingp;
c62fbfe1 759
bb35f315
MV
760 /* Return print state to pool if it has been created above and
761 hasn't escaped to Scheme. */
762
7888309b 763 if (scm_is_true (handle) && !pstate->revealed)
c4f37e80 764 {
9de87eea 765 scm_i_pthread_mutex_lock (&print_state_mutex);
d5cf5324
DH
766 SCM_SETCDR (handle, print_state_pool);
767 print_state_pool = handle;
9de87eea 768 scm_i_pthread_mutex_unlock (&print_state_mutex);
c4f37e80 769 }
a51ea417
MD
770}
771
0f2d19dd
JB
772
773/* Print an integer.
774 */
1cc91f1b 775
0f2d19dd 776void
a406c9e9 777scm_intprint (scm_t_intmax n, int radix, SCM port)
0f2d19dd
JB
778{
779 char num_buf[SCM_INTBUFLEN];
b7f3516f 780 scm_lfwrite (num_buf, scm_iint2str (n, radix, num_buf), port);
0f2d19dd
JB
781}
782
a406c9e9
MV
783void
784scm_uintprint (scm_t_uintmax n, int radix, SCM port)
785{
786 char num_buf[SCM_INTBUFLEN];
787 scm_lfwrite (num_buf, scm_iuint2str (n, radix, num_buf), port);
788}
789
0f2d19dd
JB
790/* Print an object of unrecognized type.
791 */
1cc91f1b 792
0f2d19dd 793void
1bbd0b84 794scm_ipruk (char *hdr, SCM ptr, SCM port)
0f2d19dd 795{
b7f3516f
TT
796 scm_puts ("#<unknown-", port);
797 scm_puts (hdr, port);
c8a1bdc4 798 if (scm_in_heap_p (ptr))
0f2d19dd 799 {
b7f3516f 800 scm_puts (" (0x", port);
0345e278 801 scm_uintprint (SCM_CELL_WORD_0 (ptr), 16, port);
b7f3516f 802 scm_puts (" . 0x", port);
0345e278 803 scm_uintprint (SCM_CELL_WORD_1 (ptr), 16, port);
b7f3516f 804 scm_puts (") @", port);
0f2d19dd 805 }
b7f3516f 806 scm_puts (" 0x", port);
0345e278 807 scm_uintprint (SCM_UNPACK (ptr), 16, port);
b7f3516f 808 scm_putc ('>', port);
0f2d19dd
JB
809}
810
1cc91f1b 811
904a077d 812/* Print a list.
22a52da1 813 */
0f2d19dd 814void
34d19ef6 815scm_iprlist (char *hdr, SCM exp, int tlr, SCM port, scm_print_state *pstate)
0f2d19dd 816{
c62fbfe1 817 register SCM hare, tortoise;
c014a02e 818 long floor = pstate->top - 2;
b7f3516f 819 scm_puts (hdr, port);
0f2d19dd 820 /* CHECK_INTS; */
c62fbfe1
MD
821 if (pstate->fancyp)
822 goto fancy_printing;
823
824 /* Run a hare and tortoise so that total time complexity will be
825 O(depth * N) instead of O(N^2). */
826 hare = SCM_CDR (exp);
827 tortoise = exp;
d2e53ed6 828 while (scm_is_pair (hare))
c62fbfe1 829 {
bc36d050 830 if (scm_is_eq (hare, tortoise))
c62fbfe1
MD
831 goto fancy_printing;
832 hare = SCM_CDR (hare);
d2e53ed6 833 if (!scm_is_pair (hare))
c62fbfe1
MD
834 break;
835 hare = SCM_CDR (hare);
836 tortoise = SCM_CDR (tortoise);
837 }
838
839 /* No cdr cycles intrinsic to this list */
840 scm_iprin1 (SCM_CAR (exp), port, pstate);
d2e53ed6 841 for (exp = SCM_CDR (exp); scm_is_pair (exp); exp = SCM_CDR (exp))
0f2d19dd 842 {
c014a02e 843 register long i;
5ca6dc39 844
c62fbfe1 845 for (i = floor; i >= 0; --i)
509759dd 846 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
c62fbfe1
MD
847 goto circref;
848 PUSH_REF (pstate, exp);
b7f3516f 849 scm_putc (' ', port);
0f2d19dd 850 /* CHECK_INTS; */
c62fbfe1 851 scm_iprin1 (SCM_CAR (exp), port, pstate);
0f2d19dd 852 }
c96d76b8 853 if (!SCM_NULL_OR_NIL_P (exp))
0f2d19dd 854 {
b7f3516f 855 scm_puts (" . ", port);
c62fbfe1 856 scm_iprin1 (exp, port, pstate);
0f2d19dd 857 }
c62fbfe1 858
a51ea417 859end:
b7f3516f 860 scm_putc (tlr, port);
c62fbfe1 861 pstate->top = floor + 2;
a51ea417 862 return;
c62fbfe1
MD
863
864fancy_printing:
865 {
c014a02e 866 long n = pstate->length;
c62fbfe1
MD
867
868 scm_iprin1 (SCM_CAR (exp), port, pstate);
869 exp = SCM_CDR (exp); --n;
d2e53ed6 870 for (; scm_is_pair (exp); exp = SCM_CDR (exp))
c62fbfe1 871 {
c014a02e 872 register unsigned long i;
5ca6dc39 873
c62fbfe1 874 for (i = 0; i < pstate->top; ++i)
509759dd 875 if (scm_is_eq (PSTATE_STACK_REF(pstate, i), exp))
c62fbfe1
MD
876 goto fancy_circref;
877 if (pstate->fancyp)
878 {
879 if (n == 0)
880 {
b7f3516f 881 scm_puts (" ...", port);
c62fbfe1
MD
882 goto skip_tail;
883 }
884 else
885 --n;
886 }
887 PUSH_REF(pstate, exp);
888 ++pstate->list_offset;
b7f3516f 889 scm_putc (' ', port);
c62fbfe1
MD
890 /* CHECK_INTS; */
891 scm_iprin1 (SCM_CAR (exp), port, pstate);
892 }
893 }
c96d76b8 894 if (!SCM_NULL_OR_NIL_P (exp))
c62fbfe1 895 {
b7f3516f 896 scm_puts (" . ", port);
c62fbfe1
MD
897 scm_iprin1 (exp, port, pstate);
898 }
899skip_tail:
900 pstate->list_offset -= pstate->top - floor - 2;
a51ea417 901 goto end;
a51ea417 902
c62fbfe1
MD
903fancy_circref:
904 pstate->list_offset -= pstate->top - floor - 2;
905
906circref:
b7f3516f 907 scm_puts (" . ", port);
c62fbfe1
MD
908 print_circref (port, pstate, exp);
909 goto end;
0f2d19dd
JB
910}
911
912\f
913
bb35f315
MV
914int
915scm_valid_oport_value_p (SCM val)
916{
368cf54d
GB
917 return (SCM_OPOUTPORTP (val)
918 || (SCM_PORT_WITH_PS_P (val)
919 && SCM_OPOUTPORTP (SCM_PORT_WITH_PS_PORT (val))));
bb35f315
MV
920}
921
8b840115 922/* SCM_GPROC(s_write, "write", 1, 1, 0, scm_write, g_write); */
1cc91f1b 923
0f2d19dd 924SCM
1bbd0b84 925scm_write (SCM obj, SCM port)
0f2d19dd
JB
926{
927 if (SCM_UNBNDP (port))
9de87eea 928 port = scm_current_output_port ();
3eb7e6ee
JB
929
930 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_write);
bb35f315 931
a51ea417 932 scm_prin1 (obj, port, 1);
23d72566 933#if 0
0f2d19dd
JB
934#ifdef HAVE_PIPE
935# ifdef EPIPE
936 if (EPIPE == errno)
937 scm_close_port (port);
938# endif
23d72566 939#endif
0f2d19dd
JB
940#endif
941 return SCM_UNSPECIFIED;
942}
943
944
8b840115 945/* SCM_GPROC(s_display, "display", 1, 1, 0, scm_display, g_display); */
1cc91f1b 946
0f2d19dd 947SCM
1bbd0b84 948scm_display (SCM obj, SCM port)
0f2d19dd
JB
949{
950 if (SCM_UNBNDP (port))
9de87eea 951 port = scm_current_output_port ();
3eb7e6ee
JB
952
953 SCM_ASSERT (scm_valid_oport_value_p (port), port, SCM_ARG2, s_display);
bb35f315 954
a51ea417 955 scm_prin1 (obj, port, 0);
23d72566 956#if 0
0f2d19dd
JB
957#ifdef HAVE_PIPE
958# ifdef EPIPE
959 if (EPIPE == errno)
960 scm_close_port (port);
961# endif
23d72566 962#endif
0f2d19dd
JB
963#endif
964 return SCM_UNSPECIFIED;
965}
966
70d63753
GB
967
968SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
969 (SCM destination, SCM message, SCM args),
eca65e90
MG
970 "Write @var{message} to @var{destination}, defaulting to\n"
971 "the current output port.\n"
972 "@var{message} can contain @code{~A} (was @code{%s}) and\n"
973 "@code{~S} (was @code{%S}) escapes. When printed,\n"
974 "the escapes are replaced with corresponding members of\n"
975 "@var{ARGS}:\n"
976 "@code{~A} formats using @code{display} and @code{~S} formats\n"
977 "using @code{write}.\n"
978 "If @var{destination} is @code{#t}, then use the current output\n"
979 "port, if @var{destination} is @code{#f}, then return a string\n"
980 "containing the formatted text. Does not add a trailing newline.")
70d63753
GB
981#define FUNC_NAME s_scm_simple_format
982{
dfd03fb9 983 SCM port, answer = SCM_UNSPECIFIED;
70d63753
GB
984 int fReturnString = 0;
985 int writingp;
cc95e00a
MV
986 const char *start;
987 const char *end;
988 const char *p;
70d63753 989
bc36d050 990 if (scm_is_eq (destination, SCM_BOOL_T))
daba1a71 991 {
9de87eea 992 destination = port = scm_current_output_port ();
daba1a71 993 }
7888309b 994 else if (scm_is_false (destination))
daba1a71
MD
995 {
996 fReturnString = 1;
dfd03fb9
MD
997 port = scm_mkstrport (SCM_INUM0,
998 scm_make_string (SCM_INUM0, SCM_UNDEFINED),
999 SCM_OPN | SCM_WRTNG,
1000 FUNC_NAME);
1001 destination = port;
daba1a71
MD
1002 }
1003 else
1004 {
1005 SCM_VALIDATE_OPORT_VALUE (1, destination);
dfd03fb9 1006 port = SCM_COERCE_OUTPORT (destination);
daba1a71
MD
1007 }
1008 SCM_VALIDATE_STRING (2, message);
af45e3b0 1009 SCM_VALIDATE_REST_ARGUMENT (args);
70d63753 1010
cc95e00a
MV
1011 start = scm_i_string_chars (message);
1012 end = start + scm_i_string_length (message);
b24b5e13 1013 for (p = start; p != end; ++p)
70d63753
GB
1014 if (*p == '~')
1015 {
b24b5e13 1016 if (++p == end)
6662998f
MV
1017 break;
1018
1019 switch (*p)
1020 {
1021 case 'A': case 'a':
1022 writingp = 0;
1023 break;
1024 case 'S': case 's':
1025 writingp = 1;
1026 break;
1027 case '~':
dfd03fb9 1028 scm_lfwrite (start, p - start, port);
6662998f
MV
1029 start = p + 1;
1030 continue;
1031 case '%':
dfd03fb9
MD
1032 scm_lfwrite (start, p - start - 1, port);
1033 scm_newline (port);
6662998f
MV
1034 start = p + 1;
1035 continue;
1036 default:
1afff620
KN
1037 SCM_MISC_ERROR ("FORMAT: Unsupported format option ~~~A - use (ice-9 format) instead",
1038 scm_list_1 (SCM_MAKE_CHAR (*p)));
6662998f
MV
1039
1040 }
70d63753 1041
6662998f 1042
d2e53ed6 1043 if (!scm_is_pair (args))
1afff620
KN
1044 SCM_MISC_ERROR ("FORMAT: Missing argument for ~~~A",
1045 scm_list_1 (SCM_MAKE_CHAR (*p)));
6662998f 1046
dfd03fb9
MD
1047 scm_lfwrite (start, p - start - 1, port);
1048 /* we pass destination here */
70d63753
GB
1049 scm_prin1 (SCM_CAR (args), destination, writingp);
1050 args = SCM_CDR (args);
1051 start = p + 1;
1052 }
6662998f 1053
dfd03fb9 1054 scm_lfwrite (start, p - start, port);
bc36d050 1055 if (!scm_is_eq (args, SCM_EOL))
1afff620
KN
1056 SCM_MISC_ERROR ("FORMAT: ~A superfluous arguments",
1057 scm_list_1 (scm_length (args)));
70d63753
GB
1058
1059 if (fReturnString)
1060 answer = scm_strport_to_string (destination);
1061
daba1a71 1062 return scm_return_first (answer, message);
70d63753
GB
1063}
1064#undef FUNC_NAME
1065
1066
3b3b36dd 1067SCM_DEFINE (scm_newline, "newline", 0, 1, 0,
b450f070 1068 (SCM port),
8f85c0c6
NJ
1069 "Send a newline to @var{port}.\n"
1070 "If @var{port} is omitted, send to the current output port.")
1bbd0b84 1071#define FUNC_NAME s_scm_newline
0f2d19dd
JB
1072{
1073 if (SCM_UNBNDP (port))
9de87eea 1074 port = scm_current_output_port ();
3eb7e6ee 1075
34d19ef6 1076 SCM_VALIDATE_OPORT_VALUE (1, port);
bb35f315 1077
0ef4ae82 1078 scm_putc ('\n', SCM_COERCE_OUTPORT (port));
0f2d19dd
JB
1079 return SCM_UNSPECIFIED;
1080}
1bbd0b84 1081#undef FUNC_NAME
0f2d19dd 1082
3b3b36dd 1083SCM_DEFINE (scm_write_char, "write-char", 1, 1, 0,
b450f070 1084 (SCM chr, SCM port),
eca65e90 1085 "Send character @var{chr} to @var{port}.")
1bbd0b84 1086#define FUNC_NAME s_scm_write_char
0f2d19dd
JB
1087{
1088 if (SCM_UNBNDP (port))
9de87eea 1089 port = scm_current_output_port ();
3eb7e6ee 1090
34d19ef6
HWN
1091 SCM_VALIDATE_CHAR (1, chr);
1092 SCM_VALIDATE_OPORT_VALUE (2, port);
bb35f315 1093
7866a09b 1094 scm_putc ((int) SCM_CHAR (chr), SCM_COERCE_OUTPORT (port));
23d72566 1095#if 0
0f2d19dd
JB
1096#ifdef HAVE_PIPE
1097# ifdef EPIPE
1098 if (EPIPE == errno)
1099 scm_close_port (port);
1100# endif
23d72566 1101#endif
0f2d19dd
JB
1102#endif
1103 return SCM_UNSPECIFIED;
1104}
1bbd0b84 1105#undef FUNC_NAME
0f2d19dd 1106
0f2d19dd
JB
1107\f
1108
bb35f315 1109/* Call back to Scheme code to do the printing of special objects
c19bc088
MD
1110 * (like structs). SCM_PRINTER_APPLY applies PROC to EXP and a smob
1111 * containing PORT and PSTATE. This object can be used as the port for
1112 * display/write etc to continue the current print chain. The REVEALED
1113 * field of PSTATE is set to true to indicate that the print state has
1114 * escaped to Scheme and thus has to be freed by the GC.
1115 */
1116
92c2555f 1117scm_t_bits scm_tc16_port_with_ps;
c19bc088
MD
1118
1119/* Print exactly as the port itself would */
1120
1121static int
e841c3e0 1122port_with_ps_print (SCM obj, SCM port, scm_print_state *pstate)
c19bc088
MD
1123{
1124 obj = SCM_PORT_WITH_PS_PORT (obj);
1125 return scm_ptobs[SCM_PTOBNUM (obj)].print (obj, port, pstate);
1126}
c4f37e80
MV
1127
1128SCM
1bbd0b84 1129scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate)
c4f37e80 1130{
bb35f315 1131 pstate->revealed = 1;
dfd03fb9
MD
1132 return scm_call_2 (proc, exp,
1133 scm_i_port_with_print_state (port, pstate->handle));
c19bc088
MD
1134}
1135
dfd03fb9 1136SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 1, 1, 0,
1bbd0b84 1137 (SCM port, SCM pstate),
71331188 1138 "Create a new port which behaves like @var{port}, but with an\n"
dfd03fb9
MD
1139 "included print state @var{pstate}. @var{pstate} is optional.\n"
1140 "If @var{pstate} isn't supplied and @var{port} already has\n"
1141 "a print state, the old print state is reused.")
1bbd0b84 1142#define FUNC_NAME s_scm_port_with_print_state
c19bc088 1143{
34d19ef6 1144 SCM_VALIDATE_OPORT_VALUE (1, port);
dfd03fb9
MD
1145 if (!SCM_UNBNDP (pstate))
1146 SCM_VALIDATE_PRINTSTATE (2, pstate);
1147 return scm_i_port_with_print_state (port, pstate);
c19bc088 1148}
1bbd0b84 1149#undef FUNC_NAME
c19bc088 1150
a1ec6916 1151SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0,
1bbd0b84 1152 (SCM port),
71331188
MG
1153 "Return the print state of the port @var{port}. If @var{port}\n"
1154 "has no associated print state, @code{#f} is returned.")
1bbd0b84 1155#define FUNC_NAME s_scm_get_print_state
c19bc088 1156{
368cf54d
GB
1157 if (SCM_PORT_WITH_PS_P (port))
1158 return SCM_PORT_WITH_PS_PS (port);
f5f2dcff 1159 if (SCM_OUTPUT_PORT_P (port))
368cf54d 1160 return SCM_BOOL_F;
276dd677 1161 SCM_WRONG_TYPE_ARG (1, port);
c4f37e80 1162}
1bbd0b84 1163#undef FUNC_NAME
bb35f315 1164
c4f37e80 1165\f
1cc91f1b 1166
0f2d19dd
JB
1167void
1168scm_init_print ()
0f2d19dd 1169{
c19bc088 1170 SCM vtable, layout, type;
d5cf5324 1171
62560650 1172 scm_init_opts (scm_print_options, scm_print_opts);
d5cf5324 1173
81ae25da
MV
1174 scm_print_options (scm_list_4 (scm_from_locale_symbol ("highlight-prefix"),
1175 scm_from_locale_string ("{"),
1176 scm_from_locale_symbol ("highlight-suffix"),
1177 scm_from_locale_string ("}")));
1178
d5cf5324
DH
1179 scm_gc_register_root (&print_state_pool);
1180 scm_gc_register_root (&scm_print_state_vtable);
3ce4544c 1181 vtable = scm_make_vtable_vtable (scm_nullstr, SCM_INUM0, SCM_EOL);
cc95e00a
MV
1182 layout =
1183 scm_make_struct_layout (scm_from_locale_string (SCM_PRINT_STATE_LAYOUT));
1afff620 1184 type = scm_make_struct (vtable, SCM_INUM0, scm_list_1 (layout));
cc95e00a 1185 scm_set_struct_vtable_name_x (type, scm_from_locale_symbol ("print-state"));
bb35f315 1186 scm_print_state_vtable = type;
c4f37e80 1187
c19bc088
MD
1188 /* Don't want to bind a wrapper class in GOOPS, so pass 0 as arg1. */
1189 scm_tc16_port_with_ps = scm_make_smob_type (0, 0);
1190 scm_set_smob_mark (scm_tc16_port_with_ps, scm_markcdr);
e841c3e0 1191 scm_set_smob_print (scm_tc16_port_with_ps, port_with_ps_print);
81ae25da 1192
a0599745 1193#include "libguile/print.x"
475fa9a5
MV
1194
1195 scm_print_opts[SCM_PRINT_KEYWORD_STYLE_I].val = SCM_UNPACK (sym_reader);
0f2d19dd 1196}
89e00824
ML
1197
1198/*
1199 Local Variables:
1200 c-file-style: "gnu"
1201 End:
1202*/