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