Merge remote-tracking branch 'origin/stable-2.0' into stable-2.0
[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 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.
537 */
538 SCM scm_i_port_weak_hash;
539
540 scm_i_pthread_mutex_t scm_i_port_table_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
541
542 \f
543 /* Port finalization. */
544
545
546 static void finalize_port (GC_PTR, GC_PTR);
547
548 /* Register a finalizer for PORT. */
549 static SCM_C_INLINE_KEYWORD void
550 register_finalizer_for_port (SCM port)
551 {
552 /* Register a finalizer for PORT so that its iconv CDs get freed and
553 optionally its type's `free' function gets called. */
554 scm_i_set_finalizer (SCM2PTR (port), finalize_port, NULL);
555 }
556
557 /* Finalize the object (a port) pointed to by PTR. */
558 static void
559 finalize_port (GC_PTR ptr, GC_PTR data)
560 {
561 long port_type;
562 SCM port = PTR2SCM (ptr);
563
564 if (!SCM_PORTP (port))
565 abort ();
566
567 if (SCM_OPENP (port))
568 {
569 if (SCM_REVEALED (port) > 0)
570 /* Keep "revealed" ports alive and re-register a finalizer. */
571 register_finalizer_for_port (port);
572 else
573 {
574 scm_t_port *entry;
575
576 port_type = SCM_TC2PTOBNUM (SCM_CELL_TYPE (port));
577 if (port_type >= scm_numptob)
578 abort ();
579
580 if (scm_ptobs[port_type].free)
581 /* Yes, I really do mean `.free' rather than `.close'. `.close'
582 is for explicit `close-port' by user. */
583 scm_ptobs[port_type].free (port);
584
585 entry = SCM_PTAB_ENTRY (port);
586
587 if (entry->input_cd != (iconv_t) -1)
588 iconv_close (entry->input_cd);
589 if (entry->output_cd != (iconv_t) -1)
590 iconv_close (entry->output_cd);
591
592 SCM_SETSTREAM (port, 0);
593 SCM_CLR_PORT_OPEN_FLAG (port);
594
595 scm_gc_ports_collected++;
596 }
597 }
598 }
599
600
601
602 \f
603
604 /* This function is not and should not be thread safe. */
605 SCM
606 scm_new_port_table_entry (scm_t_bits tag)
607 #define FUNC_NAME "scm_new_port_table_entry"
608 {
609 /*
610 We initialize the cell to empty, this is in case scm_gc_calloc
611 triggers GC ; we don't want the GC to scan a half-finished Z.
612 */
613
614 SCM z = scm_cons (SCM_EOL, SCM_EOL);
615 scm_t_port *entry = (scm_t_port *) scm_gc_calloc (sizeof (scm_t_port), "port");
616 const char *enc;
617
618 entry->file_name = SCM_BOOL_F;
619 entry->rw_active = SCM_PORT_NEITHER;
620 entry->port = z;
621
622 /* Initialize this port with the thread's current default
623 encoding. */
624 enc = scm_i_default_port_encoding ();
625 entry->encoding = enc ? scm_gc_strdup (enc, "port") : NULL;
626
627 /* The conversion descriptors will be opened lazily. */
628 entry->input_cd = (iconv_t) -1;
629 entry->output_cd = (iconv_t) -1;
630
631 entry->ilseq_handler = scm_i_get_conversion_strategy (SCM_BOOL_F);
632
633 SCM_SET_CELL_TYPE (z, tag);
634 SCM_SETPTAB_ENTRY (z, entry);
635
636 scm_hashq_set_x (scm_i_port_weak_hash, z, SCM_BOOL_F);
637
638 /* For each new port, register a finalizer so that it port type's free
639 function can be invoked eventually. */
640 register_finalizer_for_port (z);
641
642 return z;
643 }
644 #undef FUNC_NAME
645
646 #if SCM_ENABLE_DEPRECATED==1
647 scm_t_port *
648 scm_add_to_port_table (SCM port)
649 {
650 SCM z;
651 scm_t_port * pt;
652
653 scm_c_issue_deprecation_warning ("scm_add_to_port_table is deprecated.");
654
655 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
656 z = scm_new_port_table_entry (scm_tc7_port);
657 pt = SCM_PTAB_ENTRY(z);
658 pt->port = port;
659 SCM_SETCAR (z, SCM_EOL);
660 SCM_SETCDR (z, SCM_EOL);
661 SCM_SETPTAB_ENTRY (port, pt);
662 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
663
664 return pt;
665 }
666 #endif
667
668
669 /* Remove a port from the table and destroy it. */
670
671 static void
672 scm_i_remove_port (SCM port)
673 #define FUNC_NAME "scm_remove_port"
674 {
675 scm_t_port *p;
676
677 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
678
679 p = SCM_PTAB_ENTRY (port);
680 scm_port_non_buffer (p);
681 p->putback_buf = NULL;
682 p->putback_buf_size = 0;
683
684 if (p->input_cd != (iconv_t) -1)
685 {
686 iconv_close (p->input_cd);
687 p->input_cd = (iconv_t) -1;
688 }
689
690 if (p->output_cd != (iconv_t) -1)
691 {
692 iconv_close (p->output_cd);
693 p->output_cd = (iconv_t) -1;
694 }
695
696 SCM_SETPTAB_ENTRY (port, 0);
697
698 scm_hashq_remove_x (scm_i_port_weak_hash, port);
699
700 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
701 }
702 #undef FUNC_NAME
703
704
705 /* Functions for debugging. */
706 #ifdef GUILE_DEBUG
707 SCM_DEFINE (scm_pt_size, "pt-size", 0, 0, 0,
708 (),
709 "Return the number of ports in the port table. @code{pt-size}\n"
710 "is only included in @code{--enable-guile-debug} builds.")
711 #define FUNC_NAME s_scm_pt_size
712 {
713 return scm_from_int (SCM_HASHTABLE_N_ITEMS (scm_i_port_weak_hash));
714 }
715 #undef FUNC_NAME
716 #endif
717
718 void
719 scm_port_non_buffer (scm_t_port *pt)
720 {
721 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
722 pt->write_buf = pt->write_pos = &pt->shortbuf;
723 pt->read_buf_size = pt->write_buf_size = 1;
724 pt->write_end = pt->write_buf + pt->write_buf_size;
725 }
726
727 \f
728 /* Revealed counts --- an oddity inherited from SCSH. */
729
730 /* Find a port in the table and return its revealed count.
731 Also used by the garbage collector.
732 */
733
734 int
735 scm_revealed_count (SCM port)
736 {
737 return SCM_REVEALED(port);
738 }
739
740
741
742 /* Return the revealed count for a port. */
743
744 SCM_DEFINE (scm_port_revealed, "port-revealed", 1, 0, 0,
745 (SCM port),
746 "Return the revealed count for @var{port}.")
747 #define FUNC_NAME s_scm_port_revealed
748 {
749 port = SCM_COERCE_OUTPORT (port);
750 SCM_VALIDATE_OPENPORT (1, port);
751 return scm_from_int (scm_revealed_count (port));
752 }
753 #undef FUNC_NAME
754
755 /* Set the revealed count for a port. */
756 SCM_DEFINE (scm_set_port_revealed_x, "set-port-revealed!", 2, 0, 0,
757 (SCM port, SCM rcount),
758 "Sets the revealed count for a port to a given value.\n"
759 "The return value is unspecified.")
760 #define FUNC_NAME s_scm_set_port_revealed_x
761 {
762 port = SCM_COERCE_OUTPORT (port);
763 SCM_VALIDATE_OPENPORT (1, port);
764 SCM_REVEALED (port) = scm_to_int (rcount);
765 return SCM_UNSPECIFIED;
766 }
767 #undef FUNC_NAME
768
769
770 \f
771 /* Retrieving a port's mode. */
772
773 /* Return the flags that characterize a port based on the mode
774 * string used to open a file for that port.
775 *
776 * See PORT FLAGS in scm.h
777 */
778
779 static long
780 scm_i_mode_bits_n (SCM modes)
781 {
782 return (SCM_OPN
783 | (scm_i_string_contains_char (modes, 'r')
784 || scm_i_string_contains_char (modes, '+') ? SCM_RDNG : 0)
785 | (scm_i_string_contains_char (modes, 'w')
786 || scm_i_string_contains_char (modes, 'a')
787 || scm_i_string_contains_char (modes, '+') ? SCM_WRTNG : 0)
788 | (scm_i_string_contains_char (modes, '0') ? SCM_BUF0 : 0)
789 | (scm_i_string_contains_char (modes, 'l') ? SCM_BUFLINE : 0));
790 }
791
792 long
793 scm_mode_bits (char *modes)
794 {
795 return scm_i_mode_bits (scm_from_locale_string (modes));
796 }
797
798 long
799 scm_i_mode_bits (SCM modes)
800 {
801 long bits;
802
803 if (!scm_is_string (modes))
804 scm_wrong_type_arg_msg (NULL, 0, modes, "string");
805
806 bits = scm_i_mode_bits_n (modes);
807 scm_remember_upto_here_1 (modes);
808 return bits;
809 }
810
811 /* Return the mode flags from an open port.
812 * Some modes such as "append" are only used when opening
813 * a file and are not returned here. */
814
815 SCM_DEFINE (scm_port_mode, "port-mode", 1, 0, 0,
816 (SCM port),
817 "Return the port modes associated with the open port @var{port}.\n"
818 "These will not necessarily be identical to the modes used when\n"
819 "the port was opened, since modes such as \"append\" which are\n"
820 "used only during port creation are not retained.")
821 #define FUNC_NAME s_scm_port_mode
822 {
823 char modes[4];
824 modes[0] = '\0';
825
826 port = SCM_COERCE_OUTPORT (port);
827 SCM_VALIDATE_OPPORT (1, port);
828 if (SCM_CELL_WORD_0 (port) & SCM_RDNG) {
829 if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
830 strcpy (modes, "r+");
831 else
832 strcpy (modes, "r");
833 }
834 else if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
835 strcpy (modes, "w");
836 if (SCM_CELL_WORD_0 (port) & SCM_BUF0)
837 strcat (modes, "0");
838 return scm_from_locale_string (modes);
839 }
840 #undef FUNC_NAME
841
842
843 \f
844 /* Closing ports. */
845
846 /* scm_close_port
847 * Call the close operation on a port object.
848 * see also scm_close.
849 */
850 SCM_DEFINE (scm_close_port, "close-port", 1, 0, 0,
851 (SCM port),
852 "Close the specified port object. Return @code{#t} if it\n"
853 "successfully closes a port or @code{#f} if it was already\n"
854 "closed. An exception may be raised if an error occurs, for\n"
855 "example when flushing buffered output. See also @ref{Ports and\n"
856 "File Descriptors, close}, for a procedure which can close file\n"
857 "descriptors.")
858 #define FUNC_NAME s_scm_close_port
859 {
860 size_t i;
861 int rv;
862
863 port = SCM_COERCE_OUTPORT (port);
864
865 SCM_VALIDATE_PORT (1, port);
866 if (SCM_CLOSEDP (port))
867 return SCM_BOOL_F;
868 i = SCM_PTOBNUM (port);
869 if (scm_ptobs[i].close)
870 rv = (scm_ptobs[i].close) (port);
871 else
872 rv = 0;
873 scm_i_remove_port (port);
874 SCM_CLR_PORT_OPEN_FLAG (port);
875 return scm_from_bool (rv >= 0);
876 }
877 #undef FUNC_NAME
878
879 SCM_DEFINE (scm_close_input_port, "close-input-port", 1, 0, 0,
880 (SCM port),
881 "Close the specified input port object. The routine has no effect if\n"
882 "the file has already been closed. An exception may be raised if an\n"
883 "error occurs. The value returned is unspecified.\n\n"
884 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
885 "which can close file descriptors.")
886 #define FUNC_NAME s_scm_close_input_port
887 {
888 SCM_VALIDATE_INPUT_PORT (1, port);
889 scm_close_port (port);
890 return SCM_UNSPECIFIED;
891 }
892 #undef FUNC_NAME
893
894 SCM_DEFINE (scm_close_output_port, "close-output-port", 1, 0, 0,
895 (SCM port),
896 "Close the specified output 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_output_port
902 {
903 port = SCM_COERCE_OUTPORT (port);
904 SCM_VALIDATE_OUTPUT_PORT (1, port);
905 scm_close_port (port);
906 return SCM_UNSPECIFIED;
907 }
908 #undef FUNC_NAME
909
910 static SCM
911 collect_keys (void *unused, SCM key, SCM value, SCM result)
912 {
913 return scm_cons (key, result);
914 }
915
916 void
917 scm_c_port_for_each (void (*proc)(void *data, SCM p), void *data)
918 {
919 SCM ports;
920
921 /* Copy out the port table as a list so that we get strong references
922 to all the values. */
923 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
924 ports = scm_internal_hash_fold (collect_keys, NULL,
925 SCM_EOL, scm_i_port_weak_hash);
926 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
927
928 for (; scm_is_pair (ports); ports = scm_cdr (ports))
929 {
930 SCM p = scm_car (ports);
931 if (SCM_PORTP (p))
932 proc (data, p);
933 }
934 }
935
936 SCM_DEFINE (scm_port_for_each, "port-for-each", 1, 0, 0,
937 (SCM proc),
938 "Apply @var{proc} to each port in the Guile port table\n"
939 "in turn. The return value is unspecified. More specifically,\n"
940 "@var{proc} is applied exactly once to every port that exists\n"
941 "in the system at the time @code{port-for-each} is invoked.\n"
942 "Changes to the port table while @code{port-for-each} is running\n"
943 "have no effect as far as @code{port-for-each} is concerned.")
944 #define FUNC_NAME s_scm_port_for_each
945 {
946 SCM ports;
947
948 SCM_VALIDATE_PROC (1, proc);
949
950 /* Copy out the port table as a list so that we get strong references
951 to all the values. */
952 scm_i_pthread_mutex_lock (&scm_i_port_table_mutex);
953 ports = scm_internal_hash_fold (collect_keys, NULL,
954 SCM_EOL, scm_i_port_weak_hash);
955 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
956
957 for (; scm_is_pair (ports); ports = scm_cdr (ports))
958 if (SCM_PORTP (SCM_CAR (ports)))
959 scm_call_1 (proc, SCM_CAR (ports));
960
961 return SCM_UNSPECIFIED;
962 }
963 #undef FUNC_NAME
964
965
966 \f
967 /* Utter miscellany. Gosh, we should clean this up some time. */
968
969 SCM_DEFINE (scm_input_port_p, "input-port?", 1, 0, 0,
970 (SCM x),
971 "Return @code{#t} if @var{x} is an input port, otherwise return\n"
972 "@code{#f}. Any object satisfying this predicate also satisfies\n"
973 "@code{port?}.")
974 #define FUNC_NAME s_scm_input_port_p
975 {
976 return scm_from_bool (SCM_INPUT_PORT_P (x));
977 }
978 #undef FUNC_NAME
979
980 SCM_DEFINE (scm_output_port_p, "output-port?", 1, 0, 0,
981 (SCM x),
982 "Return @code{#t} if @var{x} is an output port, otherwise return\n"
983 "@code{#f}. Any object satisfying this predicate also satisfies\n"
984 "@code{port?}.")
985 #define FUNC_NAME s_scm_output_port_p
986 {
987 x = SCM_COERCE_OUTPORT (x);
988 return scm_from_bool (SCM_OUTPUT_PORT_P (x));
989 }
990 #undef FUNC_NAME
991
992 SCM_DEFINE (scm_port_p, "port?", 1, 0, 0,
993 (SCM x),
994 "Return a boolean indicating whether @var{x} is a port.\n"
995 "Equivalent to @code{(or (input-port? @var{x}) (output-port?\n"
996 "@var{x}))}.")
997 #define FUNC_NAME s_scm_port_p
998 {
999 return scm_from_bool (SCM_PORTP (x));
1000 }
1001 #undef FUNC_NAME
1002
1003 SCM_DEFINE (scm_port_closed_p, "port-closed?", 1, 0, 0,
1004 (SCM port),
1005 "Return @code{#t} if @var{port} is closed or @code{#f} if it is\n"
1006 "open.")
1007 #define FUNC_NAME s_scm_port_closed_p
1008 {
1009 SCM_VALIDATE_PORT (1, port);
1010 return scm_from_bool (!SCM_OPPORTP (port));
1011 }
1012 #undef FUNC_NAME
1013
1014 SCM_DEFINE (scm_eof_object_p, "eof-object?", 1, 0, 0,
1015 (SCM x),
1016 "Return @code{#t} if @var{x} is an end-of-file object; otherwise\n"
1017 "return @code{#f}.")
1018 #define FUNC_NAME s_scm_eof_object_p
1019 {
1020 return scm_from_bool(SCM_EOF_OBJECT_P (x));
1021 }
1022 #undef FUNC_NAME
1023
1024 SCM_DEFINE (scm_force_output, "force-output", 0, 1, 0,
1025 (SCM port),
1026 "Flush the specified output port, or the current output port if @var{port}\n"
1027 "is omitted. The current output buffer contents are passed to the\n"
1028 "underlying port implementation (e.g., in the case of fports, the\n"
1029 "data will be written to the file and the output buffer will be cleared.)\n"
1030 "It has no effect on an unbuffered port.\n\n"
1031 "The return value is unspecified.")
1032 #define FUNC_NAME s_scm_force_output
1033 {
1034 if (SCM_UNBNDP (port))
1035 port = scm_current_output_port ();
1036 else
1037 {
1038 port = SCM_COERCE_OUTPORT (port);
1039 SCM_VALIDATE_OPOUTPORT (1, port);
1040 }
1041 scm_flush (port);
1042 return SCM_UNSPECIFIED;
1043 }
1044 #undef FUNC_NAME
1045
1046
1047 static void
1048 flush_output_port (void *closure, SCM port)
1049 {
1050 if (SCM_OPOUTPORTP (port))
1051 scm_flush (port);
1052 }
1053
1054 SCM_DEFINE (scm_flush_all_ports, "flush-all-ports", 0, 0, 0,
1055 (),
1056 "Equivalent to calling @code{force-output} on\n"
1057 "all open output ports. The return value is unspecified.")
1058 #define FUNC_NAME s_scm_flush_all_ports
1059 {
1060 scm_c_port_for_each (&flush_output_port, NULL);
1061 return SCM_UNSPECIFIED;
1062 }
1063 #undef FUNC_NAME
1064
1065 SCM_DEFINE (scm_read_char, "read-char", 0, 1, 0,
1066 (SCM port),
1067 "Return the next character available from @var{port}, updating\n"
1068 "@var{port} to point to the following character. If no more\n"
1069 "characters are available, the end-of-file object is returned.\n"
1070 "\n"
1071 "When @var{port}'s data cannot be decoded according to its\n"
1072 "character encoding, a @code{decoding-error} is raised and\n"
1073 "@var{port} points past the erroneous byte sequence.\n")
1074 #define FUNC_NAME s_scm_read_char
1075 {
1076 scm_t_wchar c;
1077 if (SCM_UNBNDP (port))
1078 port = scm_current_input_port ();
1079 SCM_VALIDATE_OPINPORT (1, port);
1080 c = scm_getc (port);
1081 if (EOF == c)
1082 return SCM_EOF_VAL;
1083 return SCM_MAKE_CHAR (c);
1084 }
1085 #undef FUNC_NAME
1086
1087 /* Update the line and column number of PORT after consumption of C. */
1088 static inline void
1089 update_port_lf (scm_t_wchar c, SCM port)
1090 {
1091 switch (c)
1092 {
1093 case '\a':
1094 case EOF:
1095 break;
1096 case '\b':
1097 SCM_DECCOL (port);
1098 break;
1099 case '\n':
1100 SCM_INCLINE (port);
1101 break;
1102 case '\r':
1103 SCM_ZEROCOL (port);
1104 break;
1105 case '\t':
1106 SCM_TABCOL (port);
1107 break;
1108 default:
1109 SCM_INCCOL (port);
1110 break;
1111 }
1112 }
1113
1114 #define SCM_MBCHAR_BUF_SIZE (4)
1115
1116 /* Convert the SIZE-byte UTF-8 sequence in UTF8_BUF to a codepoint.
1117 UTF8_BUF is assumed to contain a valid UTF-8 sequence. */
1118 static scm_t_wchar
1119 utf8_to_codepoint (const scm_t_uint8 *utf8_buf, size_t size)
1120 {
1121 scm_t_wchar codepoint;
1122
1123 if (utf8_buf[0] <= 0x7f)
1124 {
1125 assert (size == 1);
1126 codepoint = utf8_buf[0];
1127 }
1128 else if ((utf8_buf[0] & 0xe0) == 0xc0)
1129 {
1130 assert (size == 2);
1131 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x1f) << 6UL
1132 | (utf8_buf[1] & 0x3f);
1133 }
1134 else if ((utf8_buf[0] & 0xf0) == 0xe0)
1135 {
1136 assert (size == 3);
1137 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x0f) << 12UL
1138 | ((scm_t_wchar) utf8_buf[1] & 0x3f) << 6UL
1139 | (utf8_buf[2] & 0x3f);
1140 }
1141 else
1142 {
1143 assert (size == 4);
1144 codepoint = ((scm_t_wchar) utf8_buf[0] & 0x07) << 18UL
1145 | ((scm_t_wchar) utf8_buf[1] & 0x3f) << 12UL
1146 | ((scm_t_wchar) utf8_buf[2] & 0x3f) << 6UL
1147 | (utf8_buf[3] & 0x3f);
1148 }
1149
1150 return codepoint;
1151 }
1152
1153 /* Read a UTF-8 sequence from PORT. On success, return 0 and set
1154 *CODEPOINT to the codepoint that was read, fill BUF with its UTF-8
1155 representation, and set *LEN to the length in bytes. Return
1156 `EILSEQ' on error. */
1157 static int
1158 get_utf8_codepoint (SCM port, scm_t_wchar *codepoint,
1159 scm_t_uint8 buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1160 {
1161 #define ASSERT_NOT_EOF(b) \
1162 if (SCM_UNLIKELY ((b) == EOF)) \
1163 goto invalid_seq
1164 #define CONSUME_PEEKED_BYTE() \
1165 pt->read_pos++
1166
1167 int byte;
1168 scm_t_port *pt;
1169
1170 *len = 0;
1171 pt = SCM_PTAB_ENTRY (port);
1172
1173 byte = scm_get_byte_or_eof (port);
1174 if (byte == EOF)
1175 {
1176 *codepoint = EOF;
1177 return 0;
1178 }
1179
1180 buf[0] = (scm_t_uint8) byte;
1181 *len = 1;
1182
1183 if (buf[0] <= 0x7f)
1184 /* 1-byte form. */
1185 *codepoint = buf[0];
1186 else if (buf[0] >= 0xc2 && buf[0] <= 0xdf)
1187 {
1188 /* 2-byte form. */
1189 byte = scm_peek_byte_or_eof (port);
1190 ASSERT_NOT_EOF (byte);
1191
1192 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1193 goto invalid_seq;
1194
1195 CONSUME_PEEKED_BYTE ();
1196 buf[1] = (scm_t_uint8) byte;
1197 *len = 2;
1198
1199 *codepoint = ((scm_t_wchar) buf[0] & 0x1f) << 6UL
1200 | (buf[1] & 0x3f);
1201 }
1202 else if ((buf[0] & 0xf0) == 0xe0)
1203 {
1204 /* 3-byte form. */
1205 byte = scm_peek_byte_or_eof (port);
1206 ASSERT_NOT_EOF (byte);
1207
1208 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80
1209 || (buf[0] == 0xe0 && byte < 0xa0)
1210 || (buf[0] == 0xed && byte > 0x9f)))
1211 goto invalid_seq;
1212
1213 CONSUME_PEEKED_BYTE ();
1214 buf[1] = (scm_t_uint8) byte;
1215 *len = 2;
1216
1217 byte = scm_peek_byte_or_eof (port);
1218 ASSERT_NOT_EOF (byte);
1219
1220 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1221 goto invalid_seq;
1222
1223 CONSUME_PEEKED_BYTE ();
1224 buf[2] = (scm_t_uint8) byte;
1225 *len = 3;
1226
1227 *codepoint = ((scm_t_wchar) buf[0] & 0x0f) << 12UL
1228 | ((scm_t_wchar) buf[1] & 0x3f) << 6UL
1229 | (buf[2] & 0x3f);
1230 }
1231 else if (buf[0] >= 0xf0 && buf[0] <= 0xf4)
1232 {
1233 /* 4-byte form. */
1234 byte = scm_peek_byte_or_eof (port);
1235 ASSERT_NOT_EOF (byte);
1236
1237 if (SCM_UNLIKELY (((byte & 0xc0) != 0x80)
1238 || (buf[0] == 0xf0 && byte < 0x90)
1239 || (buf[0] == 0xf4 && byte > 0x8f)))
1240 goto invalid_seq;
1241
1242 CONSUME_PEEKED_BYTE ();
1243 buf[1] = (scm_t_uint8) byte;
1244 *len = 2;
1245
1246 byte = scm_peek_byte_or_eof (port);
1247 ASSERT_NOT_EOF (byte);
1248
1249 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1250 goto invalid_seq;
1251
1252 CONSUME_PEEKED_BYTE ();
1253 buf[2] = (scm_t_uint8) byte;
1254 *len = 3;
1255
1256 byte = scm_peek_byte_or_eof (port);
1257 ASSERT_NOT_EOF (byte);
1258
1259 if (SCM_UNLIKELY ((byte & 0xc0) != 0x80))
1260 goto invalid_seq;
1261
1262 CONSUME_PEEKED_BYTE ();
1263 buf[3] = (scm_t_uint8) byte;
1264 *len = 4;
1265
1266 *codepoint = ((scm_t_wchar) buf[0] & 0x07) << 18UL
1267 | ((scm_t_wchar) buf[1] & 0x3f) << 12UL
1268 | ((scm_t_wchar) buf[2] & 0x3f) << 6UL
1269 | (buf[3] & 0x3f);
1270 }
1271 else
1272 goto invalid_seq;
1273
1274 return 0;
1275
1276 invalid_seq:
1277 /* Here we could choose the consume the faulty byte when it's not a
1278 valid starting byte, but it's not a requirement. What Section 3.9
1279 of Unicode 6.0.0 mandates, though, is to not consume a byte that
1280 would otherwise be a valid starting byte. */
1281
1282 return EILSEQ;
1283
1284 #undef CONSUME_PEEKED_BYTE
1285 #undef ASSERT_NOT_EOF
1286 }
1287
1288 /* Likewise, read a byte sequence from PORT, passing it through its
1289 input conversion descriptor. */
1290 static int
1291 get_iconv_codepoint (SCM port, scm_t_wchar *codepoint,
1292 char buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1293 {
1294 scm_t_port *pt;
1295 int err, byte_read;
1296 size_t bytes_consumed, output_size;
1297 char *output;
1298 scm_t_uint8 utf8_buf[SCM_MBCHAR_BUF_SIZE];
1299
1300 pt = SCM_PTAB_ENTRY (port);
1301
1302 for (output_size = 0, output = (char *) utf8_buf,
1303 bytes_consumed = 0, err = 0;
1304 err == 0 && output_size == 0
1305 && (bytes_consumed == 0 || byte_read != EOF);
1306 bytes_consumed++)
1307 {
1308 char *input;
1309 size_t input_left, output_left, done;
1310
1311 byte_read = scm_get_byte_or_eof (port);
1312 if (byte_read == EOF)
1313 {
1314 if (bytes_consumed == 0)
1315 {
1316 *codepoint = (scm_t_wchar) EOF;
1317 *len = 0;
1318 return 0;
1319 }
1320 else
1321 continue;
1322 }
1323
1324 buf[bytes_consumed] = byte_read;
1325
1326 input = buf;
1327 input_left = bytes_consumed + 1;
1328 output_left = sizeof (utf8_buf);
1329
1330 done = iconv (pt->input_cd, &input, &input_left,
1331 &output, &output_left);
1332 if (done == (size_t) -1)
1333 {
1334 err = errno;
1335 if (err == EINVAL)
1336 /* Missing input: keep trying. */
1337 err = 0;
1338 }
1339 else
1340 output_size = sizeof (utf8_buf) - output_left;
1341 }
1342
1343 if (SCM_UNLIKELY (output_size == 0))
1344 /* An unterminated sequence. */
1345 err = EILSEQ;
1346 else if (SCM_LIKELY (err == 0))
1347 {
1348 /* Convert the UTF8_BUF sequence to a Unicode code point. */
1349 *codepoint = utf8_to_codepoint (utf8_buf, output_size);
1350 *len = bytes_consumed;
1351 }
1352
1353 return err;
1354 }
1355
1356 /* Read a codepoint from PORT and return it in *CODEPOINT. Fill BUF
1357 with the byte representation of the codepoint in PORT's encoding, and
1358 set *LEN to the length in bytes of that representation. Return 0 on
1359 success and an errno value on error. */
1360 static int
1361 get_codepoint (SCM port, scm_t_wchar *codepoint,
1362 char buf[SCM_MBCHAR_BUF_SIZE], size_t *len)
1363 {
1364 int err;
1365 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1366
1367 if (pt->input_cd == (iconv_t) -1)
1368 /* Initialize the conversion descriptors, if needed. */
1369 scm_i_set_port_encoding_x (port, pt->encoding);
1370
1371 /* FIXME: In 2.1, add a flag to determine whether a port is UTF-8. */
1372 if (pt->input_cd == (iconv_t) -1)
1373 err = get_utf8_codepoint (port, codepoint, (scm_t_uint8 *) buf, len);
1374 else
1375 err = get_iconv_codepoint (port, codepoint, buf, len);
1376
1377 if (SCM_LIKELY (err == 0))
1378 update_port_lf (*codepoint, port);
1379 else if (pt->ilseq_handler == SCM_ICONVEH_QUESTION_MARK)
1380 {
1381 *codepoint = '?';
1382 err = 0;
1383 update_port_lf (*codepoint, port);
1384 }
1385
1386 return err;
1387 }
1388
1389 /* Read a codepoint from PORT and return it. */
1390 scm_t_wchar
1391 scm_getc (SCM port)
1392 #define FUNC_NAME "scm_getc"
1393 {
1394 int err;
1395 size_t len;
1396 scm_t_wchar codepoint;
1397 char buf[SCM_MBCHAR_BUF_SIZE];
1398
1399 err = get_codepoint (port, &codepoint, buf, &len);
1400 if (SCM_UNLIKELY (err != 0))
1401 /* At this point PORT should point past the invalid encoding, as per
1402 R6RS-lib Section 8.2.4. */
1403 scm_decoding_error (FUNC_NAME, err, "input decoding error", port);
1404
1405 return codepoint;
1406 }
1407 #undef FUNC_NAME
1408
1409 /* this should only be called when the read buffer is empty. it
1410 tries to refill the read buffer. it returns the first char from
1411 the port, which is either EOF or *(pt->read_pos). */
1412 int
1413 scm_fill_input (SCM port)
1414 {
1415 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1416
1417 assert (pt->read_pos == pt->read_end);
1418
1419 if (pt->read_buf == pt->putback_buf)
1420 {
1421 /* finished reading put-back chars. */
1422 pt->read_buf = pt->saved_read_buf;
1423 pt->read_pos = pt->saved_read_pos;
1424 pt->read_end = pt->saved_read_end;
1425 pt->read_buf_size = pt->saved_read_buf_size;
1426 if (pt->read_pos < pt->read_end)
1427 return *(pt->read_pos);
1428 }
1429 return scm_ptobs[SCM_PTOBNUM (port)].fill_input (port);
1430 }
1431
1432
1433 /* scm_lfwrite
1434 *
1435 * This function differs from scm_c_write; it updates port line and
1436 * column. */
1437
1438 void
1439 scm_lfwrite (const char *ptr, size_t size, SCM port)
1440 {
1441 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1442 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
1443
1444 if (pt->rw_active == SCM_PORT_READ)
1445 scm_end_input (port);
1446
1447 ptob->write (port, ptr, size);
1448
1449 for (; size; ptr++, size--)
1450 update_port_lf ((scm_t_wchar) (unsigned char) *ptr, port);
1451
1452 if (pt->rw_random)
1453 pt->rw_active = SCM_PORT_WRITE;
1454 }
1455
1456 /* Write STR to PORT from START inclusive to END exclusive. */
1457 void
1458 scm_lfwrite_substr (SCM str, size_t start, size_t end, SCM port)
1459 {
1460 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1461
1462 if (pt->rw_active == SCM_PORT_READ)
1463 scm_end_input (port);
1464
1465 if (end == (size_t) -1)
1466 end = scm_i_string_length (str);
1467
1468 scm_display (scm_c_substring (str, start, end), port);
1469
1470 if (pt->rw_random)
1471 pt->rw_active = SCM_PORT_WRITE;
1472 }
1473
1474 /* scm_c_read
1475 *
1476 * Used by an application to read arbitrary number of bytes from an
1477 * SCM port. Same semantics as libc read, except that scm_c_read only
1478 * returns less than SIZE bytes if at end-of-file.
1479 *
1480 * Warning: Doesn't update port line and column counts! */
1481
1482 /* This structure, and the following swap_buffer function, are used
1483 for temporarily swapping a port's own read buffer, and the buffer
1484 that the caller of scm_c_read provides. */
1485 struct port_and_swap_buffer
1486 {
1487 scm_t_port *pt;
1488 unsigned char *buffer;
1489 size_t size;
1490 };
1491
1492 static void
1493 swap_buffer (void *data)
1494 {
1495 struct port_and_swap_buffer *psb = (struct port_and_swap_buffer *) data;
1496 unsigned char *old_buf = psb->pt->read_buf;
1497 size_t old_size = psb->pt->read_buf_size;
1498
1499 /* Make the port use (buffer, size) from the struct. */
1500 psb->pt->read_pos = psb->pt->read_buf = psb->pt->read_end = psb->buffer;
1501 psb->pt->read_buf_size = psb->size;
1502
1503 /* Save the port's old (buffer, size) in the struct. */
1504 psb->buffer = old_buf;
1505 psb->size = old_size;
1506 }
1507
1508 size_t
1509 scm_c_read (SCM port, void *buffer, size_t size)
1510 #define FUNC_NAME "scm_c_read"
1511 {
1512 scm_t_port *pt;
1513 size_t n_read = 0, n_available;
1514 struct port_and_swap_buffer psb;
1515
1516 SCM_VALIDATE_OPINPORT (1, port);
1517
1518 pt = SCM_PTAB_ENTRY (port);
1519 if (pt->rw_active == SCM_PORT_WRITE)
1520 scm_ptobs[SCM_PTOBNUM (port)].flush (port);
1521
1522 if (pt->rw_random)
1523 pt->rw_active = SCM_PORT_READ;
1524
1525 /* Take bytes first from the port's read buffer. */
1526 if (pt->read_pos < pt->read_end)
1527 {
1528 n_available = min (size, pt->read_end - pt->read_pos);
1529 memcpy (buffer, pt->read_pos, n_available);
1530 buffer = (char *) buffer + n_available;
1531 pt->read_pos += n_available;
1532 n_read += n_available;
1533 size -= n_available;
1534 }
1535
1536 /* Avoid the scm_dynwind_* costs if we now have enough data. */
1537 if (size == 0)
1538 return n_read;
1539
1540 /* Now we will call scm_fill_input repeatedly until we have read the
1541 requested number of bytes. (Note that a single scm_fill_input
1542 call does not guarantee to fill the whole of the port's read
1543 buffer.) */
1544 if (pt->read_buf_size <= 1 && pt->encoding == NULL)
1545 {
1546 /* The port that we are reading from is unbuffered - i.e. does
1547 not have its own persistent buffer - but we have a buffer,
1548 provided by our caller, that is the right size for the data
1549 that is wanted. For the following scm_fill_input calls,
1550 therefore, we use the buffer in hand as the port's read
1551 buffer.
1552
1553 We need to make sure that the port's normal (1 byte) buffer
1554 is reinstated in case one of the scm_fill_input () calls
1555 throws an exception; we use the scm_dynwind_* API to achieve
1556 that.
1557
1558 A consequence of this optimization is that the fill_input
1559 functions can't unget characters. That'll push data to the
1560 pushback buffer instead of this psb buffer. */
1561 #if SCM_DEBUG == 1
1562 unsigned char *pback = pt->putback_buf;
1563 #endif
1564 psb.pt = pt;
1565 psb.buffer = buffer;
1566 psb.size = size;
1567 scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
1568 scm_dynwind_rewind_handler (swap_buffer, &psb, SCM_F_WIND_EXPLICITLY);
1569 scm_dynwind_unwind_handler (swap_buffer, &psb, SCM_F_WIND_EXPLICITLY);
1570
1571 /* Call scm_fill_input until we have all the bytes that we need,
1572 or we hit EOF. */
1573 while (pt->read_buf_size && (scm_fill_input (port) != EOF))
1574 {
1575 pt->read_buf_size -= (pt->read_end - pt->read_pos);
1576 pt->read_pos = pt->read_buf = pt->read_end;
1577 }
1578 #if SCM_DEBUG == 1
1579 if (pback != pt->putback_buf
1580 || pt->read_buf - (unsigned char *) buffer < 0)
1581 scm_misc_error (FUNC_NAME,
1582 "scm_c_read must not call a fill function that pushes "
1583 "back characters onto an unbuffered port", SCM_EOL);
1584 #endif
1585 n_read += pt->read_buf - (unsigned char *) buffer;
1586
1587 /* Reinstate the port's normal buffer. */
1588 scm_dynwind_end ();
1589 }
1590 else
1591 {
1592 /* The port has its own buffer. It is important that we use it,
1593 even if it happens to be smaller than our caller's buffer, so
1594 that a custom port implementation's entry points (in
1595 particular, fill_input) can rely on the buffer always being
1596 the same as they first set up. */
1597 while (size && (scm_fill_input (port) != EOF))
1598 {
1599 n_available = min (size, pt->read_end - pt->read_pos);
1600 memcpy (buffer, pt->read_pos, n_available);
1601 buffer = (char *) buffer + n_available;
1602 pt->read_pos += n_available;
1603 n_read += n_available;
1604 size -= n_available;
1605 }
1606 }
1607
1608 return n_read;
1609 }
1610 #undef FUNC_NAME
1611
1612 /* scm_c_write
1613 *
1614 * Used by an application to write arbitrary number of bytes to an SCM
1615 * port. Similar semantics as libc write. However, unlike libc
1616 * write, scm_c_write writes the requested number of bytes and has no
1617 * return value.
1618 *
1619 * Warning: Doesn't update port line and column counts!
1620 */
1621
1622 void
1623 scm_c_write (SCM port, const void *ptr, size_t size)
1624 #define FUNC_NAME "scm_c_write"
1625 {
1626 scm_t_port *pt;
1627 scm_t_ptob_descriptor *ptob;
1628
1629 SCM_VALIDATE_OPOUTPORT (1, port);
1630
1631 pt = SCM_PTAB_ENTRY (port);
1632 ptob = &scm_ptobs[SCM_PTOBNUM (port)];
1633
1634 if (pt->rw_active == SCM_PORT_READ)
1635 scm_end_input (port);
1636
1637 ptob->write (port, ptr, size);
1638
1639 if (pt->rw_random)
1640 pt->rw_active = SCM_PORT_WRITE;
1641 }
1642 #undef FUNC_NAME
1643
1644 void
1645 scm_flush (SCM port)
1646 {
1647 long i = SCM_PTOBNUM (port);
1648 assert (i >= 0);
1649 (scm_ptobs[i].flush) (port);
1650 }
1651
1652 void
1653 scm_end_input (SCM port)
1654 {
1655 long offset;
1656 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1657
1658 if (pt->read_buf == pt->putback_buf)
1659 {
1660 offset = pt->read_end - pt->read_pos;
1661 pt->read_buf = pt->saved_read_buf;
1662 pt->read_pos = pt->saved_read_pos;
1663 pt->read_end = pt->saved_read_end;
1664 pt->read_buf_size = pt->saved_read_buf_size;
1665 }
1666 else
1667 offset = 0;
1668
1669 scm_ptobs[SCM_PTOBNUM (port)].end_input (port, offset);
1670 }
1671
1672 \f
1673
1674
1675 void
1676 scm_unget_byte (int c, SCM port)
1677 #define FUNC_NAME "scm_unget_byte"
1678 {
1679 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1680
1681 if (pt->read_buf == pt->putback_buf)
1682 /* already using the put-back buffer. */
1683 {
1684 /* enlarge putback_buf if necessary. */
1685 if (pt->read_end == pt->read_buf + pt->read_buf_size
1686 && pt->read_buf == pt->read_pos)
1687 {
1688 size_t new_size = pt->read_buf_size * 2;
1689 unsigned char *tmp = (unsigned char *)
1690 scm_gc_realloc (pt->putback_buf, pt->read_buf_size, new_size,
1691 "putback buffer");
1692
1693 pt->read_pos = pt->read_buf = pt->putback_buf = tmp;
1694 pt->read_end = pt->read_buf + pt->read_buf_size;
1695 pt->read_buf_size = pt->putback_buf_size = new_size;
1696 }
1697
1698 /* shift any existing bytes to buffer + 1. */
1699 if (pt->read_pos == pt->read_end)
1700 pt->read_end = pt->read_buf + 1;
1701 else if (pt->read_pos != pt->read_buf + 1)
1702 {
1703 int count = pt->read_end - pt->read_pos;
1704
1705 memmove (pt->read_buf + 1, pt->read_pos, count);
1706 pt->read_end = pt->read_buf + 1 + count;
1707 }
1708
1709 pt->read_pos = pt->read_buf;
1710 }
1711 else
1712 /* switch to the put-back buffer. */
1713 {
1714 if (pt->putback_buf == NULL)
1715 {
1716 pt->putback_buf
1717 = (unsigned char *) scm_gc_malloc_pointerless
1718 (SCM_INITIAL_PUTBACK_BUF_SIZE, "putback buffer");
1719 pt->putback_buf_size = SCM_INITIAL_PUTBACK_BUF_SIZE;
1720 }
1721
1722 pt->saved_read_buf = pt->read_buf;
1723 pt->saved_read_pos = pt->read_pos;
1724 pt->saved_read_end = pt->read_end;
1725 pt->saved_read_buf_size = pt->read_buf_size;
1726
1727 pt->read_pos = pt->read_buf = pt->putback_buf;
1728 pt->read_end = pt->read_buf + 1;
1729 pt->read_buf_size = pt->putback_buf_size;
1730 }
1731
1732 *pt->read_buf = c;
1733
1734 if (pt->rw_random)
1735 pt->rw_active = SCM_PORT_READ;
1736 }
1737 #undef FUNC_NAME
1738
1739 void
1740 scm_ungetc (scm_t_wchar c, SCM port)
1741 #define FUNC_NAME "scm_ungetc"
1742 {
1743 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1744 char *result;
1745 char result_buf[10];
1746 const char *encoding;
1747 size_t len;
1748 int i;
1749
1750 if (pt->encoding != NULL)
1751 encoding = pt->encoding;
1752 else
1753 encoding = "ISO-8859-1";
1754
1755 len = sizeof (result_buf);
1756 result = u32_conv_to_encoding (encoding,
1757 (enum iconv_ilseq_handler) pt->ilseq_handler,
1758 (uint32_t *) &c, 1, NULL,
1759 result_buf, &len);
1760
1761 if (SCM_UNLIKELY (result == NULL || len == 0))
1762 scm_encoding_error (FUNC_NAME, errno,
1763 "conversion to port encoding failed",
1764 SCM_BOOL_F, SCM_MAKE_CHAR (c));
1765
1766 for (i = len - 1; i >= 0; i--)
1767 scm_unget_byte (result[i], port);
1768
1769 if (SCM_UNLIKELY (result != result_buf))
1770 free (result);
1771
1772 if (c == '\n')
1773 {
1774 /* What should col be in this case?
1775 * We'll leave it at -1.
1776 */
1777 SCM_LINUM (port) -= 1;
1778 }
1779 else
1780 SCM_COL(port) -= 1;
1781 }
1782 #undef FUNC_NAME
1783
1784
1785 void
1786 scm_ungets (const char *s, int n, SCM port)
1787 {
1788 /* This is simple minded and inefficient, but unreading strings is
1789 * probably not a common operation, and remember that line and
1790 * column numbers have to be handled...
1791 *
1792 * Please feel free to write an optimized version!
1793 */
1794 while (n--)
1795 scm_ungetc (s[n], port);
1796 }
1797
1798
1799 SCM_DEFINE (scm_peek_char, "peek-char", 0, 1, 0,
1800 (SCM port),
1801 "Return the next character available from @var{port},\n"
1802 "@emph{without} updating @var{port} to point to the following\n"
1803 "character. If no more characters are available, the\n"
1804 "end-of-file object is returned.\n"
1805 "\n"
1806 "The value returned by\n"
1807 "a call to @code{peek-char} is the same as the value that would\n"
1808 "have been returned by a call to @code{read-char} on the same\n"
1809 "port. The only difference is that the very next call to\n"
1810 "@code{read-char} or @code{peek-char} on that @var{port} will\n"
1811 "return the value returned by the preceding call to\n"
1812 "@code{peek-char}. In particular, a call to @code{peek-char} on\n"
1813 "an interactive port will hang waiting for input whenever a call\n"
1814 "to @code{read-char} would have hung.\n"
1815 "\n"
1816 "As for @code{read-char}, a @code{decoding-error} may be raised\n"
1817 "if such a situation occurs. However, unlike with @code{read-char},\n"
1818 "@var{port} still points at the beginning of the erroneous byte\n"
1819 "sequence when the error is raised.\n")
1820 #define FUNC_NAME s_scm_peek_char
1821 {
1822 int err;
1823 SCM result;
1824 scm_t_wchar c;
1825 char bytes[SCM_MBCHAR_BUF_SIZE];
1826 long column, line, i;
1827 size_t len;
1828
1829 if (SCM_UNBNDP (port))
1830 port = scm_current_input_port ();
1831 SCM_VALIDATE_OPINPORT (1, port);
1832
1833 column = SCM_COL (port);
1834 line = SCM_LINUM (port);
1835
1836 err = get_codepoint (port, &c, bytes, &len);
1837
1838 for (i = len - 1; i >= 0; i--)
1839 scm_unget_byte (bytes[i], port);
1840
1841 SCM_COL (port) = column;
1842 SCM_LINUM (port) = line;
1843
1844 if (SCM_UNLIKELY (err != 0))
1845 {
1846 scm_decoding_error (FUNC_NAME, err, "input decoding error", port);
1847
1848 /* Shouldn't happen since `catch' always aborts to prompt. */
1849 result = SCM_BOOL_F;
1850 }
1851 else if (c == EOF)
1852 result = SCM_EOF_VAL;
1853 else
1854 result = SCM_MAKE_CHAR (c);
1855
1856 return result;
1857 }
1858 #undef FUNC_NAME
1859
1860 SCM_DEFINE (scm_unread_char, "unread-char", 1, 1, 0,
1861 (SCM cobj, SCM port),
1862 "Place character @var{cobj} in @var{port} so that it will be\n"
1863 "read by the next read operation. If called multiple times, the\n"
1864 "unread characters will be read again in last-in first-out\n"
1865 "order. If @var{port} is not supplied, the current input port\n"
1866 "is used.")
1867 #define FUNC_NAME s_scm_unread_char
1868 {
1869 int c;
1870
1871 SCM_VALIDATE_CHAR (1, cobj);
1872 if (SCM_UNBNDP (port))
1873 port = scm_current_input_port ();
1874 SCM_VALIDATE_OPINPORT (2, port);
1875
1876 c = SCM_CHAR (cobj);
1877
1878 scm_ungetc (c, port);
1879 return cobj;
1880 }
1881 #undef FUNC_NAME
1882
1883 SCM_DEFINE (scm_unread_string, "unread-string", 2, 0, 0,
1884 (SCM str, SCM port),
1885 "Place the string @var{str} in @var{port} so that its characters will be\n"
1886 "read in subsequent read operations. If called multiple times, the\n"
1887 "unread characters will be read again in last-in first-out order. If\n"
1888 "@var{port} is not supplied, the current-input-port is used.")
1889 #define FUNC_NAME s_scm_unread_string
1890 {
1891 int n;
1892 SCM_VALIDATE_STRING (1, str);
1893 if (SCM_UNBNDP (port))
1894 port = scm_current_input_port ();
1895 SCM_VALIDATE_OPINPORT (2, port);
1896
1897 n = scm_i_string_length (str);
1898
1899 while (n--)
1900 scm_ungetc (scm_i_string_ref (str, n), port);
1901
1902 return str;
1903 }
1904 #undef FUNC_NAME
1905
1906 SCM_DEFINE (scm_seek, "seek", 3, 0, 0,
1907 (SCM fd_port, SCM offset, SCM whence),
1908 "Sets the current position of @var{fd_port} to the integer\n"
1909 "@var{offset}, which is interpreted according to the value of\n"
1910 "@var{whence}.\n"
1911 "\n"
1912 "One of the following variables should be supplied for\n"
1913 "@var{whence}:\n"
1914 "@defvar SEEK_SET\n"
1915 "Seek from the beginning of the file.\n"
1916 "@end defvar\n"
1917 "@defvar SEEK_CUR\n"
1918 "Seek from the current position.\n"
1919 "@end defvar\n"
1920 "@defvar SEEK_END\n"
1921 "Seek from the end of the file.\n"
1922 "@end defvar\n"
1923 "If @var{fd_port} is a file descriptor, the underlying system\n"
1924 "call is @code{lseek}. @var{port} may be a string port.\n"
1925 "\n"
1926 "The value returned is the new position in the file. This means\n"
1927 "that the current position of a port can be obtained using:\n"
1928 "@lisp\n"
1929 "(seek port 0 SEEK_CUR)\n"
1930 "@end lisp")
1931 #define FUNC_NAME s_scm_seek
1932 {
1933 int how;
1934
1935 fd_port = SCM_COERCE_OUTPORT (fd_port);
1936
1937 how = scm_to_int (whence);
1938 if (how != SEEK_SET && how != SEEK_CUR && how != SEEK_END)
1939 SCM_OUT_OF_RANGE (3, whence);
1940
1941 if (SCM_OPPORTP (fd_port))
1942 {
1943 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (fd_port);
1944 off_t_or_off64_t off = scm_to_off_t_or_off64_t (offset);
1945 off_t_or_off64_t rv;
1946
1947 if (!ptob->seek)
1948 SCM_MISC_ERROR ("port is not seekable",
1949 scm_cons (fd_port, SCM_EOL));
1950 else
1951 rv = ptob->seek (fd_port, off, how);
1952 return scm_from_off_t_or_off64_t (rv);
1953 }
1954 else /* file descriptor?. */
1955 {
1956 off_t_or_off64_t off = scm_to_off_t_or_off64_t (offset);
1957 off_t_or_off64_t rv;
1958 rv = lseek_or_lseek64 (scm_to_int (fd_port), off, how);
1959 if (rv == -1)
1960 SCM_SYSERROR;
1961 return scm_from_off_t_or_off64_t (rv);
1962 }
1963 }
1964 #undef FUNC_NAME
1965
1966 #ifndef O_BINARY
1967 #define O_BINARY 0
1968 #endif
1969
1970 /* Mingw has ftruncate(), perhaps implemented above using chsize, but
1971 doesn't have the filename version truncate(), hence this code. */
1972 #if HAVE_FTRUNCATE && ! HAVE_TRUNCATE
1973 static int
1974 truncate (const char *file, off_t length)
1975 {
1976 int ret, fdes;
1977
1978 fdes = open (file, O_BINARY | O_WRONLY);
1979 if (fdes == -1)
1980 return -1;
1981
1982 ret = ftruncate (fdes, length);
1983 if (ret == -1)
1984 {
1985 int save_errno = errno;
1986 close (fdes);
1987 errno = save_errno;
1988 return -1;
1989 }
1990
1991 return close (fdes);
1992 }
1993 #endif /* HAVE_FTRUNCATE && ! HAVE_TRUNCATE */
1994
1995 SCM_DEFINE (scm_truncate_file, "truncate-file", 1, 1, 0,
1996 (SCM object, SCM length),
1997 "Truncate file @var{object} to @var{length} bytes. @var{object}\n"
1998 "can be a filename string, a port object, or an integer file\n"
1999 "descriptor.\n"
2000 "The return value is unspecified.\n"
2001 "\n"
2002 "For a port or file descriptor @var{length} can be omitted, in\n"
2003 "which case the file is truncated at the current position (per\n"
2004 "@code{ftell} above).\n"
2005 "\n"
2006 "On most systems a file can be extended by giving a length\n"
2007 "greater than the current size, but this is not mandatory in the\n"
2008 "POSIX standard.")
2009 #define FUNC_NAME s_scm_truncate_file
2010 {
2011 int rv;
2012
2013 /* "object" can be a port, fdes or filename.
2014
2015 Negative "length" makes no sense, but it's left to truncate() or
2016 ftruncate() to give back an error for that (normally EINVAL).
2017 */
2018
2019 if (SCM_UNBNDP (length))
2020 {
2021 /* must supply length if object is a filename. */
2022 if (scm_is_string (object))
2023 SCM_MISC_ERROR("must supply length if OBJECT is a filename", SCM_EOL);
2024
2025 length = scm_seek (object, SCM_INUM0, scm_from_int (SEEK_CUR));
2026 }
2027
2028 object = SCM_COERCE_OUTPORT (object);
2029 if (scm_is_integer (object))
2030 {
2031 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
2032 SCM_SYSCALL (rv = ftruncate_or_ftruncate64 (scm_to_int (object),
2033 c_length));
2034 }
2035 else if (SCM_OPOUTPORTP (object))
2036 {
2037 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
2038 scm_t_port *pt = SCM_PTAB_ENTRY (object);
2039 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (object);
2040
2041 if (!ptob->truncate)
2042 SCM_MISC_ERROR ("port is not truncatable", SCM_EOL);
2043 if (pt->rw_active == SCM_PORT_READ)
2044 scm_end_input (object);
2045 else if (pt->rw_active == SCM_PORT_WRITE)
2046 ptob->flush (object);
2047
2048 ptob->truncate (object, c_length);
2049 rv = 0;
2050 }
2051 else
2052 {
2053 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
2054 char *str = scm_to_locale_string (object);
2055 int eno;
2056 SCM_SYSCALL (rv = truncate_or_truncate64 (str, c_length));
2057 eno = errno;
2058 free (str);
2059 errno = eno;
2060 }
2061 if (rv == -1)
2062 SCM_SYSERROR;
2063 return SCM_UNSPECIFIED;
2064 }
2065 #undef FUNC_NAME
2066
2067 SCM_DEFINE (scm_port_line, "port-line", 1, 0, 0,
2068 (SCM port),
2069 "Return the current line number for @var{port}.\n"
2070 "\n"
2071 "The first line of a file is 0. But you might want to add 1\n"
2072 "when printing line numbers, since starting from 1 is\n"
2073 "traditional in error messages, and likely to be more natural to\n"
2074 "non-programmers.")
2075 #define FUNC_NAME s_scm_port_line
2076 {
2077 port = SCM_COERCE_OUTPORT (port);
2078 SCM_VALIDATE_OPENPORT (1, port);
2079 return scm_from_long (SCM_LINUM (port));
2080 }
2081 #undef FUNC_NAME
2082
2083 SCM_DEFINE (scm_set_port_line_x, "set-port-line!", 2, 0, 0,
2084 (SCM port, SCM line),
2085 "Set the current line number for @var{port} to @var{line}. The\n"
2086 "first line of a file is 0.")
2087 #define FUNC_NAME s_scm_set_port_line_x
2088 {
2089 port = SCM_COERCE_OUTPORT (port);
2090 SCM_VALIDATE_OPENPORT (1, port);
2091 SCM_PTAB_ENTRY (port)->line_number = scm_to_long (line);
2092 return SCM_UNSPECIFIED;
2093 }
2094 #undef FUNC_NAME
2095
2096 SCM_DEFINE (scm_port_column, "port-column", 1, 0, 0,
2097 (SCM port),
2098 "Return the current column number of @var{port}.\n"
2099 "If the number is\n"
2100 "unknown, the result is #f. Otherwise, the result is a 0-origin integer\n"
2101 "- i.e. the first character of the first line is line 0, column 0.\n"
2102 "(However, when you display a file position, for example in an error\n"
2103 "message, we recommend you add 1 to get 1-origin integers. This is\n"
2104 "because lines and column numbers traditionally start with 1, and that is\n"
2105 "what non-programmers will find most natural.)")
2106 #define FUNC_NAME s_scm_port_column
2107 {
2108 port = SCM_COERCE_OUTPORT (port);
2109 SCM_VALIDATE_OPENPORT (1, port);
2110 return scm_from_int (SCM_COL (port));
2111 }
2112 #undef FUNC_NAME
2113
2114 SCM_DEFINE (scm_set_port_column_x, "set-port-column!", 2, 0, 0,
2115 (SCM port, SCM column),
2116 "Set the current column of @var{port}. Before reading the first\n"
2117 "character on a line the column should be 0.")
2118 #define FUNC_NAME s_scm_set_port_column_x
2119 {
2120 port = SCM_COERCE_OUTPORT (port);
2121 SCM_VALIDATE_OPENPORT (1, port);
2122 SCM_PTAB_ENTRY (port)->column_number = scm_to_int (column);
2123 return SCM_UNSPECIFIED;
2124 }
2125 #undef FUNC_NAME
2126
2127 SCM_DEFINE (scm_port_filename, "port-filename", 1, 0, 0,
2128 (SCM port),
2129 "Return the filename associated with @var{port}, or @code{#f}\n"
2130 "if no filename is associated with the port.")
2131 #define FUNC_NAME s_scm_port_filename
2132 {
2133 port = SCM_COERCE_OUTPORT (port);
2134 SCM_VALIDATE_OPENPORT (1, port);
2135 return SCM_FILENAME (port);
2136 }
2137 #undef FUNC_NAME
2138
2139 SCM_DEFINE (scm_set_port_filename_x, "set-port-filename!", 2, 0, 0,
2140 (SCM port, SCM filename),
2141 "Change the filename associated with @var{port}, using the current input\n"
2142 "port if none is specified. Note that this does not change the port's\n"
2143 "source of data, but only the value that is returned by\n"
2144 "@code{port-filename} and reported in diagnostic output.")
2145 #define FUNC_NAME s_scm_set_port_filename_x
2146 {
2147 port = SCM_COERCE_OUTPORT (port);
2148 SCM_VALIDATE_OPENPORT (1, port);
2149 /* We allow the user to set the filename to whatever he likes. */
2150 SCM_SET_FILENAME (port, filename);
2151 return SCM_UNSPECIFIED;
2152 }
2153 #undef FUNC_NAME
2154
2155 /* A fluid specifying the default encoding for newly created ports. If it is
2156 a string, that is the encoding. If it is #f, it is in the "native"
2157 (Latin-1) encoding. */
2158 SCM_VARIABLE (default_port_encoding_var, "%default-port-encoding");
2159
2160 static int scm_port_encoding_init = 0;
2161
2162 /* Use ENCODING as the default encoding for future ports. */
2163 void
2164 scm_i_set_default_port_encoding (const char *encoding)
2165 {
2166 if (!scm_port_encoding_init
2167 || !scm_is_fluid (SCM_VARIABLE_REF (default_port_encoding_var)))
2168 scm_misc_error (NULL, "tried to set port encoding fluid before it is initialized",
2169 SCM_EOL);
2170
2171 if (encoding == NULL
2172 || !strcmp (encoding, "ASCII")
2173 || !strcmp (encoding, "ANSI_X3.4-1968")
2174 || !strcmp (encoding, "ISO-8859-1"))
2175 scm_fluid_set_x (SCM_VARIABLE_REF (default_port_encoding_var), SCM_BOOL_F);
2176 else
2177 scm_fluid_set_x (SCM_VARIABLE_REF (default_port_encoding_var),
2178 scm_from_locale_string (encoding));
2179 }
2180
2181 /* Return the name of the default encoding for newly created ports; a
2182 return value of NULL means "ISO-8859-1". */
2183 const char *
2184 scm_i_default_port_encoding (void)
2185 {
2186 if (!scm_port_encoding_init)
2187 return NULL;
2188 else if (!scm_is_fluid (SCM_VARIABLE_REF (default_port_encoding_var)))
2189 return NULL;
2190 else
2191 {
2192 SCM encoding;
2193
2194 encoding = scm_fluid_ref (SCM_VARIABLE_REF (default_port_encoding_var));
2195 if (!scm_is_string (encoding))
2196 return NULL;
2197 else
2198 return scm_i_string_chars (encoding);
2199 }
2200 }
2201
2202 void
2203 scm_i_set_port_encoding_x (SCM port, const char *encoding)
2204 {
2205 scm_t_port *pt;
2206 iconv_t new_input_cd, new_output_cd;
2207
2208 new_input_cd = (iconv_t) -1;
2209 new_output_cd = (iconv_t) -1;
2210
2211 /* Set the character encoding for this port. */
2212 pt = SCM_PTAB_ENTRY (port);
2213
2214 if (encoding == NULL)
2215 encoding = "ISO-8859-1";
2216
2217 if (pt->encoding != encoding)
2218 pt->encoding = scm_gc_strdup (encoding, "port");
2219
2220 /* If ENCODING is UTF-8, then no conversion descriptor is opened
2221 because we do I/O ourselves. This saves 100+ KiB for each
2222 descriptor. */
2223 if (strcmp (encoding, "UTF-8"))
2224 {
2225 if (SCM_CELL_WORD_0 (port) & SCM_RDNG)
2226 {
2227 /* Open an input iconv conversion descriptor, from ENCODING
2228 to UTF-8. We choose UTF-8, not UTF-32, because iconv
2229 implementations can typically convert from anything to
2230 UTF-8, but not to UTF-32 (see
2231 <http://lists.gnu.org/archive/html/bug-libunistring/2010-09/msg00007.html>). */
2232 new_input_cd = iconv_open ("UTF-8", encoding);
2233 if (new_input_cd == (iconv_t) -1)
2234 goto invalid_encoding;
2235 }
2236
2237 if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
2238 {
2239 new_output_cd = iconv_open (encoding, "UTF-8");
2240 if (new_output_cd == (iconv_t) -1)
2241 {
2242 if (new_input_cd != (iconv_t) -1)
2243 iconv_close (new_input_cd);
2244 goto invalid_encoding;
2245 }
2246 }
2247 }
2248
2249 if (pt->input_cd != (iconv_t) -1)
2250 iconv_close (pt->input_cd);
2251 if (pt->output_cd != (iconv_t) -1)
2252 iconv_close (pt->output_cd);
2253
2254 pt->input_cd = new_input_cd;
2255 pt->output_cd = new_output_cd;
2256
2257 return;
2258
2259 invalid_encoding:
2260 {
2261 SCM err;
2262 err = scm_from_locale_string (encoding);
2263 scm_misc_error ("scm_i_set_port_encoding_x",
2264 "invalid or unknown character encoding ~s",
2265 scm_list_1 (err));
2266 }
2267 }
2268
2269 SCM_DEFINE (scm_port_encoding, "port-encoding", 1, 0, 0,
2270 (SCM port),
2271 "Returns, as a string, the character encoding that @var{port}\n"
2272 "uses to interpret its input and output.\n")
2273 #define FUNC_NAME s_scm_port_encoding
2274 {
2275 scm_t_port *pt;
2276 const char *enc;
2277
2278 SCM_VALIDATE_PORT (1, port);
2279
2280 pt = SCM_PTAB_ENTRY (port);
2281 enc = pt->encoding;
2282 if (enc)
2283 return scm_from_locale_string (pt->encoding);
2284 else
2285 return SCM_BOOL_F;
2286 }
2287 #undef FUNC_NAME
2288
2289 SCM_DEFINE (scm_set_port_encoding_x, "set-port-encoding!", 2, 0, 0,
2290 (SCM port, SCM enc),
2291 "Sets the character encoding that will be used to interpret all\n"
2292 "port I/O. New ports are created with the encoding\n"
2293 "appropriate for the current locale if @code{setlocale} has \n"
2294 "been called or ISO-8859-1 otherwise\n"
2295 "and this procedure can be used to modify that encoding.\n")
2296 #define FUNC_NAME s_scm_set_port_encoding_x
2297 {
2298 char *enc_str;
2299
2300 SCM_VALIDATE_PORT (1, port);
2301 SCM_VALIDATE_STRING (2, enc);
2302
2303 enc_str = scm_to_locale_string (enc);
2304 scm_i_set_port_encoding_x (port, enc_str);
2305 free (enc_str);
2306
2307 return SCM_UNSPECIFIED;
2308 }
2309 #undef FUNC_NAME
2310
2311
2312 /* This determines how conversions handle unconvertible characters. */
2313 SCM_GLOBAL_VARIABLE (scm_conversion_strategy, "%port-conversion-strategy");
2314 static int scm_conversion_strategy_init = 0;
2315
2316 scm_t_string_failed_conversion_handler
2317 scm_i_get_conversion_strategy (SCM port)
2318 {
2319 SCM encoding;
2320
2321 if (scm_is_false (port))
2322 {
2323 if (!scm_conversion_strategy_init
2324 || !scm_is_fluid (SCM_VARIABLE_REF (scm_conversion_strategy)))
2325 return SCM_FAILED_CONVERSION_QUESTION_MARK;
2326 else
2327 {
2328 encoding = scm_fluid_ref (SCM_VARIABLE_REF (scm_conversion_strategy));
2329 if (scm_is_false (encoding))
2330 return SCM_FAILED_CONVERSION_QUESTION_MARK;
2331 else
2332 return (scm_t_string_failed_conversion_handler) scm_to_int (encoding);
2333 }
2334 }
2335 else
2336 {
2337 scm_t_port *pt;
2338 pt = SCM_PTAB_ENTRY (port);
2339 return pt->ilseq_handler;
2340 }
2341
2342 }
2343
2344 void
2345 scm_i_set_conversion_strategy_x (SCM port,
2346 scm_t_string_failed_conversion_handler handler)
2347 {
2348 SCM strategy;
2349 scm_t_port *pt;
2350
2351 strategy = scm_from_int ((int) handler);
2352
2353 if (scm_is_false (port))
2354 {
2355 /* Set the default encoding for future ports. */
2356 if (!scm_conversion_strategy_init
2357 || !scm_is_fluid (SCM_VARIABLE_REF (scm_conversion_strategy)))
2358 scm_misc_error (NULL, "tried to set conversion strategy fluid before it is initialized",
2359 SCM_EOL);
2360 scm_fluid_set_x (SCM_VARIABLE_REF (scm_conversion_strategy), strategy);
2361 }
2362 else
2363 {
2364 /* Set the character encoding for this port. */
2365 pt = SCM_PTAB_ENTRY (port);
2366 pt->ilseq_handler = handler;
2367 }
2368 }
2369
2370 SCM_DEFINE (scm_port_conversion_strategy, "port-conversion-strategy",
2371 1, 0, 0, (SCM port),
2372 "Returns the behavior of the port when handling a character that\n"
2373 "is not representable in the port's current encoding.\n"
2374 "It returns the symbol @code{error} if unrepresentable characters\n"
2375 "should cause exceptions, @code{substitute} if the port should\n"
2376 "try to replace unrepresentable characters with question marks or\n"
2377 "approximate characters, or @code{escape} if unrepresentable\n"
2378 "characters should be converted to string escapes.\n"
2379 "\n"
2380 "If @var{port} is @code{#f}, then the current default behavior\n"
2381 "will be returned. New ports will have this default behavior\n"
2382 "when they are created.\n")
2383 #define FUNC_NAME s_scm_port_conversion_strategy
2384 {
2385 scm_t_string_failed_conversion_handler h;
2386
2387 SCM_VALIDATE_OPPORT (1, port);
2388
2389 if (!scm_is_false (port))
2390 {
2391 SCM_VALIDATE_OPPORT (1, port);
2392 }
2393
2394 h = scm_i_get_conversion_strategy (port);
2395 if (h == SCM_FAILED_CONVERSION_ERROR)
2396 return scm_from_latin1_symbol ("error");
2397 else if (h == SCM_FAILED_CONVERSION_QUESTION_MARK)
2398 return scm_from_latin1_symbol ("substitute");
2399 else if (h == SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE)
2400 return scm_from_latin1_symbol ("escape");
2401 else
2402 abort ();
2403
2404 /* Never gets here. */
2405 return SCM_UNDEFINED;
2406 }
2407 #undef FUNC_NAME
2408
2409 SCM_DEFINE (scm_set_port_conversion_strategy_x, "set-port-conversion-strategy!",
2410 2, 0, 0,
2411 (SCM port, SCM sym),
2412 "Sets the behavior of the interpreter when outputting a character\n"
2413 "that is not representable in the port's current encoding.\n"
2414 "@var{sym} can be either @code{'error}, @code{'substitute}, or\n"
2415 "@code{'escape}. If it is @code{'error}, an error will be thrown\n"
2416 "when an unconvertible character is encountered. If it is\n"
2417 "@code{'substitute}, then unconvertible characters will \n"
2418 "be replaced with approximate characters, or with question marks\n"
2419 "if no approximately correct character is available.\n"
2420 "If it is @code{'escape},\n"
2421 "it will appear as a hex escape when output.\n"
2422 "\n"
2423 "If @var{port} is an open port, the conversion error behavior\n"
2424 "is set for that port. If it is @code{#f}, it is set as the\n"
2425 "default behavior for any future ports that get created in\n"
2426 "this thread.\n")
2427 #define FUNC_NAME s_scm_set_port_conversion_strategy_x
2428 {
2429 SCM err;
2430 SCM qm;
2431 SCM esc;
2432
2433 if (!scm_is_false (port))
2434 {
2435 SCM_VALIDATE_OPPORT (1, port);
2436 }
2437
2438 err = scm_from_latin1_symbol ("error");
2439 if (scm_is_true (scm_eqv_p (sym, err)))
2440 {
2441 scm_i_set_conversion_strategy_x (port, SCM_FAILED_CONVERSION_ERROR);
2442 return SCM_UNSPECIFIED;
2443 }
2444
2445 qm = scm_from_latin1_symbol ("substitute");
2446 if (scm_is_true (scm_eqv_p (sym, qm)))
2447 {
2448 scm_i_set_conversion_strategy_x (port,
2449 SCM_FAILED_CONVERSION_QUESTION_MARK);
2450 return SCM_UNSPECIFIED;
2451 }
2452
2453 esc = scm_from_latin1_symbol ("escape");
2454 if (scm_is_true (scm_eqv_p (sym, esc)))
2455 {
2456 scm_i_set_conversion_strategy_x (port,
2457 SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE);
2458 return SCM_UNSPECIFIED;
2459 }
2460
2461 SCM_MISC_ERROR ("unknown conversion behavior ~s", scm_list_1 (sym));
2462
2463 return SCM_UNSPECIFIED;
2464 }
2465 #undef FUNC_NAME
2466
2467
2468
2469 void
2470 scm_print_port_mode (SCM exp, SCM port)
2471 {
2472 scm_puts (SCM_CLOSEDP (exp)
2473 ? "closed: "
2474 : (SCM_RDNG & SCM_CELL_WORD_0 (exp)
2475 ? (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
2476 ? "input-output: "
2477 : "input: ")
2478 : (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
2479 ? "output: "
2480 : "bogus: ")),
2481 port);
2482 }
2483
2484 int
2485 scm_port_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
2486 {
2487 char *type = SCM_PTOBNAME (SCM_PTOBNUM (exp));
2488 if (!type)
2489 type = "port";
2490 scm_puts ("#<", port);
2491 scm_print_port_mode (exp, port);
2492 scm_puts (type, port);
2493 scm_putc (' ', port);
2494 scm_uintprint (SCM_CELL_WORD_1 (exp), 16, port);
2495 scm_putc ('>', port);
2496 return 1;
2497 }
2498
2499 \f
2500
2501 /* Void ports. */
2502
2503 scm_t_bits scm_tc16_void_port = 0;
2504
2505 static int fill_input_void_port (SCM port SCM_UNUSED)
2506 {
2507 return EOF;
2508 }
2509
2510 static void
2511 write_void_port (SCM port SCM_UNUSED,
2512 const void *data SCM_UNUSED,
2513 size_t size SCM_UNUSED)
2514 {
2515 }
2516
2517 static SCM
2518 scm_i_void_port (long mode_bits)
2519 {
2520 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
2521 {
2522 SCM answer = scm_new_port_table_entry (scm_tc16_void_port);
2523 scm_t_port * pt = SCM_PTAB_ENTRY(answer);
2524
2525 scm_port_non_buffer (pt);
2526
2527 SCM_SETSTREAM (answer, 0);
2528 SCM_SET_CELL_TYPE (answer, scm_tc16_void_port | mode_bits);
2529 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
2530 return answer;
2531 }
2532 }
2533
2534 SCM
2535 scm_void_port (char *mode_str)
2536 {
2537 return scm_i_void_port (scm_mode_bits (mode_str));
2538 }
2539
2540 SCM_DEFINE (scm_sys_make_void_port, "%make-void-port", 1, 0, 0,
2541 (SCM mode),
2542 "Create and return a new void port. A void port acts like\n"
2543 "@file{/dev/null}. The @var{mode} argument\n"
2544 "specifies the input/output modes for this port: see the\n"
2545 "documentation for @code{open-file} in @ref{File Ports}.")
2546 #define FUNC_NAME s_scm_sys_make_void_port
2547 {
2548 return scm_i_void_port (scm_i_mode_bits (mode));
2549 }
2550 #undef FUNC_NAME
2551
2552 \f
2553 /* Initialization. */
2554
2555 void
2556 scm_init_ports ()
2557 {
2558 /* lseek() symbols. */
2559 scm_c_define ("SEEK_SET", scm_from_int (SEEK_SET));
2560 scm_c_define ("SEEK_CUR", scm_from_int (SEEK_CUR));
2561 scm_c_define ("SEEK_END", scm_from_int (SEEK_END));
2562
2563 scm_tc16_void_port = scm_make_port_type ("void", fill_input_void_port,
2564 write_void_port);
2565
2566 cur_inport_fluid = scm_make_fluid ();
2567 cur_outport_fluid = scm_make_fluid ();
2568 cur_errport_fluid = scm_make_fluid ();
2569 cur_loadport_fluid = scm_make_fluid ();
2570
2571 scm_i_port_weak_hash = scm_make_weak_key_hash_table (SCM_I_MAKINUM(31));
2572
2573 #include "libguile/ports.x"
2574
2575 /* Use Latin-1 as the default port encoding. */
2576 SCM_VARIABLE_SET (default_port_encoding_var,
2577 scm_make_fluid_with_default (SCM_BOOL_F));
2578 scm_port_encoding_init = 1;
2579
2580 SCM_VARIABLE_SET (scm_conversion_strategy,
2581 scm_make_fluid_with_default
2582 (scm_from_int ((int) SCM_FAILED_CONVERSION_QUESTION_MARK)));
2583 scm_conversion_strategy_init = 1;
2584
2585 /* These bindings are used when boot-9 turns `current-input-port' et
2586 al into parameters. They are then removed from the guile module. */
2587 scm_c_define ("%current-input-port-fluid", cur_inport_fluid);
2588 scm_c_define ("%current-output-port-fluid", cur_outport_fluid);
2589 scm_c_define ("%current-error-port-fluid", cur_errport_fluid);
2590 }
2591
2592 /*
2593 Local Variables:
2594 c-file-style: "gnu"
2595 End:
2596 */