degenerate let forms
[bpt/guile.git] / libguile / fports.c
CommitLineData
073167ef 1/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
122f24cc
LC
2 * 2004, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013,
3 * 2014 Free Software Foundation, Inc.
073167ef 4 *
73be1d9e 5 * This library is free software; you can redistribute it and/or
53befeb7
NJ
6 * modify it under the terms of the GNU Lesser General Public License
7 * as published by the Free Software Foundation; either version 3 of
8 * the License, or (at your option) any later version.
0f2d19dd 9 *
53befeb7
NJ
10 * This library is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
0f2d19dd 14 *
73be1d9e
MV
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
53befeb7
NJ
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301 USA
73be1d9e 19 */
1bbd0b84 20
1bbd0b84 21
0f2d19dd 22\f
8ab3d8a0 23#define _LARGEFILE64_SOURCE /* ask for stat64 etc */
9858e529 24#define _GNU_SOURCE /* ask for LONG_LONG_MAX/LONG_LONG_MIN */
8ab3d8a0 25
dbb605f5 26#ifdef HAVE_CONFIG_H
85286595
RB
27# include <config.h>
28#endif
0f2d19dd
JB
29
30#include <stdio.h>
cb63cf9e 31#include <fcntl.h>
95b88819
GH
32
33#ifdef HAVE_STRING_H
34#include <string.h>
35#endif
0f2d19dd 36#include <unistd.h>
b8b17bfd
MV
37#ifdef HAVE_IO_H
38#include <io.h>
39#endif
f47a5239 40#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
cb63cf9e
JB
41#include <sys/stat.h>
42#endif
c7519da3 43#include <poll.h>
cb63cf9e 44#include <errno.h>
8ab3d8a0 45#include <sys/types.h>
09b204d3 46#include <sys/stat.h>
629987ed 47#include <sys/select.h>
e145dd02 48
5335850d
LC
49#include <full-write.h>
50
629987ed
AW
51#include "libguile/_scm.h"
52#include "libguile/strings.h"
53#include "libguile/validate.h"
54#include "libguile/gc.h"
55#include "libguile/posix.h"
56#include "libguile/dynwind.h"
57#include "libguile/hashtab.h"
8ab3d8a0 58
629987ed 59#include "libguile/fports.h"
122f24cc 60#include "libguile/ports-internal.h"
8ab3d8a0
KR
61
62#if SIZEOF_OFF_T == SIZEOF_INT
63#define OFF_T_MAX INT_MAX
64#define OFF_T_MIN INT_MIN
65#elif SIZEOF_OFF_T == SIZEOF_LONG
66#define OFF_T_MAX LONG_MAX
67#define OFF_T_MIN LONG_MIN
68#elif SIZEOF_OFF_T == SIZEOF_LONG_LONG
69#define OFF_T_MAX LONG_LONG_MAX
70#define OFF_T_MIN LONG_LONG_MIN
71#else
72#error Oops, unknown OFF_T size
73#endif
a98bddfd 74
92c2555f 75scm_t_bits scm_tc16_fport;
a98bddfd
DH
76
77
19b27fa2 78/* default buffer size, used if the O/S won't supply a value. */
1be6b49c 79static const size_t default_buffer_size = 1024;
19b27fa2 80
122f24cc
LC
81/* Create FPORT buffers with specified sizes (or -1 to use default size
82 or 0 for no buffer.) */
cb63cf9e 83static void
122f24cc 84scm_fport_buffer_add (SCM port, long read_size, long write_size)
c6c79933 85#define FUNC_NAME "scm_fport_buffer_add"
e145dd02 86{
92c2555f 87 scm_t_port *pt = SCM_PTAB_ENTRY (port);
e145dd02 88
cb63cf9e
JB
89 if (read_size == -1 || write_size == -1)
90 {
1be6b49c 91 size_t default_size;
f47a5239 92#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
cb63cf9e 93 struct stat st;
b8b17bfd 94 scm_t_fport *fp = SCM_FSTREAM (port);
cb63cf9e 95
19b27fa2
GH
96 default_size = (fstat (fp->fdes, &st) == -1) ? default_buffer_size
97 : st.st_blksize;
cb63cf9e 98#else
19b27fa2 99 default_size = default_buffer_size;
cb63cf9e
JB
100#endif
101 if (read_size == -1)
102 read_size = default_size;
103 if (write_size == -1)
104 write_size = default_size;
105 }
0f2d19dd 106
f5f2dcff 107 if (SCM_INPUT_PORT_P (port) && read_size > 0)
cb63cf9e 108 {
92d8fd32 109 pt->read_buf = scm_gc_malloc_pointerless (read_size, "port buffer");
cb63cf9e
JB
110 pt->read_pos = pt->read_end = pt->read_buf;
111 pt->read_buf_size = read_size;
112 }
113 else
114 {
840ae05d 115 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
cb63cf9e
JB
116 pt->read_buf_size = 1;
117 }
1717856b 118
f5f2dcff 119 if (SCM_OUTPUT_PORT_P (port) && write_size > 0)
cb63cf9e 120 {
92d8fd32 121 pt->write_buf = scm_gc_malloc_pointerless (write_size, "port buffer");
cb63cf9e
JB
122 pt->write_pos = pt->write_buf;
123 pt->write_buf_size = write_size;
124 }
125 else
126 {
127 pt->write_buf = pt->write_pos = &pt->shortbuf;
128 pt->write_buf_size = 1;
129 }
130
131 pt->write_end = pt->write_buf + pt->write_buf_size;
132 if (read_size > 0 || write_size > 0)
54778cd3 133 SCM_SET_CELL_WORD_0 (port, SCM_CELL_WORD_0 (port) & ~SCM_BUF0);
cb63cf9e 134 else
54778cd3 135 SCM_SET_CELL_WORD_0 (port, SCM_CELL_WORD_0 (port) | SCM_BUF0);
7a6f1ffa 136}
c6c79933 137#undef FUNC_NAME
7a6f1ffa 138
a1ec6916 139SCM_DEFINE (scm_setvbuf, "setvbuf", 2, 1, 0,
1bbd0b84 140 (SCM port, SCM mode, SCM size),
fc0d72d4
MD
141 "Set the buffering mode for @var{port}. @var{mode} can be:\n"
142 "@table @code\n"
143 "@item _IONBF\n"
144 "non-buffered\n"
145 "@item _IOLBF\n"
146 "line buffered\n"
147 "@item _IOFBF\n"
148 "block buffered, using a newly allocated buffer of @var{size} bytes.\n"
149 "If @var{size} is omitted, a default size will be used.\n"
122f24cc
LC
150 "@end table\n\n"
151 "Only certain types of ports are supported, most importantly\n"
152 "file ports.")
1bbd0b84 153#define FUNC_NAME s_scm_setvbuf
7a6f1ffa 154{
1be6b49c 155 int cmode;
c014a02e 156 long csize;
e8b21eec
LC
157 size_t ndrained;
158 char *drained;
92c2555f 159 scm_t_port *pt;
e140d85d 160 scm_t_ptob_descriptor *ptob;
7a6f1ffa 161
78446828
MV
162 port = SCM_COERCE_OUTPORT (port);
163
122f24cc 164 SCM_VALIDATE_OPENPORT (1, port);
e140d85d 165 ptob = SCM_PORT_DESCRIPTOR (port);
122f24cc 166
e140d85d 167 if (ptob->setvbuf == NULL)
122f24cc
LC
168 scm_wrong_type_arg_msg (FUNC_NAME, 1, port,
169 "port that supports 'setvbuf'");
170
a55c2b68 171 cmode = scm_to_int (mode);
d3639214 172 if (cmode != _IONBF && cmode != _IOFBF && cmode != _IOLBF)
1bbd0b84 173 scm_out_of_range (FUNC_NAME, mode);
d3639214
GH
174
175 if (cmode == _IOLBF)
176 {
54778cd3 177 SCM_SET_CELL_WORD_0 (port, SCM_CELL_WORD_0 (port) | SCM_BUFLINE);
d3639214
GH
178 cmode = _IOFBF;
179 }
180 else
122f24cc
LC
181 SCM_SET_CELL_WORD_0 (port,
182 SCM_CELL_WORD_0 (port) & ~(scm_t_bits) SCM_BUFLINE);
d3639214 183
7a6f1ffa 184 if (SCM_UNBNDP (size))
cb63cf9e
JB
185 {
186 if (cmode == _IOFBF)
187 csize = -1;
188 else
189 csize = 0;
190 }
7a6f1ffa
GH
191 else
192 {
a55c2b68 193 csize = scm_to_int (size);
cb63cf9e 194 if (csize < 0 || (cmode == _IONBF && csize > 0))
1bbd0b84 195 scm_out_of_range (FUNC_NAME, size);
7a6f1ffa 196 }
d3639214 197
cb63cf9e 198 pt = SCM_PTAB_ENTRY (port);
7a6f1ffa 199
67a72dc1 200 if (SCM_INPUT_PORT_P (port))
e8b21eec
LC
201 {
202 /* Drain pending input from PORT. Don't use `scm_drain_input' since
203 it returns a string, whereas we want binary input here. */
204 ndrained = pt->read_end - pt->read_pos;
205 if (pt->read_buf == pt->putback_buf)
206 ndrained += pt->saved_read_end - pt->saved_read_pos;
207
208 if (ndrained > 0)
209 {
210 drained = scm_gc_malloc_pointerless (ndrained, "file port");
211 scm_take_from_input_buffers (port, drained, ndrained);
212 }
213 }
67a72dc1 214 else
e8b21eec 215 ndrained = 0;
67a72dc1
AW
216
217 if (SCM_OUTPUT_PORT_P (port))
4251ae2e 218 scm_flush_unlocked (port);
67a72dc1 219
4c9419ac
MV
220 if (pt->read_buf == pt->putback_buf)
221 {
222 pt->read_buf = pt->saved_read_buf;
223 pt->read_pos = pt->saved_read_pos;
224 pt->read_end = pt->saved_read_end;
225 pt->read_buf_size = pt->saved_read_buf_size;
226 }
7a6f1ffa 227
e140d85d 228 ptob->setvbuf (port, csize, csize);
67a72dc1 229
e8b21eec
LC
230 if (ndrained > 0)
231 /* Put DRAINED back to PORT. */
7f6c3f8f 232 scm_unget_bytes ((unsigned char *) drained, ndrained, port);
67a72dc1 233
cb63cf9e 234 return SCM_UNSPECIFIED;
0f2d19dd 235}
1bbd0b84 236#undef FUNC_NAME
0f2d19dd 237
eadd48de 238/* Move ports with the specified file descriptor to new descriptors,
387d418c 239 * resetting the revealed count to 0.
0f2d19dd 240 */
ee834df4
LC
241static void
242scm_i_evict_port (void *closure, SCM port)
0f2d19dd 243{
5dbc6c06 244 int fd = * (int*) closure;
0f2d19dd 245
5dbc6c06 246 if (SCM_FPORTP (port))
eadd48de 247 {
e9d8bc25
LC
248 scm_t_port *p;
249 scm_t_fport *fp;
250
251 /* XXX: In some cases, we can encounter a port with no associated ptab
252 entry. */
253 p = SCM_PTAB_ENTRY (port);
254 fp = (p != NULL) ? (scm_t_fport *) p->stream : NULL;
cb63cf9e 255
e9d8bc25 256 if ((fp != NULL) && (fp->fdes == fd))
eadd48de 257 {
5dbc6c06
HWN
258 fp->fdes = dup (fd);
259 if (fp->fdes == -1)
260 scm_syserror ("scm_evict_ports");
261 scm_set_port_revealed_x (port, scm_from_int (0));
eadd48de
GH
262 }
263 }
5dbc6c06
HWN
264}
265
266void
267scm_evict_ports (int fd)
268{
ee834df4 269 scm_c_port_for_each (scm_i_evict_port, (void *) &fd);
eadd48de 270}
0f2d19dd 271
efa40607
DH
272
273SCM_DEFINE (scm_file_port_p, "file-port?", 1, 0, 0,
274 (SCM obj),
2069af38 275 "Determine whether @var{obj} is a port that is related to a file.")
efa40607
DH
276#define FUNC_NAME s_scm_file_port_p
277{
7888309b 278 return scm_from_bool (SCM_FPORTP (obj));
efa40607
DH
279}
280#undef FUNC_NAME
281
282
69cac238 283static SCM sys_file_port_name_canonicalization;
0157a341
AW
284SCM_SYMBOL (sym_relative, "relative");
285SCM_SYMBOL (sym_absolute, "absolute");
286
287static SCM
288fport_canonicalize_filename (SCM filename)
289{
69cac238
AW
290 SCM mode = scm_fluid_ref (sys_file_port_name_canonicalization);
291
0157a341
AW
292 if (!scm_is_string (filename))
293 {
294 return filename;
295 }
69cac238 296 else if (scm_is_eq (mode, sym_relative))
0157a341 297 {
22457d57
AW
298 SCM path, rel;
299
300 path = scm_variable_ref (scm_c_module_lookup (scm_the_root_module (),
301 "%load-path"));
302 rel = scm_i_relativize_path (filename, path);
303
304 return scm_is_true (rel) ? rel : filename;
0157a341 305 }
69cac238 306 else if (scm_is_eq (mode, sym_absolute))
0157a341
AW
307 {
308 char *str, *canon;
309
310 str = scm_to_locale_string (filename);
311 canon = canonicalize_file_name (str);
312 free (str);
313
314 return canon ? scm_take_locale_string (canon) : filename;
315 }
316 else
317 {
318 return filename;
319 }
320}
321
3ace9a8e
MW
322/* scm_open_file_with_encoding
323 Return a new port open on a given file.
0157a341 324
3ace9a8e
MW
325 The mode string must match the pattern: [rwa+]** which
326 is interpreted in the usual unix way.
327
328 Unless binary mode is requested, the character encoding of the new
329 port is determined as follows: First, if GUESS_ENCODING is true,
330 'file-encoding' is used to guess the encoding of the file. If
331 GUESS_ENCODING is false or if 'file-encoding' fails, ENCODING is used
332 unless it is also false. As a last resort, the default port encoding
333 is used. It is an error to pass a non-false GUESS_ENCODING or
334 ENCODING if binary mode is requested.
335
336 Return the new port. */
337SCM
338scm_open_file_with_encoding (SCM filename, SCM mode,
339 SCM guess_encoding, SCM encoding)
340#define FUNC_NAME "open-file"
0f2d19dd 341{
19639113 342 SCM port;
9a334eb3 343 int fdes, flags = 0, binary = 0;
64e3a89c
LC
344 unsigned int retries;
345 char *file, *md, *ptr;
19639113 346
3ace9a8e
MW
347 if (SCM_UNLIKELY (!(scm_is_false (encoding) || scm_is_string (encoding))))
348 scm_wrong_type_arg_msg (FUNC_NAME, 0, encoding,
349 "encoding to be string or false");
350
661ae7ab 351 scm_dynwind_begin (0);
19639113 352
7f9994d9 353 file = scm_to_locale_string (filename);
661ae7ab 354 scm_dynwind_free (file);
7f9994d9
MV
355
356 md = scm_to_locale_string (mode);
661ae7ab 357 scm_dynwind_free (md);
19639113 358
1e6808ea 359 switch (*md)
0f2d19dd 360 {
cb63cf9e
JB
361 case 'r':
362 flags |= O_RDONLY;
363 break;
364 case 'w':
365 flags |= O_WRONLY | O_CREAT | O_TRUNC;
366 break;
367 case 'a':
368 flags |= O_WRONLY | O_CREAT | O_APPEND;
369 break;
370 default:
1e6808ea 371 scm_out_of_range (FUNC_NAME, mode);
0f2d19dd 372 }
1e6808ea 373 ptr = md + 1;
cb63cf9e 374 while (*ptr != '\0')
e145dd02 375 {
cb63cf9e
JB
376 switch (*ptr)
377 {
378 case '+':
379 flags = (flags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
380 break;
9f561420 381 case 'b':
9a334eb3 382 binary = 1;
9f561420
GH
383#if defined (O_BINARY)
384 flags |= O_BINARY;
385#endif
386 break;
cb63cf9e 387 case '0': /* unbuffered: handled later. */
d3639214 388 case 'l': /* line buffered: handled during output. */
cb63cf9e
JB
389 break;
390 default:
1e6808ea 391 scm_out_of_range (FUNC_NAME, mode);
cb63cf9e
JB
392 }
393 ptr++;
e145dd02 394 }
cb63cf9e 395
64e3a89c
LC
396 for (retries = 0, fdes = -1;
397 fdes < 0 && retries < 2;
398 retries++)
399 {
400 SCM_SYSCALL (fdes = open_or_open64 (file, flags, 0666));
401 if (fdes == -1)
402 {
403 int en = errno;
404
405 if (en == EMFILE && retries == 0)
406 /* Run the GC in case it collects open file ports that are no
407 longer referenced. */
408 scm_i_gc (FUNC_NAME);
409 else
410 SCM_SYSERROR_MSG ("~A: ~S",
411 scm_cons (scm_strerror (scm_from_int (en)),
412 scm_cons (filename, SCM_EOL)), en);
413 }
0f2d19dd 414 }
64e3a89c 415
211683cc
MG
416 /* Create a port from this file descriptor. The port's encoding is initially
417 %default-port-encoding. */
0157a341
AW
418 port = scm_i_fdes_to_port (fdes, scm_i_mode_bits (mode),
419 fport_canonicalize_filename (filename));
7f9994d9 420
9a334eb3 421 if (binary)
211683cc 422 {
3ace9a8e
MW
423 if (scm_is_true (encoding))
424 scm_misc_error (FUNC_NAME,
425 "Encoding specified on a binary port",
426 scm_list_1 (encoding));
427 if (scm_is_true (guess_encoding))
428 scm_misc_error (FUNC_NAME,
429 "Request to guess encoding on a binary port",
430 SCM_EOL);
431
432 /* Use the binary-friendly ISO-8859-1 encoding. */
433 scm_i_set_port_encoding_x (port, NULL);
211683cc
MG
434 }
435 else
3ace9a8e
MW
436 {
437 char *enc = NULL;
438
439 if (scm_is_true (guess_encoding))
440 {
441 if (SCM_INPUT_PORT_P (port))
442 enc = scm_i_scan_for_encoding (port);
443 else
444 scm_misc_error (FUNC_NAME,
445 "Request to guess encoding on an output-only port",
446 SCM_EOL);
447 }
448
449 if (!enc && scm_is_true (encoding))
450 {
451 char *buf = scm_to_latin1_string (encoding);
452 enc = scm_gc_strdup (buf, "encoding");
453 free (buf);
454 }
455
456 if (enc)
457 scm_i_set_port_encoding_x (port, enc);
458 }
211683cc 459
661ae7ab 460 scm_dynwind_end ();
7f9994d9 461
0f2d19dd
JB
462 return port;
463}
1bbd0b84 464#undef FUNC_NAME
0f2d19dd 465
3ace9a8e
MW
466SCM
467scm_open_file (SCM filename, SCM mode)
468{
469 return scm_open_file_with_encoding (filename, mode, SCM_BOOL_F, SCM_BOOL_F);
470}
471
472/* We can't define these using SCM_KEYWORD, because keywords have not
473 yet been initialized when scm_init_fports is called. */
474static SCM k_guess_encoding = SCM_UNDEFINED;
475static SCM k_encoding = SCM_UNDEFINED;
476
6a9d9e3a
AW
477SCM_INTERNAL SCM scm_i_open_file (SCM, SCM, SCM);
478
3ace9a8e
MW
479SCM_DEFINE (scm_i_open_file, "open-file", 2, 0, 1,
480 (SCM filename, SCM mode, SCM keyword_args),
481 "Open the file whose name is @var{filename}, and return a port\n"
482 "representing that file. The attributes of the port are\n"
483 "determined by the @var{mode} string. The way in which this is\n"
484 "interpreted is similar to C stdio. The first character must be\n"
485 "one of the following:\n"
486 "@table @samp\n"
487 "@item r\n"
488 "Open an existing file for input.\n"
489 "@item w\n"
490 "Open a file for output, creating it if it doesn't already exist\n"
491 "or removing its contents if it does.\n"
492 "@item a\n"
493 "Open a file for output, creating it if it doesn't already\n"
494 "exist. All writes to the port will go to the end of the file.\n"
495 "The \"append mode\" can be turned off while the port is in use\n"
496 "@pxref{Ports and File Descriptors, fcntl}\n"
497 "@end table\n"
498 "The following additional characters can be appended:\n"
499 "@table @samp\n"
500 "@item b\n"
501 "Open the underlying file in binary mode, if supported by the system.\n"
502 "Also, open the file using the binary-compatible character encoding\n"
503 "\"ISO-8859-1\", ignoring the default port encoding.\n"
504 "@item +\n"
505 "Open the port for both input and output. E.g., @code{r+}: open\n"
506 "an existing file for both input and output.\n"
507 "@item 0\n"
508 "Create an \"unbuffered\" port. In this case input and output\n"
509 "operations are passed directly to the underlying port\n"
510 "implementation without additional buffering. This is likely to\n"
511 "slow down I/O operations. The buffering mode can be changed\n"
512 "while a port is in use @pxref{Ports and File Descriptors,\n"
513 "setvbuf}\n"
514 "@item l\n"
515 "Add line-buffering to the port. The port output buffer will be\n"
516 "automatically flushed whenever a newline character is written.\n"
517 "@end table\n"
518 "In theory we could create read/write ports which were buffered\n"
519 "in one direction only. However this isn't included in the\n"
520 "current interfaces. If a file cannot be opened with the access\n"
521 "requested, @code{open-file} throws an exception.")
522#define FUNC_NAME s_scm_i_open_file
523{
524 SCM encoding = SCM_BOOL_F;
525 SCM guess_encoding = SCM_BOOL_F;
526
527 scm_c_bind_keyword_arguments (FUNC_NAME, keyword_args, 0,
528 k_guess_encoding, &guess_encoding,
529 k_encoding, &encoding,
530 SCM_UNDEFINED);
531
532 return scm_open_file_with_encoding (filename, mode,
533 guess_encoding, encoding);
534}
535#undef FUNC_NAME
536
e145dd02 537\f
cb63cf9e 538/* Building Guile ports from a file descriptor. */
e145dd02 539
cb63cf9e 540/* Build a Scheme port from an open file descriptor `fdes'.
a089567e
JB
541 MODE indicates whether FILE is open for reading or writing; it uses
542 the same notation as open-file's second argument.
19b27fa2
GH
543 NAME is a string to be used as the port's filename.
544*/
a089567e 545SCM
d617ee18 546scm_i_fdes_to_port (int fdes, long mode_bits, SCM name)
19b27fa2 547#define FUNC_NAME "scm_fdes_to_port"
a089567e 548{
a089567e 549 SCM port;
2721f918 550 scm_t_fport *fp;
19b27fa2 551
09b204d3
AW
552 /* Test that fdes is valid. */
553#ifdef F_GETFL
554 int flags = fcntl (fdes, F_GETFL, 0);
19b27fa2
GH
555 if (flags == -1)
556 SCM_SYSERROR;
557 flags &= O_ACCMODE;
558 if (flags != O_RDWR
559 && ((flags != O_WRONLY && (mode_bits & SCM_WRTNG))
560 || (flags != O_RDONLY && (mode_bits & SCM_RDNG))))
561 {
562 SCM_MISC_ERROR ("requested file mode not available on fdes", SCM_EOL);
563 }
09b204d3
AW
564#else
565 /* If we don't have F_GETFL, as on mingw, at least we can test that
566 it is a valid file descriptor. */
567 struct stat st;
568 if (fstat (fdes, &st) != 0)
569 SCM_SYSERROR;
570#endif
a089567e 571
2721f918
AW
572 fp = (scm_t_fport *) scm_gc_malloc_pointerless (sizeof (scm_t_fport),
573 "file port");
574 fp->fdes = fdes;
575
576 port = scm_c_make_port (scm_tc16_fport, mode_bits, (scm_t_bits)fp);
577
578 SCM_PTAB_ENTRY (port)->rw_random = SCM_FDES_RANDOM_P (fdes);
579
580 if (mode_bits & SCM_BUF0)
581 scm_fport_buffer_add (port, 0, 0);
582 else
583 scm_fport_buffer_add (port, -1, -1);
584
b24b5e13 585 SCM_SET_FILENAME (port, name);
2721f918 586
e145dd02
JB
587 return port;
588}
19b27fa2 589#undef FUNC_NAME
e145dd02 590
d617ee18
MV
591SCM
592scm_fdes_to_port (int fdes, char *mode, SCM name)
593{
594 return scm_i_fdes_to_port (fdes, scm_mode_bits (mode), name);
595}
596
affc96b5 597/* Return a lower bound on the number of bytes available for input. */
cb63cf9e 598static int
affc96b5 599fport_input_waiting (SCM port)
e145dd02 600{
23f2b9a3 601 int fdes = SCM_FSTREAM (port)->fdes;
c7519da3 602
c7519da3
CC
603 struct pollfd pollfd = { fdes, POLLIN, 0 };
604
605 if (poll (&pollfd, 1, 0) < 0)
606 scm_syserror ("fport_input_waiting");
607
608 return pollfd.revents & POLLIN ? 1 : 0;
a089567e
JB
609}
610
3753e227
AW
611
612\f
613
614/* Revealed counts --- an oddity inherited from SCSH. */
615
616#define SCM_REVEALED(x) (SCM_FSTREAM(x)->revealed)
617
618static SCM revealed_ports = SCM_EOL;
619static scm_i_pthread_mutex_t revealed_lock = SCM_I_PTHREAD_MUTEX_INITIALIZER;
3753e227
AW
620
621/* Find a port in the table and return its revealed count.
622 Also used by the garbage collector.
623 */
624int
625scm_revealed_count (SCM port)
626{
627 int ret;
628
629 scm_i_pthread_mutex_lock (&revealed_lock);
630 ret = SCM_REVEALED (port);
631 scm_i_pthread_mutex_unlock (&revealed_lock);
632
633 return ret;
634}
635
636SCM_DEFINE (scm_port_revealed, "port-revealed", 1, 0, 0,
637 (SCM port),
638 "Return the revealed count for @var{port}.")
639#define FUNC_NAME s_scm_port_revealed
640{
641 port = SCM_COERCE_OUTPORT (port);
642 SCM_VALIDATE_OPFPORT (1, port);
643 return scm_from_int (scm_revealed_count (port));
644}
645#undef FUNC_NAME
646
647/* Set the revealed count for a port. */
648SCM_DEFINE (scm_set_port_revealed_x, "set-port-revealed!", 2, 0, 0,
649 (SCM port, SCM rcount),
650 "Sets the revealed count for a port to a given value.\n"
651 "The return value is unspecified.")
652#define FUNC_NAME s_scm_set_port_revealed_x
653{
654 int r, prev;
655
656 port = SCM_COERCE_OUTPORT (port);
657 SCM_VALIDATE_OPFPORT (1, port);
658
659 r = scm_to_int (rcount);
660
661 scm_i_pthread_mutex_lock (&revealed_lock);
662
663 prev = SCM_REVEALED (port);
664 SCM_REVEALED (port) = r;
665
666 if (r && !prev)
667 revealed_ports = scm_cons (port, revealed_ports);
668 else if (prev && !r)
669 revealed_ports = scm_delq_x (port, revealed_ports);
670
671 scm_i_pthread_mutex_unlock (&revealed_lock);
672
673 return SCM_UNSPECIFIED;
674}
675#undef FUNC_NAME
676
677/* Set the revealed count for a port. */
678SCM_DEFINE (scm_adjust_port_revealed_x, "adjust-port-revealed!", 2, 0, 0,
679 (SCM port, SCM addend),
680 "Add @var{addend} to the revealed count of @var{port}.\n"
681 "The return value is unspecified.")
682#define FUNC_NAME s_scm_adjust_port_revealed_x
683{
684 int a;
685
686 port = SCM_COERCE_OUTPORT (port);
687 SCM_VALIDATE_OPFPORT (1, port);
688
689 a = scm_to_int (addend);
690 if (!a)
691 return SCM_UNSPECIFIED;
692
693 scm_i_pthread_mutex_lock (&revealed_lock);
694
695 SCM_REVEALED (port) += a;
696 if (SCM_REVEALED (port) == a)
697 revealed_ports = scm_cons (port, revealed_ports);
698 else if (!SCM_REVEALED (port))
699 revealed_ports = scm_delq_x (port, revealed_ports);
700
701 scm_i_pthread_mutex_unlock (&revealed_lock);
702
703 return SCM_UNSPECIFIED;
704}
705#undef FUNC_NAME
706
707
cb63cf9e 708\f
0f2d19dd 709static int
e81d98ec 710fport_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
0f2d19dd 711{
0607ebbf 712 scm_puts_unlocked ("#<", port);
b3ec3c64
MD
713 scm_print_port_mode (exp, port);
714 if (SCM_OPFPORTP (exp))
0f2d19dd 715 {
b3ec3c64 716 int fdes;
b24b5e13 717 SCM name = SCM_FILENAME (exp);
cc95e00a 718 if (scm_is_string (name) || scm_is_symbol (name))
b24b5e13
DH
719 scm_display (name, port);
720 else
0607ebbf
AW
721 scm_puts_unlocked (SCM_PTOBNAME (SCM_PTOBNUM (exp)), port);
722 scm_putc_unlocked (' ', port);
b3ec3c64 723 fdes = (SCM_FSTREAM (exp))->fdes;
073167ef
LC
724
725#if (defined HAVE_TTYNAME) && (defined HAVE_POSIX)
b3ec3c64 726 if (isatty (fdes))
eb372585 727 scm_display (scm_ttyname (exp), port);
b3ec3c64 728 else
82893676 729#endif /* HAVE_TTYNAME */
b3ec3c64 730 scm_intprint (fdes, 10, port);
0f2d19dd
JB
731 }
732 else
733 {
0607ebbf
AW
734 scm_puts_unlocked (SCM_PTOBNAME (SCM_PTOBNUM (exp)), port);
735 scm_putc_unlocked (' ', port);
0345e278 736 scm_uintprint ((scm_t_bits) SCM_PTAB_ENTRY (exp), 16, port);
0f2d19dd 737 }
0607ebbf 738 scm_putc_unlocked ('>', port);
b3ec3c64 739 return 1;
0f2d19dd
JB
740}
741
affc96b5 742static void fport_flush (SCM port);
0f2d19dd 743
c2da2648
GH
744/* fill a port's read-buffer with a single read. returns the first
745 char or EOF if end of file. */
889975e5 746static scm_t_wchar
affc96b5 747fport_fill_input (SCM port)
0f2d19dd 748{
c014a02e 749 long count;
92c2555f
MV
750 scm_t_port *pt = SCM_PTAB_ENTRY (port);
751 scm_t_fport *fp = SCM_FSTREAM (port);
cb63cf9e 752
cb63cf9e
JB
753 SCM_SYSCALL (count = read (fp->fdes, pt->read_buf, pt->read_buf_size));
754 if (count == -1)
affc96b5 755 scm_syserror ("fport_fill_input");
cb63cf9e 756 if (count == 0)
889975e5 757 return (scm_t_wchar) EOF;
cb63cf9e
JB
758 else
759 {
5c070ca7 760 pt->read_pos = pt->read_buf;
cb63cf9e 761 pt->read_end = pt->read_buf + count;
5c070ca7 762 return *pt->read_buf;
cb63cf9e 763 }
0f2d19dd
JB
764}
765
0a94eb00
LC
766static scm_t_off
767fport_seek (SCM port, scm_t_off offset, int whence)
0f2d19dd 768{
92c2555f
MV
769 scm_t_port *pt = SCM_PTAB_ENTRY (port);
770 scm_t_fport *fp = SCM_FSTREAM (port);
8ab3d8a0
KR
771 off_t_or_off64_t rv;
772 off_t_or_off64_t result;
7dcb364d
GH
773
774 if (pt->rw_active == SCM_PORT_WRITE)
775 {
776 if (offset != 0 || whence != SEEK_CUR)
777 {
778 fport_flush (port);
8ab3d8a0 779 result = rv = lseek_or_lseek64 (fp->fdes, offset, whence);
7dcb364d
GH
780 }
781 else
782 {
783 /* read current position without disturbing the buffer. */
8ab3d8a0 784 rv = lseek_or_lseek64 (fp->fdes, offset, whence);
7dcb364d
GH
785 result = rv + (pt->write_pos - pt->write_buf);
786 }
787 }
788 else if (pt->rw_active == SCM_PORT_READ)
789 {
790 if (offset != 0 || whence != SEEK_CUR)
791 {
792 /* could expand to avoid a second seek. */
4251ae2e 793 scm_end_input_unlocked (port);
8ab3d8a0 794 result = rv = lseek_or_lseek64 (fp->fdes, offset, whence);
7dcb364d
GH
795 }
796 else
797 {
798 /* read current position without disturbing the buffer
799 (particularly the unread-char buffer). */
8ab3d8a0 800 rv = lseek_or_lseek64 (fp->fdes, offset, whence);
7dcb364d
GH
801 result = rv - (pt->read_end - pt->read_pos);
802
803 if (pt->read_buf == pt->putback_buf)
804 result -= pt->saved_read_end - pt->saved_read_pos;
805 }
806 }
807 else /* SCM_PORT_NEITHER */
808 {
8ab3d8a0 809 result = rv = lseek_or_lseek64 (fp->fdes, offset, whence);
7dcb364d 810 }
cb8dfa3f 811
7dcb364d 812 if (rv == -1)
affc96b5 813 scm_syserror ("fport_seek");
7dcb364d 814
cb8dfa3f 815 return result;
0f2d19dd
JB
816}
817
840ae05d 818static void
f1ce9199 819fport_truncate (SCM port, scm_t_off length)
840ae05d 820{
92c2555f 821 scm_t_fport *fp = SCM_FSTREAM (port);
840ae05d
JB
822
823 if (ftruncate (fp->fdes, length) == -1)
824 scm_syserror ("ftruncate");
825}
826
31703ab8 827static void
8aa011a1 828fport_write (SCM port, const void *data, size_t size)
daa4a3f1 829#define FUNC_NAME "fport_write"
31703ab8 830{
0c6d2191 831 /* this procedure tries to minimize the number of writes/flushes. */
92c2555f 832 scm_t_port *pt = SCM_PTAB_ENTRY (port);
31703ab8 833
0c6d2191
GH
834 if (pt->write_buf == &pt->shortbuf
835 || (pt->write_pos == pt->write_buf && size >= pt->write_buf_size))
31703ab8 836 {
daa4a3f1
LC
837 /* Unbuffered port, or port with empty buffer and data won't fit in
838 buffer. */
839 if (full_write (SCM_FPORT_FDES (port), data, size) < size)
840 SCM_SYSERROR;
841
0c6d2191 842 return;
31703ab8 843 }
d3639214 844
0c6d2191 845 {
f1ce9199 846 scm_t_off space = pt->write_end - pt->write_pos;
0c6d2191
GH
847
848 if (size <= space)
849 {
850 /* data fits in buffer. */
851 memcpy (pt->write_pos, data, size);
852 pt->write_pos += size;
853 if (pt->write_pos == pt->write_end)
854 {
affc96b5 855 fport_flush (port);
0c6d2191
GH
856 /* we can skip the line-buffering check if nothing's buffered. */
857 return;
858 }
859 }
860 else
861 {
862 memcpy (pt->write_pos, data, space);
863 pt->write_pos = pt->write_end;
864 fport_flush (port);
865 {
866 const void *ptr = ((const char *) data) + space;
867 size_t remaining = size - space;
868
869 if (size >= pt->write_buf_size)
870 {
daa4a3f1
LC
871 if (full_write (SCM_FPORT_FDES (port), ptr, remaining)
872 < remaining)
873 SCM_SYSERROR;
0c6d2191
GH
874 return;
875 }
876 else
877 {
878 memcpy (pt->write_pos, ptr, remaining);
879 pt->write_pos += remaining;
880 }
31703ab8 881 }
0c6d2191 882 }
31703ab8 883
0c6d2191
GH
884 /* handle line buffering. */
885 if ((SCM_CELL_WORD_0 (port) & SCM_BUFLINE) && memchr (data, '\n', size))
886 fport_flush (port);
887 }
31703ab8 888}
daa4a3f1 889#undef FUNC_NAME
31703ab8 890
cb63cf9e 891static void
affc96b5 892fport_flush (SCM port)
0f2d19dd 893{
5335850d 894 size_t written;
92c2555f
MV
895 scm_t_port *pt = SCM_PTAB_ENTRY (port);
896 scm_t_fport *fp = SCM_FSTREAM (port);
5335850d 897 size_t count = pt->write_pos - pt->write_buf;
cb63cf9e 898
5335850d
LC
899 written = full_write (fp->fdes, pt->write_buf, count);
900 if (written < count)
901 scm_syserror ("scm_flush");
cb63cf9e 902
cb63cf9e 903 pt->write_pos = pt->write_buf;
61e452ba 904 pt->rw_active = SCM_PORT_NEITHER;
840ae05d
JB
905}
906
283a1a0e 907/* clear the read buffer and adjust the file position for unread bytes. */
840ae05d 908static void
affc96b5 909fport_end_input (SCM port, int offset)
840ae05d 910{
92c2555f
MV
911 scm_t_fport *fp = SCM_FSTREAM (port);
912 scm_t_port *pt = SCM_PTAB_ENTRY (port);
283a1a0e
GH
913
914 offset += pt->read_end - pt->read_pos;
840ae05d 915
840ae05d
JB
916 if (offset > 0)
917 {
918 pt->read_pos = pt->read_end;
919 /* will throw error if unread-char used at beginning of file
920 then attempting to write. seems correct. */
921 if (lseek (fp->fdes, -offset, SEEK_CUR) == -1)
affc96b5 922 scm_syserror ("fport_end_input");
840ae05d 923 }
61e452ba 924 pt->rw_active = SCM_PORT_NEITHER;
8f29fbd0
JB
925}
926
5a771d5f
AW
927static void
928close_the_fd (void *data)
929{
930 scm_t_fport *fp = data;
931
932 close (fp->fdes);
933 /* There's already one exception. That's probably enough! */
934 errno = 0;
935}
936
6a2c4c81 937static int
affc96b5 938fport_close (SCM port)
6a2c4c81 939{
92c2555f 940 scm_t_fport *fp = SCM_FSTREAM (port);
cb63cf9e 941 int rv;
840ae05d 942
5a771d5f
AW
943 scm_dynwind_begin (0);
944 scm_dynwind_unwind_handler (close_the_fd, fp, 0);
affc96b5 945 fport_flush (port);
5a771d5f
AW
946 scm_dynwind_end ();
947
948 scm_port_non_buffer (SCM_PTAB_ENTRY (port));
949
950 rv = close (fp->fdes);
951 if (rv)
952 /* It's not useful to retry after EINTR, as the file descriptor is
953 in an undefined state. See http://lwn.net/Articles/365294/.
954 Instead just throw an error if close fails, trusting that the fd
955 was cleaned up. */
956 scm_syserror ("fport_close");
957
958 return 0;
6a2c4c81
JB
959}
960
1be6b49c 961static size_t
affc96b5 962fport_free (SCM port)
b3ec3c64 963{
affc96b5 964 fport_close (port);
b3ec3c64
MD
965 return 0;
966}
967
92c2555f 968static scm_t_bits
b3ec3c64
MD
969scm_make_fptob ()
970{
92c2555f 971 scm_t_bits tc = scm_make_port_type ("file", fport_fill_input, fport_write);
a98bddfd 972
affc96b5 973 scm_set_port_free (tc, fport_free);
e841c3e0 974 scm_set_port_print (tc, fport_print);
affc96b5
GH
975 scm_set_port_flush (tc, fport_flush);
976 scm_set_port_end_input (tc, fport_end_input);
977 scm_set_port_close (tc, fport_close);
978 scm_set_port_seek (tc, fport_seek);
979 scm_set_port_truncate (tc, fport_truncate);
980 scm_set_port_input_waiting (tc, fport_input_waiting);
e140d85d 981 scm_set_port_setvbuf (tc, scm_fport_buffer_add);
a98bddfd
DH
982
983 return tc;
b3ec3c64 984}
0f2d19dd 985
3ace9a8e
MW
986/* We can't initialize the keywords from 'scm_init_fports', because
987 keywords haven't yet been initialized at that point. */
988void
989scm_init_fports_keywords ()
990{
991 k_guess_encoding = scm_from_latin1_keyword ("guess-encoding");
992 k_encoding = scm_from_latin1_keyword ("encoding");
993}
994
0f2d19dd
JB
995void
996scm_init_fports ()
0f2d19dd 997{
a98bddfd
DH
998 scm_tc16_fport = scm_make_fptob ();
999
e11e83f3
MV
1000 scm_c_define ("_IOFBF", scm_from_int (_IOFBF));
1001 scm_c_define ("_IOLBF", scm_from_int (_IOLBF));
1002 scm_c_define ("_IONBF", scm_from_int (_IONBF));
a98bddfd 1003
69cac238
AW
1004 sys_file_port_name_canonicalization = scm_make_fluid ();
1005 scm_c_define ("%file-port-name-canonicalization",
1006 sys_file_port_name_canonicalization);
1007
a98bddfd 1008#include "libguile/fports.x"
0f2d19dd 1009}
89e00824
ML
1010
1011/*
1012 Local Variables:
1013 c-file-style: "gnu"
1014 End:
1015*/