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