* arbiters.c, eq.c, gc.c, guardians.c, list.c, ports.c, print.c,
[bpt/guile.git] / libguile / ports.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 /* Headers. */
47
48 #include <stdio.h>
49 #include "_scm.h"
50 #include "objects.h"
51 #include "smob.h"
52 #include "chars.h"
53
54 #include "keywords.h"
55
56 #include "scm_validate.h"
57 #include "ports.h"
58
59 #ifdef HAVE_STRING_H
60 #include <string.h>
61 #endif
62
63 #ifdef HAVE_MALLOC_H
64 #include <malloc.h>
65 #endif
66
67 #ifdef HAVE_UNISTD_H
68 #include <unistd.h>
69 #endif
70
71 #ifdef HAVE_SYS_IOCTL_H
72 #include <sys/ioctl.h>
73 #endif
74
75 \f
76 /* The port kind table --- a dynamically resized array of port types. */
77
78
79 /* scm_ptobs scm_numptob
80 * implement a dynamicly resized array of ptob records.
81 * Indexes into this table are used when generating type
82 * tags for smobjects (if you know a tag you can get an index and conversely).
83 */
84 scm_ptob_descriptor *scm_ptobs;
85 int scm_numptob;
86
87 /* GC marker for a port with stream of SCM type. */
88 SCM
89 scm_markstream (SCM ptr)
90 {
91 int openp;
92 openp = SCM_CAR (ptr) & SCM_OPN;
93 if (openp)
94 return SCM_STREAM (ptr);
95 else
96 return SCM_BOOL_F;
97 }
98
99 /*
100 * We choose to use an interface similar to the smob interface with
101 * fill_input and write as standard fields, passed to the port
102 * type constructor, and optional fields set by setters.
103 */
104
105 static void flush_void_port (SCM port);
106 static void end_input_void_port (SCM port, int offset);
107 static void write_void_port (SCM port, const void *data, size_t size);
108
109 long
110 scm_make_port_type (char *name,
111 int (*fill_input) (SCM port),
112 void (*write) (SCM port, const void *data, size_t size))
113 {
114 char *tmp;
115 if (255 <= scm_numptob)
116 goto ptoberr;
117 SCM_DEFER_INTS;
118 SCM_SYSCALL (tmp = (char *) realloc ((char *) scm_ptobs,
119 (1 + scm_numptob)
120 * sizeof (scm_ptob_descriptor)));
121 if (tmp)
122 {
123 scm_ptobs = (scm_ptob_descriptor *) tmp;
124
125 scm_ptobs[scm_numptob].name = name;
126 scm_ptobs[scm_numptob].mark = 0;
127 scm_ptobs[scm_numptob].free = scm_free0;
128 scm_ptobs[scm_numptob].print = scm_port_print;
129 scm_ptobs[scm_numptob].equalp = 0;
130 scm_ptobs[scm_numptob].close = 0;
131
132 scm_ptobs[scm_numptob].write = write;
133 scm_ptobs[scm_numptob].flush = flush_void_port;
134
135 scm_ptobs[scm_numptob].end_input = end_input_void_port;
136 scm_ptobs[scm_numptob].fill_input = fill_input;
137 scm_ptobs[scm_numptob].input_waiting = 0;
138
139 scm_ptobs[scm_numptob].seek = 0;
140 scm_ptobs[scm_numptob].truncate = 0;
141
142 scm_numptob++;
143 }
144 SCM_ALLOW_INTS;
145 if (!tmp)
146 ptoberr:scm_wta (SCM_MAKINUM ((long) scm_numptob),
147 (char *) SCM_NALLOC, "scm_make_port_type");
148 /* Make a class object if Goops is present */
149 if (scm_port_class)
150 scm_make_port_classes (scm_numptob - 1, SCM_PTOBNAME (scm_numptob - 1));
151 return scm_tc7_port + (scm_numptob - 1) * 256;
152 }
153
154 void
155 scm_set_port_mark (long tc, SCM (*mark) (SCM))
156 {
157 scm_ptobs[SCM_TC2PTOBNUM (tc)].mark = mark;
158 }
159
160 void
161 scm_set_port_free (long tc, scm_sizet (*free) (SCM))
162 {
163 scm_ptobs[SCM_TC2PTOBNUM (tc)].free = free;
164 }
165
166 void
167 scm_set_port_print (long tc, int (*print) (SCM exp, SCM port,
168 scm_print_state *pstate))
169 {
170 scm_ptobs[SCM_TC2PTOBNUM (tc)].print = print;
171 }
172
173 void
174 scm_set_port_equalp (long tc, SCM (*equalp) (SCM, SCM))
175 {
176 scm_ptobs[SCM_TC2PTOBNUM (tc)].equalp = equalp;
177 }
178
179 void
180 scm_set_port_flush (long tc, void (*flush) (SCM port))
181 {
182 scm_ptobs[SCM_TC2PTOBNUM (tc)].flush = flush;
183 }
184
185 void
186 scm_set_port_end_input (long tc, void (*end_input) (SCM port, int offset))
187 {
188 scm_ptobs[SCM_TC2PTOBNUM (tc)].end_input = end_input;
189 }
190
191 void
192 scm_set_port_close (long tc, int (*close) (SCM))
193 {
194 scm_ptobs[SCM_TC2PTOBNUM (tc)].close = close;
195 }
196
197 void
198 scm_set_port_seek (long tc, off_t (*seek) (SCM port,
199 off_t OFFSET,
200 int WHENCE))
201 {
202 scm_ptobs[SCM_TC2PTOBNUM (tc)].seek = seek;
203 }
204
205 void
206 scm_set_port_truncate (long tc, void (*truncate) (SCM port, off_t length))
207 {
208 scm_ptobs[SCM_TC2PTOBNUM (tc)].truncate = truncate;
209 }
210
211 void
212 scm_set_port_input_waiting (long tc, int (*input_waiting) (SCM))
213 {
214 scm_ptobs[SCM_TC2PTOBNUM (tc)].input_waiting = input_waiting;
215 }
216
217 \f
218
219 SCM_DEFINE (scm_char_ready_p, "char-ready?", 0, 1, 0,
220 (SCM port),
221 "Returns @code{#t} if a character is ready on input @var{port} and\n"
222 "returns @code{#f} otherwise. If @code{char-ready?} returns @code{#t}\n"
223 "then the next @code{read-char} operation on @var{port} is\n"
224 "guaranteed not to hang. If @var{port} is a file port at end of\n"
225 "file then @code{char-ready?} returns @code{#t}.\n"
226 "@footnote{@code{char-ready?} exists to make it possible for a\n"
227 "program to accept characters from interactive ports without getting\n"
228 "stuck waiting for input. Any input editors associated with such ports\n"
229 "must make sure that characters whose existence has been asserted by\n"
230 "@code{char-ready?} cannot be rubbed out. If @code{char-ready?} were to\n"
231 "return @code{#f} at end of file, a port at end of file would be\n"
232 "indistinguishable from an interactive port that has no ready\n"
233 "characters.}")
234 #define FUNC_NAME s_scm_char_ready_p
235 {
236 scm_port *pt;
237
238 if (SCM_UNBNDP (port))
239 port = scm_cur_inp;
240 else
241 SCM_VALIDATE_OPINPORT (1,port);
242
243 pt = SCM_PTAB_ENTRY (port);
244
245 /* if the current read buffer is filled, or the
246 last pushed-back char has been read and the saved buffer is
247 filled, result is true. */
248 if (pt->read_pos < pt->read_end
249 || (pt->read_buf == pt->putback_buf
250 && pt->saved_read_pos < pt->saved_read_end))
251 return SCM_BOOL_T;
252 else
253 {
254 scm_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
255
256 if (ptob->input_waiting)
257 return SCM_BOOL(ptob->input_waiting (port));
258 else
259 return SCM_BOOL_T;
260 }
261 }
262 #undef FUNC_NAME
263
264 /* Clear a port's read buffers, returning the contents. */
265 SCM_DEFINE (scm_drain_input, "drain-input", 1, 0, 0,
266 (SCM port),
267 "Drains @var{PORT}'s read buffers (including any pushed-back characters)\n"
268 "and returns the contents as a single string.")
269 #define FUNC_NAME s_scm_drain_input
270 {
271 SCM result;
272 scm_port *pt = SCM_PTAB_ENTRY (port);
273 int count;
274 char *dst;
275
276 SCM_VALIDATE_OPINPORT (1,port);
277
278 count = pt->read_end - pt->read_pos;
279 if (pt->read_buf == pt->putback_buf)
280 count += pt->saved_read_end - pt->saved_read_pos;
281
282 result = scm_makstr (count, 0);
283 dst = SCM_CHARS (result);
284
285 while (pt->read_pos < pt->read_end)
286 *dst++ = *(pt->read_pos++);
287
288 if (pt->read_buf == pt->putback_buf)
289 {
290 while (pt->saved_read_pos < pt->saved_read_end)
291 *dst++ = *(pt->saved_read_pos++);
292 }
293
294 return result;
295 }
296 #undef FUNC_NAME
297
298 \f
299 /* Standard ports --- current input, output, error, and more(!). */
300
301 SCM_DEFINE (scm_current_input_port, "current-input-port", 0, 0, 0,
302 (),
303 "Returns the current input port. This is the default port used by many\n"
304 "input procedures. Initially, @code{current-input-port} returns the\n"
305 "value of @code{???}.")
306 #define FUNC_NAME s_scm_current_input_port
307 {
308 return scm_cur_inp;
309 }
310 #undef FUNC_NAME
311
312 SCM_DEFINE (scm_current_output_port, "current-output-port", 0, 0, 0,
313 (),
314 "Returns the current output port. This is the default port used by many\n"
315 "output procedures. Initially, @code{current-output-port} returns the\n"
316 "value of @code{???}.")
317 #define FUNC_NAME s_scm_current_output_port
318 {
319 return scm_cur_outp;
320 }
321 #undef FUNC_NAME
322
323 SCM_DEFINE (scm_current_error_port, "current-error-port", 0, 0, 0,
324 (),
325 "Return the port to which errors and warnings should be sent (the\n"
326 "@dfn{standard error} in Unix and C terminology).")
327 #define FUNC_NAME s_scm_current_error_port
328 {
329 return scm_cur_errp;
330 }
331 #undef FUNC_NAME
332
333 SCM_DEFINE (scm_current_load_port, "current-load-port", 0, 0, 0,
334 (),
335 "Return the current-load-port.\n"
336 "The load port is used internally by `primitive-load'.")
337 #define FUNC_NAME s_scm_current_load_port
338 {
339 return scm_cur_loadp;
340 }
341 #undef FUNC_NAME
342
343 SCM_DEFINE (scm_set_current_input_port, "set-current-input-port", 1, 0, 0,
344 (SCM port),
345 "@deffnx primitive set-current-output-port port\n"
346 "@deffnx primitive set-current-error-port port\n"
347 "Change the ports returned by @code{current-input-port},\n"
348 "@code{current-output-port} and @code{current-error-port}, respectively,\n"
349 "so that they use the supplied @var{port} for input or output.")
350 #define FUNC_NAME s_scm_set_current_input_port
351 {
352 SCM oinp = scm_cur_inp;
353 SCM_VALIDATE_OPINPORT (1,port);
354 scm_cur_inp = port;
355 return oinp;
356 }
357 #undef FUNC_NAME
358
359
360 SCM_DEFINE (scm_set_current_output_port, "set-current-output-port", 1, 0, 0,
361 (SCM port),
362 "Set the current default output port to PORT.")
363 #define FUNC_NAME s_scm_set_current_output_port
364 {
365 SCM ooutp = scm_cur_outp;
366 port = SCM_COERCE_OUTPORT (port);
367 SCM_VALIDATE_OPOUTPORT (1,port);
368 scm_cur_outp = port;
369 return ooutp;
370 }
371 #undef FUNC_NAME
372
373
374 SCM_DEFINE (scm_set_current_error_port, "set-current-error-port", 1, 0, 0,
375 (SCM port),
376 "Set the current default error port to PORT.")
377 #define FUNC_NAME s_scm_set_current_error_port
378 {
379 SCM oerrp = scm_cur_errp;
380 port = SCM_COERCE_OUTPORT (port);
381 SCM_VALIDATE_OPOUTPORT (1,port);
382 scm_cur_errp = port;
383 return oerrp;
384 }
385 #undef FUNC_NAME
386
387 \f
388 /* The port table --- an array of pointers to ports. */
389
390 scm_port **scm_port_table;
391
392 int scm_port_table_size = 0; /* Number of ports in scm_port_table. */
393 int scm_port_table_room = 20; /* Size of the array. */
394
395 /* Add a port to the table. */
396
397 scm_port *
398 scm_add_to_port_table (SCM port)
399 {
400 scm_port *entry;
401
402 if (scm_port_table_size == scm_port_table_room)
403 {
404 void *newt = realloc ((char *) scm_port_table,
405 (scm_sizet) (sizeof (scm_port *)
406 * scm_port_table_room * 2));
407 if (newt == NULL)
408 scm_memory_error ("scm_add_to_port_table");
409 scm_port_table = (scm_port **) newt;
410 scm_port_table_room *= 2;
411 }
412 entry = (scm_port *) malloc (sizeof (scm_port));
413 if (entry == NULL)
414 scm_memory_error ("scm_add_to_port_table");
415
416 entry->port = port;
417 entry->entry = scm_port_table_size;
418 entry->revealed = 0;
419 entry->stream = 0;
420 entry->file_name = SCM_BOOL_F;
421 entry->line_number = 0;
422 entry->column_number = 0;
423 entry->putback_buf = 0;
424 entry->putback_buf_size = 0;
425 entry->rw_active = SCM_PORT_NEITHER;
426 entry->rw_random = 0;
427
428 scm_port_table[scm_port_table_size] = entry;
429 scm_port_table_size++;
430
431 return entry;
432 }
433
434 /* Remove a port from the table and destroy it. */
435
436 void
437 scm_remove_from_port_table (SCM port)
438 {
439 scm_port *p = SCM_PTAB_ENTRY (port);
440 int i = p->entry;
441
442 if (i >= scm_port_table_size)
443 scm_wta (port, "Port not in table", "scm_remove_from_port_table");
444 if (p->putback_buf)
445 free (p->putback_buf);
446 free (p);
447 /* Since we have just freed slot i we can shrink the table by moving
448 the last entry to that slot... */
449 if (i < scm_port_table_size - 1)
450 {
451 scm_port_table[i] = scm_port_table[scm_port_table_size - 1];
452 scm_port_table[i]->entry = i;
453 }
454 SCM_SETPTAB_ENTRY (port, 0);
455 scm_port_table_size--;
456 }
457
458 #ifdef GUILE_DEBUG
459 /* Functions for debugging. */
460
461 SCM_DEFINE (scm_pt_size, "pt-size", 0, 0, 0,
462 (),
463 "Returns the number of ports in the port table.\n"
464 "`pt-size' is only included in GUILE_DEBUG builds.")
465 #define FUNC_NAME s_scm_pt_size
466 {
467 return SCM_MAKINUM (scm_port_table_size);
468 }
469 #undef FUNC_NAME
470
471 SCM_DEFINE (scm_pt_member, "pt-member", 1, 0, 0,
472 (SCM index),
473 "Returns the port at INDEX in the port table.\n"
474 "`pt-member' is only included in GUILE_DEBUG builds.")
475 #define FUNC_NAME s_scm_pt_member
476 {
477 int i;
478 SCM_VALIDATE_INUM_COPY (1,index,i);
479 if (i < 0 || i >= scm_port_table_size)
480 return SCM_BOOL_F;
481 else
482 return scm_port_table[i]->port;
483 }
484 #undef FUNC_NAME
485 #endif
486
487
488 \f
489 /* Revealed counts --- an oddity inherited from SCSH. */
490
491 /* Find a port in the table and return its revealed count.
492 Also used by the garbage collector.
493 */
494
495 int
496 scm_revealed_count (SCM port)
497 {
498 return SCM_REVEALED(port);
499 }
500
501
502
503 /* Return the revealed count for a port. */
504
505 SCM_DEFINE (scm_port_revealed, "port-revealed", 1, 0, 0,
506 (SCM port),
507 "Returns the revealed count for @var{port}.")
508 #define FUNC_NAME s_scm_port_revealed
509 {
510 port = SCM_COERCE_OUTPORT (port);
511 SCM_VALIDATE_PORT (1,port);
512 return SCM_MAKINUM (scm_revealed_count (port));
513 }
514 #undef FUNC_NAME
515
516 /* Set the revealed count for a port. */
517 SCM_DEFINE (scm_set_port_revealed_x, "set-port-revealed!", 2, 0, 0,
518 (SCM port, SCM rcount),
519 "Sets the revealed count for a port to a given value.\n"
520 "The return value is unspecified.")
521 #define FUNC_NAME s_scm_set_port_revealed_x
522 {
523 port = SCM_COERCE_OUTPORT (port);
524 SCM_VALIDATE_PORT (1,port);
525 SCM_VALIDATE_INUM (2,rcount);
526 SCM_REVEALED (port) = SCM_INUM (rcount);
527 return SCM_UNSPECIFIED;
528 }
529 #undef FUNC_NAME
530
531
532 \f
533 /* Retrieving a port's mode. */
534
535 /* Return the flags that characterize a port based on the mode
536 * string used to open a file for that port.
537 *
538 * See PORT FLAGS in scm.h
539 */
540
541 long
542 scm_mode_bits (char *modes)
543 {
544 return (SCM_OPN
545 | (strchr (modes, 'r') || strchr (modes, '+') ? SCM_RDNG : 0)
546 | ( strchr (modes, 'w')
547 || strchr (modes, 'a')
548 || strchr (modes, '+') ? SCM_WRTNG : 0)
549 | (strchr (modes, '0') ? SCM_BUF0 : 0)
550 | (strchr (modes, 'l') ? SCM_BUFLINE : 0));
551 }
552
553
554 /* Return the mode flags from an open port.
555 * Some modes such as "append" are only used when opening
556 * a file and are not returned here. */
557
558 SCM_DEFINE (scm_port_mode, "port-mode", 1, 0, 0,
559 (SCM port),
560 "Returns the port modes associated with the open port @var{port}. These\n"
561 "will not necessarily be identical to the modes used when the port was\n"
562 "opened, since modes such as \"append\" which are used only during\n"
563 "port creation are not retained.")
564 #define FUNC_NAME s_scm_port_mode
565 {
566 char modes[3];
567 modes[0] = '\0';
568
569 port = SCM_COERCE_OUTPORT (port);
570 SCM_VALIDATE_OPPORT (1,port);
571 if (SCM_CAR (port) & SCM_RDNG) {
572 if (SCM_CAR (port) & SCM_WRTNG)
573 strcpy (modes, "r+");
574 else
575 strcpy (modes, "r");
576 }
577 else if (SCM_CAR (port) & SCM_WRTNG)
578 strcpy (modes, "w");
579 if (SCM_CAR (port) & SCM_BUF0)
580 strcat (modes, "0");
581 return scm_makfromstr (modes, strlen (modes), 0);
582 }
583 #undef FUNC_NAME
584
585
586 \f
587 /* Closing ports. */
588
589 /* scm_close_port
590 * Call the close operation on a port object.
591 * see also scm_close.
592 */
593 SCM_DEFINE (scm_close_port, "close-port", 1, 0, 0,
594 (SCM port),
595 "Close the specified port object. Returns @code{#t} if it successfully\n"
596 "closes a port or @code{#f} if it was already\n"
597 "closed. An exception may be raised if an error occurs, for example\n"
598 "when flushing buffered output.\n"
599 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
600 "which can close file descriptors.")
601 #define FUNC_NAME s_scm_close_port
602 {
603 scm_sizet i;
604 int rv;
605
606 port = SCM_COERCE_OUTPORT (port);
607
608 SCM_VALIDATE_PORT (1,port);
609 if (SCM_CLOSEDP (port))
610 return SCM_BOOL_F;
611 i = SCM_PTOBNUM (port);
612 if (scm_ptobs[i].close)
613 rv = (scm_ptobs[i].close) (port);
614 else
615 rv = 0;
616 scm_remove_from_port_table (port);
617 SCM_SETAND_CAR (port, ~SCM_OPN);
618 return SCM_NEGATE_BOOL(rv < 0);
619 }
620 #undef FUNC_NAME
621
622 SCM_DEFINE (scm_close_all_ports_except, "close-all-ports-except", 0, 0, 1,
623 (SCM ports),
624 "Close all open file ports used by the interpreter\n"
625 "except for those supplied as arguments. This procedure\n"
626 "is intended to be used before an exec call to close file descriptors\n"
627 "which are not needed in the new process.Close all open file ports used by the interpreter\n"
628 "except for those supplied as arguments. This procedure\n"
629 "is intended to be used before an exec call to close file descriptors\n"
630 "which are not needed in the new process.")
631 #define FUNC_NAME s_scm_close_all_ports_except
632 {
633 int i = 0;
634 SCM_VALIDATE_CONS (1,ports);
635 while (i < scm_port_table_size)
636 {
637 SCM thisport = scm_port_table[i]->port;
638 int found = 0;
639 SCM ports_ptr = ports;
640
641 while (SCM_NNULLP (ports_ptr))
642 {
643 SCM port = SCM_COERCE_OUTPORT (SCM_CAR (ports_ptr));
644 if (i == 0)
645 SCM_VALIDATE_OPPORT (SCM_ARG1,port);
646 if (port == thisport)
647 found = 1;
648 ports_ptr = SCM_CDR (ports_ptr);
649 }
650 if (found)
651 i++;
652 else
653 /* i is not to be incremented here. */
654 scm_close_port (thisport);
655 }
656 return SCM_UNSPECIFIED;
657 }
658 #undef FUNC_NAME
659
660
661 \f
662 /* Utter miscellany. Gosh, we should clean this up some time. */
663
664 SCM_DEFINE (scm_input_port_p, "input-port?", 1, 0, 0,
665 (SCM x),
666 "Returns @code{#t} if @var{x} is an input port, otherwise returns\n"
667 "@code{#f}. Any object satisfying this predicate also satisfies\n"
668 "@code{port?}.")
669 #define FUNC_NAME s_scm_input_port_p
670 {
671 if (SCM_IMP (x))
672 return SCM_BOOL_F;
673 return SCM_BOOL(SCM_INPORTP (x));
674 }
675 #undef FUNC_NAME
676
677 SCM_DEFINE (scm_output_port_p, "output-port?", 1, 0, 0,
678 (SCM x),
679 "Returns @code{#t} if @var{x} is an output port, otherwise returns\n"
680 "@code{#f}. Any object satisfying this predicate also satisfies\n"
681 "@code{port?}.")
682 #define FUNC_NAME s_scm_output_port_p
683 {
684 if (SCM_IMP (x))
685 return SCM_BOOL_F;
686 if (SCM_PORT_WITH_PS_P (x))
687 x = SCM_PORT_WITH_PS_PORT (x);
688 return SCM_BOOL(SCM_OUTPORTP (x));
689 }
690 #undef FUNC_NAME
691
692 SCM_DEFINE (scm_port_closed_p, "port-closed?", 1, 0, 0,
693 (SCM port),
694 "Returns @code{#t} if @var{port} is closed or @code{#f} if it is open.")
695 #define FUNC_NAME s_scm_port_closed_p
696 {
697 SCM_VALIDATE_PORT (1,port);
698 return SCM_NEGATE_BOOL(SCM_OPPORTP (port));
699 }
700 #undef FUNC_NAME
701
702 SCM_DEFINE (scm_eof_object_p, "eof-object?", 1, 0, 0,
703 (SCM x),
704 "Returns @code{#t} if @var{x} is an end-of-file object; otherwise\n"
705 "returns @code{#f}.")
706 #define FUNC_NAME s_scm_eof_object_p
707 {
708 return SCM_BOOL(SCM_EOF_OBJECT_P (x));
709 }
710 #undef FUNC_NAME
711
712 SCM_DEFINE (scm_force_output, "force-output", 0, 1, 0,
713 (SCM port),
714 "Flush the specified output port, or the current output port if @var{port}\n"
715 "is omitted. The current output buffer contents are passed to the \n"
716 "underlying port implementation (e.g., in the case of fports, the\n"
717 "data will be written to the file and the output buffer will be cleared.)\n"
718 "It has no effect on an unbuffered port.\n\n"
719 "The return value is unspecified.")
720 #define FUNC_NAME s_scm_force_output
721 {
722 if (SCM_UNBNDP (port))
723 port = scm_cur_outp;
724 else
725 {
726 port = SCM_COERCE_OUTPORT (port);
727 SCM_VALIDATE_OPOUTPORT (1,port);
728 }
729 scm_flush (port);
730 return SCM_UNSPECIFIED;
731 }
732 #undef FUNC_NAME
733
734 SCM_DEFINE (scm_flush_all_ports, "flush-all-ports", 0, 0, 0,
735 (),
736 "Equivalent to calling @code{force-output} on\n"
737 "all open output ports. The return value is unspecified.")
738 #define FUNC_NAME s_scm_flush_all_ports
739 {
740 int i;
741
742 for (i = 0; i < scm_port_table_size; i++)
743 {
744 if (SCM_OPOUTPORTP (scm_port_table[i]->port))
745 scm_flush (scm_port_table[i]->port);
746 }
747 return SCM_UNSPECIFIED;
748 }
749 #undef FUNC_NAME
750
751 SCM_DEFINE (scm_read_char, "read-char", 0, 1, 0,
752 (SCM port),
753 "Returns the next character available from @var{port}, updating\n"
754 "@var{port} to point to the following character. If no more\n"
755 "characters are available, an end-of-file object is returned.")
756 #define FUNC_NAME s_scm_read_char
757 {
758 int c;
759 if (SCM_UNBNDP (port))
760 port = scm_cur_inp;
761 SCM_VALIDATE_OPINPORT (1,port);
762 c = scm_getc (port);
763 if (EOF == c)
764 return SCM_EOF_VAL;
765 return SCM_MAKICHR (c);
766 }
767 #undef FUNC_NAME
768
769 /* this should only be called when the read buffer is empty. it
770 tries to refill the read buffer. it returns the first char from
771 the port, which is either EOF or *(pt->read_pos). */
772 int
773 scm_fill_input (SCM port)
774 {
775 scm_port *pt = SCM_PTAB_ENTRY (port);
776
777 if (pt->read_buf == pt->putback_buf)
778 {
779 /* finished reading put-back chars. */
780 pt->read_buf = pt->saved_read_buf;
781 pt->read_pos = pt->saved_read_pos;
782 pt->read_end = pt->saved_read_end;
783 pt->read_buf_size = pt->saved_read_buf_size;
784 if (pt->read_pos < pt->read_end)
785 return *(pt->read_pos);
786 }
787 return scm_ptobs[SCM_PTOBNUM (port)].fill_input (port);
788 }
789
790 int
791 scm_getc (SCM port)
792 {
793 int c;
794 scm_port *pt = SCM_PTAB_ENTRY (port);
795
796 if (pt->rw_active == SCM_PORT_WRITE)
797 {
798 /* may be marginally faster than calling scm_flush. */
799 scm_ptobs[SCM_PTOBNUM (port)].flush (port);
800 }
801
802 if (pt->rw_random)
803 pt->rw_active = SCM_PORT_READ;
804
805 if (pt->read_pos >= pt->read_end)
806 {
807 if (scm_fill_input (port) == EOF)
808 return EOF;
809 }
810
811 c = *(pt->read_pos++);
812
813 if (c == '\n')
814 {
815 SCM_INCLINE (port);
816 }
817 else if (c == '\t')
818 {
819 SCM_TABCOL (port);
820 }
821 else
822 {
823 SCM_INCCOL (port);
824 }
825
826 return c;
827 }
828
829 void
830 scm_putc (char c, SCM port)
831 {
832 scm_lfwrite (&c, 1, port);
833 }
834
835 void
836 scm_puts (const char *s, SCM port)
837 {
838 scm_lfwrite (s, strlen (s), port);
839 }
840
841 void
842 scm_lfwrite (const char *ptr, scm_sizet size, SCM port)
843 {
844 scm_port *pt = SCM_PTAB_ENTRY (port);
845 scm_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
846
847 if (pt->rw_active == SCM_PORT_READ)
848 scm_end_input (port);
849
850 ptob->write (port, ptr, size);
851
852 if (pt->rw_random)
853 pt->rw_active = SCM_PORT_WRITE;
854 }
855
856
857 void
858 scm_flush (SCM port)
859 {
860 scm_sizet i = SCM_PTOBNUM (port);
861 (scm_ptobs[i].flush) (port);
862 }
863
864 void
865 scm_end_input (SCM port)
866 {
867 int offset;
868 scm_port *pt = SCM_PTAB_ENTRY (port);
869
870 if (pt->read_buf == pt->putback_buf)
871 {
872 offset = pt->read_end - pt->read_pos;
873 pt->read_buf = pt->saved_read_buf;
874 pt->read_pos = pt->saved_read_pos;
875 pt->read_end = pt->saved_read_end;
876 pt->read_buf_size = pt->saved_read_buf_size;
877 }
878 else
879 offset = 0;
880
881 scm_ptobs[SCM_PTOBNUM (port)].end_input (port, offset);
882 }
883
884 \f
885
886
887 void
888 scm_ungetc (int c, SCM port)
889 {
890 scm_port *pt = SCM_PTAB_ENTRY (port);
891
892 if (pt->read_buf == pt->putback_buf)
893 /* already using the put-back buffer. */
894 {
895 /* enlarge putback_buf if necessary. */
896 if (pt->read_end == pt->read_buf + pt->read_buf_size
897 && pt->read_buf == pt->read_pos)
898 {
899 int new_size = pt->read_buf_size * 2;
900 unsigned char *tmp =
901 (unsigned char *) realloc (pt->putback_buf, new_size);
902
903 if (tmp == NULL)
904 scm_memory_error ("scm_ungetc");
905 pt->read_pos = pt->read_buf = pt->putback_buf = tmp;
906 pt->read_end = pt->read_buf + pt->read_buf_size;
907 pt->read_buf_size = pt->putback_buf_size = new_size;
908 }
909
910 /* shift any existing bytes to buffer + 1. */
911 if (pt->read_pos == pt->read_end)
912 pt->read_end = pt->read_buf + 1;
913 else if (pt->read_pos != pt->read_buf + 1)
914 {
915 int count = pt->read_end - pt->read_pos;
916
917 memmove (pt->read_buf + 1, pt->read_pos, count);
918 pt->read_end = pt->read_buf + 1 + count;
919 }
920
921 pt->read_pos = pt->read_buf;
922 }
923 else
924 /* switch to the put-back buffer. */
925 {
926 if (pt->putback_buf == NULL)
927 {
928 pt->putback_buf = (char *) malloc (SCM_INITIAL_PUTBACK_BUF_SIZE);
929 if (pt->putback_buf == NULL)
930 scm_memory_error ("scm_ungetc");
931 pt->putback_buf_size = SCM_INITIAL_PUTBACK_BUF_SIZE;
932 }
933
934 pt->saved_read_buf = pt->read_buf;
935 pt->saved_read_pos = pt->read_pos;
936 pt->saved_read_end = pt->read_end;
937 pt->saved_read_buf_size = pt->read_buf_size;
938
939 pt->read_pos = pt->read_buf = pt->putback_buf;
940 pt->read_end = pt->read_buf + 1;
941 pt->read_buf_size = pt->putback_buf_size;
942 }
943
944 *pt->read_buf = c;
945
946 if (pt->rw_random)
947 pt->rw_active = SCM_PORT_READ;
948
949 if (c == '\n')
950 {
951 /* What should col be in this case?
952 * We'll leave it at -1.
953 */
954 SCM_LINUM (port) -= 1;
955 }
956 else
957 SCM_COL(port) -= 1;
958 }
959
960
961 void
962 scm_ungets (const char *s, int n, SCM port)
963 {
964 /* This is simple minded and inefficient, but unreading strings is
965 * probably not a common operation, and remember that line and
966 * column numbers have to be handled...
967 *
968 * Please feel free to write an optimized version!
969 */
970 while (n--)
971 scm_ungetc (s[n], port);
972 }
973
974
975 SCM_DEFINE (scm_peek_char, "peek-char", 0, 1, 0,
976 (SCM port),
977 "Returns the next character available from @var{port},\n"
978 "@emph{without} updating @var{port} to point to the following\n"
979 "character. If no more characters are available, an end-of-file object\n"
980 "is returned.@footnote{The value returned by a call to @code{peek-char}\n"
981 "is the same as the value that would have been returned by a call to\n"
982 "@code{read-char} on the same port. The only difference is that the very\n"
983 "next call to @code{read-char} or @code{peek-char} on that\n"
984 "@var{port} will return the value returned by the preceding call to\n"
985 "@code{peek-char}. In particular, a call to @code{peek-char} on an\n"
986 "interactive port will hang waiting for input whenever a call to\n"
987 "@code{read-char} would have hung.}")
988 #define FUNC_NAME s_scm_peek_char
989 {
990 int c;
991 if (SCM_UNBNDP (port))
992 port = scm_cur_inp;
993 else
994 SCM_VALIDATE_OPINPORT (1,port);
995 c = scm_getc (port);
996 if (EOF == c)
997 return SCM_EOF_VAL;
998 scm_ungetc (c, port);
999 return SCM_MAKICHR (c);
1000 }
1001 #undef FUNC_NAME
1002
1003 SCM_DEFINE (scm_unread_char, "unread-char", 2, 0, 0,
1004 (SCM cobj, SCM port),
1005 "Place @var{char} in @var{port} so that it will be read by the\n"
1006 "next read operation. If called multiple times, the unread characters\n"
1007 "will be read again in last-in first-out order. If @var{port} is\n"
1008 "not supplied, the current input port is used.")
1009 #define FUNC_NAME s_scm_unread_char
1010 {
1011 int c;
1012
1013 SCM_VALIDATE_ICHR (1,cobj);
1014 if (SCM_UNBNDP (port))
1015 port = scm_cur_inp;
1016 else
1017 SCM_VALIDATE_OPINPORT (2,port);
1018
1019 c = SCM_ICHR (cobj);
1020
1021 scm_ungetc (c, port);
1022 return cobj;
1023 }
1024 #undef FUNC_NAME
1025
1026 SCM_DEFINE (scm_unread_string, "unread-string", 2, 0, 0,
1027 (SCM str, SCM port),
1028 "Place the string @var{str} in @var{port} so that its characters will be\n"
1029 "read in subsequent read operations. If called multiple times, the\n"
1030 "unread characters will be read again in last-in first-out order. If\n"
1031 "@var{port} is not supplied, the current-input-port is used.")
1032 #define FUNC_NAME s_scm_unread_string
1033 {
1034 SCM_VALIDATE_STRING (1,str);
1035 if (SCM_UNBNDP (port))
1036 port = scm_cur_inp;
1037 else
1038 SCM_VALIDATE_OPINPORT (2,port);
1039
1040 scm_ungets (SCM_ROUCHARS (str), SCM_LENGTH (str), port);
1041
1042 return str;
1043 }
1044 #undef FUNC_NAME
1045
1046 SCM_DEFINE (scm_seek, "seek", 3, 0, 0,
1047 (SCM object, SCM offset, SCM whence),
1048 "Sets the current position of @var{fd/port} to the integer @var{offset},\n"
1049 "which is interpreted according to the value of @var{whence}.\n\n"
1050 "One of the following variables should be supplied\n"
1051 "for @var{whence}:\n"
1052 "@defvar SEEK_SET\n"
1053 "Seek from the beginning of the file.\n"
1054 "@end defvar\n"
1055 "@defvar SEEK_CUR\n"
1056 "Seek from the current position.\n"
1057 "@end defvar\n"
1058 "@defvar SEEK_END\n"
1059 "Seek from the end of the file.\n"
1060 "@end defvar\n\n"
1061 "If @var{fd/port} is a file descriptor, the underlying system call is\n"
1062 "@code{lseek}. @var{port} may be a string port.\n\n"
1063 "The value returned is the new position in the file. This means that\n"
1064 "the current position of a port can be obtained using:\n"
1065 "@smalllisp\n"
1066 "(seek port 0 SEEK_CUR)\n"
1067 "@end smalllisp")
1068 #define FUNC_NAME s_scm_seek
1069 {
1070 off_t off;
1071 off_t rv;
1072 int how;
1073
1074 object = SCM_COERCE_OUTPORT (object);
1075
1076 off = SCM_NUM2LONG (2,offset);
1077 SCM_VALIDATE_INUM_COPY (3,whence,how);
1078 if (how != SEEK_SET && how != SEEK_CUR && how != SEEK_END)
1079 SCM_OUT_OF_RANGE (3, whence);
1080 if (SCM_OPPORTP (object))
1081 {
1082 scm_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (object);
1083
1084 if (!ptob->seek)
1085 SCM_MISC_ERROR ("port is not seekable",
1086 scm_cons (object, SCM_EOL));
1087 else
1088 rv = ptob->seek (object, off, how);
1089 }
1090 else /* file descriptor?. */
1091 {
1092 SCM_VALIDATE_INUM (1,object);
1093 rv = lseek (SCM_INUM (object), off, how);
1094 if (rv == -1)
1095 SCM_SYSERROR;
1096 }
1097 return scm_long2num (rv);
1098 }
1099 #undef FUNC_NAME
1100
1101 SCM_DEFINE (scm_truncate_file, "truncate-file", 1, 1, 0,
1102 (SCM object, SCM length),
1103 "Truncates the object referred to by @var{obj} to at most @var{size} bytes.\n"
1104 "@var{obj} can be a string containing a file name or an integer file\n"
1105 "descriptor or a port. @var{size} may be omitted if @var{obj} is not\n"
1106 "a file name, in which case the truncation occurs at the current port.\n"
1107 "position.\n\n"
1108 "The return value is unspecified.")
1109 #define FUNC_NAME s_scm_truncate_file
1110 {
1111 int rv;
1112 off_t c_length;
1113
1114 /* object can be a port, fdes or filename. */
1115
1116 if (SCM_UNBNDP (length))
1117 {
1118 /* must supply length if object is a filename. */
1119 if (SCM_ROSTRINGP (object))
1120 SCM_MISC_ERROR("must supply length if OBJECT is a filename",SCM_EOL);
1121
1122 length = scm_seek (object, SCM_INUM0, SCM_MAKINUM (SEEK_CUR));
1123 }
1124 c_length = SCM_NUM2LONG (2,length);
1125 if (c_length < 0)
1126 SCM_MISC_ERROR ("negative offset", SCM_EOL);
1127
1128 object = SCM_COERCE_OUTPORT (object);
1129 if (SCM_INUMP (object))
1130 {
1131 SCM_SYSCALL (rv = ftruncate (SCM_INUM (object), c_length));
1132 }
1133 else if (SCM_OPOUTPORTP (object))
1134 {
1135 scm_port *pt = SCM_PTAB_ENTRY (object);
1136 scm_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (object);
1137
1138 if (!ptob->truncate)
1139 SCM_MISC_ERROR ("port is not truncatable", SCM_EOL);
1140 if (pt->rw_active == SCM_PORT_READ)
1141 scm_end_input (object);
1142 else if (pt->rw_active == SCM_PORT_WRITE)
1143 ptob->flush (object);
1144
1145 ptob->truncate (object, c_length);
1146 rv = 0;
1147 }
1148 else
1149 {
1150 SCM_VALIDATE_ROSTRING (1,object);
1151 SCM_COERCE_SUBSTR (object);
1152 SCM_SYSCALL (rv = truncate (SCM_ROCHARS (object), c_length));
1153 }
1154 if (rv == -1)
1155 SCM_SYSERROR;
1156 return SCM_UNSPECIFIED;
1157 }
1158 #undef FUNC_NAME
1159
1160 SCM_DEFINE (scm_port_line, "port-line", 1, 0, 0,
1161 (SCM port),
1162 "Return the current line number for PORT.")
1163 #define FUNC_NAME s_scm_port_line
1164 {
1165 port = SCM_COERCE_OUTPORT (port);
1166 SCM_VALIDATE_OPENPORT (1,port);
1167 return SCM_MAKINUM (SCM_LINUM (port));
1168 }
1169 #undef FUNC_NAME
1170
1171 SCM_DEFINE (scm_set_port_line_x, "set-port-line!", 2, 0, 0,
1172 (SCM port, SCM line),
1173 "Set the current line number for PORT to LINE.")
1174 #define FUNC_NAME s_scm_set_port_line_x
1175 {
1176 port = SCM_COERCE_OUTPORT (port);
1177 SCM_VALIDATE_OPENPORT (1,port);
1178 SCM_VALIDATE_INUM (2,line);
1179 return SCM_PTAB_ENTRY (port)->line_number = SCM_INUM (line);
1180 }
1181 #undef FUNC_NAME
1182
1183 SCM_DEFINE (scm_port_column, "port-column", 1, 0, 0,
1184 (SCM port),
1185 "@deffnx primitive port-line [input-port]\n"
1186 "Return the current column number or line number of @var{input-port},\n"
1187 "using the current input port if none is specified. If the number is\n"
1188 "unknown, the result is #f. Otherwise, the result is a 0-origin integer\n"
1189 "- i.e. the first character of the first line is line 0, column 0.\n"
1190 "(However, when you display a file position, for example in an error\n"
1191 "message, we recommand you add 1 to get 1-origin integers. This is\n"
1192 "because lines and column numbers traditionally start with 1, and that is\n"
1193 "what non-programmers will find most natural.)")
1194 #define FUNC_NAME s_scm_port_column
1195 {
1196 port = SCM_COERCE_OUTPORT (port);
1197 SCM_VALIDATE_OPENPORT (1,port);
1198 return SCM_MAKINUM (SCM_COL (port));
1199 }
1200 #undef FUNC_NAME
1201
1202 SCM_DEFINE (scm_set_port_column_x, "set-port-column!", 2, 0, 0,
1203 (SCM port, SCM column),
1204 "@deffnx primitive set-port-line! [input-port] line\n"
1205 "Set the current column or line number of @var{input-port}, using the\n"
1206 "current input port if none is specified.")
1207 #define FUNC_NAME s_scm_set_port_column_x
1208 {
1209 port = SCM_COERCE_OUTPORT (port);
1210 SCM_VALIDATE_OPENPORT (1,port);
1211 SCM_VALIDATE_INUM (2,column);
1212 return SCM_PTAB_ENTRY (port)->column_number = SCM_INUM (column);
1213 }
1214 #undef FUNC_NAME
1215
1216 SCM_DEFINE (scm_port_filename, "port-filename", 1, 0, 0,
1217 (SCM port),
1218 "Return the filename associated with @var{port}. This function returns\n"
1219 "the strings \"standard input\", \"standard output\" and \"standard error\""
1220 "when called on the current input, output and error ports respectively.")
1221 #define FUNC_NAME s_scm_port_filename
1222 {
1223 port = SCM_COERCE_OUTPORT (port);
1224 SCM_VALIDATE_OPENPORT (1,port);
1225 return SCM_PTAB_ENTRY (port)->file_name;
1226 }
1227 #undef FUNC_NAME
1228
1229 SCM_DEFINE (scm_set_port_filename_x, "set-port-filename!", 2, 0, 0,
1230 (SCM port, SCM filename),
1231 "Change the filename associated with @var{port}, using the current input\n"
1232 "port if none is specified. Note that this does not change the port's\n"
1233 "source of data, but only the value that is returned by\n"
1234 "@code{port-filename} and reported in diagnostic output.")
1235 #define FUNC_NAME s_scm_set_port_filename_x
1236 {
1237 port = SCM_COERCE_OUTPORT (port);
1238 SCM_VALIDATE_OPENPORT (1,port);
1239 /* We allow the user to set the filename to whatever he likes. */
1240 return SCM_PTAB_ENTRY (port)->file_name = filename;
1241 }
1242 #undef FUNC_NAME
1243
1244 #ifndef ttyname
1245 extern char * ttyname();
1246 #endif
1247
1248 void
1249 scm_print_port_mode (SCM exp, SCM port)
1250 {
1251 scm_puts (SCM_CLOSEDP (exp)
1252 ? "closed: "
1253 : (SCM_RDNG & SCM_CAR (exp)
1254 ? (SCM_WRTNG & SCM_CAR (exp)
1255 ? "input-output: "
1256 : "input: ")
1257 : (SCM_WRTNG & SCM_CAR (exp)
1258 ? "output: "
1259 : "bogus: ")),
1260 port);
1261 }
1262
1263 int
1264 scm_port_print (SCM exp, SCM port, scm_print_state *pstate)
1265 {
1266 char *type = SCM_PTOBNAME (SCM_PTOBNUM (exp));
1267 if (!type)
1268 type = "port";
1269 scm_puts ("#<", port);
1270 scm_print_port_mode (exp, port);
1271 scm_puts (type, port);
1272 scm_putc (' ', port);
1273 scm_intprint (SCM_CDR (exp), 16, port);
1274 scm_putc ('>', port);
1275 return 1;
1276 }
1277
1278 extern void scm_make_fptob ();
1279 extern void scm_make_stptob ();
1280 extern void scm_make_sfptob ();
1281
1282 void
1283 scm_ports_prehistory ()
1284 {
1285 scm_numptob = 0;
1286 scm_ptobs = (scm_ptob_descriptor *) malloc (sizeof (scm_ptob_descriptor));
1287
1288 /* WARNING: These scm_newptob calls must be done in this order.
1289 * They must agree with the port declarations in tags.h.
1290 */
1291 /* scm_tc16_fport = */ scm_make_fptob ();
1292 /* scm_tc16_pipe was here */ scm_make_fptob (); /* dummy. */
1293 /* scm_tc16_strport = */ scm_make_stptob ();
1294 /* scm_tc16_sfport = */ scm_make_sfptob ();
1295 }
1296
1297 \f
1298
1299 /* Void ports. */
1300
1301 long scm_tc16_void_port = 0;
1302
1303 static void
1304 flush_void_port (SCM port)
1305 {
1306 }
1307
1308 static void
1309 end_input_void_port (SCM port, int offset)
1310 {
1311 }
1312
1313 static void
1314 write_void_port (SCM port, const void *data, size_t size)
1315 {
1316 }
1317
1318 SCM
1319 scm_void_port (char *mode_str)
1320 {
1321 int mode_bits;
1322 SCM answer;
1323 scm_port * pt;
1324
1325 SCM_NEWCELL (answer);
1326 SCM_DEFER_INTS;
1327 mode_bits = scm_mode_bits (mode_str);
1328 pt = scm_add_to_port_table (answer);
1329 SCM_SETPTAB_ENTRY (answer, pt);
1330 SCM_SETSTREAM (answer, 0);
1331 SCM_SETCAR (answer, scm_tc16_void_port | mode_bits);
1332 SCM_ALLOW_INTS;
1333 return answer;
1334 }
1335
1336
1337 SCM_DEFINE (scm_sys_make_void_port, "%make-void-port", 1, 0, 0,
1338 (SCM mode),
1339 "Create and return a new void port. The @var{mode} argument describes\n"
1340 "the input/output modes for this port; for a description, see the\n"
1341 "documentation for @code{open-file} in @ref{File Ports}.")
1342 #define FUNC_NAME s_scm_sys_make_void_port
1343 {
1344 SCM_VALIDATE_ROSTRING (1,mode);
1345 SCM_COERCE_SUBSTR (mode);
1346 return scm_void_port (SCM_ROCHARS (mode));
1347 }
1348 #undef FUNC_NAME
1349
1350 \f
1351 /* Initialization. */
1352
1353 void
1354 scm_init_ports ()
1355 {
1356 /* lseek() symbols. */
1357 scm_sysintern ("SEEK_SET", SCM_MAKINUM (SEEK_SET));
1358 scm_sysintern ("SEEK_CUR", SCM_MAKINUM (SEEK_CUR));
1359 scm_sysintern ("SEEK_END", SCM_MAKINUM (SEEK_END));
1360
1361 scm_tc16_void_port = scm_make_port_type ("void", 0, write_void_port);
1362 #include "ports.x"
1363 }