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