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