Use `scm_gc_malloc_pointerless' in various places (improves performance).
[bpt/guile.git] / libguile / ports.c
1 /* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2003, 2004, 2006 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library 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 GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18
19 \f
20 /* Headers. */
21
22 #define _LARGEFILE64_SOURCE /* ask for stat64 etc */
23
24 #if HAVE_CONFIG_H
25 # include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <errno.h>
30
31 #include <assert.h>
32
33 #include "libguile/_scm.h"
34 #include "libguile/async.h"
35 #include "libguile/eval.h"
36 #include "libguile/objects.h"
37 #include "libguile/goops.h"
38 #include "libguile/smob.h"
39 #include "libguile/chars.h"
40 #include "libguile/dynwind.h"
41
42 #include "libguile/keywords.h"
43 #include "libguile/root.h"
44 #include "libguile/strings.h"
45 #include "libguile/mallocs.h"
46 #include "libguile/validate.h"
47 #include "libguile/ports.h"
48 #include "libguile/vectors.h"
49 #include "libguile/fluids.h"
50
51 #ifdef HAVE_STRING_H
52 #include <string.h>
53 #endif
54
55 #ifdef HAVE_IO_H
56 #include <io.h>
57 #endif
58
59 #ifdef HAVE_UNISTD_H
60 #include <unistd.h>
61 #endif
62
63 #ifdef HAVE_SYS_IOCTL_H
64 #include <sys/ioctl.h>
65 #endif
66
67 #ifdef __MINGW32__
68 #include <fcntl.h>
69 #define ftruncate(fd, size) chsize (fd, size)
70 #endif
71
72 \f
73 /* The port kind table --- a dynamically resized array of port types. */
74
75
76 /* scm_ptobs scm_numptob
77 * implement a dynamicly resized array of ptob records.
78 * Indexes into this table are used when generating type
79 * tags for smobjects (if you know a tag you can get an index and conversely).
80 */
81 scm_t_ptob_descriptor *scm_ptobs;
82 long scm_numptob;
83
84 /* GC marker for a port with stream of SCM type. */
85 SCM
86 scm_markstream (SCM ptr)
87 {
88 int openp;
89 openp = SCM_CELL_WORD_0 (ptr) & SCM_OPN;
90 if (openp)
91 return SCM_PACK (SCM_STREAM (ptr));
92 else
93 return SCM_BOOL_F;
94 }
95
96 /*
97 * We choose to use an interface similar to the smob interface with
98 * fill_input and write as standard fields, passed to the port
99 * type constructor, and optional fields set by setters.
100 */
101
102 static void
103 flush_port_default (SCM port SCM_UNUSED)
104 {
105 }
106
107 static void
108 end_input_default (SCM port SCM_UNUSED, int offset SCM_UNUSED)
109 {
110 }
111
112 static size_t
113 scm_port_free0 (SCM port)
114 {
115 return 0;
116 }
117
118 scm_t_bits
119 scm_make_port_type (char *name,
120 int (*fill_input) (SCM port),
121 void (*write) (SCM port, const void *data, size_t size))
122 {
123 char *tmp;
124 if (255 <= scm_numptob)
125 goto ptoberr;
126 SCM_CRITICAL_SECTION_START;
127 tmp = (char *) scm_gc_realloc ((char *) scm_ptobs,
128 scm_numptob * sizeof (scm_t_ptob_descriptor),
129 (1 + scm_numptob)
130 * sizeof (scm_t_ptob_descriptor),
131 "port-type");
132 if (tmp)
133 {
134 scm_ptobs = (scm_t_ptob_descriptor *) tmp;
135
136 scm_ptobs[scm_numptob].name = name;
137 scm_ptobs[scm_numptob].mark = 0;
138 scm_ptobs[scm_numptob].free = scm_port_free0;
139 scm_ptobs[scm_numptob].print = scm_port_print;
140 scm_ptobs[scm_numptob].equalp = 0;
141 scm_ptobs[scm_numptob].close = 0;
142
143 scm_ptobs[scm_numptob].write = write;
144 scm_ptobs[scm_numptob].flush = flush_port_default;
145
146 scm_ptobs[scm_numptob].end_input = end_input_default;
147 scm_ptobs[scm_numptob].fill_input = fill_input;
148 scm_ptobs[scm_numptob].input_waiting = 0;
149
150 scm_ptobs[scm_numptob].seek = 0;
151 scm_ptobs[scm_numptob].truncate = 0;
152
153 scm_numptob++;
154 }
155 SCM_CRITICAL_SECTION_END;
156 if (!tmp)
157 {
158 ptoberr:
159 scm_memory_error ("scm_make_port_type");
160 }
161 /* Make a class object if Goops is present */
162 if (scm_port_class)
163 scm_make_port_classes (scm_numptob - 1, SCM_PTOBNAME (scm_numptob - 1));
164 return scm_tc7_port + (scm_numptob - 1) * 256;
165 }
166
167 void
168 scm_set_port_mark (scm_t_bits tc, SCM (*mark) (SCM))
169 {
170 scm_ptobs[SCM_TC2PTOBNUM (tc)].mark = mark;
171 }
172
173 void
174 scm_set_port_free (scm_t_bits tc, size_t (*free) (SCM))
175 {
176 scm_ptobs[SCM_TC2PTOBNUM (tc)].free = free;
177 }
178
179 void
180 scm_set_port_print (scm_t_bits tc, int (*print) (SCM exp, SCM port,
181 scm_print_state *pstate))
182 {
183 scm_ptobs[SCM_TC2PTOBNUM (tc)].print = print;
184 }
185
186 void
187 scm_set_port_equalp (scm_t_bits tc, SCM (*equalp) (SCM, SCM))
188 {
189 scm_ptobs[SCM_TC2PTOBNUM (tc)].equalp = equalp;
190 }
191
192 void
193 scm_set_port_flush (scm_t_bits tc, void (*flush) (SCM port))
194 {
195 scm_ptobs[SCM_TC2PTOBNUM (tc)].flush = flush;
196 }
197
198 void
199 scm_set_port_end_input (scm_t_bits tc, void (*end_input) (SCM port, int offset))
200 {
201 scm_ptobs[SCM_TC2PTOBNUM (tc)].end_input = end_input;
202 }
203
204 void
205 scm_set_port_close (scm_t_bits tc, int (*close) (SCM))
206 {
207 scm_ptobs[SCM_TC2PTOBNUM (tc)].close = close;
208 }
209
210 void
211 scm_set_port_seek (scm_t_bits tc, off_t (*seek) (SCM port,
212 off_t OFFSET,
213 int WHENCE))
214 {
215 scm_ptobs[SCM_TC2PTOBNUM (tc)].seek = seek;
216 }
217
218 void
219 scm_set_port_truncate (scm_t_bits tc, void (*truncate) (SCM port, off_t length))
220 {
221 scm_ptobs[SCM_TC2PTOBNUM (tc)].truncate = truncate;
222 }
223
224 void
225 scm_set_port_input_waiting (scm_t_bits tc, int (*input_waiting) (SCM))
226 {
227 scm_ptobs[SCM_TC2PTOBNUM (tc)].input_waiting = input_waiting;
228 }
229
230 \f
231
232 SCM_DEFINE (scm_char_ready_p, "char-ready?", 0, 1, 0,
233 (SCM port),
234 "Return @code{#t} if a character is ready on input @var{port}\n"
235 "and return @code{#f} otherwise. If @code{char-ready?} returns\n"
236 "@code{#t} then the next @code{read-char} operation on\n"
237 "@var{port} is guaranteed not to hang. If @var{port} is a file\n"
238 "port at end of file then @code{char-ready?} returns @code{#t}.\n"
239 "\n"
240 "@code{char-ready?} exists to make it possible for a\n"
241 "program to accept characters from interactive ports without\n"
242 "getting stuck waiting for input. Any input editors associated\n"
243 "with such ports must make sure that characters whose existence\n"
244 "has been asserted by @code{char-ready?} cannot be rubbed out.\n"
245 "If @code{char-ready?} were to return @code{#f} at end of file,\n"
246 "a port at end of file would be indistinguishable from an\n"
247 "interactive port that has no ready characters.")
248 #define FUNC_NAME s_scm_char_ready_p
249 {
250 scm_t_port *pt;
251
252 if (SCM_UNBNDP (port))
253 port = scm_current_input_port ();
254 else
255 SCM_VALIDATE_OPINPORT (1, port);
256
257 pt = SCM_PTAB_ENTRY (port);
258
259 /* if the current read buffer is filled, or the
260 last pushed-back char has been read and the saved buffer is
261 filled, result is true. */
262 if (pt->read_pos < pt->read_end
263 || (pt->read_buf == pt->putback_buf
264 && pt->saved_read_pos < pt->saved_read_end))
265 return SCM_BOOL_T;
266 else
267 {
268 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
269
270 if (ptob->input_waiting)
271 return scm_from_bool(ptob->input_waiting (port));
272 else
273 return SCM_BOOL_T;
274 }
275 }
276 #undef FUNC_NAME
277
278 /* move up to read_len chars from port's putback and/or read buffers
279 into memory starting at dest. returns the number of chars moved. */
280 size_t scm_take_from_input_buffers (SCM port, char *dest, size_t read_len)
281 {
282 scm_t_port *pt = SCM_PTAB_ENTRY (port);
283 size_t chars_read = 0;
284 size_t from_buf = min (pt->read_end - pt->read_pos, read_len);
285
286 if (from_buf > 0)
287 {
288 memcpy (dest, pt->read_pos, from_buf);
289 pt->read_pos += from_buf;
290 chars_read += from_buf;
291 read_len -= from_buf;
292 dest += from_buf;
293 }
294
295 /* if putback was active, try the real input buffer too. */
296 if (pt->read_buf == pt->putback_buf)
297 {
298 from_buf = min (pt->saved_read_end - pt->saved_read_pos, read_len);
299 if (from_buf > 0)
300 {
301 memcpy (dest, pt->saved_read_pos, from_buf);
302 pt->saved_read_pos += from_buf;
303 chars_read += from_buf;
304 }
305 }
306 return chars_read;
307 }
308
309 /* Clear a port's read buffers, returning the contents. */
310 SCM_DEFINE (scm_drain_input, "drain-input", 1, 0, 0,
311 (SCM port),
312 "This procedure clears a port's input buffers, similar\n"
313 "to the way that force-output clears the output buffer. The\n"
314 "contents of the buffers are returned as a single string, e.g.,\n"
315 "\n"
316 "@lisp\n"
317 "(define p (open-input-file ...))\n"
318 "(drain-input p) => empty string, nothing buffered yet.\n"
319 "(unread-char (read-char p) p)\n"
320 "(drain-input p) => initial chars from p, up to the buffer size.\n"
321 "@end lisp\n\n"
322 "Draining the buffers may be useful for cleanly finishing\n"
323 "buffered I/O so that the file descriptor can be used directly\n"
324 "for further input.")
325 #define FUNC_NAME s_scm_drain_input
326 {
327 SCM result;
328 char *data;
329 scm_t_port *pt;
330 long count;
331
332 SCM_VALIDATE_OPINPORT (1, port);
333 pt = SCM_PTAB_ENTRY (port);
334
335 count = pt->read_end - pt->read_pos;
336 if (pt->read_buf == pt->putback_buf)
337 count += pt->saved_read_end - pt->saved_read_pos;
338
339 result = scm_i_make_string (count, &data);
340 scm_take_from_input_buffers (port, data, count);
341 return result;
342 }
343 #undef FUNC_NAME
344
345 \f
346 /* Standard ports --- current input, output, error, and more(!). */
347
348 static SCM cur_inport_fluid;
349 static SCM cur_outport_fluid;
350 static SCM cur_errport_fluid;
351 static SCM cur_loadport_fluid;
352
353 SCM_DEFINE (scm_current_input_port, "current-input-port", 0, 0, 0,
354 (),
355 "Return the current input port. This is the default port used\n"
356 "by many input procedures. Initially, @code{current-input-port}\n"
357 "returns the @dfn{standard input} in Unix and C terminology.")
358 #define FUNC_NAME s_scm_current_input_port
359 {
360 return scm_fluid_ref (cur_inport_fluid);
361 }
362 #undef FUNC_NAME
363
364 SCM_DEFINE (scm_current_output_port, "current-output-port", 0, 0, 0,
365 (),
366 "Return the current output port. This is the default port used\n"
367 "by many output procedures. Initially,\n"
368 "@code{current-output-port} returns the @dfn{standard output} in\n"
369 "Unix and C terminology.")
370 #define FUNC_NAME s_scm_current_output_port
371 {
372 return scm_fluid_ref (cur_outport_fluid);
373 }
374 #undef FUNC_NAME
375
376 SCM_DEFINE (scm_current_error_port, "current-error-port", 0, 0, 0,
377 (),
378 "Return the port to which errors and warnings should be sent (the\n"
379 "@dfn{standard error} in Unix and C terminology).")
380 #define FUNC_NAME s_scm_current_error_port
381 {
382 return scm_fluid_ref (cur_errport_fluid);
383 }
384 #undef FUNC_NAME
385
386 SCM_DEFINE (scm_current_load_port, "current-load-port", 0, 0, 0,
387 (),
388 "Return the current-load-port.\n"
389 "The load port is used internally by @code{primitive-load}.")
390 #define FUNC_NAME s_scm_current_load_port
391 {
392 return scm_fluid_ref (cur_loadport_fluid);
393 }
394 #undef FUNC_NAME
395
396 SCM_DEFINE (scm_set_current_input_port, "set-current-input-port", 1, 0, 0,
397 (SCM port),
398 "@deffnx {Scheme Procedure} set-current-output-port port\n"
399 "@deffnx {Scheme Procedure} set-current-error-port port\n"
400 "Change the ports returned by @code{current-input-port},\n"
401 "@code{current-output-port} and @code{current-error-port}, respectively,\n"
402 "so that they use the supplied @var{port} for input or output.")
403 #define FUNC_NAME s_scm_set_current_input_port
404 {
405 SCM oinp = scm_fluid_ref (cur_inport_fluid);
406 SCM_VALIDATE_OPINPORT (1, port);
407 scm_fluid_set_x (cur_inport_fluid, port);
408 return oinp;
409 }
410 #undef FUNC_NAME
411
412
413 SCM_DEFINE (scm_set_current_output_port, "set-current-output-port", 1, 0, 0,
414 (SCM port),
415 "Set the current default output port to @var{port}.")
416 #define FUNC_NAME s_scm_set_current_output_port
417 {
418 SCM ooutp = scm_fluid_ref (cur_outport_fluid);
419 port = SCM_COERCE_OUTPORT (port);
420 SCM_VALIDATE_OPOUTPORT (1, port);
421 scm_fluid_set_x (cur_outport_fluid, port);
422 return ooutp;
423 }
424 #undef FUNC_NAME
425
426
427 SCM_DEFINE (scm_set_current_error_port, "set-current-error-port", 1, 0, 0,
428 (SCM port),
429 "Set the current default error port to @var{port}.")
430 #define FUNC_NAME s_scm_set_current_error_port
431 {
432 SCM oerrp = scm_fluid_ref (cur_errport_fluid);
433 port = SCM_COERCE_OUTPORT (port);
434 SCM_VALIDATE_OPOUTPORT (1, port);
435 scm_fluid_set_x (cur_errport_fluid, port);
436 return oerrp;
437 }
438 #undef FUNC_NAME
439
440 void
441 scm_dynwind_current_input_port (SCM port)
442 #define FUNC_NAME NULL
443 {
444 SCM_VALIDATE_OPINPORT (1, port);
445 scm_dynwind_fluid (cur_inport_fluid, port);
446 }
447 #undef FUNC_NAME
448
449 void
450 scm_dynwind_current_output_port (SCM port)
451 #define FUNC_NAME NULL
452 {
453 port = SCM_COERCE_OUTPORT (port);
454 SCM_VALIDATE_OPOUTPORT (1, port);
455 scm_dynwind_fluid (cur_outport_fluid, port);
456 }
457 #undef FUNC_NAME
458
459 void
460 scm_dynwind_current_error_port (SCM port)
461 #define FUNC_NAME NULL
462 {
463 port = SCM_COERCE_OUTPORT (port);
464 SCM_VALIDATE_OPOUTPORT (1, port);
465 scm_dynwind_fluid (cur_errport_fluid, port);
466 }
467 #undef FUNC_NAME
468
469 void
470 scm_i_dynwind_current_load_port (SCM port)
471 {
472 scm_dynwind_fluid (cur_loadport_fluid, port);
473 }
474
475 \f
476 /* The port table --- an array of pointers to ports. */
477
478 scm_t_port **scm_i_port_table = NULL;
479
480 long scm_i_port_table_size = 0; /* Number of ports in SCM_I_PORT_TABLE. */
481 long scm_i_port_table_room = 20; /* Actual size of the array. */
482
483 scm_i_pthread_mutex_t scm_i_port_table_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
484
485 /* This function is not and should not be thread safe. */
486
487 SCM
488 scm_new_port_table_entry (scm_t_bits tag)
489 #define FUNC_NAME "scm_new_port_table_entry"
490 {
491 /*
492 We initialize the cell to empty, this is in case scm_gc_calloc
493 triggers GC ; we don't want the GC to scan a half-finished Z.
494 */
495
496 SCM z = scm_cons (SCM_EOL, SCM_EOL);
497 scm_t_port *entry = (scm_t_port *) scm_gc_calloc (sizeof (scm_t_port), "port");
498 if (scm_i_port_table_size == scm_i_port_table_room)
499 {
500 /* initial malloc is in gc.c. this doesn't use scm_gc_malloc etc.,
501 since it can never be freed during gc. */
502 /* XXX (Ludo): Why not do it actually? */
503 size_t new_size = scm_i_port_table_room * 2;
504 void *newt = scm_gc_realloc ((char *) scm_i_port_table,
505 scm_i_port_table_room * sizeof (scm_t_port *),
506 new_size * sizeof (scm_t_port *),
507 "port-table");
508 scm_i_port_table = (scm_t_port **) newt;
509 scm_i_port_table_room = new_size;
510 }
511
512 entry->entry = scm_i_port_table_size;
513
514 entry->file_name = SCM_BOOL_F;
515 entry->rw_active = SCM_PORT_NEITHER;
516
517 scm_i_port_table[scm_i_port_table_size] = entry;
518 scm_i_port_table_size++;
519
520 entry->port = z;
521 SCM_SET_CELL_TYPE(z, tag);
522 SCM_SETPTAB_ENTRY(z, entry);
523
524 return z;
525 }
526 #undef FUNC_NAME
527
528 #if SCM_ENABLE_DEPRECATED==1
529 SCM_API scm_t_port *
530 scm_add_to_port_table (SCM port)
531 {
532 SCM z = scm_new_port_table_entry (scm_tc7_port);
533 scm_t_port * pt = SCM_PTAB_ENTRY(z);
534
535 pt->port = port;
536 SCM_SETCAR(z, SCM_EOL);
537 SCM_SETCDR(z, SCM_EOL);
538 SCM_SETPTAB_ENTRY (port, pt);
539 return pt;
540 }
541 #endif
542
543
544 /* Remove a port from the table and destroy it. */
545
546 /* This function is not and should not be thread safe. */
547
548 void
549 scm_remove_from_port_table (SCM port)
550 #define FUNC_NAME "scm_remove_from_port_table"
551 {
552 scm_t_port *p = SCM_PTAB_ENTRY (port);
553 long i = p->entry;
554
555 if (i >= scm_i_port_table_size)
556 SCM_MISC_ERROR ("Port not in table: ~S", scm_list_1 (port));
557 if (p->putback_buf)
558 scm_gc_free (p->putback_buf, p->putback_buf_size, "putback buffer");
559 scm_gc_free (p, sizeof (scm_t_port), "port");
560 /* Since we have just freed slot i we can shrink the table by moving
561 the last entry to that slot... */
562 if (i < scm_i_port_table_size - 1)
563 {
564 scm_i_port_table[i] = scm_i_port_table[scm_i_port_table_size - 1];
565 scm_i_port_table[i]->entry = i;
566 }
567 SCM_SETPTAB_ENTRY (port, 0);
568 scm_i_port_table_size--;
569 }
570 #undef FUNC_NAME
571
572
573 #ifdef GUILE_DEBUG
574 /* Functions for debugging. */
575
576 SCM_DEFINE (scm_pt_size, "pt-size", 0, 0, 0,
577 (),
578 "Return the number of ports in the port table. @code{pt-size}\n"
579 "is only included in @code{--enable-guile-debug} builds.")
580 #define FUNC_NAME s_scm_pt_size
581 {
582 return scm_from_int (scm_i_port_table_size);
583 }
584 #undef FUNC_NAME
585
586 SCM_DEFINE (scm_pt_member, "pt-member", 1, 0, 0,
587 (SCM index),
588 "Return the port at @var{index} in the port table.\n"
589 "@code{pt-member} is only included in\n"
590 "@code{--enable-guile-debug} builds.")
591 #define FUNC_NAME s_scm_pt_member
592 {
593 size_t i = scm_to_size_t (index);
594 if (i >= scm_i_port_table_size)
595 return SCM_BOOL_F;
596 else
597 return scm_i_port_table[i]->port;
598 }
599 #undef FUNC_NAME
600 #endif
601
602 void
603 scm_port_non_buffer (scm_t_port *pt)
604 {
605 pt->read_pos = pt->read_buf = pt->read_end = &pt->shortbuf;
606 pt->write_buf = pt->write_pos = &pt->shortbuf;
607 pt->read_buf_size = pt->write_buf_size = 1;
608 pt->write_end = pt->write_buf + pt->write_buf_size;
609 }
610
611 \f
612 /* Revealed counts --- an oddity inherited from SCSH. */
613
614 /* Find a port in the table and return its revealed count.
615 Also used by the garbage collector.
616 */
617
618 int
619 scm_revealed_count (SCM port)
620 {
621 return SCM_REVEALED(port);
622 }
623
624
625
626 /* Return the revealed count for a port. */
627
628 SCM_DEFINE (scm_port_revealed, "port-revealed", 1, 0, 0,
629 (SCM port),
630 "Return the revealed count for @var{port}.")
631 #define FUNC_NAME s_scm_port_revealed
632 {
633 port = SCM_COERCE_OUTPORT (port);
634 SCM_VALIDATE_OPENPORT (1, port);
635 return scm_from_int (scm_revealed_count (port));
636 }
637 #undef FUNC_NAME
638
639 /* Set the revealed count for a port. */
640 SCM_DEFINE (scm_set_port_revealed_x, "set-port-revealed!", 2, 0, 0,
641 (SCM port, SCM rcount),
642 "Sets the revealed count for a port to a given value.\n"
643 "The return value is unspecified.")
644 #define FUNC_NAME s_scm_set_port_revealed_x
645 {
646 port = SCM_COERCE_OUTPORT (port);
647 SCM_VALIDATE_OPENPORT (1, port);
648 SCM_REVEALED (port) = scm_to_int (rcount);
649 return SCM_UNSPECIFIED;
650 }
651 #undef FUNC_NAME
652
653
654 \f
655 /* Retrieving a port's mode. */
656
657 /* Return the flags that characterize a port based on the mode
658 * string used to open a file for that port.
659 *
660 * See PORT FLAGS in scm.h
661 */
662
663 static long
664 scm_i_mode_bits_n (const char *modes, size_t n)
665 {
666 return (SCM_OPN
667 | (memchr (modes, 'r', n) || memchr (modes, '+', n) ? SCM_RDNG : 0)
668 | ( memchr (modes, 'w', n)
669 || memchr (modes, 'a', n)
670 || memchr (modes, '+', n) ? SCM_WRTNG : 0)
671 | (memchr (modes, '0', n) ? SCM_BUF0 : 0)
672 | (memchr (modes, 'l', n) ? SCM_BUFLINE : 0));
673 }
674
675 long
676 scm_mode_bits (char *modes)
677 {
678 return scm_i_mode_bits_n (modes, strlen (modes));
679 }
680
681 long
682 scm_i_mode_bits (SCM modes)
683 {
684 long bits;
685
686 if (!scm_is_string (modes))
687 scm_wrong_type_arg_msg (NULL, 0, modes, "string");
688
689 bits = scm_i_mode_bits_n (scm_i_string_chars (modes),
690 scm_i_string_length (modes));
691 scm_remember_upto_here_1 (modes);
692 return bits;
693 }
694
695 /* Return the mode flags from an open port.
696 * Some modes such as "append" are only used when opening
697 * a file and are not returned here. */
698
699 SCM_DEFINE (scm_port_mode, "port-mode", 1, 0, 0,
700 (SCM port),
701 "Return the port modes associated with the open port @var{port}.\n"
702 "These will not necessarily be identical to the modes used when\n"
703 "the port was opened, since modes such as \"append\" which are\n"
704 "used only during port creation are not retained.")
705 #define FUNC_NAME s_scm_port_mode
706 {
707 char modes[4];
708 modes[0] = '\0';
709
710 port = SCM_COERCE_OUTPORT (port);
711 SCM_VALIDATE_OPPORT (1, port);
712 if (SCM_CELL_WORD_0 (port) & SCM_RDNG) {
713 if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
714 strcpy (modes, "r+");
715 else
716 strcpy (modes, "r");
717 }
718 else if (SCM_CELL_WORD_0 (port) & SCM_WRTNG)
719 strcpy (modes, "w");
720 if (SCM_CELL_WORD_0 (port) & SCM_BUF0)
721 strcat (modes, "0");
722 return scm_from_locale_string (modes);
723 }
724 #undef FUNC_NAME
725
726
727 \f
728 /* Closing ports. */
729
730 /* scm_close_port
731 * Call the close operation on a port object.
732 * see also scm_close.
733 */
734 SCM_DEFINE (scm_close_port, "close-port", 1, 0, 0,
735 (SCM port),
736 "Close the specified port object. Return @code{#t} if it\n"
737 "successfully closes a port or @code{#f} if it was already\n"
738 "closed. An exception may be raised if an error occurs, for\n"
739 "example when flushing buffered output. See also @ref{Ports and\n"
740 "File Descriptors, close}, for a procedure which can close file\n"
741 "descriptors.")
742 #define FUNC_NAME s_scm_close_port
743 {
744 size_t i;
745 int rv;
746
747 port = SCM_COERCE_OUTPORT (port);
748
749 SCM_VALIDATE_PORT (1, port);
750 if (SCM_CLOSEDP (port))
751 return SCM_BOOL_F;
752 i = SCM_PTOBNUM (port);
753 if (scm_ptobs[i].close)
754 rv = (scm_ptobs[i].close) (port);
755 else
756 rv = 0;
757 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
758 scm_remove_from_port_table (port);
759 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
760 SCM_CLR_PORT_OPEN_FLAG (port);
761 return scm_from_bool (rv >= 0);
762 }
763 #undef FUNC_NAME
764
765 SCM_DEFINE (scm_close_input_port, "close-input-port", 1, 0, 0,
766 (SCM port),
767 "Close the specified input port object. The routine has no effect if\n"
768 "the file has already been closed. An exception may be raised if an\n"
769 "error occurs. The value returned is unspecified.\n\n"
770 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
771 "which can close file descriptors.")
772 #define FUNC_NAME s_scm_close_input_port
773 {
774 SCM_VALIDATE_INPUT_PORT (1, port);
775 scm_close_port (port);
776 return SCM_UNSPECIFIED;
777 }
778 #undef FUNC_NAME
779
780 SCM_DEFINE (scm_close_output_port, "close-output-port", 1, 0, 0,
781 (SCM port),
782 "Close the specified output port object. The routine has no effect if\n"
783 "the file has already been closed. An exception may be raised if an\n"
784 "error occurs. The value returned is unspecified.\n\n"
785 "See also @ref{Ports and File Descriptors, close}, for a procedure\n"
786 "which can close file descriptors.")
787 #define FUNC_NAME s_scm_close_output_port
788 {
789 port = SCM_COERCE_OUTPORT (port);
790 SCM_VALIDATE_OUTPUT_PORT (1, port);
791 scm_close_port (port);
792 return SCM_UNSPECIFIED;
793 }
794 #undef FUNC_NAME
795
796 void
797 scm_c_port_for_each (void (*proc)(void *data, SCM p), void *data)
798 {
799 long i;
800 size_t n;
801 SCM ports;
802
803 /* Even without pre-emptive multithreading, running arbitrary code
804 while scanning the port table is unsafe because the port table
805 can change arbitrarily (from a GC, for example). So we first
806 collect the ports into a vector. -mvo */
807
808 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
809 n = scm_i_port_table_size;
810 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
811
812 ports = scm_c_make_vector (n, SCM_BOOL_F);
813
814 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
815 if (n > scm_i_port_table_size)
816 n = scm_i_port_table_size;
817 for (i = 0; i < n; i++)
818 SCM_SIMPLE_VECTOR_SET (ports, i, scm_i_port_table[i]->port);
819 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
820
821 for (i = 0; i < n; i++)
822 proc (data, SCM_SIMPLE_VECTOR_REF (ports, i));
823
824 scm_remember_upto_here_1 (ports);
825 }
826
827 SCM_DEFINE (scm_port_for_each, "port-for-each", 1, 0, 0,
828 (SCM proc),
829 "Apply @var{proc} to each port in the Guile port table\n"
830 "in turn. The return value is unspecified. More specifically,\n"
831 "@var{proc} is applied exactly once to every port that exists\n"
832 "in the system at the time @var{port-for-each} is invoked.\n"
833 "Changes to the port table while @var{port-for-each} is running\n"
834 "have no effect as far as @var{port-for-each} is concerned.")
835 #define FUNC_NAME s_scm_port_for_each
836 {
837 SCM_VALIDATE_PROC (1, proc);
838
839 scm_c_port_for_each ((void (*)(void*,SCM))scm_call_1, proc);
840 return SCM_UNSPECIFIED;
841 }
842 #undef FUNC_NAME
843
844
845 \f
846 /* Utter miscellany. Gosh, we should clean this up some time. */
847
848 SCM_DEFINE (scm_input_port_p, "input-port?", 1, 0, 0,
849 (SCM x),
850 "Return @code{#t} if @var{x} is an input port, otherwise return\n"
851 "@code{#f}. Any object satisfying this predicate also satisfies\n"
852 "@code{port?}.")
853 #define FUNC_NAME s_scm_input_port_p
854 {
855 return scm_from_bool (SCM_INPUT_PORT_P (x));
856 }
857 #undef FUNC_NAME
858
859 SCM_DEFINE (scm_output_port_p, "output-port?", 1, 0, 0,
860 (SCM x),
861 "Return @code{#t} if @var{x} is an output port, otherwise return\n"
862 "@code{#f}. Any object satisfying this predicate also satisfies\n"
863 "@code{port?}.")
864 #define FUNC_NAME s_scm_output_port_p
865 {
866 x = SCM_COERCE_OUTPORT (x);
867 return scm_from_bool (SCM_OUTPUT_PORT_P (x));
868 }
869 #undef FUNC_NAME
870
871 SCM_DEFINE (scm_port_p, "port?", 1, 0, 0,
872 (SCM x),
873 "Return a boolean indicating whether @var{x} is a port.\n"
874 "Equivalent to @code{(or (input-port? @var{x}) (output-port?\n"
875 "@var{x}))}.")
876 #define FUNC_NAME s_scm_port_p
877 {
878 return scm_from_bool (SCM_PORTP (x));
879 }
880 #undef FUNC_NAME
881
882 SCM_DEFINE (scm_port_closed_p, "port-closed?", 1, 0, 0,
883 (SCM port),
884 "Return @code{#t} if @var{port} is closed or @code{#f} if it is\n"
885 "open.")
886 #define FUNC_NAME s_scm_port_closed_p
887 {
888 SCM_VALIDATE_PORT (1, port);
889 return scm_from_bool (!SCM_OPPORTP (port));
890 }
891 #undef FUNC_NAME
892
893 SCM_DEFINE (scm_eof_object_p, "eof-object?", 1, 0, 0,
894 (SCM x),
895 "Return @code{#t} if @var{x} is an end-of-file object; otherwise\n"
896 "return @code{#f}.")
897 #define FUNC_NAME s_scm_eof_object_p
898 {
899 return scm_from_bool(SCM_EOF_OBJECT_P (x));
900 }
901 #undef FUNC_NAME
902
903 SCM_DEFINE (scm_force_output, "force-output", 0, 1, 0,
904 (SCM port),
905 "Flush the specified output port, or the current output port if @var{port}\n"
906 "is omitted. The current output buffer contents are passed to the\n"
907 "underlying port implementation (e.g., in the case of fports, the\n"
908 "data will be written to the file and the output buffer will be cleared.)\n"
909 "It has no effect on an unbuffered port.\n\n"
910 "The return value is unspecified.")
911 #define FUNC_NAME s_scm_force_output
912 {
913 if (SCM_UNBNDP (port))
914 port = scm_current_output_port ();
915 else
916 {
917 port = SCM_COERCE_OUTPORT (port);
918 SCM_VALIDATE_OPOUTPORT (1, port);
919 }
920 scm_flush (port);
921 return SCM_UNSPECIFIED;
922 }
923 #undef FUNC_NAME
924
925 SCM_DEFINE (scm_flush_all_ports, "flush-all-ports", 0, 0, 0,
926 (),
927 "Equivalent to calling @code{force-output} on\n"
928 "all open output ports. The return value is unspecified.")
929 #define FUNC_NAME s_scm_flush_all_ports
930 {
931 size_t i;
932
933 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
934 for (i = 0; i < scm_i_port_table_size; i++)
935 {
936 if (SCM_OPOUTPORTP (scm_i_port_table[i]->port))
937 scm_flush (scm_i_port_table[i]->port);
938 }
939 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
940 return SCM_UNSPECIFIED;
941 }
942 #undef FUNC_NAME
943
944 SCM_DEFINE (scm_read_char, "read-char", 0, 1, 0,
945 (SCM port),
946 "Return the next character available from @var{port}, updating\n"
947 "@var{port} to point to the following character. If no more\n"
948 "characters are available, the end-of-file object is returned.")
949 #define FUNC_NAME s_scm_read_char
950 {
951 int c;
952 if (SCM_UNBNDP (port))
953 port = scm_current_input_port ();
954 SCM_VALIDATE_OPINPORT (1, port);
955 c = scm_getc (port);
956 if (EOF == c)
957 return SCM_EOF_VAL;
958 return SCM_MAKE_CHAR (c);
959 }
960 #undef FUNC_NAME
961
962 /* this should only be called when the read buffer is empty. it
963 tries to refill the read buffer. it returns the first char from
964 the port, which is either EOF or *(pt->read_pos). */
965 int
966 scm_fill_input (SCM port)
967 {
968 scm_t_port *pt = SCM_PTAB_ENTRY (port);
969
970 if (pt->read_buf == pt->putback_buf)
971 {
972 /* finished reading put-back chars. */
973 pt->read_buf = pt->saved_read_buf;
974 pt->read_pos = pt->saved_read_pos;
975 pt->read_end = pt->saved_read_end;
976 pt->read_buf_size = pt->saved_read_buf_size;
977 if (pt->read_pos < pt->read_end)
978 return *(pt->read_pos);
979 }
980 return scm_ptobs[SCM_PTOBNUM (port)].fill_input (port);
981 }
982
983 int
984 scm_getc (SCM port)
985 {
986 int c;
987 scm_t_port *pt = SCM_PTAB_ENTRY (port);
988
989 if (pt->rw_active == SCM_PORT_WRITE)
990 /* may be marginally faster than calling scm_flush. */
991 scm_ptobs[SCM_PTOBNUM (port)].flush (port);
992
993 if (pt->rw_random)
994 pt->rw_active = SCM_PORT_READ;
995
996 if (pt->read_pos >= pt->read_end)
997 {
998 if (scm_fill_input (port) == EOF)
999 return EOF;
1000 }
1001
1002 c = *(pt->read_pos++);
1003
1004 switch (c)
1005 {
1006 case '\a':
1007 break;
1008 case '\b':
1009 SCM_DECCOL (port);
1010 break;
1011 case '\n':
1012 SCM_INCLINE (port);
1013 break;
1014 case '\r':
1015 SCM_ZEROCOL (port);
1016 break;
1017 case '\t':
1018 SCM_TABCOL (port);
1019 break;
1020 default:
1021 SCM_INCCOL (port);
1022 break;
1023 }
1024
1025 return c;
1026 }
1027
1028 void
1029 scm_putc (char c, SCM port)
1030 {
1031 SCM_ASSERT_TYPE (SCM_OPOUTPORTP (port), port, 0, NULL, "output port");
1032 scm_lfwrite (&c, 1, port);
1033 }
1034
1035 void
1036 scm_puts (const char *s, SCM port)
1037 {
1038 SCM_ASSERT_TYPE (SCM_OPOUTPORTP (port), port, 0, NULL, "output port");
1039 scm_lfwrite (s, strlen (s), port);
1040 }
1041
1042 /* scm_lfwrite
1043 *
1044 * This function differs from scm_c_write; it updates port line and
1045 * column. */
1046
1047 void
1048 scm_lfwrite (const char *ptr, size_t size, SCM port)
1049 {
1050 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1051 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
1052
1053 if (pt->rw_active == SCM_PORT_READ)
1054 scm_end_input (port);
1055
1056 ptob->write (port, ptr, size);
1057
1058 for (; size; ptr++, size--) {
1059 if (*ptr == '\a') {
1060 }
1061 else if (*ptr == '\b') {
1062 SCM_DECCOL(port);
1063 }
1064 else if (*ptr == '\n') {
1065 SCM_INCLINE(port);
1066 }
1067 else if (*ptr == '\r') {
1068 SCM_ZEROCOL(port);
1069 }
1070 else if (*ptr == '\t') {
1071 SCM_TABCOL(port);
1072 }
1073 else {
1074 SCM_INCCOL(port);
1075 }
1076 }
1077
1078 if (pt->rw_random)
1079 pt->rw_active = SCM_PORT_WRITE;
1080 }
1081
1082 /* scm_c_read
1083 *
1084 * Used by an application to read arbitrary number of bytes from an
1085 * SCM port. Same semantics as libc read, except that scm_c_read only
1086 * returns less than SIZE bytes if at end-of-file.
1087 *
1088 * Warning: Doesn't update port line and column counts! */
1089
1090 size_t
1091 scm_c_read (SCM port, void *buffer, size_t size)
1092 {
1093 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1094 size_t n_read = 0, n_available;
1095
1096 if (pt->rw_active == SCM_PORT_WRITE)
1097 scm_ptobs[SCM_PTOBNUM (port)].flush (port);
1098
1099 if (pt->rw_random)
1100 pt->rw_active = SCM_PORT_READ;
1101
1102 if (SCM_READ_BUFFER_EMPTY_P (pt))
1103 {
1104 if (scm_fill_input (port) == EOF)
1105 return 0;
1106 }
1107
1108 n_available = pt->read_end - pt->read_pos;
1109
1110 while (n_available < size)
1111 {
1112 memcpy (buffer, pt->read_pos, n_available);
1113 buffer = (char *) buffer + n_available;
1114 pt->read_pos += n_available;
1115 n_read += n_available;
1116
1117 if (SCM_READ_BUFFER_EMPTY_P (pt))
1118 {
1119 if (scm_fill_input (port) == EOF)
1120 return n_read;
1121 }
1122
1123 size -= n_available;
1124 n_available = pt->read_end - pt->read_pos;
1125 }
1126
1127 memcpy (buffer, pt->read_pos, size);
1128 pt->read_pos += size;
1129
1130 return n_read + size;
1131 }
1132
1133 /* scm_c_write
1134 *
1135 * Used by an application to write arbitrary number of bytes to an SCM
1136 * port. Similar semantics as libc write. However, unlike libc
1137 * write, scm_c_write writes the requested number of bytes and has no
1138 * return value.
1139 *
1140 * Warning: Doesn't update port line and column counts!
1141 */
1142
1143 void
1144 scm_c_write (SCM port, const void *ptr, size_t size)
1145 {
1146 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1147 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (port)];
1148
1149 if (pt->rw_active == SCM_PORT_READ)
1150 scm_end_input (port);
1151
1152 ptob->write (port, ptr, size);
1153
1154 if (pt->rw_random)
1155 pt->rw_active = SCM_PORT_WRITE;
1156 }
1157
1158 void
1159 scm_flush (SCM port)
1160 {
1161 long i = SCM_PTOBNUM (port);
1162 assert ((i >= 0) && (i < scm_i_port_table_size));
1163 (scm_ptobs[i].flush) (port);
1164 }
1165
1166 void
1167 scm_end_input (SCM port)
1168 {
1169 long offset;
1170 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1171
1172 if (pt->read_buf == pt->putback_buf)
1173 {
1174 offset = pt->read_end - pt->read_pos;
1175 pt->read_buf = pt->saved_read_buf;
1176 pt->read_pos = pt->saved_read_pos;
1177 pt->read_end = pt->saved_read_end;
1178 pt->read_buf_size = pt->saved_read_buf_size;
1179 }
1180 else
1181 offset = 0;
1182
1183 scm_ptobs[SCM_PTOBNUM (port)].end_input (port, offset);
1184 }
1185
1186 \f
1187
1188
1189 void
1190 scm_ungetc (int c, SCM port)
1191 #define FUNC_NAME "scm_ungetc"
1192 {
1193 scm_t_port *pt = SCM_PTAB_ENTRY (port);
1194
1195 if (pt->read_buf == pt->putback_buf)
1196 /* already using the put-back buffer. */
1197 {
1198 /* enlarge putback_buf if necessary. */
1199 if (pt->read_end == pt->read_buf + pt->read_buf_size
1200 && pt->read_buf == pt->read_pos)
1201 {
1202 size_t new_size = pt->read_buf_size * 2;
1203 unsigned char *tmp = (unsigned char *)
1204 /* XXX: Can we use `GC_REALLOC' with `GC_MALLOC_ATOMIC'-allocated
1205 data? (Ludo) */
1206 scm_gc_realloc (pt->putback_buf, pt->read_buf_size, new_size,
1207 "putback buffer");
1208
1209 pt->read_pos = pt->read_buf = pt->putback_buf = tmp;
1210 pt->read_end = pt->read_buf + pt->read_buf_size;
1211 pt->read_buf_size = pt->putback_buf_size = new_size;
1212 }
1213
1214 /* shift any existing bytes to buffer + 1. */
1215 if (pt->read_pos == pt->read_end)
1216 pt->read_end = pt->read_buf + 1;
1217 else if (pt->read_pos != pt->read_buf + 1)
1218 {
1219 int count = pt->read_end - pt->read_pos;
1220
1221 memmove (pt->read_buf + 1, pt->read_pos, count);
1222 pt->read_end = pt->read_buf + 1 + count;
1223 }
1224
1225 pt->read_pos = pt->read_buf;
1226 }
1227 else
1228 /* switch to the put-back buffer. */
1229 {
1230 if (pt->putback_buf == NULL)
1231 {
1232 pt->putback_buf
1233 = (unsigned char *) scm_gc_malloc_pointerless
1234 (SCM_INITIAL_PUTBACK_BUF_SIZE, "putback buffer");
1235 pt->putback_buf_size = SCM_INITIAL_PUTBACK_BUF_SIZE;
1236 }
1237
1238 pt->saved_read_buf = pt->read_buf;
1239 pt->saved_read_pos = pt->read_pos;
1240 pt->saved_read_end = pt->read_end;
1241 pt->saved_read_buf_size = pt->read_buf_size;
1242
1243 pt->read_pos = pt->read_buf = pt->putback_buf;
1244 pt->read_end = pt->read_buf + 1;
1245 pt->read_buf_size = pt->putback_buf_size;
1246 }
1247
1248 *pt->read_buf = c;
1249
1250 if (pt->rw_random)
1251 pt->rw_active = SCM_PORT_READ;
1252
1253 if (c == '\n')
1254 {
1255 /* What should col be in this case?
1256 * We'll leave it at -1.
1257 */
1258 SCM_LINUM (port) -= 1;
1259 }
1260 else
1261 SCM_COL(port) -= 1;
1262 }
1263 #undef FUNC_NAME
1264
1265
1266 void
1267 scm_ungets (const char *s, int n, SCM port)
1268 {
1269 /* This is simple minded and inefficient, but unreading strings is
1270 * probably not a common operation, and remember that line and
1271 * column numbers have to be handled...
1272 *
1273 * Please feel free to write an optimized version!
1274 */
1275 while (n--)
1276 scm_ungetc (s[n], port);
1277 }
1278
1279
1280 SCM_DEFINE (scm_peek_char, "peek-char", 0, 1, 0,
1281 (SCM port),
1282 "Return the next character available from @var{port},\n"
1283 "@emph{without} updating @var{port} to point to the following\n"
1284 "character. If no more characters are available, the\n"
1285 "end-of-file object is returned.\n"
1286 "\n"
1287 "The value returned by\n"
1288 "a call to @code{peek-char} is the same as the value that would\n"
1289 "have been returned by a call to @code{read-char} on the same\n"
1290 "port. The only difference is that the very next call to\n"
1291 "@code{read-char} or @code{peek-char} on that @var{port} will\n"
1292 "return the value returned by the preceding call to\n"
1293 "@code{peek-char}. In particular, a call to @code{peek-char} on\n"
1294 "an interactive port will hang waiting for input whenever a call\n"
1295 "to @code{read-char} would have hung.")
1296 #define FUNC_NAME s_scm_peek_char
1297 {
1298 int c, column;
1299 if (SCM_UNBNDP (port))
1300 port = scm_current_input_port ();
1301 else
1302 SCM_VALIDATE_OPINPORT (1, port);
1303 column = SCM_COL(port);
1304 c = scm_getc (port);
1305 if (EOF == c)
1306 return SCM_EOF_VAL;
1307 scm_ungetc (c, port);
1308 SCM_COL(port) = column;
1309 return SCM_MAKE_CHAR (c);
1310 }
1311 #undef FUNC_NAME
1312
1313 SCM_DEFINE (scm_unread_char, "unread-char", 1, 1, 0,
1314 (SCM cobj, SCM port),
1315 "Place @var{char} in @var{port} so that it will be read by the\n"
1316 "next read operation. If called multiple times, the unread characters\n"
1317 "will be read again in last-in first-out order. If @var{port} is\n"
1318 "not supplied, the current input port is used.")
1319 #define FUNC_NAME s_scm_unread_char
1320 {
1321 int c;
1322
1323 SCM_VALIDATE_CHAR (1, cobj);
1324 if (SCM_UNBNDP (port))
1325 port = scm_current_input_port ();
1326 else
1327 SCM_VALIDATE_OPINPORT (2, port);
1328
1329 c = SCM_CHAR (cobj);
1330
1331 scm_ungetc (c, port);
1332 return cobj;
1333 }
1334 #undef FUNC_NAME
1335
1336 SCM_DEFINE (scm_unread_string, "unread-string", 2, 0, 0,
1337 (SCM str, SCM port),
1338 "Place the string @var{str} in @var{port} so that its characters will be\n"
1339 "read in subsequent read operations. If called multiple times, the\n"
1340 "unread characters will be read again in last-in first-out order. If\n"
1341 "@var{port} is not supplied, the current-input-port is used.")
1342 #define FUNC_NAME s_scm_unread_string
1343 {
1344 SCM_VALIDATE_STRING (1, str);
1345 if (SCM_UNBNDP (port))
1346 port = scm_current_input_port ();
1347 else
1348 SCM_VALIDATE_OPINPORT (2, port);
1349
1350 scm_ungets (scm_i_string_chars (str), scm_i_string_length (str), port);
1351
1352 return str;
1353 }
1354 #undef FUNC_NAME
1355
1356 SCM_DEFINE (scm_seek, "seek", 3, 0, 0,
1357 (SCM fd_port, SCM offset, SCM whence),
1358 "Sets the current position of @var{fd/port} to the integer\n"
1359 "@var{offset}, which is interpreted according to the value of\n"
1360 "@var{whence}.\n"
1361 "\n"
1362 "One of the following variables should be supplied for\n"
1363 "@var{whence}:\n"
1364 "@defvar SEEK_SET\n"
1365 "Seek from the beginning of the file.\n"
1366 "@end defvar\n"
1367 "@defvar SEEK_CUR\n"
1368 "Seek from the current position.\n"
1369 "@end defvar\n"
1370 "@defvar SEEK_END\n"
1371 "Seek from the end of the file.\n"
1372 "@end defvar\n"
1373 "If @var{fd/port} is a file descriptor, the underlying system\n"
1374 "call is @code{lseek}. @var{port} may be a string port.\n"
1375 "\n"
1376 "The value returned is the new position in the file. This means\n"
1377 "that the current position of a port can be obtained using:\n"
1378 "@lisp\n"
1379 "(seek port 0 SEEK_CUR)\n"
1380 "@end lisp")
1381 #define FUNC_NAME s_scm_seek
1382 {
1383 int how;
1384
1385 fd_port = SCM_COERCE_OUTPORT (fd_port);
1386
1387 how = scm_to_int (whence);
1388 if (how != SEEK_SET && how != SEEK_CUR && how != SEEK_END)
1389 SCM_OUT_OF_RANGE (3, whence);
1390
1391 if (SCM_OPPORTP (fd_port))
1392 {
1393 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (fd_port);
1394 off_t off = scm_to_off_t (offset);
1395 off_t rv;
1396
1397 if (!ptob->seek)
1398 SCM_MISC_ERROR ("port is not seekable",
1399 scm_cons (fd_port, SCM_EOL));
1400 else
1401 rv = ptob->seek (fd_port, off, how);
1402 return scm_from_off_t (rv);
1403 }
1404 else /* file descriptor?. */
1405 {
1406 off_t_or_off64_t off = scm_to_off_t_or_off64_t (offset);
1407 off_t_or_off64_t rv;
1408 rv = lseek_or_lseek64 (scm_to_int (fd_port), off, how);
1409 if (rv == -1)
1410 SCM_SYSERROR;
1411 return scm_from_off_t_or_off64_t (rv);
1412 }
1413 }
1414 #undef FUNC_NAME
1415
1416 #ifdef __MINGW32__
1417 /* Define this function since it is not supported under Windows. */
1418 static int truncate (char *file, int length)
1419 {
1420 int ret = -1, fdes;
1421 if ((fdes = open (file, O_BINARY | O_WRONLY)) != -1)
1422 {
1423 ret = chsize (fdes, length);
1424 close (fdes);
1425 }
1426 return ret;
1427 }
1428 #endif /* __MINGW32__ */
1429
1430 SCM_DEFINE (scm_truncate_file, "truncate-file", 1, 1, 0,
1431 (SCM object, SCM length),
1432 "Truncates the object referred to by @var{object} to at most\n"
1433 "@var{length} bytes. @var{object} can be a string containing a\n"
1434 "file name or an integer file descriptor or a port.\n"
1435 "@var{length} may be omitted if @var{object} is not a file name,\n"
1436 "in which case the truncation occurs at the current port\n"
1437 "position. The return value is unspecified.")
1438 #define FUNC_NAME s_scm_truncate_file
1439 {
1440 int rv;
1441
1442 /* "object" can be a port, fdes or filename.
1443
1444 Negative "length" makes no sense, but it's left to truncate() or
1445 ftruncate() to give back an error for that (normally EINVAL).
1446 */
1447
1448 if (SCM_UNBNDP (length))
1449 {
1450 /* must supply length if object is a filename. */
1451 if (scm_is_string (object))
1452 SCM_MISC_ERROR("must supply length if OBJECT is a filename", SCM_EOL);
1453
1454 length = scm_seek (object, SCM_INUM0, scm_from_int (SEEK_CUR));
1455 }
1456
1457 object = SCM_COERCE_OUTPORT (object);
1458 if (scm_is_integer (object))
1459 {
1460 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
1461 SCM_SYSCALL (rv = ftruncate_or_ftruncate64 (scm_to_int (object),
1462 c_length));
1463 }
1464 else if (SCM_OPOUTPORTP (object))
1465 {
1466 off_t c_length = scm_to_off_t (length);
1467 scm_t_port *pt = SCM_PTAB_ENTRY (object);
1468 scm_t_ptob_descriptor *ptob = scm_ptobs + SCM_PTOBNUM (object);
1469
1470 if (!ptob->truncate)
1471 SCM_MISC_ERROR ("port is not truncatable", SCM_EOL);
1472 if (pt->rw_active == SCM_PORT_READ)
1473 scm_end_input (object);
1474 else if (pt->rw_active == SCM_PORT_WRITE)
1475 ptob->flush (object);
1476
1477 ptob->truncate (object, c_length);
1478 rv = 0;
1479 }
1480 else
1481 {
1482 off_t_or_off64_t c_length = scm_to_off_t_or_off64_t (length);
1483 char *str = scm_to_locale_string (object);
1484 int eno;
1485 SCM_SYSCALL (rv = truncate_or_truncate64 (str, c_length));
1486 eno = errno;
1487 free (str);
1488 errno = eno;
1489 }
1490 if (rv == -1)
1491 SCM_SYSERROR;
1492 return SCM_UNSPECIFIED;
1493 }
1494 #undef FUNC_NAME
1495
1496 SCM_DEFINE (scm_port_line, "port-line", 1, 0, 0,
1497 (SCM port),
1498 "Return the current line number for @var{port}.\n"
1499 "\n"
1500 "The first line of a file is 0. But you might want to add 1\n"
1501 "when printing line numbers, since starting from 1 is\n"
1502 "traditional in error messages, and likely to be more natural to\n"
1503 "non-programmers.")
1504 #define FUNC_NAME s_scm_port_line
1505 {
1506 port = SCM_COERCE_OUTPORT (port);
1507 SCM_VALIDATE_OPENPORT (1, port);
1508 return scm_from_int (SCM_LINUM (port));
1509 }
1510 #undef FUNC_NAME
1511
1512 SCM_DEFINE (scm_set_port_line_x, "set-port-line!", 2, 0, 0,
1513 (SCM port, SCM line),
1514 "Set the current line number for @var{port} to @var{line}. The\n"
1515 "first line of a file is 0.")
1516 #define FUNC_NAME s_scm_set_port_line_x
1517 {
1518 port = SCM_COERCE_OUTPORT (port);
1519 SCM_VALIDATE_OPENPORT (1, port);
1520 SCM_PTAB_ENTRY (port)->line_number = scm_to_int (line);
1521 return SCM_UNSPECIFIED;
1522 }
1523 #undef FUNC_NAME
1524
1525 SCM_DEFINE (scm_port_column, "port-column", 1, 0, 0,
1526 (SCM port),
1527 "Return the current column number of @var{port}.\n"
1528 "If the number is\n"
1529 "unknown, the result is #f. Otherwise, the result is a 0-origin integer\n"
1530 "- i.e. the first character of the first line is line 0, column 0.\n"
1531 "(However, when you display a file position, for example in an error\n"
1532 "message, we recommend you add 1 to get 1-origin integers. This is\n"
1533 "because lines and column numbers traditionally start with 1, and that is\n"
1534 "what non-programmers will find most natural.)")
1535 #define FUNC_NAME s_scm_port_column
1536 {
1537 port = SCM_COERCE_OUTPORT (port);
1538 SCM_VALIDATE_OPENPORT (1, port);
1539 return scm_from_int (SCM_COL (port));
1540 }
1541 #undef FUNC_NAME
1542
1543 SCM_DEFINE (scm_set_port_column_x, "set-port-column!", 2, 0, 0,
1544 (SCM port, SCM column),
1545 "Set the current column of @var{port}. Before reading the first\n"
1546 "character on a line the column should be 0.")
1547 #define FUNC_NAME s_scm_set_port_column_x
1548 {
1549 port = SCM_COERCE_OUTPORT (port);
1550 SCM_VALIDATE_OPENPORT (1, port);
1551 SCM_PTAB_ENTRY (port)->column_number = scm_to_int (column);
1552 return SCM_UNSPECIFIED;
1553 }
1554 #undef FUNC_NAME
1555
1556 SCM_DEFINE (scm_port_filename, "port-filename", 1, 0, 0,
1557 (SCM port),
1558 "Return the filename associated with @var{port}. This function returns\n"
1559 "the strings \"standard input\", \"standard output\" and \"standard error\"\n"
1560 "when called on the current input, output and error ports respectively.")
1561 #define FUNC_NAME s_scm_port_filename
1562 {
1563 port = SCM_COERCE_OUTPORT (port);
1564 SCM_VALIDATE_OPENPORT (1, port);
1565 return SCM_FILENAME (port);
1566 }
1567 #undef FUNC_NAME
1568
1569 SCM_DEFINE (scm_set_port_filename_x, "set-port-filename!", 2, 0, 0,
1570 (SCM port, SCM filename),
1571 "Change the filename associated with @var{port}, using the current input\n"
1572 "port if none is specified. Note that this does not change the port's\n"
1573 "source of data, but only the value that is returned by\n"
1574 "@code{port-filename} and reported in diagnostic output.")
1575 #define FUNC_NAME s_scm_set_port_filename_x
1576 {
1577 port = SCM_COERCE_OUTPORT (port);
1578 SCM_VALIDATE_OPENPORT (1, port);
1579 /* We allow the user to set the filename to whatever he likes. */
1580 SCM_SET_FILENAME (port, filename);
1581 return SCM_UNSPECIFIED;
1582 }
1583 #undef FUNC_NAME
1584
1585 void
1586 scm_print_port_mode (SCM exp, SCM port)
1587 {
1588 scm_puts (SCM_CLOSEDP (exp)
1589 ? "closed: "
1590 : (SCM_RDNG & SCM_CELL_WORD_0 (exp)
1591 ? (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
1592 ? "input-output: "
1593 : "input: ")
1594 : (SCM_WRTNG & SCM_CELL_WORD_0 (exp)
1595 ? "output: "
1596 : "bogus: ")),
1597 port);
1598 }
1599
1600 int
1601 scm_port_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
1602 {
1603 char *type = SCM_PTOBNAME (SCM_PTOBNUM (exp));
1604 if (!type)
1605 type = "port";
1606 scm_puts ("#<", port);
1607 scm_print_port_mode (exp, port);
1608 scm_puts (type, port);
1609 scm_putc (' ', port);
1610 scm_uintprint (SCM_CELL_WORD_1 (exp), 16, port);
1611 scm_putc ('>', port);
1612 return 1;
1613 }
1614
1615 void
1616 scm_ports_prehistory ()
1617 {
1618 scm_numptob = 0;
1619 scm_ptobs = NULL;
1620
1621 scm_i_port_table = scm_gc_malloc (scm_i_port_table_room
1622 * sizeof (scm_t_port *),
1623 "port-table");
1624 }
1625
1626 \f
1627
1628 /* Void ports. */
1629
1630 scm_t_bits scm_tc16_void_port = 0;
1631
1632 static int fill_input_void_port (SCM port SCM_UNUSED)
1633 {
1634 return EOF;
1635 }
1636
1637 static void
1638 write_void_port (SCM port SCM_UNUSED,
1639 const void *data SCM_UNUSED,
1640 size_t size SCM_UNUSED)
1641 {
1642 }
1643
1644 static SCM
1645 scm_i_void_port (long mode_bits)
1646 {
1647 scm_i_scm_pthread_mutex_lock (&scm_i_port_table_mutex);
1648 {
1649 SCM answer = scm_new_port_table_entry (scm_tc16_void_port);
1650 scm_t_port * pt = SCM_PTAB_ENTRY(answer);
1651
1652 scm_port_non_buffer (pt);
1653
1654 SCM_SETSTREAM (answer, 0);
1655 SCM_SET_CELL_TYPE (answer, scm_tc16_void_port | mode_bits);
1656 scm_i_pthread_mutex_unlock (&scm_i_port_table_mutex);
1657 return answer;
1658 }
1659 }
1660
1661 SCM
1662 scm_void_port (char *mode_str)
1663 {
1664 return scm_i_void_port (scm_mode_bits (mode_str));
1665 }
1666
1667 SCM_DEFINE (scm_sys_make_void_port, "%make-void-port", 1, 0, 0,
1668 (SCM mode),
1669 "Create and return a new void port. A void port acts like\n"
1670 "@file{/dev/null}. The @var{mode} argument\n"
1671 "specifies the input/output modes for this port: see the\n"
1672 "documentation for @code{open-file} in @ref{File Ports}.")
1673 #define FUNC_NAME s_scm_sys_make_void_port
1674 {
1675 return scm_i_void_port (scm_i_mode_bits (mode));
1676 }
1677 #undef FUNC_NAME
1678
1679 \f
1680 /* Initialization. */
1681
1682 void
1683 scm_init_ports ()
1684 {
1685 /* lseek() symbols. */
1686 scm_c_define ("SEEK_SET", scm_from_int (SEEK_SET));
1687 scm_c_define ("SEEK_CUR", scm_from_int (SEEK_CUR));
1688 scm_c_define ("SEEK_END", scm_from_int (SEEK_END));
1689
1690 scm_tc16_void_port = scm_make_port_type ("void", fill_input_void_port,
1691 write_void_port);
1692
1693 cur_inport_fluid = scm_permanent_object (scm_make_fluid ());
1694 cur_outport_fluid = scm_permanent_object (scm_make_fluid ());
1695 cur_errport_fluid = scm_permanent_object (scm_make_fluid ());
1696 cur_loadport_fluid = scm_permanent_object (scm_make_fluid ());
1697
1698 #include "libguile/ports.x"
1699 }
1700
1701 /*
1702 Local Variables:
1703 c-file-style: "gnu"
1704 End:
1705 */