*.[ch]: make a distinction between SCM as a generic
[bpt/guile.git] / libguile / fports.c
1 /* Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice. */
41
42 /* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
45 \f
46
47 #include <stdio.h>
48 #include <fcntl.h>
49 #include "_scm.h"
50
51 #include "validate.h"
52 #include "fports.h"
53
54 #ifdef HAVE_STRING_H
55 #include <string.h>
56 #endif
57 #ifdef HAVE_UNISTD_H
58 #include <unistd.h>
59 #else
60 scm_sizet fwrite ();
61 #endif
62 #ifdef HAVE_ST_BLKSIZE
63 #include <sys/stat.h>
64 #endif
65
66 #include <errno.h>
67
68 #include "iselect.h"
69
70 /* create FPORT buffer with specified sizes (or -1 to use default size or
71 0 for no buffer. */
72 static void
73 scm_fport_buffer_add (SCM port, int read_size, int write_size)
74 {
75 struct scm_fport *fp = SCM_FSTREAM (port);
76 scm_port *pt = SCM_PTAB_ENTRY (port);
77 char *s_scm_fport_buffer_add = "scm_fport_buffer_add";
78
79 if (read_size == -1 || write_size == -1)
80 {
81 int default_size;
82 #ifdef HAVE_ST_BLKSIZE
83 struct stat st;
84
85 if (fstat (fp->fdes, &st) == -1)
86 scm_syserror (s_scm_fport_buffer_add);
87 default_size = st.st_blksize;
88 #else
89 default_size = 1024;
90 #endif
91 if (read_size == -1)
92 read_size = default_size;
93 if (write_size == -1)
94 write_size = default_size;
95 }
96
97 if (SCM_INPORTP (port) && read_size > 0)
98 {
99 pt->read_buf = malloc (read_size);
100 if (pt->read_buf == NULL)
101 scm_memory_error (s_scm_fport_buffer_add);
102 pt->read_pos = pt->read_end = pt->read_buf;
103 pt->read_buf_size = read_size;
104 }
105 else
106 {
107 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
108 pt->read_buf_size = 1;
109 }
110
111 if (SCM_OUTPORTP (port) && write_size > 0)
112 {
113 pt->write_buf = malloc (write_size);
114 if (pt->write_buf == NULL)
115 scm_memory_error (s_scm_fport_buffer_add);
116 pt->write_pos = pt->write_buf;
117 pt->write_buf_size = write_size;
118 }
119 else
120 {
121 pt->write_buf = pt->write_pos = &pt->shortbuf;
122 pt->write_buf_size = 1;
123 }
124
125 pt->write_end = pt->write_buf + pt->write_buf_size;
126 if (read_size > 0 || write_size > 0)
127 SCM_SETCAR (port, SCM_CARW (port) & ~SCM_BUF0);
128 else
129 SCM_SETCAR (port, (SCM_CARW (port) | SCM_BUF0));
130 }
131
132 SCM_DEFINE (scm_setvbuf, "setvbuf", 2, 1, 0,
133 (SCM port, SCM mode, SCM size),
134 "Set the buffering mode for @var{port}. @var{mode} can be:\n"
135 "@table @code\n"
136 "@item _IONBF\n"
137 "non-buffered\n"
138 "@item _IOLBF\n"
139 "line buffered\n"
140 "@item _IOFBF\n"
141 "block buffered, using a newly allocated buffer of @var{size} bytes.\n"
142 "If @var{size} is omitted, a default size will be used.\n"
143 "@end table\n\n\n"
144 "@deffn primitive fcntl fd/port command [value]\n"
145 "Apply @var{command} to the specified file descriptor or the underlying\n"
146 "file descriptor of the specified port. @var{value} is an optional\n"
147 "integer argument.\n\n"
148 "Values for @var{command} are:\n\n"
149 "@table @code\n"
150 "@item F_DUPFD\n"
151 "Duplicate a file descriptor\n"
152 "@item F_GETFD\n"
153 "Get flags associated with the file descriptor.\n"
154 "@item F_SETFD\n"
155 "Set flags associated with the file descriptor to @var{value}.\n"
156 "@item F_GETFL\n"
157 "Get flags associated with the open file.\n"
158 "@item F_SETFL\n"
159 "Set flags associated with the open file to @var{value}\n"
160 "@item F_GETOWN\n"
161 "Get the process ID of a socket's owner, for @code{SIGIO} signals.\n"
162 "@item F_SETOWN\n"
163 "Set the process that owns a socket to @var{value}, for @code{SIGIO} signals.\n"
164 "@item FD_CLOEXEC\n"
165 "The value used to indicate the \"close on exec\" flag with @code{F_GETFL} or\n"
166 "@code{F_SETFL}.\n"
167 "@end table\n"
168 "")
169 #define FUNC_NAME s_scm_setvbuf
170 {
171 int cmode, csize;
172 scm_port *pt;
173
174 port = SCM_COERCE_OUTPORT (port);
175
176 SCM_VALIDATE_OPFPORT (1,port);
177 SCM_VALIDATE_INUM_COPY (2,mode,cmode);
178 if (cmode != _IONBF && cmode != _IOFBF && cmode != _IOLBF)
179 scm_out_of_range (FUNC_NAME, mode);
180
181 if (cmode == _IOLBF)
182 {
183 SCM_SETCAR (port, SCM_CARW (port) | SCM_BUFLINE);
184 cmode = _IOFBF;
185 }
186 else
187 {
188 SCM_SETCAR (port, SCM_CARW (port) ^ SCM_BUFLINE);
189 }
190
191 if (SCM_UNBNDP (size))
192 {
193 if (cmode == _IOFBF)
194 csize = -1;
195 else
196 csize = 0;
197 }
198 else
199 {
200 SCM_VALIDATE_INUM_COPY (3,size,csize);
201 if (csize < 0 || (cmode == _IONBF && csize > 0))
202 scm_out_of_range (FUNC_NAME, size);
203 }
204
205 pt = SCM_PTAB_ENTRY (port);
206
207 /* silently discards buffered chars. */
208 if (pt->read_buf != &pt->shortbuf)
209 scm_must_free (pt->read_buf);
210 if (pt->write_buf != &pt->shortbuf)
211 scm_must_free (pt->write_buf);
212
213 scm_fport_buffer_add (port, csize, csize);
214 return SCM_UNSPECIFIED;
215 }
216 #undef FUNC_NAME
217
218 /* Move ports with the specified file descriptor to new descriptors,
219 * reseting the revealed count to 0.
220 */
221
222 void
223 scm_evict_ports (int fd)
224 {
225 int i;
226
227 for (i = 0; i < scm_port_table_size; i++)
228 {
229 SCM port = scm_port_table[i]->port;
230
231 if (SCM_FPORTP (port))
232 {
233 struct scm_fport *fp = SCM_FSTREAM (port);
234
235 if (fp->fdes == fd)
236 {
237 fp->fdes = dup (fd);
238 if (fp->fdes == -1)
239 scm_syserror ("scm_evict_ports");
240 scm_set_port_revealed_x (port, SCM_MAKINUM (0));
241 }
242 }
243 }
244 }
245
246 /* scm_open_file
247 * Return a new port open on a given file.
248 *
249 * The mode string must match the pattern: [rwa+]** which
250 * is interpreted in the usual unix way.
251 *
252 * Return the new port.
253 */
254 SCM_DEFINE (scm_open_file, "open-file", 2, 0, 0,
255 (SCM filename, SCM modes),
256 "Open the file whose name is @var{string}, and return a port\n"
257 "representing that file. The attributes of the port are\n"
258 "determined by the @var{mode} string. The way in \n"
259 "which this is interpreted is similar to C stdio:\n\n"
260 "The first character must be one of the following:\n\n"
261 "@table @samp\n"
262 "@item r\n"
263 "Open an existing file for input.\n"
264 "@item w\n"
265 "Open a file for output, creating it if it doesn't already exist\n"
266 "or removing its contents if it does.\n"
267 "@item a\n"
268 "Open a file for output, creating it if it doesn't already exist.\n"
269 "All writes to the port will go to the end of the file.\n"
270 "The \"append mode\" can be turned off while the port is in use\n"
271 "@pxref{Ports and File Descriptors, fcntl}\n"
272 "@end table\n\n"
273 "The following additional characters can be appended:\n\n"
274 "@table @samp\n"
275 "@item +\n"
276 "Open the port for both input and output. E.g., @code{r+}: open\n"
277 "an existing file for both input and output.\n"
278 "@item 0\n"
279 "Create an \"unbuffered\" port. In this case input and output operations\n"
280 "are passed directly to the underlying port implementation without\n"
281 "additional buffering. This is likely to slow down I/O operations.\n"
282 "The buffering mode can be changed while a port is in use\n"
283 "@pxref{Ports and File Descriptors, setvbuf}\n"
284 "@item l\n"
285 "Add line-buffering to the port. The port output buffer will be\n"
286 "automatically flushed whenever a newline character is written.\n"
287 "@end table\n\n"
288 "In theory we could create read/write ports which were buffered in one\n"
289 "direction only. However this isn't included in the current interfaces.\n\n"
290 "If a file cannot be opened with the access requested,\n"
291 "@code{open-file} throws an exception.")
292 #define FUNC_NAME s_scm_open_file
293 {
294 SCM port;
295 int fdes;
296 int flags = 0;
297 char *file;
298 char *mode;
299 char *ptr;
300
301 SCM_VALIDATE_ROSTRING (1,filename);
302 SCM_VALIDATE_ROSTRING (2,modes);
303 if (SCM_SUBSTRP (filename))
304 filename = scm_makfromstr (SCM_ROCHARS (filename), SCM_ROLENGTH (filename), 0);
305 if (SCM_SUBSTRP (modes))
306 modes = scm_makfromstr (SCM_ROCHARS (modes), SCM_ROLENGTH (modes), 0);
307
308 file = SCM_ROCHARS (filename);
309 mode = SCM_ROCHARS (modes);
310
311 switch (*mode)
312 {
313 case 'r':
314 flags |= O_RDONLY;
315 break;
316 case 'w':
317 flags |= O_WRONLY | O_CREAT | O_TRUNC;
318 break;
319 case 'a':
320 flags |= O_WRONLY | O_CREAT | O_APPEND;
321 break;
322 default:
323 scm_out_of_range (FUNC_NAME, modes);
324 }
325 ptr = mode + 1;
326 while (*ptr != '\0')
327 {
328 switch (*ptr)
329 {
330 case '+':
331 flags = (flags & ~(O_RDONLY | O_WRONLY)) | O_RDWR;
332 break;
333 case '0': /* unbuffered: handled later. */
334 case 'b': /* 'binary' mode: ignored. */
335 case 'l': /* line buffered: handled during output. */
336 break;
337 default:
338 scm_out_of_range (FUNC_NAME, modes);
339 }
340 ptr++;
341 }
342 SCM_SYSCALL (fdes = open (file, flags, 0666));
343 if (fdes == -1)
344 {
345 int en = errno;
346
347 SCM_SYSERROR_MSG ("~A: ~S",
348 scm_cons (scm_makfrom0str (strerror (en)),
349 scm_cons (filename, SCM_EOL)), en);
350 }
351 port = scm_fdes_to_port (fdes, mode, filename);
352 return port;
353 }
354 #undef FUNC_NAME
355
356 \f
357 /* Building Guile ports from a file descriptor. */
358
359 /* Build a Scheme port from an open file descriptor `fdes'.
360 MODE indicates whether FILE is open for reading or writing; it uses
361 the same notation as open-file's second argument.
362 Use NAME as the port's filename. */
363
364 SCM
365 scm_fdes_to_port (int fdes, char *mode, SCM name)
366 {
367 long mode_bits = scm_mode_bits (mode);
368 SCM port;
369 scm_port *pt;
370
371 SCM_NEWCELL (port);
372 SCM_DEFER_INTS;
373 pt = scm_add_to_port_table (port);
374 SCM_SETPTAB_ENTRY (port, pt);
375 SCM_SETCAR (port, (scm_tc16_fport | mode_bits));
376
377 {
378 struct scm_fport *fp
379 = (struct scm_fport *) malloc (sizeof (struct scm_fport));
380 if (fp == NULL)
381 scm_memory_error ("scm_fdes_to_port");
382 fp->fdes = fdes;
383 pt->rw_random = SCM_FDES_RANDOM_P (fdes);
384 SCM_SETSTREAM (port, fp);
385 if (mode_bits & SCM_BUF0)
386 scm_fport_buffer_add (port, 0, 0);
387 else
388 scm_fport_buffer_add (port, -1, -1);
389 }
390 SCM_PTAB_ENTRY (port)->file_name = name;
391 SCM_ALLOW_INTS;
392 return port;
393 }
394
395
396 /* Return a lower bound on the number of bytes available for input. */
397 static int
398 fport_input_waiting (SCM port)
399 {
400 int fdes = SCM_FSTREAM (port)->fdes;
401
402 #ifdef HAVE_SELECT
403 struct timeval timeout;
404 SELECT_TYPE read_set;
405 SELECT_TYPE write_set;
406 SELECT_TYPE except_set;
407
408 FD_ZERO (&read_set);
409 FD_ZERO (&write_set);
410 FD_ZERO (&except_set);
411
412 FD_SET (fdes, &read_set);
413
414 timeout.tv_sec = 0;
415 timeout.tv_usec = 0;
416
417 if (select (SELECT_SET_SIZE,
418 &read_set, &write_set, &except_set, &timeout)
419 < 0)
420 scm_syserror ("fport_input_waiting");
421 return FD_ISSET (fdes, &read_set) ? 1 : 0;
422 #elif defined (FIONREAD)
423 int remir;
424 ioctl(fdes, FIONREAD, &remir);
425 return remir;
426 #else
427 scm_misc_error ("fport_input_waiting",
428 "Not fully implemented on this platform",
429 SCM_EOL);
430 #endif
431 }
432
433 \f
434 static int
435 prinfport (SCM exp,SCM port,scm_print_state *pstate)
436 {
437 scm_puts ("#<", port);
438 scm_print_port_mode (exp, port);
439 if (SCM_OPFPORTP (exp))
440 {
441 int fdes;
442 SCM name = SCM_PTAB_ENTRY (exp)->file_name;
443 scm_puts (SCM_ROSTRINGP (name)
444 ? SCM_ROCHARS (name)
445 : SCM_PTOBNAME (SCM_PTOBNUM (exp)),
446 port);
447 scm_putc (' ', port);
448 fdes = (SCM_FSTREAM (exp))->fdes;
449
450 if (isatty (fdes))
451 scm_puts (ttyname (fdes), port);
452 else
453 scm_intprint (fdes, 10, port);
454 }
455 else
456 {
457 scm_puts (SCM_PTOBNAME (SCM_PTOBNUM (exp)), port);
458 scm_putc (' ', port);
459 scm_intprint (SCM_ASWORD (SCM_CDR (exp)), 16, port);
460 }
461 scm_putc ('>', port);
462 return 1;
463 }
464
465 #ifdef GUILE_ISELECT
466 /* thread-local block for input on fport's fdes. */
467 static void
468 fport_wait_for_input (SCM port)
469 {
470 int fdes = SCM_FSTREAM (port)->fdes;
471
472 if (!fport_input_waiting (port))
473 {
474 int n;
475 SELECT_TYPE readfds;
476 int flags = fcntl (fdes, F_GETFL);
477
478 if (flags == -1)
479 scm_syserror ("scm_fdes_wait_for_input");
480 if (!(flags & O_NONBLOCK))
481 do
482 {
483 FD_ZERO (&readfds);
484 FD_SET (fdes, &readfds);
485 n = scm_internal_select (fdes + 1, &readfds, NULL, NULL, NULL);
486 }
487 while (n == -1 && errno == EINTR);
488 }
489 }
490 #endif
491
492 static void fport_flush (SCM port);
493
494 /* fill a port's read-buffer with a single read.
495 returns the first char and moves the read_pos pointer past it.
496 or returns EOF if end of file. */
497 static int
498 fport_fill_input (SCM port)
499 {
500 int count;
501 scm_port *pt = SCM_PTAB_ENTRY (port);
502 struct scm_fport *fp = SCM_FSTREAM (port);
503
504 #ifdef GUILE_ISELECT
505 fport_wait_for_input (port);
506 #endif
507 SCM_SYSCALL (count = read (fp->fdes, pt->read_buf, pt->read_buf_size));
508 if (count == -1)
509 scm_syserror ("fport_fill_input");
510 if (count == 0)
511 return EOF;
512 else
513 {
514 pt->read_pos = pt->read_buf;
515 pt->read_end = pt->read_buf + count;
516 return *pt->read_buf;
517 }
518 }
519
520 static off_t
521 fport_seek (SCM port, off_t offset, int whence)
522 {
523 scm_port *pt = SCM_PTAB_ENTRY (port);
524 struct scm_fport *fp = SCM_FSTREAM (port);
525 off_t rv;
526 off_t result;
527
528 if (pt->rw_active == SCM_PORT_WRITE)
529 {
530 if (offset != 0 || whence != SEEK_CUR)
531 {
532 fport_flush (port);
533 result = rv = lseek (fp->fdes, offset, whence);
534 }
535 else
536 {
537 /* read current position without disturbing the buffer. */
538 rv = lseek (fp->fdes, offset, whence);
539 result = rv + (pt->write_pos - pt->write_buf);
540 }
541 }
542 else if (pt->rw_active == SCM_PORT_READ)
543 {
544 if (offset != 0 || whence != SEEK_CUR)
545 {
546 /* could expand to avoid a second seek. */
547 scm_end_input (port);
548 result = rv = lseek (fp->fdes, offset, whence);
549 }
550 else
551 {
552 /* read current position without disturbing the buffer
553 (particularly the unread-char buffer). */
554 rv = lseek (fp->fdes, offset, whence);
555 result = rv - (pt->read_end - pt->read_pos);
556
557 if (pt->read_buf == pt->putback_buf)
558 result -= pt->saved_read_end - pt->saved_read_pos;
559 }
560 }
561 else /* SCM_PORT_NEITHER */
562 {
563 result = rv = lseek (fp->fdes, offset, whence);
564 }
565
566 if (rv == -1)
567 scm_syserror ("fport_seek");
568
569 return result;
570 }
571
572 static void
573 fport_truncate (SCM port, off_t length)
574 {
575 struct scm_fport *fp = SCM_FSTREAM (port);
576
577 if (ftruncate (fp->fdes, length) == -1)
578 scm_syserror ("ftruncate");
579 }
580
581 static void
582 fport_write (SCM port, const void *data, size_t size)
583 {
584 scm_port *pt = SCM_PTAB_ENTRY (port);
585
586 if (pt->write_buf == &pt->shortbuf)
587 {
588 /* "unbuffered" port. */
589 int fdes = SCM_FSTREAM (port)->fdes;
590
591 if (write (fdes, data, size) == -1)
592 scm_syserror ("fport_write");
593 }
594 else
595 {
596 const char *input = (char *) data;
597 size_t remaining = size;
598
599 while (remaining > 0)
600 {
601 int space = pt->write_end - pt->write_pos;
602 int write_len = (remaining > space) ? space : remaining;
603
604 memcpy (pt->write_pos, input, write_len);
605 pt->write_pos += write_len;
606 remaining -= write_len;
607 input += write_len;
608 if (write_len == space)
609 fport_flush (port);
610 }
611
612 /* handle line buffering. */
613 if ((SCM_CARW (port) & SCM_BUFLINE) && memchr (data, '\n', size))
614 fport_flush (port);
615 }
616 }
617
618 /* becomes 1 when process is exiting: normal exception handling won't
619 work by this time. */
620 extern int terminating;
621
622 static void
623 fport_flush (SCM port)
624 {
625 scm_port *pt = SCM_PTAB_ENTRY (port);
626 struct scm_fport *fp = SCM_FSTREAM (port);
627 char *ptr = pt->write_buf;
628 int init_size = pt->write_pos - pt->write_buf;
629 int remaining = init_size;
630
631 while (remaining > 0)
632 {
633 int count;
634
635 SCM_SYSCALL (count = write (fp->fdes, ptr, remaining));
636 if (count < 0)
637 {
638 /* error. assume nothing was written this call, but
639 fix up the buffer for any previous successful writes. */
640 int done = init_size - remaining;
641
642 if (done > 0)
643 {
644 int i;
645
646 for (i = 0; i < remaining; i++)
647 {
648 *(pt->write_buf + i) = *(pt->write_buf + done + i);
649 }
650 pt->write_pos = pt->write_buf + remaining;
651 }
652 if (!terminating)
653 scm_syserror ("fport_flush");
654 else
655 {
656 const char *msg = "Error: could not flush file-descriptor ";
657 char buf[11];
658
659 write (2, msg, strlen (msg));
660 sprintf (buf, "%d\n", fp->fdes);
661 write (2, buf, strlen (buf));
662
663 count = remaining;
664 }
665 }
666 ptr += count;
667 remaining -= count;
668 }
669 pt->write_pos = pt->write_buf;
670 pt->rw_active = SCM_PORT_NEITHER;
671 }
672
673 /* clear the read buffer and adjust the file position for unread bytes. */
674 static void
675 fport_end_input (SCM port, int offset)
676 {
677 struct scm_fport *fp = SCM_FSTREAM (port);
678 scm_port *pt = SCM_PTAB_ENTRY (port);
679
680 offset += pt->read_end - pt->read_pos;
681
682 if (offset > 0)
683 {
684 pt->read_pos = pt->read_end;
685 /* will throw error if unread-char used at beginning of file
686 then attempting to write. seems correct. */
687 if (lseek (fp->fdes, -offset, SEEK_CUR) == -1)
688 scm_syserror ("fport_end_input");
689 }
690 pt->rw_active = SCM_PORT_NEITHER;
691 }
692
693 static int
694 fport_close (SCM port)
695 {
696 struct scm_fport *fp = SCM_FSTREAM (port);
697 scm_port *pt = SCM_PTAB_ENTRY (port);
698 int rv;
699
700 fport_flush (port);
701 SCM_SYSCALL (rv = close (fp->fdes));
702 if (rv == -1 && errno != EBADF)
703 scm_syserror ("fport_close");
704 if (pt->read_buf == pt->putback_buf)
705 pt->read_buf = pt->saved_read_buf;
706 if (pt->read_buf != &pt->shortbuf)
707 free (pt->read_buf);
708 if (pt->write_buf != &pt->shortbuf)
709 free (pt->write_buf);
710 free ((char *) fp);
711 return rv;
712 }
713
714 static scm_sizet
715 fport_free (SCM port)
716 {
717 fport_close (port);
718 return 0;
719 }
720
721 void scm_make_fptob (void); /* Called from ports.c */
722
723 void
724 scm_make_fptob ()
725 {
726 long tc = scm_make_port_type ("file", fport_fill_input, fport_write);
727 scm_set_port_free (tc, fport_free);
728 scm_set_port_print (tc, prinfport);
729 scm_set_port_flush (tc, fport_flush);
730 scm_set_port_end_input (tc, fport_end_input);
731 scm_set_port_close (tc, fport_close);
732 scm_set_port_seek (tc, fport_seek);
733 scm_set_port_truncate (tc, fport_truncate);
734 scm_set_port_input_waiting (tc, fport_input_waiting);
735 }
736
737 void
738 scm_init_fports ()
739 {
740 #include "fports.x"
741 scm_sysintern ("_IOFBF", SCM_MAKINUM (_IOFBF));
742 scm_sysintern ("_IOLBF", SCM_MAKINUM (_IOLBF));
743 scm_sysintern ("_IONBF", SCM_MAKINUM (_IONBF));
744 }