* __scm.h, alist.h, arbiters.h, async.h, backtrace.h, boolean.h,
[bpt/guile.git] / libguile / ioext.c
CommitLineData
6d36532c 1/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
0f2d19dd
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84 41
1bbd0b84 42
0f2d19dd
JB
43\f
44
7beabedb 45#include <stdio.h>
e6e2e95a
MD
46#include <errno.h>
47
a0599745 48#include "libguile/_scm.h"
6d36532c 49#include "libguile/ioext.h"
a0599745 50#include "libguile/fports.h"
a0599745 51#include "libguile/feature.h"
6d36532c 52#include "libguile/ports.h"
a0599745 53#include "libguile/strings.h"
a0599745 54#include "libguile/validate.h"
0f2d19dd 55
ee149d03
JB
56#include <fcntl.h>
57
95b88819
GH
58#ifdef HAVE_UNISTD_H
59#include <unistd.h>
60#endif
0f2d19dd
JB
61\f
62
a1ec6916 63SCM_DEFINE (scm_ftell, "ftell", 1, 0, 0,
1e6808ea
MG
64 (SCM fd_port),
65 "Return an integer representing the current position of\n"
66 "@var{fd/port}, measured from the beginning. Equivalent to:\n"
67 "\n"
68 "@lisp\n"
b380b885 69 "(seek port 0 SEEK_CUR)\n"
1e6808ea 70 "@end lisp")
1bbd0b84 71#define FUNC_NAME s_scm_ftell
0f2d19dd 72{
1e6808ea 73 return scm_seek (fd_port, SCM_INUM0, SCM_MAKINUM (SEEK_CUR));
ee149d03 74}
1bbd0b84 75#undef FUNC_NAME
0f2d19dd 76
a1ec6916 77SCM_DEFINE (scm_redirect_port, "redirect-port", 2, 0, 0,
1bbd0b84 78 (SCM old, SCM new),
b380b885
MD
79 "This procedure takes two ports and duplicates the underlying file\n"
80 "descriptor from @var{old-port} into @var{new-port}. The\n"
81 "current file descriptor in @var{new-port} will be closed.\n"
82 "After the redirection the two ports will share a file position\n"
83 "and file status flags.\n\n"
84 "The return value is unspecified.\n\n"
85 "Unexpected behaviour can result if both ports are subsequently used\n"
86 "and the original and/or duplicate ports are buffered.\n\n"
87 "This procedure does not have any side effects on other ports or\n"
88 "revealed counts.")
1bbd0b84 89#define FUNC_NAME s_scm_redirect_port
0f2d19dd
JB
90{
91 int ans, oldfd, newfd;
92c2555f 92 scm_t_fport *fp;
9c29ac66 93
78446828
MV
94 old = SCM_COERCE_OUTPORT (old);
95 new = SCM_COERCE_OUTPORT (new);
1bbd0b84 96
3b3b36dd
GB
97 SCM_VALIDATE_OPFPORT (1,old);
98 SCM_VALIDATE_OPFPORT (2,new);
ee149d03
JB
99 oldfd = SCM_FPORT_FDES (old);
100 fp = SCM_FSTREAM (new);
101 newfd = fp->fdes;
102 if (oldfd != newfd)
103 {
92c2555f
MV
104 scm_t_port *pt = SCM_PTAB_ENTRY (new);
105 scm_t_port *old_pt = SCM_PTAB_ENTRY (old);
106 scm_t_ptob_descriptor *ptob = &scm_ptobs[SCM_PTOBNUM (new)];
afc5764c
JB
107
108 /* must flush to old fdes. */
109 if (pt->rw_active == SCM_PORT_WRITE)
affc96b5 110 ptob->flush (new);
afc5764c 111 else if (pt->rw_active == SCM_PORT_READ)
affc96b5 112 scm_end_input (new);
ee149d03
JB
113 ans = dup2 (oldfd, newfd);
114 if (ans == -1)
1bbd0b84 115 SCM_SYSERROR;
afc5764c 116 pt->rw_random = old_pt->rw_random;
ee149d03 117 /* continue using existing buffers, even if inappropriate. */
ee149d03 118 }
02b754d3 119 return SCM_UNSPECIFIED;
0f2d19dd 120}
1bbd0b84 121#undef FUNC_NAME
0f2d19dd 122
a1ec6916 123SCM_DEFINE (scm_dup_to_fdes, "dup->fdes", 1, 1, 0,
1bbd0b84 124 (SCM fd_or_port, SCM fd),
1e6808ea
MG
125 "Return a new integer file descriptor referring to the open file\n"
126 "designated by @var{fd_or_port}, which must be either an open\n"
127 "file port or a file descriptor.")
1bbd0b84 128#define FUNC_NAME s_scm_dup_to_fdes
a9488d12
GH
129{
130 int oldfd, newfd, rv;
131
78446828
MV
132 fd_or_port = SCM_COERCE_OUTPORT (fd_or_port);
133
a9488d12
GH
134 if (SCM_INUMP (fd_or_port))
135 oldfd = SCM_INUM (fd_or_port);
136 else
137 {
3b3b36dd 138 SCM_VALIDATE_OPFPORT (1,fd_or_port);
ee149d03 139 oldfd = SCM_FPORT_FDES (fd_or_port);
a9488d12 140 }
7a6f1ffa
GH
141
142 if (SCM_UNBNDP (fd))
e38303a2 143 {
ee149d03 144 newfd = dup (oldfd);
7a6f1ffa 145 if (newfd == -1)
1bbd0b84 146 SCM_SYSERROR;
7a6f1ffa
GH
147 fd = SCM_MAKINUM (newfd);
148 }
149 else
150 {
c1bfcf60 151 SCM_VALIDATE_INUM_COPY (2, fd, newfd);
7a6f1ffa
GH
152 if (oldfd != newfd)
153 {
154 scm_evict_ports (newfd); /* see scsh manual. */
ee149d03 155 rv = dup2 (oldfd, newfd);
7a6f1ffa 156 if (rv == -1)
1bbd0b84 157 SCM_SYSERROR;
7a6f1ffa 158 }
e38303a2 159 }
e38303a2 160 return fd;
a9488d12 161}
1bbd0b84 162#undef FUNC_NAME
a9488d12 163
34526073 164
c2ca4493
GH
165SCM_DEFINE (scm_dup2, "dup2", 2, 0, 0,
166 (SCM oldfd, SCM newfd),
167 "A simple wrapper for the @code{dup2} system call.\n"
168 "Copies the file descriptor @var{oldfd} to descriptor\n"
169 "number @var{newfd}, replacing the previous meaning\n"
170 "of @var{newfd}. Both @var{oldfd} and @var{newfd} must\n"
171 "be integers.\n"
172 "Unlike for dup->fdes or primitive-move->fdes, no attempt\n"
34526073 173 "is made to move away ports which are using @var{newfd}.\n"
c2ca4493
GH
174 "The return value is unspecified.")
175#define FUNC_NAME s_scm_dup2
176{
177 int c_oldfd;
178 int c_newfd;
179 int rv;
180
181 SCM_VALIDATE_INUM_COPY (1, oldfd, c_oldfd);
182 SCM_VALIDATE_INUM_COPY (2, newfd, c_newfd);
183 rv = dup2 (c_oldfd, c_newfd);
184 if (rv == -1)
185 SCM_SYSERROR;
186 return SCM_UNSPECIFIED;
187}
188#undef FUNC_NAME
189
a1ec6916 190SCM_DEFINE (scm_fileno, "fileno", 1, 0, 0,
1bbd0b84 191 (SCM port),
1e6808ea
MG
192 "Return the integer file descriptor underlying @var{port}. Does\n"
193 "not change its revealed count.")
1bbd0b84 194#define FUNC_NAME s_scm_fileno
0f2d19dd 195{
78446828 196 port = SCM_COERCE_OUTPORT (port);
3b3b36dd 197 SCM_VALIDATE_OPFPORT (1,port);
ee149d03 198 return SCM_MAKINUM (SCM_FPORT_FDES (port));
0f2d19dd 199}
1bbd0b84
GB
200#undef FUNC_NAME
201
202/* GJB:FIXME:: why does this not throw
203 an error if the arg is not a port?
204 This proc as is would be better names isattyport?
1be6b49c
ML
205 if it is not going to assume that the arg is a port
206
207 [cmm] I don't see any problem with the above. why should a type
208 predicate assume _anything_ about its argument?
209*/
a1ec6916 210SCM_DEFINE (scm_isatty_p, "isatty?", 1, 0, 0,
1bbd0b84 211 (SCM port),
1e6808ea
MG
212 "Return @code{#t} if @var{port} is using a serial non--file\n"
213 "device, otherwise @code{#f}.")
1bbd0b84 214#define FUNC_NAME s_scm_isatty_p
0f2d19dd
JB
215{
216 int rv;
78446828
MV
217
218 port = SCM_COERCE_OUTPORT (port);
219
0c95b57d 220 if (!SCM_OPFPORTP (port))
10ccfad7 221 return SCM_BOOL_F;
ee149d03
JB
222
223 rv = isatty (SCM_FPORT_FDES (port));
1bbd0b84 224 return SCM_BOOL(rv);
0f2d19dd 225}
1bbd0b84 226#undef FUNC_NAME
0f2d19dd
JB
227
228
229
a1ec6916 230SCM_DEFINE (scm_fdopen, "fdopen", 2, 0, 0,
1bbd0b84 231 (SCM fdes, SCM modes),
1e6808ea
MG
232 "Return a new port based on the file descriptor @var{fdes}.\n"
233 "Modes are given by the string @var{modes}. The revealed count\n"
234 "of the port is initialized to zero. The modes string is the\n"
235 "same as that accepted by @ref{File Ports, open-file}.")
1bbd0b84 236#define FUNC_NAME s_scm_fdopen
0f2d19dd 237{
3b3b36dd 238 SCM_VALIDATE_INUM (1,fdes);
a6d9e5ab 239 SCM_VALIDATE_STRING (2, modes);
19b27fa2 240
a6d9e5ab 241 return scm_fdes_to_port (SCM_INUM (fdes), SCM_STRING_CHARS (modes), SCM_BOOL_F);
0f2d19dd 242}
1bbd0b84 243#undef FUNC_NAME
0f2d19dd
JB
244
245
246
247/* Move a port's underlying file descriptor to a given value.
8b13c6b3
GH
248 * Returns #f if fdes is already the given value.
249 * #t if fdes moved.
0f2d19dd
JB
250 * MOVE->FDES is implemented in Scheme and calls this primitive.
251 */
a1ec6916 252SCM_DEFINE (scm_primitive_move_to_fdes, "primitive-move->fdes", 2, 0, 0,
1bbd0b84 253 (SCM port, SCM fd),
b380b885
MD
254 "Moves the underlying file descriptor for @var{port} to the integer\n"
255 "value @var{fdes} without changing the revealed count of @var{port}.\n"
256 "Any other ports already using this descriptor will be automatically\n"
257 "shifted to new descriptors and their revealed counts reset to zero.\n"
258 "The return value is @code{#f} if the file descriptor already had the\n"
259 "required value or @code{#t} if it was moved.")
1bbd0b84 260#define FUNC_NAME s_scm_primitive_move_to_fdes
0f2d19dd 261{
92c2555f 262 scm_t_fport *stream;
0f2d19dd
JB
263 int old_fd;
264 int new_fd;
265 int rv;
266
78446828
MV
267 port = SCM_COERCE_OUTPORT (port);
268
3b3b36dd
GB
269 SCM_VALIDATE_OPFPORT (1,port);
270 SCM_VALIDATE_INUM (2,fd);
ee149d03
JB
271 stream = SCM_FSTREAM (port);
272 old_fd = stream->fdes;
0f2d19dd
JB
273 new_fd = SCM_INUM (fd);
274 if (old_fd == new_fd)
275 {
8b13c6b3 276 return SCM_BOOL_F;
0f2d19dd
JB
277 }
278 scm_evict_ports (new_fd);
279 rv = dup2 (old_fd, new_fd);
280 if (rv == -1)
1bbd0b84 281 SCM_SYSERROR;
ee149d03 282 stream->fdes = new_fd;
0f2d19dd 283 SCM_SYSCALL (close (old_fd));
8b13c6b3 284 return SCM_BOOL_T;
0f2d19dd 285}
1bbd0b84 286#undef FUNC_NAME
0f2d19dd 287
0f2d19dd 288/* Return a list of ports using a given file descriptor. */
3b3b36dd 289SCM_DEFINE (scm_fdes_to_ports, "fdes->ports", 1, 0, 0,
1bbd0b84 290 (SCM fd),
1e6808ea
MG
291 "Return a list of existing ports which have @var{fdes} as an\n"
292 "underlying file descriptor, without changing their revealed\n"
293 "counts.")
1bbd0b84 294#define FUNC_NAME s_scm_fdes_to_ports
0f2d19dd
JB
295{
296 SCM result = SCM_EOL;
297 int int_fd;
c014a02e 298 long i;
0f2d19dd 299
3b3b36dd 300 SCM_VALIDATE_INUM_COPY (1,fd,int_fd);
0f2d19dd 301
f5fd8aa2 302 for (i = 0; i < scm_port_table_size; i++)
0f2d19dd 303 {
f5fd8aa2
MV
304 if (SCM_OPFPORTP (scm_port_table[i]->port)
305 && ((scm_t_fport *) scm_port_table[i]->stream)->fdes == int_fd)
306 result = scm_cons (scm_port_table[i]->port, result);
0f2d19dd 307 }
0f2d19dd 308 return result;
1bbd0b84
GB
309}
310#undef FUNC_NAME
0f2d19dd 311
1cc91f1b 312
0f2d19dd
JB
313void
314scm_init_ioext ()
0f2d19dd 315{
52cfc69b
GH
316 scm_add_feature ("i/o-extensions");
317
8dc9439f 318#ifndef SCM_MAGIC_SNARFER
a0599745 319#include "libguile/ioext.x"
8dc9439f 320#endif
0f2d19dd
JB
321}
322
89e00824
ML
323
324/*
325 Local Variables:
326 c-file-style: "gnu"
327 End:
328*/