detect and consume byte-order marks for textual ports
[bpt/guile.git] / libguile / ports.c
1 /* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004,
2 * 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 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 /* Headers. */
23
24 #define _LARGEFILE64_SOURCE /* ask for stat64 etc */
25
26 #ifdef HAVE_CONFIG_H
27 # include <config.h>
28 #endif
29
30 #include <stdio.h>
31 #include <errno.h>
32 #include <fcntl.h> /* for chsize on mingw */
33 #include <assert.h>
34 #include <iconv.h>
35 #include <uniconv.h>
36 #include <unistr.h>
37 #include <striconveh.h>
38
39 #include <assert.h>
40
41 #include "libguile/_scm.h"
42 #include "libguile/async.h"
43 #include "libguile/deprecation.h"
44 #include "libguile/eval.h"
45 #include "libguile/fports.h" /* direct access for seek and truncate */
46 #include "libguile/goops.h"
47 #include "libguile/smob.h"
48 #include "libguile/chars.h"
49 #include "libguile/dynwind.h"
50
51 #include "libguile/keywords.h"
52 #include "libguile/hashtab.h"
53 #include "libguile/root.h"
54 #include "libguile/strings.h"
55 #include "libguile/mallocs.h"
56 #include "libguile/validate.h"
57 #include "libguile/ports.h"
58 #include "libguile/vectors.h"
59 #include "libguile/weaks.h"
60 #include "libguile/fluids.h"
61 #include "libguile/eq.h"
62
63 #ifdef HAVE_STRING_H
64 #include <string.h>
65 #endif
66
67 #ifdef HAVE_IO_H
68 #include <io.h>
69 #endif
70
71 #ifdef HAVE_UNISTD_H
72 #include <unistd.h>
73 #endif
74
75 #ifdef HAVE_SYS_IOCTL_H
76 #include <sys/ioctl.h>
77 #endif
78
79 /* Mingw (version 3.4.5, circa 2006) has ftruncate as an alias for chsize
80 already, but have this code here in case that wasn't so in past versions,
81 or perhaps to help other minimal DOS environments.
82
83 gnulib ftruncate.c has code using fcntl F_CHSIZE and F_FREESP, which
84 might be possibilities if we've got other systems without ftruncate. */
85
86 #if defined HAVE_CHSIZE && ! defined HAVE_FTRUNCATE
87 #define ftruncate(fd, size) chsize (fd, size)
88 #undef HAVE_FTRUNCATE
89 #define HAVE_FTRUNCATE 1
90 #endif
91
92 \f
93 /* The port kind table --- a dynamically resized array of port types. */
94
95
96 /* scm_ptobs scm_numptob
97 * implement a dynamically resized array of ptob records.
98 * Indexes into this table are used when generating type
99 * tags for smobjects (if you know a tag you can get an index and conversely).
100 */
101 scm_t_ptob_descriptor *scm_ptobs = NULL;
102 long scm_numptob = 0;
103
104 /* GC marker for a port with stream of SCM type. */
105 SCM
106 scm_markstream (SCM ptr)
107 {
108 int openp;
109 openp = SCM_CELL_WORD_0 (ptr) & SCM_OPN;
110 if (openp)
111 return SCM_PACK (SCM_STREAM (ptr));
112 else
113 return SCM_BOOL_F;
114 }
115
116 /*
117 * We choose to use an interface similar to the smob interface with
118 * fill_input and write as standard fields, passed to the port
119 * type constructor, and optional fields set by setters.
120 */
121
122 static void
123 flush_port_default (SCM port SCM_UNUSED)
124 {
125 }
126
127 static void
128 end_input_default (SCM port SCM_UNUSED, int offset SCM_UNUSED)
129 {
130 }
131
132 scm_t_bits
133 scm_make_port_type (char *name,
134 int (*fill_input) (SCM port),
135 void (*write) (SCM port, const void *data, size_t size))
136 {
137 char *tmp;
138 if (SCM_I_MAX_PORT_TYPE_COUNT - 1 <= scm_numptob)
139 goto ptoberr;
140 SCM_CRITICAL_SECTION_START;
141 tmp = (char *) scm_gc_realloc ((char *) scm_ptobs,
142 scm_numptob * sizeof (scm_t_ptob_descriptor),
143 (1 + scm_numptob)
144 * sizeof (scm_t_ptob_descriptor),
145 "port-type");
146 if (tmp)
147 {
148 scm_ptobs = (scm_t_ptob_descriptor *) tmp;
149
150 scm_ptobs[scm_numptob].name = name;
151 scm_ptobs[scm_numptob].mark = 0;
152 scm_ptobs[scm_numptob].free = NULL;
153 scm_ptobs[scm_numptob].print = scm_port_print;
154 scm_ptobs[scm_numptob].equalp = 0;
155 scm_ptobs[scm_numptob].close = 0;
156
157 scm_ptobs[scm_numptob].write = write;
158 scm_ptobs[scm_numptob].flush = flush_port_default;
159
160 scm_ptobs[scm_numptob].end_input = end_input_default;
161 scm_ptobs[scm_numptob].fill_input = fill_input;
162 scm_ptobs[scm_numptob].input_waiting = 0;
163
164 scm_ptobs[scm_numptob].seek = 0;
165 scm_ptobs[scm_numptob].truncate = 0;
166
167 scm_numptob++;
168 }
169 SCM_CRITICAL_SECTION_END;
170 if (!tmp)
171 {
172 ptoberr:
173 scm_memory_error ("scm_make_port_type");
174 }
175 /* Make a class object if Goops is present */
176 if (SCM_UNPACK (scm_port_class[0]) != 0)
177 scm_make_port_classes (scm_numptob - 1, SCM_PTOBNAME (scm_numptob - 1));
178 return scm_tc7_port + (scm_numptob - 1) * 256;
179 }
180
181 void
182 scm_set_port_mark (scm_t_bits tc, SCM (*mark) (SCM))
183 {
184 scm_ptobs[SCM_TC2PTOBNUM (tc)].mark = mark;
185 }
186
187 void
188 scm_set_port_free (scm_t_bits tc, size_t (*free) (SCM))
189 {
190 scm_ptobs[SCM_TC2PTOBNUM (tc)].free = free;
191 }
192
193 void
194 scm_set_port_print (scm_t_bits tc, int (*print) (SCM exp, SCM port,
195 scm_print_state *pstate))
196 {
197 scm_ptobs[SCM_TC2PTOBNUM (tc)].print = print;
198 }
199
200 void
201 scm_set_port_equalp (scm_t_bits tc, SCM (*equalp) (SCM, SCM))
202 {
203 scm_ptobs[SCM_TC2PTOBNUM (tc)].equalp = equalp;
204 }
205
206 void
207 scm_set_port_flush (scm_t_bits tc, void (*flush) (SCM port))
208 {
209 scm_ptobs[SCM_TC2PTOBNUM (tc)].flush = flush;
210 }
211
212 void
213 scm_set_port_end_input (scm_t_bits tc, void (*end_input) (SCM port, int offset))
214 {
215 scm_ptobs[SCM_TC2PTOBNUM (tc)].end_input = end_input;
216 }
217
218 void
219 scm_set_port_close (scm_t_bits tc, int (*close) (SCM))
220 {
221 scm_ptobs[SCM_TC2PTOBNUM (tc)].close = close;
222 }
223
224 void
225 scm_set_port_seek (scm_t_bits tc,
226 scm_t_off (*seek) (SCM, scm_t_off, int))
227 {
228 scm_ptobs[SCM_TC2PTOBNUM (tc)].seek = seek;
229 }
230
231 void
232 scm_set_port_truncate (scm_t_bits tc, void (*truncate) (SCM, scm_t_off))
233 {
234 scm_ptobs[SCM_TC2PTOBNUM (tc)].truncate = truncate;
235 }
236
237 void
238 scm_set_port_input_waiting (scm_t_bits tc, int (*input_waiting) (SCM))
239 {
240 scm_ptobs[SCM_TC2PTOBNUM (tc)].input_waiting = input_waiting;
241 }
242
243 \f
244
245 SCM_DEFINE (scm_char_ready_p, "char-ready?", 0, 1, 0,
246 (SCM port),
247 "Return @code{#t} if a character is ready on input @var{port}\n"
248 "and return @code{#f} otherwise. If @code{char-ready?} returns\n"
249 "@code{#t} then the next @code{read-char} operation on\n"
250 "@var{port} is guaranteed not to hang. If @var{port} is a file\n"
251 "port at end of file then @code{char-ready?} returns @code{#t}.\n"
252 "\n"
253 "@code{char-ready?} exists to make it possible for a\n"
254 "program to accept characters from interactive ports without\n"
255 "getting stuck waiting for input. Any input editors associated\n"
256 "with such ports must make sure that characters whose existence\n"
257 "has been asserted by @code{char-ready?} cannot be rubbed out.\n"
258 "If @code{char-ready?} were to return @code{#f} at end of file,\n"
259 "a port at end of file would be indistinguishable from an\n"
260 "interactive port that has no ready characters.")
261 #define FUNC_NAME s_scm_char_ready_p
262 {
263 scm_t_port *pt;
264
265 if (SCM_UNBNDP (port))
266 port = scm_current_input_port ();
267 /* It's possible to close the current input port, so validate even in
268 this case. */
269 SCM_VALIDATE_OPINPORT (1, port);
270
271 pt = SCM_PTAB_ENTRY (port);
272
273 /* if the current read buffer is filled, or the
274 last pushed-back char has been read and the saved buffer is
275 filled, result is true. */
276 if (pt->read_pos < pt->read_end
277 || (pt->read_buf == pt->putback_buf
278 && pt->saved_read_pos < pt->saved_read_end))
279 return SCM_BOOL_T;
280 else
281 {
282 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
283
284 if (ptob->input_waiting)
285 return scm_from_bool(ptob->input_waiting (port));
286 else
287 return SCM_BOOL_T;
288 }
289 }
290 #undef FUNC_NAME
291
292 /* Move up to READ_LEN bytes from PORT's putback and/or read buffers
293 into memory starting at DEST. Return the number of bytes moved.
294 PORT's line/column numbers are left unchanged. */
295 size_t
296 scm_take_from_input_buffers (SCM port, char *dest, size_t read_len)
297 {
298 scm_t_port *pt = SCM_PTAB_ENTRY (port);
299 size_t bytes_read = 0;
300 size_t from_buf = min (pt->read_end - pt->read_pos, read_len);
301
302 if (from_buf > 0)
303 {
304 memcpy (dest, pt->read_pos, from_buf);
305 pt->read_pos += from_buf;
306 bytes_read += from_buf;
307 read_len -= from_buf;
308 dest += from_buf;
309 }
310
311 /* if putback was active, try the real input buffer too. */
312 if (pt->read_buf == pt->putback_buf)
313 {
314 from_buf = min (pt->saved_read_end - pt->saved_read_pos, read_len);
315 if (from_buf > 0)
316 {
317 memcpy (dest, pt->saved_read_pos, from_buf);
318 pt->saved_read_pos += from_buf;
319 bytes_read += from_buf;
320 }
321 }
322
323 return bytes_read;
324 }
325
326 /* Clear a port's read buffers, returning the contents. */
327 SCM_DEFINE (scm_drain_input, "drain-input", 1, 0, 0,
328 (SCM port),
329 "This procedure clears a port's input buffers, similar\n"
330 "to the way that force-output clears the output buffer. The\n"
331 "contents of the buffers are returned as a single string, e.g.,\n"
332 "\n"
333 "@lisp\n"
334 "(define p (open-input-file ...))\n"
335 "(drain-input p) => empty string, nothing buffered yet.\n"
336 "(unread-char (read-char p) p)\n"
337 "(drain-input p) => initial chars from p, up to the buffer size.\n"
338 "@end lisp\n\n"
339 "Draining the buffers may be useful for cleanly finishing\n"
340 "buffered I/O so that the file descriptor can be used directly\n"
341 "for further input.")
342 #define FUNC_NAME s_scm_drain_input
343 {
344 SCM result;
345 char *data;
346 scm_t_port *pt;
347 long count;
348
349 SCM_VALIDATE_OPINPORT (1, port);
350 pt = SCM_PTAB_ENTRY (port);
351
352 count = pt->read_end - pt->read_pos;
353 if (pt->read_buf == pt->putback_buf)
354 count += pt->saved_read_end - pt->saved_read_pos;
355
356 if (count)
357 {
358 result = scm_i_make_string (count, &data, 0);
359 scm_take_from_input_buffers (port, data, count);
360 }
361 else
362 result = scm_nullstr;
363
364 return result;
365 }
366 #undef FUNC_NAME
367
368 \f
369 /* Standard ports --- current input, output, error, and more(!). */
370
371 static SCM cur_inport_fluid = SCM_BOOL_F;
372 static SCM cur_outport_fluid = SCM_BOOL_F;
373 static SCM cur_errport_fluid = SCM_BOOL_F;
374 static SCM cur_loadport_fluid = SCM_BOOL_F;
375
376 SCM_DEFINE (scm_current_input_port, "current-input-port", 0, 0, 0,
377 (),
378 "Return the current input port. This is the default port used\n"
379 "by many input procedures. Initially, @code{current-input-port}\n"
380 "returns the @dfn{standard input} in Unix and C terminology.")
381 #define FUNC_NAME s_scm_current_input_port
382 {
383 if (scm_is_true (cur_inport_fluid))
384 return scm_fluid_ref (cur_inport_fluid);
385 else
386 return SCM_BOOL_F;
387 }
388 #undef FUNC_NAME
389
390 SCM_DEFINE (scm_current_output_port, "current-output-port", 0, 0, 0,
391 (),
392 "Return the current output port. This is the default port used\n"
393 "by many output procedures. Initially,\n"
394 "@code{current-output-port} returns the @dfn{standard output} in\n"
395 "Unix and C terminology.")
396 #define FUNC_NAME s_scm_current_output_port
397 {
398 if (scm_is_true (cur_outport_fluid))
399 return scm_fluid_ref (cur_outport_fluid);
400 else
401 return SCM_BOOL_F;
402 }
403 #undef FUNC_NAME
404
405 SCM_DEFINE (scm_current_error_port, "current-error-port", 0, 0, 0,
406 (),
407 "Return the port to which errors and warnings should be sent (the\n"
408 "@dfn{standard error} in Unix and C terminology).")
409 #define FUNC_NAME s_scm_current_error_port
410 {
411 if (scm_is_true (cur_errport_fluid))
412 return scm_fluid_ref (cur_errport_fluid);
413 else
414 return SCM_BOOL_F;
415 }
416 #undef FUNC_NAME
417
418 SCM
419 scm_current_warning_port (void)
420 {
421 static SCM cwp_var = SCM_BOOL_F;
422
423 if (scm_is_false (cwp_var))
424 cwp_var = scm_c_private_lookup ("guile", "current-warning-port");
425
426 return scm_call_0 (scm_variable_ref (cwp_var));
427 }
428
429 SCM_DEFINE (scm_current_load_port, "current-load-port", 0, 0, 0,
430 (),
431 "Return the current-load-port.\n"
432 "The load port is used internally by @code{primitive-load}.")
433 #define FUNC_NAME s_scm_current_load_port
434 {
435 return scm_fluid_ref (cur_loadport_fluid);
436 }
437 #undef FUNC_NAME
438
439 SCM_DEFINE (scm_set_current_input_port, "set-current-input-port", 1, 0, 0,
440 (SCM port),
441 "@deffnx {Scheme Procedure} set-current-output-port port\n"
442 "@deffnx {Scheme Procedure} set-current-error-port port\n"
443 "Change the ports returned by @code{current-input-port},\n"
444 "@code{current-output-port} and @code{current-error-port}, respectively,\n"
445 "so that they use the supplied @var{port} for input or output.")
446 #define FUNC_NAME s_scm_set_current_input_port
447 {
448 SCM oinp = scm_fluid_ref (cur_inport_fluid);
449 SCM_VALIDATE_OPINPORT (1, port);
450 scm_fluid_set_x (cur_inport_fluid, port);
451 return oinp;
452 }
453 #undef FUNC_NAME
454
455
456 SCM_DEFINE (scm_set_current_output_port, "set-current-output-port", 1, 0, 0,
457 (SCM port),
458 "Set the current default output port to @var{port}.")
459 #define FUNC_NAME s_scm_set_current_output_port
460 {
461 SCM ooutp = scm_fluid_ref (cur_outport_fluid);
462 port = SCM_COERCE_OUTPORT (port);
463 SCM_VALIDATE_OPOUTPORT (1, port);
464 scm_fluid_set_x (cur_outport_fluid, port);
465 return ooutp;
466 }
467 #undef FUNC_NAME
468
469
470 SCM_DEFINE (scm_set_current_error_port, "set-current-error-port", 1, 0, 0,
471 (SCM port),
472 "Set the current default error port to @var{port}.")
473 #define FUNC_NAME s_scm_set_current_error_port
474 {
475 SCM oerrp = scm_fluid_ref (cur_errport_fluid);
476 port = SCM_COERCE_OUTPORT (port);
477 SCM_VALIDATE_OPOUTPORT (1, port);
478 scm_fluid_set_x (cur_errport_fluid, port);
479 return oerrp;
480 }
481 #undef FUNC_NAME
482
483
484 SCM
485 scm_set_current_warning_port (SCM port)
486 {
487 static SCM cwp_var = SCM_BOOL_F;
488
489 if (scm_is_false (cwp_var))
490 cwp_var = scm_c_private_lookup ("guile", "current-warning-port");
491
492 return scm_call_1 (scm_variable_ref (cwp_var), port);
493 }
494
495
496 void
497 scm_dynwind_current_input_port (SCM port)
498 #define FUNC_NAME NULL
499 {
500 SCM_VALIDATE_OPINPORT (1, port);
501 scm_dynwind_fluid (cur_inport_fluid, port);
502 }
503 #undef FUNC_NAME
504
505 void
506 scm_dynwind_current_output_port (SCM port)
507 #define FUNC_NAME NULL
508 {
509 port = SCM_COERCE_OUTPORT (port);
510 SCM_VALIDATE_OPOUTPORT (1, port);
511 scm_dynwind_fluid (cur_outport_fluid, port);
512 }
513 #undef FUNC_NAME
514
515 void
516 scm_dynwind_current_error_port (SCM port)
517 #define FUNC_NAME NULL
518 {
519 port = SCM_COERCE_OUTPORT (port);
520 SCM_VALIDATE_OPOUTPORT (1, port);
521 scm_dynwind_fluid (cur_errport_fluid, port);
522 }
523 #undef FUNC_NAME
524
525 void
526 scm_i_dynwind_current_load_port (SCM port)
527 {
528 scm_dynwind_fluid (cur_loadport_fluid, port);
529 }
530
531 \f
532 /* The port table --- an array of pointers to ports. */
533
534 /*
535 We need a global registry of ports to flush them all at exit, and to
536 get all the ports matching a file descriptor. The associated values
537 are alists, where additional information can be associated with ports.
538 */
539 SCM scm_i_port_weak_hash;
540
541 scm_i_pthread_mutex_t scm_i_port_table_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
542
543 \f
544 /* Port finalization. */
545
546
547 static void finalize_port (void *, void *);
548
549 /* Register a finalizer for PORT. */
550 static SCM_C_INLINE_KEYWORD void
551 register_finalizer_for_port (SCM port)
552 {
553 /* Register a finalizer for PORT so that its iconv CDs get freed and
554 optionally its type's `free' function gets called. */
555 scm_i_set_finalizer (SCM2PTR (port), finalize_port, NULL);
556 }
557
558 /* Finalize the object (a port) pointed to by PTR. */
559 static void
560 finalize_port (void *ptr, void *data)
561 {
562 long port_type;
563 SCM port = PTR2SCM (ptr);
564
565 if (!SCM_PORTP (port))
566 abort ();
567
568 if (SCM_OPENP (port))
569 {
570 if (SCM_REVEALED (port) > 0)
571 /* Keep "revealed" ports alive and re-register a finalizer. */
572 register_finalizer_for_port (port);
573 else
574 {
575 scm_t_port *entry;
576
577 port_type = SCM_TC2PTOBNUM (SCM_CELL_TYPE (port));
578 if (port_type >= scm_numptob)
579 abort ();
580
581 if (scm_ptobs[port_type].free)
582 /* Yes, I really do mean `.free' rather than `.close'. `.close'
583 is for explicit `close-port' by user. */
584 scm_ptobs[port_type].free (port);
585
586 entry = SCM_PTAB_ENTRY (port);
587
588 if (entry->input_cd != (iconv_t) -1)
589 iconv_close (entry->input_cd);
590 if (entry->output_cd != (iconv_t) -1)
591 iconv_close (entry->output_cd);
592
593 SCM_SETSTREAM (port, 0);
594 SCM_CLR_PORT_OPEN_FLAG (port);
595
596 scm_gc_ports_collected++;
597 }
598 }
599 }
600
601
602
603 \f
604
605 /* This function is not and should not be thread safe. */
606 SCM
607 scm_new_port_table_entry (scm_t_bits tag)
608 #define FUNC_NAME "scm_new_port_table_entry"
609 {
610 /*
611 We initialize the cell to empty, this is in case scm_gc_calloc
612 triggers GC ; we don't want the GC to scan a half-finished Z.
613 */
614
615 SCM z = scm_cons (SCM_EOL, SCM_EOL);
616 scm_t_port *entry = (scm_t_port *) scm_gc_calloc (sizeof (scm_t_port), "port");
617 const char *enc;
618
619 entry->file_name = SCM_BOOL_F;
620 entry->rw_active = SCM_PORT_NEITHER;
621 entry->port = z;
622
623 /* Initialize this port with the thread's current default
624 encoding. */
625 enc = scm_i_default_port_encoding ();
626 entry->encoding = enc ? scm_gc_strdup (enc, "port") : NULL;
627
628 /* The conversion descriptors will be opened lazily. */
629 entry->input_cd = (iconv_t) -1;
630 entry->output_cd = (iconv_t) -1;
631
632 entry->ilseq_handler = scm_i_default_port_conversion_handler ();
633
634 SCM_SET_CELL_TYPE (z, tag);
635 SCM_SETPTAB_ENTRY (z, entry);
636
637 scm_hashq_set_x (scm_i_port_weak_hash, z, SCM_EOL);
638
639 /* For each new port, register a finalizer so that it port type's free
640 function can be invoked eventually. */
641 register_finalizer_for_port (z);
642
643 return z;
644 }
645 #undef FUNC_NAME
646
647 #if SCM_ENABLE_DEPRECATED==1
648 scm_t_port *
649 scm_add_to_port_table (SCM port)
650 {
651 SCM z;
652 scm_t_port * pt;
653
654 scm_c_issue_deprecation_warning ("scm_add_to_port_table is deprecated.");
655
656 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
657 z = scm_new_port_table_entry (scm_tc7_port);
658 pt = SCM_PTAB_ENTRY(z);
659 pt->port = port;
660 SCM_SETCAR (z, SCM_EOL);
661 SCM_SETCDR (z, SCM_EOL);
662 SCM_SETPTAB_ENTRY (port, pt);
663 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
664
665 return pt;
666 }
667 #endif
668
669
670 /* Remove a port from the table and destroy it. */
671
672 static void
673 scm_i_remove_port (SCM port)
674 #define FUNC_NAME "scm_remove_port"
675 {
676 scm_t_port *p;
677
678 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
679
680 p = SCM_PTAB_ENTRY (port);
681 scm_port_non_buffer (p);
682 p->putback_buf = NULL;
683 p->putback_buf_size = 0;
684
685 if (p->input_cd != (iconv_t) -1)
686 {
687 iconv_close (p->input_cd);
688 p->input_cd = (iconv_t) -1;
689 }
690
691 if (p->output_cd != (iconv_t) -1)
692 {
693 iconv_close (p->output_cd);
694 p->output_cd = (iconv_t) -1;
695 }
696
697 SCM_SETPTAB_ENTRY (port, 0);
698
699 scm_hashq_remove_x (scm_i_port_weak_hash, port);
700
701 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
702 }
703 #undef FUNC_NAME
704
705
706 /* Functions for debugging. */
707 #ifdef GUILE_DEBUG
708 SCM_DEFINE (scm_pt_size, "pt-size", 0, 0, 0,
709 (),
710 "Return the number of ports in the port table. @code{pt-size}\n"
711 "is only included in @code{--enable-guile-debug} builds.")
712 #define FUNC_NAME s_scm_pt_size
713 {
714 return scm_from_int (SCM_HASHTABLE_N_ITEMS (scm_i_port_weak_hash));
715 }
716 #undef FUNC_NAME
717 #endif
718
719 void
720 scm_port_non_buffer (scm_t_port *pt)
721 {
722 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
723 pt->write_buf = pt->write_pos = &pt->shortbuf;
724 pt->read_buf_size = pt->write_buf_size = 1;
725 pt->write_end = pt->write_buf + pt->write_buf_size;
726 }
727
728 \f
729 /* Revealed counts --- an oddity inherited from SCSH. */
730
731 /* Find a port in the table and return its revealed count.
732 Also used by the garbage collector.
733 */
734
735 int
736 scm_revealed_count (SCM port)
737 {
738 return SCM_REVEALED(port);
739 }
740
741
742
743 /* Return the revealed count for a port. */
744
745 SCM_DEFINE (scm_port_revealed, "port-revealed", 1, 0, 0,
746 (SCM port),
747 "Return the revealed count for @var{port}.")
748 #define FUNC_NAME s_scm_port_revealed
749 {
750 port = SCM_COERCE_OUTPORT (port);
751 SCM_VALIDATE_OPENPORT (1, port);
752 return scm_from_int (scm_revealed_count (port));
753 }
754 #undef FUNC_NAME
755
756 /* Set the revealed count for a port. */
757 SCM_DEFINE (scm_set_port_revealed_x, "set-port-revealed!", 2, 0, 0,
758 (SCM port, SCM rcount),
759 "Sets the revealed count for a port to a given value.\n"
760 "The return value is unspecified.")
761 #define FUNC_NAME s_scm_set_port_revealed_x
762 {
763 port = SCM_COERCE_OUTPORT (port);
764 SCM_VALIDATE_OPENPORT (1, port);
765 SCM_REVEALED (port) = scm_to_int (rcount);
766 return SCM_UNSPECIFIED;
767 }
768 #undef FUNC_NAME
769
770
771 \f
772 /* Retrieving a port's mode. */
773
774 /* Return the flags that characterize a port based on the mode
775 * string used to open a file for that port.
776 *
777 * See PORT FLAGS in scm.h
778 */
779
780 static long
781 scm_i_mode_bits_n (SCM modes)
782 {
783 return (SCM_OPN
784 | (scm_i_string_contains_char (modes, 'r')
785 || scm_i_string_contains_char (modes, '+') ? SCM_RDNG : 0)
786 | (scm_i_string_contains_char (modes, 'w')
787 || scm_i_string_contains_char (modes, 'a')
788 || scm_i_string_contains_char (modes, '+') ? SCM_WRTNG : 0)
789 | (scm_i_string_contains_char (modes, '0') ? SCM_BUF0 : 0)
790 | (scm_i_string_contains_char (modes, 'l') ? SCM_BUFLINE : 0));
791 }
792
793 long
794 scm_mode_bits (char *modes)
795 {
796 return scm_i_mode_bits (scm_from_locale_string (modes));
797 }
798
799 long
800 scm_i_mode_bits (SCM modes)
801 {
802 long bits;
803
804 if (!scm_is_string (modes))
805 scm_wrong_type_arg_msg (NULL, 0, modes, "string");
806
807 bits = scm_i_mode_bits_n (modes);
808 scm_remember_upto_here_1 (modes);
809 return bits;
810 }
811
812 /* Return the mode flags from an open port.
813 * Some modes such as "append" are only used when opening
814 * a file and are not returned here. */
815
816 SCM_DEFINE (scm_port_mode, "port-mode", 1, 0, 0,
817 (SCM port),
818 "Return the port modes associated with the open port @var{port}.\n"
819 "These will not necessarily be identical to the modes used when\n"
820 "the port was opened, since modes such as \"append\" which are\n"
821 "used only during port creation are not retained.")
822 #define FUNC_NAME s_scm_port_mode
823 {
824 char modes[4];
825 modes[0] = '\0';
826
827 port = SCM_COERCE_OUTPORT (port);
828 SCM_VALIDATE_OPPORT (1, port);
829 if (SCM_CELL_WORD_0 (port) & SCM_RDNG) {
830 if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
831 strcpy (modes, "r+");
832 else
833 strcpy (modes, "r");
834 }
835 else if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
836 strcpy (modes, "w");
837 if (SCM_CELL_WORD_0 (port) & SCM_BUF0)
838 strcat (modes, "0");
839 return scm_from_locale_string (modes);
840 }
841 #undef FUNC_NAME
842
843
844 \f
845 /* Closing ports. */
846
847 /* scm_close_port
848 * Call the close operation on a port object.
849 * see also scm_close.
850 */
851 SCM_DEFINE (scm_close_port, "close-port", 1, 0, 0,
852 (SCM port),
853 "Close the specified port object. Return @code{#t} if it\n"
854 "successfully closes a port or @code{#f} if it was already\n"
855 "closed. An exception may be raised if an error occurs, for\n"
856 "example when flushing buffered output. See also @ref{Ports and\n"
857 "File Descriptors, close}, for a procedure which can close file\n"
858 "descriptors.")
859 #define FUNC_NAME s_scm_close_port
860 {
861 size_t i;
862 int rv;
863
864 port = SCM_COERCE_OUTPORT (port);
865
866 SCM_VALIDATE_PORT (1, port);
867 if (SCM_CLOSEDP (port))
868 return SCM_BOOL_F;
869 i = SCM_PTOBNUM (port);
870 if (scm_ptobs[i].close)
871 rv = (scm_ptobs[i].close) (port);
872 else
873 rv = 0;
874 scm_i_remove_port (port);
875 SCM_CLR_PORT_OPEN_FLAG (port);
876 return scm_from_bool (rv >= 0);
877 }
878 #undef FUNC_NAME
879
880 SCM_DEFINE (scm_close_input_port, "close-input-port", 1, 0, 0,
881 (SCM port),
882 "Close the specified input port object. The routine has no effect if\n"
883 "the file has already been closed. An exception may be raised if an\n"
884 "error occurs. The value returned is unspecified.\n\n"
885 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
886 "which can close file descriptors.")
887 #define FUNC_NAME s_scm_close_input_port
888 {
889 SCM_VALIDATE_INPUT_PORT (1, port);
890 scm_close_port (port);
891 return SCM_UNSPECIFIED;
892 }
893 #undef FUNC_NAME
894
895 SCM_DEFINE (scm_close_output_port, "close-output-port", 1, 0, 0,
896 (SCM port),
897 "Close the specified output port object. The routine has no effect if\n"
898 "the file has already been closed. An exception may be raised if an\n"
899 "error occurs. The value returned is unspecified.\n\n"
900 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
901 "which can close file descriptors.")
902 #define FUNC_NAME s_scm_close_output_port
903 {
904 port = SCM_COERCE_OUTPORT (port);
905 SCM_VALIDATE_OUTPUT_PORT (1, port);
906 scm_close_port (port);
907 return SCM_UNSPECIFIED;
908 }
909 #undef FUNC_NAME
910
911 static SCM
912 collect_keys (void *unused, SCM key, SCM value, SCM result)
913 {
914 return scm_cons (key, result);
915 }
916
917 void
918 scm_c_port_for_each (void (*proc)(void *data, SCM p), void *data)
919 {
920 SCM ports;
921
922 /* Copy out the port table as a list so that we get strong references
923 to all the values. */
924 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
925 ports = scm_internal_hash_fold (collect_keys, NULL,
926 SCM_EOL, scm_i_port_weak_hash);
927 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
928
929 for (; scm_is_pair (ports); ports = scm_cdr (ports))
930 {
931 SCM p = scm_car (ports);
932 if (SCM_PORTP (p))
933 proc (data, p);
934 }
935 }
936
937 SCM_DEFINE (scm_port_for_each, "port-for-each", 1, 0, 0,
938 (SCM proc),
939 "Apply @var{proc} to each port in the Guile port table\n"
940 "in turn. The return value is unspecified. More specifically,\n"
941 "@var{proc} is applied exactly once to every port that exists\n"
942 "in the system at the time @code{port-for-each} is invoked.\n"
943 "Changes to the port table while @code{port-for-each} is running\n"
944 "have no effect as far as @code{port-for-each} is concerned.")
945 #define FUNC_NAME s_scm_port_for_each
946 {
947 SCM ports;
948
949 SCM_VALIDATE_PROC (1, proc);
950
951 /* Copy out the port table as a list so that we get strong references
952 to all the values. */
953 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
954 ports = scm_internal_hash_fold (collect_keys, NULL,
955 SCM_EOL, scm_i_port_weak_hash);
956 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
957
958 for (; scm_is_pair (ports); ports = scm_cdr (ports))
959 if (SCM_PORTP (SCM_CAR (ports)))
960 scm_call_1 (proc, SCM_CAR (ports));
961
962 return SCM_UNSPECIFIED;
963 }
964 #undef FUNC_NAME
965
966
967 \f
968 /* Utter miscellany. Gosh, we should clean this up some time. */
969
970 SCM_DEFINE (scm_input_port_p, "input-port?", 1, 0, 0,
971 (SCM x),
972 "Return @code{#t} if @var{x} is an input port, otherwise return\n"
973 "@code{#f}. Any object satisfying this predicate also satisfies\n"
974 "@code{port?}.")
975 #define FUNC_NAME s_scm_input_port_p
976 {
977 return scm_from_bool (SCM_INPUT_PORT_P (x));
978 }
979 #undef FUNC_NAME
980
981 SCM_DEFINE (scm_output_port_p, "output-port?", 1, 0, 0,
982 (SCM x),
983 "Return @code{#t} if @var{x} is an output port, otherwise return\n"
984 "@code{#f}. Any object satisfying this predicate also satisfies\n"
985 "@code{port?}.")
986 #define FUNC_NAME s_scm_output_port_p
987 {
988 x = SCM_COERCE_OUTPORT (x);
989 return scm_from_bool (SCM_OUTPUT_PORT_P (x));
990 }
991 #undef FUNC_NAME
992
993 SCM_DEFINE (scm_port_p, "port?", 1, 0, 0,
994 (SCM x),
995 "Return a boolean indicating whether @var{x} is a port.\n"
996 "Equivalent to @code{(or (input-port? @var{x}) (output-port?\n"
997 "@var{x}))}.")
998 #define FUNC_NAME s_scm_port_p
999 {
1000 return scm_from_bool (SCM_PORTP (x));
1001 }
1002 #undef FUNC_NAME
1003
1004 SCM_DEFINE (scm_port_closed_p, "port-closed?", 1, 0, 0,
1005 (SCM port),
1006 "Return @code{#t} if @var{port} is closed or @code{#f} if it is\n"
1007 "open.")
1008 #define FUNC_NAME s_scm_port_closed_p
1009 {
1010 SCM_VALIDATE_PORT (1, port);
1011 return scm_from_bool (!SCM_OPPORTP (port));
1012 }
1013 #undef FUNC_NAME
1014
1015 SCM_DEFINE (scm_eof_object_p, "eof-object?", 1, 0, 0,
1016 (SCM x),
1017 "Return @code{#t} if @var{x} is an end-of-file object; otherwise\n"
1018 "return @code{#f}.")
1019 #define FUNC_NAME s_scm_eof_object_p
1020 {
1021 return scm_from_bool(SCM_EOF_OBJECT_P (x));
1022 }
1023 #undef FUNC_NAME
1024
1025 SCM_DEFINE (scm_force_output, "force-output", 0, 1, 0,
1026 (SCM port),
1027 "Flush the specified output port, or the current output port if @var{port}\n"
1028 "is omitted. The current output buffer contents are passed to the\n"
1029 "underlying port implementation (e.g., in the case of fports, the\n"
1030 "data will be written to the file and the output buffer will be cleared.)\n"
1031 "It has no effect on an unbuffered port.\n\n"
1032 "The return value is unspecified.")
1033 #define FUNC_NAME s_scm_force_output
1034 {
1035 if (SCM_UNBNDP (port))
1036 port = scm_current_output_port ();
1037 else
1038 {
1039 port = SCM_COERCE_OUTPORT (port);
1040 SCM_VALIDATE_OPOUTPORT (1, port);
1041 }
1042 scm_flush (port);
1043 return SCM_UNSPECIFIED;
1044 }
1045 #undef FUNC_NAME
1046
1047
1048 static void
1049 flush_output_port (void *closure, SCM port)
1050 {
1051 if (SCM_OPOUTPORTP (port))
1052 scm_flush (port);
1053 }
1054
1055 SCM_DEFINE (scm_flush_all_ports, "flush-all-ports", 0, 0, 0,
1056 (),
1057 "Equivalent to calling @code{force-output} on\n"
1058 "all open output ports. The return value is unspecified.")
1059 #define FUNC_NAME s_scm_flush_all_ports
1060 {
1061 scm_c_port_for_each (&flush_output_port, NULL);
1062 return SCM_UNSPECIFIED;
1063 }
1064 #undef FUNC_NAME
1065
1066 SCM_DEFINE (scm_read_char, "read-char", 0, 1, 0,
1067 (SCM port),
1068 "Return the next character available from @var{port}, updating\n"
1069 "@var{port} to point to the following character. If no more\n"
1070 "characters are available, the end-of-file object is returned.\n"
1071 "\n"
1072 "When @var{port}'s data cannot be decoded according to its\n"
1073 "character encoding, a @code{decoding-error} is raised and\n"
1074 "@var{port} points past the erroneous byte sequence.\n")
1075 #define FUNC_NAME s_scm_read_char
1076 {
1077 scm_t_wchar c;
1078 if (SCM_UNBNDP (port))
1079 port = scm_current_input_port ();
1080 SCM_VALIDATE_OPINPORT (1, port);
1081 c = scm_getc (port);
1082 if (EOF == c)
1083 return SCM_EOF_VAL;
1084 return SCM_MAKE_CHAR (c);
1085 }
1086 #undef FUNC_NAME
1087
1088 /* Update the line and column number of PORT after consumption of C. */
1089 static inline void
1090 update_port_lf (scm_t_wchar c, SCM port)
1091 {
1092 switch (c)
1093 {
1094 case '\a':
1095 case EOF:
1096 break;
1097 case '\b':
1098 SCM_DECCOL (port);
1099 break;
1100 case '\n':
1101 SCM_INCLINE (port);
1102 break;
1103 case '\r':
1104 SCM_ZEROCOL (port);
1105 break;
1106 case '\t':
1107 SCM_TABCOL (port);
1108 break;
1109 default:
1110 SCM_INCCOL (port);
1111 break;
1112 }
1113 }
1114
1115 #define SCM_MBCHAR_BUF_SIZE (4)
1116
1117 /* Convert the SIZE-byte UTF-8 sequence in UTF8_BUF to a codepoint.
1118 UTF8_BUF is assumed to contain a valid UTF-8 sequence. */
1119 static scm_t_wchar
1120 utf8_to_codepoint (const scm_t_uint8 *utf8_buf, size_t size)
1121 {
1122 scm_t_wchar codepoint;
1123
1124 if (utf8_buf[0] <= 0x7f)
1125 {
1126 assert (size == 1);
1127 codepoint = utf8_buf[0];
1128 }
1129 else if ((utf8_buf[0] & 0xe0) == 0xc0)
1130 {
1131 assert (size == 2);
1132 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x1f) << 6UL
1133 | (utf8_buf[1] & 0x3f);
1134 }
1135 else if ((utf8_buf[0] & 0xf0) == 0xe0)
1136 {
1137 assert (size == 3);
1138 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x0f) << 12UL
1139 | ((scm_t_wchar) utf8_buf[1] & 0x3f) << 6UL
1140 | (utf8_buf[2] & 0x3f);
1141 }
1142 else
1143 {
1144 assert (size == 4);
1145 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x07) << 18UL
1146 | ((scm_t_wchar) utf8_buf[1] & 0x3f) << 12UL
1147 | ((scm_t_wchar) utf8_buf[2] & 0x3f) << 6UL
1148 | (utf8_buf[3] & 0x3f);
1149 }
1150
1151 return codepoint;
1152 }
1153
1154 /* Read a UTF-8 sequence from PORT. On success, return 0 and set
1155 *CODEPOINT to the codepoint that was read, fill BUF with its UTF-8
1156 representation, and set *LEN to the length in bytes. Return
1157 `EILSEQ' on error. */
1158 static int
1159 get_utf8_codepoint (SCM port, scm_t_wchar *codepoint,
1160 scm_t_uint8 buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1161 {
1162 #define ASSERT_NOT_EOF(b) \
1163 if (SCM_UNLIKELY ((b) == EOF)) \
1164 goto invalid_seq
1165 #define CONSUME_PEEKED_BYTE() \
1166 pt->read_pos++
1167
1168 int byte;
1169 scm_t_port *pt;
1170
1171 *len = 0;
1172 pt = SCM_PTAB_ENTRY (port);
1173
1174 byte = scm_get_byte_or_eof (port);
1175 if (byte == EOF)
1176 {
1177 *codepoint = EOF;
1178 return 0;
1179 }
1180
1181 buf[0] = (scm_t_uint8) byte;
1182 *len = 1;
1183
1184 if (buf[0] <= 0x7f)
1185 /* 1-byte form. */
1186 *codepoint = buf[0];
1187 else if (buf[0] >= 0xc2 && buf[0] <= 0xdf)
1188 {
1189 /* 2-byte form. */
1190 byte = scm_peek_byte_or_eof (port);
1191 ASSERT_NOT_EOF (byte);
1192
1193 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1194 goto invalid_seq;
1195
1196 CONSUME_PEEKED_BYTE ();
1197 buf[1] = (scm_t_uint8) byte;
1198 *len = 2;
1199
1200 *codepoint = ((scm_t_wchar) buf[0] & 0x1f) << 6UL
1201 | (buf[1] & 0x3f);
1202 }
1203 else if ((buf[0] & 0xf0) == 0xe0)
1204 {
1205 /* 3-byte form. */
1206 byte = scm_peek_byte_or_eof (port);
1207 ASSERT_NOT_EOF (byte);
1208
1209 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80
1210 || (buf[0] == 0xe0 && byte < 0xa0)
1211 || (buf[0] == 0xed && byte > 0x9f)))
1212 goto invalid_seq;
1213
1214 CONSUME_PEEKED_BYTE ();
1215 buf[1] = (scm_t_uint8) byte;
1216 *len = 2;
1217
1218 byte = scm_peek_byte_or_eof (port);
1219 ASSERT_NOT_EOF (byte);
1220
1221 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1222 goto invalid_seq;
1223
1224 CONSUME_PEEKED_BYTE ();
1225 buf[2] = (scm_t_uint8) byte;
1226 *len = 3;
1227
1228 *codepoint = ((scm_t_wchar) buf[0] & 0x0f) << 12UL
1229 | ((scm_t_wchar) buf[1] & 0x3f) << 6UL
1230 | (buf[2] & 0x3f);
1231 }
1232 else if (buf[0] >= 0xf0 && buf[0] <= 0xf4)
1233 {
1234 /* 4-byte form. */
1235 byte = scm_peek_byte_or_eof (port);
1236 ASSERT_NOT_EOF (byte);
1237
1238 if (SCM_UNLIKELY (((byte & 0xc0) != 0x80)
1239 || (buf[0] == 0xf0 && byte < 0x90)
1240 || (buf[0] == 0xf4 && byte > 0x8f)))
1241 goto invalid_seq;
1242
1243 CONSUME_PEEKED_BYTE ();
1244 buf[1] = (scm_t_uint8) byte;
1245 *len = 2;
1246
1247 byte = scm_peek_byte_or_eof (port);
1248 ASSERT_NOT_EOF (byte);
1249
1250 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1251 goto invalid_seq;
1252
1253 CONSUME_PEEKED_BYTE ();
1254 buf[2] = (scm_t_uint8) byte;
1255 *len = 3;
1256
1257 byte = scm_peek_byte_or_eof (port);
1258 ASSERT_NOT_EOF (byte);
1259
1260 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1261 goto invalid_seq;
1262
1263 CONSUME_PEEKED_BYTE ();
1264 buf[3] = (scm_t_uint8) byte;
1265 *len = 4;
1266
1267 *codepoint = ((scm_t_wchar) buf[0] & 0x07) << 18UL
1268 | ((scm_t_wchar) buf[1] & 0x3f) << 12UL
1269 | ((scm_t_wchar) buf[2] & 0x3f) << 6UL
1270 | (buf[3] & 0x3f);
1271 }
1272 else
1273 goto invalid_seq;
1274
1275 return 0;
1276
1277 invalid_seq:
1278 /* Here we could choose the consume the faulty byte when it's not a
1279 valid starting byte, but it's not a requirement. What Section 3.9
1280 of Unicode 6.0.0 mandates, though, is to not consume a byte that
1281 would otherwise be a valid starting byte. */
1282
1283 return EILSEQ;
1284
1285 #undef CONSUME_PEEKED_BYTE
1286 #undef ASSERT_NOT_EOF
1287 }
1288
1289 /* Likewise, read a byte sequence from PORT, passing it through its
1290 input conversion descriptor. */
1291 static int
1292 get_iconv_codepoint (SCM port, scm_t_wchar *codepoint,
1293 char buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1294 {
1295 scm_t_port *pt;
1296 int err, byte_read;
1297 size_t bytes_consumed, output_size;
1298 char *output;
1299 scm_t_uint8 utf8_buf[SCM_MBCHAR_BUF_SIZE];
1300
1301 pt = SCM_PTAB_ENTRY (port);
1302
1303 for (output_size = 0, output = (char *) utf8_buf,
1304 bytes_consumed = 0, err = 0;
1305 err == 0 && output_size == 0
1306 && (bytes_consumed == 0 || byte_read != EOF);
1307 bytes_consumed++)
1308 {
1309 char *input;
1310 size_t input_left, output_left, done;
1311
1312 byte_read = scm_get_byte_or_eof (port);
1313 if (byte_read == EOF)
1314 {
1315 if (bytes_consumed == 0)
1316 {
1317 *codepoint = (scm_t_wchar) EOF;
1318 *len = 0;
1319 return 0;
1320 }
1321 else
1322 continue;
1323 }
1324
1325 buf[bytes_consumed] = byte_read;
1326
1327 input = buf;
1328 input_left = bytes_consumed + 1;
1329 output_left = sizeof (utf8_buf);
1330
1331 done = iconv (pt->input_cd, &input, &input_left,
1332 &output, &output_left);
1333 if (done == (size_t) -1)
1334 {
1335 err = errno;
1336 if (err == EINVAL)
1337 /* Missing input: keep trying. */
1338 err = 0;
1339 }
1340 else
1341 output_size = sizeof (utf8_buf) - output_left;
1342 }
1343
1344 if (SCM_UNLIKELY (output_size == 0))
1345 /* An unterminated sequence. */
1346 err = EILSEQ;
1347 else if (SCM_LIKELY (err == 0))
1348 {
1349 /* Convert the UTF8_BUF sequence to a Unicode code point. */
1350 *codepoint = utf8_to_codepoint (utf8_buf, output_size);
1351 *len = bytes_consumed;
1352 }
1353
1354 return err;
1355 }
1356
1357 /* Read a codepoint from PORT and return it in *CODEPOINT. Fill BUF
1358 with the byte representation of the codepoint in PORT's encoding, and
1359 set *LEN to the length in bytes of that representation. Return 0 on
1360 success and an errno value on error. */
1361 static int
1362 get_codepoint (SCM port, scm_t_wchar *codepoint,
1363 char buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1364 {
1365 int err;
1366 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1367
1368 if (pt->input_cd == (iconv_t) -1)
1369 /* Initialize the conversion descriptors, if needed. */
1370 scm_i_set_port_encoding_x (port, pt->encoding);
1371
1372 /* FIXME: In 2.1, add a flag to determine whether a port is UTF-8. */
1373 if (pt->input_cd == (iconv_t) -1)
1374 err = get_utf8_codepoint (port, codepoint, (scm_t_uint8 *) buf, len);
1375 else
1376 err = get_iconv_codepoint (port, codepoint, buf, len);
1377
1378 if (SCM_LIKELY (err == 0))
1379 update_port_lf (*codepoint, port);
1380 else if (pt->ilseq_handler == SCM_ICONVEH_QUESTION_MARK)
1381 {
1382 *codepoint = '?';
1383 err = 0;
1384 update_port_lf (*codepoint, port);
1385 }
1386
1387 return err;
1388 }
1389
1390 /* Read a codepoint from PORT and return it. */
1391 scm_t_wchar
1392 scm_getc (SCM port)
1393 #define FUNC_NAME "scm_getc"
1394 {
1395 int err;
1396 size_t len;
1397 scm_t_wchar codepoint;
1398 char buf[SCM_MBCHAR_BUF_SIZE];
1399
1400 err = get_codepoint (port, &codepoint, buf, &len);
1401 if (SCM_UNLIKELY (err != 0))
1402 /* At this point PORT should point past the invalid encoding, as per
1403 R6RS-lib Section 8.2.4. */
1404 scm_decoding_error (FUNC_NAME, err, "input decoding error", port);
1405
1406 return codepoint;
1407 }
1408 #undef FUNC_NAME
1409
1410 /* this should only be called when the read buffer is empty. it
1411 tries to refill the read buffer. it returns the first char from
1412 the port, which is either EOF or *(pt->read_pos). */
1413 int
1414 scm_fill_input (SCM port)
1415 {
1416 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1417
1418 assert (pt->read_pos == pt->read_end);
1419
1420 if (pt->read_buf == pt->putback_buf)
1421 {
1422 /* finished reading put-back chars. */
1423 pt->read_buf = pt->saved_read_buf;
1424 pt->read_pos = pt->saved_read_pos;
1425 pt->read_end = pt->saved_read_end;
1426 pt->read_buf_size = pt->saved_read_buf_size;
1427 if (pt->read_pos < pt->read_end)
1428 return *(pt->read_pos);
1429 }
1430 return scm_ptobs[SCM_PTOBNUM (port)].fill_input (port);
1431 }
1432
1433
1434 /* scm_lfwrite
1435 *
1436 * This function differs from scm_c_write; it updates port line and
1437 * column. */
1438
1439 void
1440 scm_lfwrite (const char *ptr, size_t size, SCM port)
1441 {
1442 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1443 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
1444
1445 if (pt->rw_active == SCM_PORT_READ)
1446 scm_end_input (port);
1447
1448 ptob->write (port, ptr, size);
1449
1450 for (; size; ptr++, size--)
1451 update_port_lf ((scm_t_wchar) (unsigned char) *ptr, port);
1452
1453 if (pt->rw_random)
1454 pt->rw_active = SCM_PORT_WRITE;
1455 }
1456
1457 /* Write STR to PORT from START inclusive to END exclusive. */
1458 void
1459 scm_lfwrite_substr (SCM str, size_t start, size_t end, SCM port)
1460 {
1461 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1462
1463 if (pt->rw_active == SCM_PORT_READ)
1464 scm_end_input (port);
1465
1466 if (end == (size_t) -1)
1467 end = scm_i_string_length (str);
1468
1469 scm_i_display_substring (str, start, end, port);
1470
1471 if (pt->rw_random)
1472 pt->rw_active = SCM_PORT_WRITE;
1473 }
1474
1475 /* scm_c_read
1476 *
1477 * Used by an application to read arbitrary number of bytes from an
1478 * SCM port. Same semantics as libc read, except that scm_c_read only
1479 * returns less than SIZE bytes if at end-of-file.
1480 *
1481 * Warning: Doesn't update port line and column counts! */
1482
1483 /* This structure, and the following swap_buffer function, are used
1484 for temporarily swapping a port's own read buffer, and the buffer
1485 that the caller of scm_c_read provides. */
1486 struct port_and_swap_buffer
1487 {
1488 scm_t_port *pt;
1489 unsigned char *buffer;
1490 size_t size;
1491 };
1492
1493 static void
1494 swap_buffer (void *data)
1495 {
1496 struct port_and_swap_buffer *psb = (struct port_and_swap_buffer *) data;
1497 unsigned char *old_buf = psb->pt->read_buf;
1498 size_t old_size = psb->pt->read_buf_size;
1499
1500 /* Make the port use (buffer, size) from the struct. */
1501 psb->pt->read_pos = psb->pt->read_buf = psb->pt->read_end = psb->buffer;
1502 psb->pt->read_buf_size = psb->size;
1503
1504 /* Save the port's old (buffer, size) in the struct. */
1505 psb->buffer = old_buf;
1506 psb->size = old_size;
1507 }
1508
1509 size_t
1510 scm_c_read (SCM port, void *buffer, size_t size)
1511 #define FUNC_NAME "scm_c_read"
1512 {
1513 scm_t_port *pt;
1514 size_t n_read = 0, n_available;
1515 struct port_and_swap_buffer psb;
1516
1517 SCM_VALIDATE_OPINPORT (1, port);
1518
1519 pt = SCM_PTAB_ENTRY (port);
1520 if (pt->rw_active == SCM_PORT_WRITE)
1521 scm_ptobs[SCM_PTOBNUM (port)].flush (port);
1522
1523 if (pt->rw_random)
1524 pt->rw_active = SCM_PORT_READ;
1525
1526 /* Take bytes first from the port's read buffer. */
1527 if (pt->read_pos < pt->read_end)
1528 {
1529 n_available = min (size, pt->read_end - pt->read_pos);
1530 memcpy (buffer, pt->read_pos, n_available);
1531 buffer = (char *) buffer + n_available;
1532 pt->read_pos += n_available;
1533 n_read += n_available;
1534 size -= n_available;
1535 }
1536
1537 /* Avoid the scm_dynwind_* costs if we now have enough data. */
1538 if (size == 0)
1539 return n_read;
1540
1541 /* Now we will call scm_fill_input repeatedly until we have read the
1542 requested number of bytes. (Note that a single scm_fill_input
1543 call does not guarantee to fill the whole of the port's read
1544 buffer.) */
1545 if (pt->read_buf_size <= 1 && pt->encoding == NULL)
1546 {
1547 /* The port that we are reading from is unbuffered - i.e. does
1548 not have its own persistent buffer - but we have a buffer,
1549 provided by our caller, that is the right size for the data
1550 that is wanted. For the following scm_fill_input calls,
1551 therefore, we use the buffer in hand as the port's read
1552 buffer.
1553
1554 We need to make sure that the port's normal (1 byte) buffer
1555 is reinstated in case one of the scm_fill_input () calls
1556 throws an exception; we use the scm_dynwind_* API to achieve
1557 that.
1558
1559 A consequence of this optimization is that the fill_input
1560 functions can't unget characters. That'll push data to the
1561 pushback buffer instead of this psb buffer. */
1562 #if SCM_DEBUG == 1
1563 unsigned char *pback = pt->putback_buf;
1564 #endif
1565 psb.pt = pt;
1566 psb.buffer = buffer;
1567 psb.size = size;
1568 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
1569 scm_dynwind_rewind_handler (swap_buffer, &psb, SCM_F_WIND_EXPLICITLY);
1570 scm_dynwind_unwind_handler (swap_buffer, &psb, SCM_F_WIND_EXPLICITLY);
1571
1572 /* Call scm_fill_input until we have all the bytes that we need,
1573 or we hit EOF. */
1574 while (pt->read_buf_size && (scm_fill_input (port) != EOF))
1575 {
1576 pt->read_buf_size -= (pt->read_end - pt->read_pos);
1577 pt->read_pos = pt->read_buf = pt->read_end;
1578 }
1579 #if SCM_DEBUG == 1
1580 if (pback != pt->putback_buf
1581 || pt->read_buf - (unsigned char *) buffer < 0)
1582 scm_misc_error (FUNC_NAME,
1583 "scm_c_read must not call a fill function that pushes "
1584 "back characters onto an unbuffered port", SCM_EOL);
1585 #endif
1586 n_read += pt->read_buf - (unsigned char *) buffer;
1587
1588 /* Reinstate the port's normal buffer. */
1589 scm_dynwind_end ();
1590 }
1591 else
1592 {
1593 /* The port has its own buffer. It is important that we use it,
1594 even if it happens to be smaller than our caller's buffer, so
1595 that a custom port implementation's entry points (in
1596 particular, fill_input) can rely on the buffer always being
1597 the same as they first set up. */
1598 while (size && (scm_fill_input (port) != EOF))
1599 {
1600 n_available = min (size, pt->read_end - pt->read_pos);
1601 memcpy (buffer, pt->read_pos, n_available);
1602 buffer = (char *) buffer + n_available;
1603 pt->read_pos += n_available;
1604 n_read += n_available;
1605 size -= n_available;
1606 }
1607 }
1608
1609 return n_read;
1610 }
1611 #undef FUNC_NAME
1612
1613 /* scm_c_write
1614 *
1615 * Used by an application to write arbitrary number of bytes to an SCM
1616 * port. Similar semantics as libc write. However, unlike libc
1617 * write, scm_c_write writes the requested number of bytes and has no
1618 * return value.
1619 *
1620 * Warning: Doesn't update port line and column counts!
1621 */
1622
1623 void
1624 scm_c_write (SCM port, const void *ptr, size_t size)
1625 #define FUNC_NAME "scm_c_write"
1626 {
1627 scm_t_port *pt;
1628 scm_t_ptob_descriptor *ptob;
1629
1630 SCM_VALIDATE_OPOUTPORT (1, port);
1631
1632 pt = SCM_PTAB_ENTRY (port);
1633 ptob = &scm_ptobs[SCM_PTOBNUM (port)];
1634
1635 if (pt->rw_active == SCM_PORT_READ)
1636 scm_end_input (port);
1637
1638 ptob->write (port, ptr, size);
1639
1640 if (pt->rw_random)
1641 pt->rw_active = SCM_PORT_WRITE;
1642 }
1643 #undef FUNC_NAME
1644
1645 void
1646 scm_flush (SCM port)
1647 {
1648 long i = SCM_PTOBNUM (port);
1649 assert (i >= 0);
1650 (scm_ptobs[i].flush) (port);
1651 }
1652
1653 void
1654 scm_end_input (SCM port)
1655 {
1656 long offset;
1657 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1658
1659 if (pt->read_buf == pt->putback_buf)
1660 {
1661 offset = pt->read_end - pt->read_pos;
1662 pt->read_buf = pt->saved_read_buf;
1663 pt->read_pos = pt->saved_read_pos;
1664 pt->read_end = pt->saved_read_end;
1665 pt->read_buf_size = pt->saved_read_buf_size;
1666 }
1667 else
1668 offset = 0;
1669
1670 scm_ptobs[SCM_PTOBNUM (port)].end_input (port, offset);
1671 }
1672
1673 \f
1674
1675
1676 void
1677 scm_unget_byte (int c, SCM port)
1678 #define FUNC_NAME "scm_unget_byte"
1679 {
1680 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1681
1682 if (pt->read_buf == pt->putback_buf)
1683 /* already using the put-back buffer. */
1684 {
1685 /* enlarge putback_buf if necessary. */
1686 if (pt->read_end == pt->read_buf + pt->read_buf_size
1687 && pt->read_buf == pt->read_pos)
1688 {
1689 size_t new_size = pt->read_buf_size * 2;
1690 unsigned char *tmp = (unsigned char *)
1691 scm_gc_realloc (pt->putback_buf, pt->read_buf_size, new_size,
1692 "putback buffer");
1693
1694 pt->read_pos = pt->read_buf = pt->putback_buf = tmp;
1695 pt->read_end = pt->read_buf + pt->read_buf_size;
1696 pt->read_buf_size = pt->putback_buf_size = new_size;
1697 }
1698
1699 /* shift any existing bytes to buffer + 1. */
1700 if (pt->read_pos == pt->read_end)
1701 pt->read_end = pt->read_buf + 1;
1702 else if (pt->read_pos != pt->read_buf + 1)
1703 {
1704 int count = pt->read_end - pt->read_pos;
1705
1706 memmove (pt->read_buf + 1, pt->read_pos, count);
1707 pt->read_end = pt->read_buf + 1 + count;
1708 }
1709
1710 pt->read_pos = pt->read_buf;
1711 }
1712 else
1713 /* switch to the put-back buffer. */
1714 {
1715 if (pt->putback_buf == NULL)
1716 {
1717 pt->putback_buf
1718 = (unsigned char *) scm_gc_malloc_pointerless
1719 (SCM_INITIAL_PUTBACK_BUF_SIZE, "putback buffer");
1720 pt->putback_buf_size = SCM_INITIAL_PUTBACK_BUF_SIZE;
1721 }
1722
1723 pt->saved_read_buf = pt->read_buf;
1724 pt->saved_read_pos = pt->read_pos;
1725 pt->saved_read_end = pt->read_end;
1726 pt->saved_read_buf_size = pt->read_buf_size;
1727
1728 pt->read_pos = pt->read_buf = pt->putback_buf;
1729 pt->read_end = pt->read_buf + 1;
1730 pt->read_buf_size = pt->putback_buf_size;
1731 }
1732
1733 *pt->read_buf = c;
1734
1735 if (pt->rw_random)
1736 pt->rw_active = SCM_PORT_READ;
1737 }
1738 #undef FUNC_NAME
1739
1740 void
1741 scm_ungetc (scm_t_wchar c, SCM port)
1742 #define FUNC_NAME "scm_ungetc"
1743 {
1744 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1745 char *result;
1746 char result_buf[10];
1747 const char *encoding;
1748 size_t len;
1749 int i;
1750
1751 if (pt->encoding != NULL)
1752 encoding = pt->encoding;
1753 else
1754 encoding = "ISO-8859-1";
1755
1756 len = sizeof (result_buf);
1757 result = u32_conv_to_encoding (encoding,
1758 (enum iconv_ilseq_handler) pt->ilseq_handler,
1759 (uint32_t *) &c, 1, NULL,
1760 result_buf, &len);
1761
1762 if (SCM_UNLIKELY (result == NULL || len == 0))
1763 scm_encoding_error (FUNC_NAME, errno,
1764 "conversion to port encoding failed",
1765 SCM_BOOL_F, SCM_MAKE_CHAR (c));
1766
1767 for (i = len - 1; i >= 0; i--)
1768 scm_unget_byte (result[i], port);
1769
1770 if (SCM_UNLIKELY (result != result_buf))
1771 free (result);
1772
1773 if (c == '\n')
1774 {
1775 /* What should col be in this case?
1776 * We'll leave it at -1.
1777 */
1778 SCM_LINUM (port) -= 1;
1779 }
1780 else
1781 SCM_COL(port) -= 1;
1782 }
1783 #undef FUNC_NAME
1784
1785
1786 void
1787 scm_ungets (const char *s, int n, SCM port)
1788 {
1789 /* This is simple minded and inefficient, but unreading strings is
1790 * probably not a common operation, and remember that line and
1791 * column numbers have to be handled...
1792 *
1793 * Please feel free to write an optimized version!
1794 */
1795 while (n--)
1796 scm_ungetc (s[n], port);
1797 }
1798
1799
1800 SCM_DEFINE (scm_peek_char, "peek-char", 0, 1, 0,
1801 (SCM port),
1802 "Return the next character available from @var{port},\n"
1803 "@emph{without} updating @var{port} to point to the following\n"
1804 "character. If no more characters are available, the\n"
1805 "end-of-file object is returned.\n"
1806 "\n"
1807 "The value returned by\n"
1808 "a call to @code{peek-char} is the same as the value that would\n"
1809 "have been returned by a call to @code{read-char} on the same\n"
1810 "port. The only difference is that the very next call to\n"
1811 "@code{read-char} or @code{peek-char} on that @var{port} will\n"
1812 "return the value returned by the preceding call to\n"
1813 "@code{peek-char}. In particular, a call to @code{peek-char} on\n"
1814 "an interactive port will hang waiting for input whenever a call\n"
1815 "to @code{read-char} would have hung.\n"
1816 "\n"
1817 "As for @code{read-char}, a @code{decoding-error} may be raised\n"
1818 "if such a situation occurs. However, unlike with @code{read-char},\n"
1819 "@var{port} still points at the beginning of the erroneous byte\n"
1820 "sequence when the error is raised.\n")
1821 #define FUNC_NAME s_scm_peek_char
1822 {
1823 int err;
1824 SCM result;
1825 scm_t_wchar c;
1826 char bytes[SCM_MBCHAR_BUF_SIZE];
1827 long column, line, i;
1828 size_t len;
1829
1830 if (SCM_UNBNDP (port))
1831 port = scm_current_input_port ();
1832 SCM_VALIDATE_OPINPORT (1, port);
1833
1834 column = SCM_COL (port);
1835 line = SCM_LINUM (port);
1836
1837 err = get_codepoint (port, &c, bytes, &len);
1838
1839 for (i = len - 1; i >= 0; i--)
1840 scm_unget_byte (bytes[i], port);
1841
1842 SCM_COL (port) = column;
1843 SCM_LINUM (port) = line;
1844
1845 if (SCM_UNLIKELY (err != 0))
1846 {
1847 scm_decoding_error (FUNC_NAME, err, "input decoding error", port);
1848
1849 /* Shouldn't happen since `catch' always aborts to prompt. */
1850 result = SCM_BOOL_F;
1851 }
1852 else if (c == EOF)
1853 result = SCM_EOF_VAL;
1854 else
1855 result = SCM_MAKE_CHAR (c);
1856
1857 return result;
1858 }
1859 #undef FUNC_NAME
1860
1861 SCM_DEFINE (scm_unread_char, "unread-char", 1, 1, 0,
1862 (SCM cobj, SCM port),
1863 "Place character @var{cobj} in @var{port} so that it will be\n"
1864 "read by the next read operation. If called multiple times, the\n"
1865 "unread characters will be read again in last-in first-out\n"
1866 "order. If @var{port} is not supplied, the current input port\n"
1867 "is used.")
1868 #define FUNC_NAME s_scm_unread_char
1869 {
1870 int c;
1871
1872 SCM_VALIDATE_CHAR (1, cobj);
1873 if (SCM_UNBNDP (port))
1874 port = scm_current_input_port ();
1875 SCM_VALIDATE_OPINPORT (2, port);
1876
1877 c = SCM_CHAR (cobj);
1878
1879 scm_ungetc (c, port);
1880 return cobj;
1881 }
1882 #undef FUNC_NAME
1883
1884 SCM_DEFINE (scm_unread_string, "unread-string", 2, 0, 0,
1885 (SCM str, SCM port),
1886 "Place the string @var{str} in @var{port} so that its characters will be\n"
1887 "read in subsequent read operations. If called multiple times, the\n"
1888 "unread characters will be read again in last-in first-out order. If\n"
1889 "@var{port} is not supplied, the current-input-port is used.")
1890 #define FUNC_NAME s_scm_unread_string
1891 {
1892 int n;
1893 SCM_VALIDATE_STRING (1, str);
1894 if (SCM_UNBNDP (port))
1895 port = scm_current_input_port ();
1896 SCM_VALIDATE_OPINPORT (2, port);
1897
1898 n = scm_i_string_length (str);
1899
1900 while (n--)
1901 scm_ungetc (scm_i_string_ref (str, n), port);
1902
1903 return str;
1904 }
1905 #undef FUNC_NAME
1906
1907 SCM_DEFINE (scm_seek, "seek", 3, 0, 0,
1908 (SCM fd_port, SCM offset, SCM whence),
1909 "Sets the current position of @var{fd_port} to the integer\n"
1910 "@var{offset}, which is interpreted according to the value of\n"
1911 "@var{whence}.\n"
1912 "\n"
1913 "One of the following variables should be supplied for\n"
1914 "@var{whence}:\n"
1915 "@defvar SEEK_SET\n"
1916 "Seek from the beginning of the file.\n"
1917 "@end defvar\n"
1918 "@defvar SEEK_CUR\n"
1919 "Seek from the current position.\n"
1920 "@end defvar\n"
1921 "@defvar SEEK_END\n"
1922 "Seek from the end of the file.\n"
1923 "@end defvar\n"
1924 "If @var{fd_port} is a file descriptor, the underlying system\n"
1925 "call is @code{lseek}. @var{port} may be a string port.\n"
1926 "\n"
1927 "The value returned is the new position in the file. This means\n"
1928 "that the current position of a port can be obtained using:\n"
1929 "@lisp\n"
1930 "(seek port 0 SEEK_CUR)\n"
1931 "@end lisp")
1932 #define FUNC_NAME s_scm_seek
1933 {
1934 int how;
1935
1936 fd_port = SCM_COERCE_OUTPORT (fd_port);
1937
1938 how = scm_to_int (whence);
1939 if (how != SEEK_SET && how != SEEK_CUR && how != SEEK_END)
1940 SCM_OUT_OF_RANGE (3, whence);
1941
1942 if (SCM_OPPORTP (fd_port))
1943 {
1944 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (fd_port);
1945 off_t_or_off64_t off = scm_to_off_t_or_off64_t (offset);
1946 off_t_or_off64_t rv;
1947
1948 if (!ptob->seek)
1949 SCM_MISC_ERROR ("port is not seekable",
1950 scm_cons (fd_port, SCM_EOL));
1951 else
1952 rv = ptob->seek (fd_port, off, how);
1953 return scm_from_off_t_or_off64_t (rv);
1954 }
1955 else /* file descriptor?. */
1956 {
1957 off_t_or_off64_t off = scm_to_off_t_or_off64_t (offset);
1958 off_t_or_off64_t rv;
1959 rv = lseek_or_lseek64 (scm_to_int (fd_port), off, how);
1960 if (rv == -1)
1961 SCM_SYSERROR;
1962 return scm_from_off_t_or_off64_t (rv);
1963 }
1964 }
1965 #undef FUNC_NAME
1966
1967 #ifndef O_BINARY
1968 #define O_BINARY 0
1969 #endif
1970
1971 /* Mingw has ftruncate(), perhaps implemented above using chsize, but
1972 doesn't have the filename version truncate(), hence this code. */
1973 #if HAVE_FTRUNCATE && ! HAVE_TRUNCATE
1974 static int
1975 truncate (const char *file, off_t length)
1976 {
1977 int ret, fdes;
1978
1979 fdes = open (file, O_BINARY | O_WRONLY);
1980 if (fdes == -1)
1981 return -1;
1982
1983 ret = ftruncate (fdes, length);
1984 if (ret == -1)
1985 {
1986 int save_errno = errno;
1987 close (fdes);
1988 errno = save_errno;
1989 return -1;
1990 }
1991
1992 return close (fdes);
1993 }
1994 #endif /* HAVE_FTRUNCATE && ! HAVE_TRUNCATE */
1995
1996 SCM_DEFINE (scm_truncate_file, "truncate-file", 1, 1, 0,
1997 (SCM object, SCM length),
1998 "Truncate file @var{object} to @var{length} bytes. @var{object}\n"
1999 "can be a filename string, a port object, or an integer file\n"
2000 "descriptor.\n"
2001 "The return value is unspecified.\n"
2002 "\n"
2003 "For a port or file descriptor @var{length} can be omitted, in\n"
2004 "which case the file is truncated at the current position (per\n"
2005 "@code{ftell} above).\n"
2006 "\n"
2007 "On most systems a file can be extended by giving a length\n"
2008 "greater than the current size, but this is not mandatory in the\n"
2009 "POSIX standard.")
2010 #define FUNC_NAME s_scm_truncate_file
2011 {
2012 int rv;
2013
2014 /* "object" can be a port, fdes or filename.
2015
2016 Negative "length" makes no sense, but it's left to truncate() or
2017 ftruncate() to give back an error for that (normally EINVAL).
2018 */
2019
2020 if (SCM_UNBNDP (length))
2021 {
2022 /* must supply length if object is a filename. */
2023 if (scm_is_string (object))
2024 SCM_MISC_ERROR("must supply length if OBJECT is a filename", SCM_EOL);
2025
2026 length = scm_seek (object, SCM_INUM0, scm_from_int (SEEK_CUR));
2027 }
2028
2029 object = SCM_COERCE_OUTPORT (object);
2030 if (scm_is_integer (object))
2031 {
2032 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
2033 SCM_SYSCALL (rv = ftruncate_or_ftruncate64 (scm_to_int (object),
2034 c_length));
2035 }
2036 else if (SCM_OPOUTPORTP (object))
2037 {
2038 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
2039 scm_t_port *pt = SCM_PTAB_ENTRY (object);
2040 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (object);
2041
2042 if (!ptob->truncate)
2043 SCM_MISC_ERROR ("port is not truncatable", SCM_EOL);
2044 if (pt->rw_active == SCM_PORT_READ)
2045 scm_end_input (object);
2046 else if (pt->rw_active == SCM_PORT_WRITE)
2047 ptob->flush (object);
2048
2049 ptob->truncate (object, c_length);
2050 rv = 0;
2051 }
2052 else
2053 {
2054 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
2055 char *str = scm_to_locale_string (object);
2056 int eno;
2057 SCM_SYSCALL (rv = truncate_or_truncate64 (str, c_length));
2058 eno = errno;
2059 free (str);
2060 errno = eno;
2061 }
2062 if (rv == -1)
2063 SCM_SYSERROR;
2064 return SCM_UNSPECIFIED;
2065 }
2066 #undef FUNC_NAME
2067
2068 SCM_DEFINE (scm_port_line, "port-line", 1, 0, 0,
2069 (SCM port),
2070 "Return the current line number for @var{port}.\n"
2071 "\n"
2072 "The first line of a file is 0. But you might want to add 1\n"
2073 "when printing line numbers, since starting from 1 is\n"
2074 "traditional in error messages, and likely to be more natural to\n"
2075 "non-programmers.")
2076 #define FUNC_NAME s_scm_port_line
2077 {
2078 port = SCM_COERCE_OUTPORT (port);
2079 SCM_VALIDATE_OPENPORT (1, port);
2080 return scm_from_long (SCM_LINUM (port));
2081 }
2082 #undef FUNC_NAME
2083
2084 SCM_DEFINE (scm_set_port_line_x, "set-port-line!", 2, 0, 0,
2085 (SCM port, SCM line),
2086 "Set the current line number for @var{port} to @var{line}. The\n"
2087 "first line of a file is 0.")
2088 #define FUNC_NAME s_scm_set_port_line_x
2089 {
2090 port = SCM_COERCE_OUTPORT (port);
2091 SCM_VALIDATE_OPENPORT (1, port);
2092 SCM_PTAB_ENTRY (port)->line_number = scm_to_long (line);
2093 return SCM_UNSPECIFIED;
2094 }
2095 #undef FUNC_NAME
2096
2097 SCM_DEFINE (scm_port_column, "port-column", 1, 0, 0,
2098 (SCM port),
2099 "Return the current column number of @var{port}.\n"
2100 "If the number is\n"
2101 "unknown, the result is #f. Otherwise, the result is a 0-origin integer\n"
2102 "- i.e. the first character of the first line is line 0, column 0.\n"
2103 "(However, when you display a file position, for example in an error\n"
2104 "message, we recommend you add 1 to get 1-origin integers. This is\n"
2105 "because lines and column numbers traditionally start with 1, and that is\n"
2106 "what non-programmers will find most natural.)")
2107 #define FUNC_NAME s_scm_port_column
2108 {
2109 port = SCM_COERCE_OUTPORT (port);
2110 SCM_VALIDATE_OPENPORT (1, port);
2111 return scm_from_int (SCM_COL (port));
2112 }
2113 #undef FUNC_NAME
2114
2115 SCM_DEFINE (scm_set_port_column_x, "set-port-column!", 2, 0, 0,
2116 (SCM port, SCM column),
2117 "Set the current column of @var{port}. Before reading the first\n"
2118 "character on a line the column should be 0.")
2119 #define FUNC_NAME s_scm_set_port_column_x
2120 {
2121 port = SCM_COERCE_OUTPORT (port);
2122 SCM_VALIDATE_OPENPORT (1, port);
2123 SCM_PTAB_ENTRY (port)->column_number = scm_to_int (column);
2124 return SCM_UNSPECIFIED;
2125 }
2126 #undef FUNC_NAME
2127
2128 SCM_DEFINE (scm_port_filename, "port-filename", 1, 0, 0,
2129 (SCM port),
2130 "Return the filename associated with @var{port}, or @code{#f}\n"
2131 "if no filename is associated with the port.")
2132 #define FUNC_NAME s_scm_port_filename
2133 {
2134 port = SCM_COERCE_OUTPORT (port);
2135 SCM_VALIDATE_OPENPORT (1, port);
2136 return SCM_FILENAME (port);
2137 }
2138 #undef FUNC_NAME
2139
2140 SCM_DEFINE (scm_set_port_filename_x, "set-port-filename!", 2, 0, 0,
2141 (SCM port, SCM filename),
2142 "Change the filename associated with @var{port}, using the current input\n"
2143 "port if none is specified. Note that this does not change the port's\n"
2144 "source of data, but only the value that is returned by\n"
2145 "@code{port-filename} and reported in diagnostic output.")
2146 #define FUNC_NAME s_scm_set_port_filename_x
2147 {
2148 port = SCM_COERCE_OUTPORT (port);
2149 SCM_VALIDATE_OPENPORT (1, port);
2150 /* We allow the user to set the filename to whatever he likes. */
2151 SCM_SET_FILENAME (port, filename);
2152 return SCM_UNSPECIFIED;
2153 }
2154 #undef FUNC_NAME
2155
2156 SCM_DEFINE (scm_consume_byte_order_mark, "consume-byte-order-mark", 1, 0, 0,
2157 (SCM port),
2158 "Peek ahead in @var{port} for a byte-order mark (\\uFEFF) encoded\n"
2159 "in UTF-8 or in UTF-16. If found, consume the byte-order mark\n"
2160 "and set the port to the indicated encoding.\n"
2161 "\n"
2162 "As a special case, if the port's encoding is already UTF-16LE\n"
2163 "or UTF-16BE (as opposed to UTF-16), we consider that the user\n"
2164 "has already asked for an explicit byte order. In this case no\n"
2165 "scan is performed, and the byte-order mark (if any) is left in\n"
2166 "the port.\n"
2167 "\n"
2168 "Return @code{#t} if a byte-order mark was consumed, and\n"
2169 "@code{#f} otherwise.")
2170 #define FUNC_NAME s_scm_consume_byte_order_mark
2171 {
2172 scm_t_port *pt;
2173 const char *enc;
2174
2175 SCM_VALIDATE_PORT (1, port);
2176
2177 pt = SCM_PTAB_ENTRY (port);
2178 enc = pt->encoding;
2179
2180 if (enc && strcasecmp (enc, "UTF-16BE") == 0)
2181 return SCM_BOOL_F;
2182
2183 if (enc && strcasecmp (enc, "UTF-16LE") == 0)
2184 return SCM_BOOL_F;
2185
2186 switch (scm_peek_byte_or_eof (port))
2187 {
2188 case 0xEF:
2189 scm_get_byte_or_eof (port);
2190 switch (scm_peek_byte_or_eof (port))
2191 {
2192 case 0xBB:
2193 scm_get_byte_or_eof (port);
2194 switch (scm_peek_byte_or_eof (port))
2195 {
2196 case 0xBF:
2197 scm_get_byte_or_eof (port);
2198 scm_i_set_port_encoding_x (port, "UTF-8");
2199 return SCM_BOOL_T;
2200 default:
2201 scm_unget_byte (0xBB, port);
2202 scm_unget_byte (0xEF, port);
2203 return SCM_BOOL_F;
2204 }
2205 default:
2206 scm_unget_byte (0xEF, port);
2207 return SCM_BOOL_F;
2208 }
2209 case 0xFE:
2210 scm_get_byte_or_eof (port);
2211 switch (scm_peek_byte_or_eof (port))
2212 {
2213 case 0xFF:
2214 scm_get_byte_or_eof (port);
2215 scm_i_set_port_encoding_x (port, "UTF-16BE");
2216 return SCM_BOOL_T;
2217 default:
2218 scm_unget_byte (0xFE, port);
2219 return SCM_BOOL_F;
2220 }
2221 case 0xFF:
2222 scm_get_byte_or_eof (port);
2223 switch (scm_peek_byte_or_eof (port))
2224 {
2225 case 0xFE:
2226 scm_get_byte_or_eof (port);
2227 scm_i_set_port_encoding_x (port, "UTF-16LE");
2228 return SCM_BOOL_T;
2229 default:
2230 scm_unget_byte (0xFF, port);
2231 return SCM_BOOL_F;
2232 }
2233 default:
2234 return SCM_BOOL_F;
2235 }
2236 }
2237 #undef FUNC_NAME
2238
2239 /* A fluid specifying the default encoding for newly created ports. If it is
2240 a string, that is the encoding. If it is #f, it is in the "native"
2241 (Latin-1) encoding. */
2242 SCM_VARIABLE (default_port_encoding_var, "%default-port-encoding");
2243
2244 static int scm_port_encoding_init = 0;
2245
2246 /* Use ENCODING as the default encoding for future ports. */
2247 void
2248 scm_i_set_default_port_encoding (const char *encoding)
2249 {
2250 if (!scm_port_encoding_init
2251 || !scm_is_fluid (SCM_VARIABLE_REF (default_port_encoding_var)))
2252 scm_misc_error (NULL, "tried to set port encoding fluid before it is initialized",
2253 SCM_EOL);
2254
2255 if (encoding == NULL
2256 || !strcmp (encoding, "ASCII")
2257 || !strcmp (encoding, "ANSI_X3.4-1968")
2258 || !strcmp (encoding, "ISO-8859-1"))
2259 scm_fluid_set_x (SCM_VARIABLE_REF (default_port_encoding_var), SCM_BOOL_F);
2260 else
2261 scm_fluid_set_x (SCM_VARIABLE_REF (default_port_encoding_var),
2262 scm_from_locale_string (encoding));
2263 }
2264
2265 /* Return the name of the default encoding for newly created ports; a
2266 return value of NULL means "ISO-8859-1". */
2267 const char *
2268 scm_i_default_port_encoding (void)
2269 {
2270 if (!scm_port_encoding_init)
2271 return NULL;
2272 else if (!scm_is_fluid (SCM_VARIABLE_REF (default_port_encoding_var)))
2273 return NULL;
2274 else
2275 {
2276 SCM encoding;
2277
2278 encoding = scm_fluid_ref (SCM_VARIABLE_REF (default_port_encoding_var));
2279 if (!scm_is_string (encoding))
2280 return NULL;
2281 else
2282 return scm_i_string_chars (encoding);
2283 }
2284 }
2285
2286 void
2287 scm_i_set_port_encoding_x (SCM port, const char *encoding)
2288 {
2289 scm_t_port *pt;
2290 iconv_t new_input_cd, new_output_cd;
2291
2292 new_input_cd = (iconv_t) -1;
2293 new_output_cd = (iconv_t) -1;
2294
2295 /* Set the character encoding for this port. */
2296 pt = SCM_PTAB_ENTRY (port);
2297
2298 if (encoding == NULL)
2299 encoding = "ISO-8859-1";
2300
2301 if (pt->encoding != encoding)
2302 pt->encoding = scm_gc_strdup (encoding, "port");
2303
2304 /* If ENCODING is UTF-8, then no conversion descriptor is opened
2305 because we do I/O ourselves. This saves 100+ KiB for each
2306 descriptor. */
2307 if (strcmp (encoding, "UTF-8"))
2308 {
2309 if (SCM_CELL_WORD_0 (port) & SCM_RDNG)
2310 {
2311 /* Open an input iconv conversion descriptor, from ENCODING
2312 to UTF-8. We choose UTF-8, not UTF-32, because iconv
2313 implementations can typically convert from anything to
2314 UTF-8, but not to UTF-32 (see
2315 <http://lists.gnu.org/archive/html/bug-libunistring/2010-09/msg00007.html>). */
2316 new_input_cd = iconv_open ("UTF-8", encoding);
2317 if (new_input_cd == (iconv_t) -1)
2318 goto invalid_encoding;
2319 }
2320
2321 if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
2322 {
2323 new_output_cd = iconv_open (encoding, "UTF-8");
2324 if (new_output_cd == (iconv_t) -1)
2325 {
2326 if (new_input_cd != (iconv_t) -1)
2327 iconv_close (new_input_cd);
2328 goto invalid_encoding;
2329 }
2330 }
2331 }
2332
2333 if (pt->input_cd != (iconv_t) -1)
2334 iconv_close (pt->input_cd);
2335 if (pt->output_cd != (iconv_t) -1)
2336 iconv_close (pt->output_cd);
2337
2338 pt->input_cd = new_input_cd;
2339 pt->output_cd = new_output_cd;
2340
2341 return;
2342
2343 invalid_encoding:
2344 {
2345 SCM err;
2346 err = scm_from_locale_string (encoding);
2347 scm_misc_error ("scm_i_set_port_encoding_x",
2348 "invalid or unknown character encoding ~s",
2349 scm_list_1 (err));
2350 }
2351 }
2352
2353 SCM_DEFINE (scm_port_encoding, "port-encoding", 1, 0, 0,
2354 (SCM port),
2355 "Returns, as a string, the character encoding that @var{port}\n"
2356 "uses to interpret its input and output.\n")
2357 #define FUNC_NAME s_scm_port_encoding
2358 {
2359 scm_t_port *pt;
2360 const char *enc;
2361
2362 SCM_VALIDATE_PORT (1, port);
2363
2364 pt = SCM_PTAB_ENTRY (port);
2365 enc = pt->encoding;
2366 if (enc)
2367 return scm_from_locale_string (pt->encoding);
2368 else
2369 return SCM_BOOL_F;
2370 }
2371 #undef FUNC_NAME
2372
2373 SCM_DEFINE (scm_set_port_encoding_x, "set-port-encoding!", 2, 0, 0,
2374 (SCM port, SCM enc),
2375 "Sets the character encoding that will be used to interpret all\n"
2376 "port I/O. New ports are created with the encoding\n"
2377 "appropriate for the current locale if @code{setlocale} has \n"
2378 "been called or ISO-8859-1 otherwise\n"
2379 "and this procedure can be used to modify that encoding.\n")
2380 #define FUNC_NAME s_scm_set_port_encoding_x
2381 {
2382 char *enc_str;
2383
2384 SCM_VALIDATE_PORT (1, port);
2385 SCM_VALIDATE_STRING (2, enc);
2386
2387 enc_str = scm_to_locale_string (enc);
2388 scm_i_set_port_encoding_x (port, enc_str);
2389 free (enc_str);
2390
2391 return SCM_UNSPECIFIED;
2392 }
2393 #undef FUNC_NAME
2394
2395
2396 /* A fluid specifying the default conversion handler for newly created
2397 ports. Its value should be one of the symbols below. */
2398 SCM_VARIABLE (default_conversion_strategy_var,
2399 "%default-port-conversion-strategy");
2400
2401 /* Whether the above fluid is initialized. */
2402 static int scm_conversion_strategy_init = 0;
2403
2404 /* The possible conversion strategies. */
2405 SCM_SYMBOL (sym_error, "error");
2406 SCM_SYMBOL (sym_substitute, "substitute");
2407 SCM_SYMBOL (sym_escape, "escape");
2408
2409 /* Return the default failed encoding conversion policy for new created
2410 ports. */
2411 scm_t_string_failed_conversion_handler
2412 scm_i_default_port_conversion_handler (void)
2413 {
2414 scm_t_string_failed_conversion_handler handler;
2415
2416 if (!scm_conversion_strategy_init
2417 || !scm_is_fluid (SCM_VARIABLE_REF (default_conversion_strategy_var)))
2418 handler = SCM_FAILED_CONVERSION_QUESTION_MARK;
2419 else
2420 {
2421 SCM fluid, value;
2422
2423 fluid = SCM_VARIABLE_REF (default_conversion_strategy_var);
2424 value = scm_fluid_ref (fluid);
2425
2426 if (scm_is_eq (sym_substitute, value))
2427 handler = SCM_FAILED_CONVERSION_QUESTION_MARK;
2428 else if (scm_is_eq (sym_escape, value))
2429 handler = SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE;
2430 else
2431 /* Default to 'error also when the fluid's value is not one of
2432 the valid symbols. */
2433 handler = SCM_FAILED_CONVERSION_ERROR;
2434 }
2435
2436 return handler;
2437 }
2438
2439 /* Use HANDLER as the default conversion strategy for future ports. */
2440 void
2441 scm_i_set_default_port_conversion_handler (scm_t_string_failed_conversion_handler
2442 handler)
2443 {
2444 SCM strategy;
2445
2446 if (!scm_conversion_strategy_init
2447 || !scm_is_fluid (SCM_VARIABLE_REF (default_conversion_strategy_var)))
2448 scm_misc_error (NULL, "tried to set conversion strategy fluid before it is initialized",
2449 SCM_EOL);
2450
2451 switch (handler)
2452 {
2453 case SCM_FAILED_CONVERSION_ERROR:
2454 strategy = sym_error;
2455 break;
2456
2457 case SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE:
2458 strategy = sym_escape;
2459 break;
2460
2461 case SCM_FAILED_CONVERSION_QUESTION_MARK:
2462 strategy = sym_substitute;
2463 break;
2464
2465 default:
2466 abort ();
2467 }
2468
2469 scm_fluid_set_x (SCM_VARIABLE_REF (default_conversion_strategy_var),
2470 strategy);
2471 }
2472
2473 SCM_DEFINE (scm_port_conversion_strategy, "port-conversion-strategy",
2474 1, 0, 0, (SCM port),
2475 "Returns the behavior of the port when handling a character that\n"
2476 "is not representable in the port's current encoding.\n"
2477 "It returns the symbol @code{error} if unrepresentable characters\n"
2478 "should cause exceptions, @code{substitute} if the port should\n"
2479 "try to replace unrepresentable characters with question marks or\n"
2480 "approximate characters, or @code{escape} if unrepresentable\n"
2481 "characters should be converted to string escapes.\n"
2482 "\n"
2483 "If @var{port} is @code{#f}, then the current default behavior\n"
2484 "will be returned. New ports will have this default behavior\n"
2485 "when they are created.\n")
2486 #define FUNC_NAME s_scm_port_conversion_strategy
2487 {
2488 scm_t_string_failed_conversion_handler h;
2489
2490 if (scm_is_false (port))
2491 h = scm_i_default_port_conversion_handler ();
2492 else
2493 {
2494 scm_t_port *pt;
2495
2496 SCM_VALIDATE_OPPORT (1, port);
2497 pt = SCM_PTAB_ENTRY (port);
2498
2499 h = pt->ilseq_handler;
2500 }
2501
2502 if (h == SCM_FAILED_CONVERSION_ERROR)
2503 return scm_from_latin1_symbol ("error");
2504 else if (h == SCM_FAILED_CONVERSION_QUESTION_MARK)
2505 return scm_from_latin1_symbol ("substitute");
2506 else if (h == SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE)
2507 return scm_from_latin1_symbol ("escape");
2508 else
2509 abort ();
2510
2511 /* Never gets here. */
2512 return SCM_UNDEFINED;
2513 }
2514 #undef FUNC_NAME
2515
2516 SCM_DEFINE (scm_set_port_conversion_strategy_x, "set-port-conversion-strategy!",
2517 2, 0, 0,
2518 (SCM port, SCM sym),
2519 "Sets the behavior of the interpreter when outputting a character\n"
2520 "that is not representable in the port's current encoding.\n"
2521 "@var{sym} can be either @code{'error}, @code{'substitute}, or\n"
2522 "@code{'escape}. If it is @code{'error}, an error will be thrown\n"
2523 "when an unconvertible character is encountered. If it is\n"
2524 "@code{'substitute}, then unconvertible characters will \n"
2525 "be replaced with approximate characters, or with question marks\n"
2526 "if no approximately correct character is available.\n"
2527 "If it is @code{'escape},\n"
2528 "it will appear as a hex escape when output.\n"
2529 "\n"
2530 "If @var{port} is an open port, the conversion error behavior\n"
2531 "is set for that port. If it is @code{#f}, it is set as the\n"
2532 "default behavior for any future ports that get created in\n"
2533 "this thread.\n")
2534 #define FUNC_NAME s_scm_set_port_conversion_strategy_x
2535 {
2536 scm_t_string_failed_conversion_handler handler;
2537
2538 if (scm_is_eq (sym, sym_error))
2539 handler = SCM_FAILED_CONVERSION_ERROR;
2540 else if (scm_is_eq (sym, sym_substitute))
2541 handler = SCM_FAILED_CONVERSION_QUESTION_MARK;
2542 else if (scm_is_eq (sym, sym_escape))
2543 handler = SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE;
2544 else
2545 SCM_MISC_ERROR ("unknown conversion strategy ~s", scm_list_1 (sym));
2546
2547 if (scm_is_false (port))
2548 scm_i_set_default_port_conversion_handler (handler);
2549 else
2550 {
2551 SCM_VALIDATE_OPPORT (1, port);
2552 SCM_PTAB_ENTRY (port)->ilseq_handler = handler;
2553 }
2554
2555 return SCM_UNSPECIFIED;
2556 }
2557 #undef FUNC_NAME
2558
2559
2560
2561 void
2562 scm_print_port_mode (SCM exp, SCM port)
2563 {
2564 scm_puts (SCM_CLOSEDP (exp)
2565 ? "closed: "
2566 : (SCM_RDNG & SCM_CELL_WORD_0 (exp)
2567 ? (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
2568 ? "input-output: "
2569 : "input: ")
2570 : (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
2571 ? "output: "
2572 : "bogus: ")),
2573 port);
2574 }
2575
2576 int
2577 scm_port_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
2578 {
2579 char *type = SCM_PTOBNAME (SCM_PTOBNUM (exp));
2580 if (!type)
2581 type = "port";
2582 scm_puts ("#<", port);
2583 scm_print_port_mode (exp, port);
2584 scm_puts (type, port);
2585 scm_putc (' ', port);
2586 scm_uintprint (SCM_CELL_WORD_1 (exp), 16, port);
2587 scm_putc ('>', port);
2588 return 1;
2589 }
2590
2591 \f
2592
2593 /* Void ports. */
2594
2595 scm_t_bits scm_tc16_void_port = 0;
2596
2597 static int fill_input_void_port (SCM port SCM_UNUSED)
2598 {
2599 return EOF;
2600 }
2601
2602 static void
2603 write_void_port (SCM port SCM_UNUSED,
2604 const void *data SCM_UNUSED,
2605 size_t size SCM_UNUSED)
2606 {
2607 }
2608
2609 static SCM
2610 scm_i_void_port (long mode_bits)
2611 {
2612 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
2613 {
2614 SCM answer = scm_new_port_table_entry (scm_tc16_void_port);
2615 scm_t_port * pt = SCM_PTAB_ENTRY(answer);
2616
2617 scm_port_non_buffer (pt);
2618
2619 SCM_SETSTREAM (answer, 0);
2620 SCM_SET_CELL_TYPE (answer, scm_tc16_void_port | mode_bits);
2621 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
2622 return answer;
2623 }
2624 }
2625
2626 SCM
2627 scm_void_port (char *mode_str)
2628 {
2629 return scm_i_void_port (scm_mode_bits (mode_str));
2630 }
2631
2632 SCM_DEFINE (scm_sys_make_void_port, "%make-void-port", 1, 0, 0,
2633 (SCM mode),
2634 "Create and return a new void port. A void port acts like\n"
2635 "@file{/dev/null}. The @var{mode} argument\n"
2636 "specifies the input/output modes for this port: see the\n"
2637 "documentation for @code{open-file} in @ref{File Ports}.")
2638 #define FUNC_NAME s_scm_sys_make_void_port
2639 {
2640 return scm_i_void_port (scm_i_mode_bits (mode));
2641 }
2642 #undef FUNC_NAME
2643
2644 \f
2645 /* Initialization. */
2646
2647 void
2648 scm_init_ports ()
2649 {
2650 /* lseek() symbols. */
2651 scm_c_define ("SEEK_SET", scm_from_int (SEEK_SET));
2652 scm_c_define ("SEEK_CUR", scm_from_int (SEEK_CUR));
2653 scm_c_define ("SEEK_END", scm_from_int (SEEK_END));
2654
2655 scm_tc16_void_port = scm_make_port_type ("void", fill_input_void_port,
2656 write_void_port);
2657
2658 cur_inport_fluid = scm_make_fluid ();
2659 cur_outport_fluid = scm_make_fluid ();
2660 cur_errport_fluid = scm_make_fluid ();
2661 cur_loadport_fluid = scm_make_fluid ();
2662
2663 scm_i_port_weak_hash = scm_make_weak_key_hash_table (SCM_I_MAKINUM(31));
2664
2665 #include "libguile/ports.x"
2666
2667 /* Use Latin-1 as the default port encoding. */
2668 SCM_VARIABLE_SET (default_port_encoding_var,
2669 scm_make_fluid_with_default (SCM_BOOL_F));
2670 scm_port_encoding_init = 1;
2671
2672 SCM_VARIABLE_SET (default_conversion_strategy_var,
2673 scm_make_fluid_with_default (sym_substitute));
2674 scm_conversion_strategy_init = 1;
2675
2676 /* These bindings are used when boot-9 turns `current-input-port' et
2677 al into parameters. They are then removed from the guile module. */
2678 scm_c_define ("%current-input-port-fluid", cur_inport_fluid);
2679 scm_c_define ("%current-output-port-fluid", cur_outport_fluid);
2680 scm_c_define ("%current-error-port-fluid", cur_errport_fluid);
2681 }
2682
2683 /*
2684 Local Variables:
2685 c-file-style: "gnu"
2686 End:
2687 */