64ad562bc80262c6d42b57c3235ec3b985b6ee84
[bpt/guile.git] / libguile / ioext.c
1 /* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice. */
41 \f
42
43
44 #include <stdio.h>
45 #include "_scm.h"
46 #include "genio.h"
47 #include "read.h"
48 #include "fports.h"
49 #include "unif.h"
50 #include "chars.h"
51
52 #include "ioext.h"
53
54 #ifdef HAVE_STRING_H
55 #include <string.h>
56 #endif
57 #ifdef HAVE_UNISTD_H
58 #include <unistd.h>
59 #endif
60 \f
61
62 SCM_PROC (s_read_delimited_x, "%read-delimited!", 3, 3, 0, scm_read_delimited_x);
63
64 SCM
65 scm_read_delimited_x (delims, buf, gobble, port, start, end)
66 SCM delims;
67 SCM buf;
68 SCM gobble;
69 SCM port;
70 SCM start;
71 SCM end;
72 {
73 long j;
74 char *cbuf;
75 long cstart;
76 long cend;
77 int c;
78 char *cdelims;
79 int num_delims;
80
81 SCM_ASSERT (SCM_NIMP (delims) && SCM_ROSTRINGP (delims),
82 delims, SCM_ARG1, s_read_delimited_x);
83 cdelims = SCM_ROCHARS (delims);
84 num_delims = SCM_ROLENGTH (delims);
85 SCM_ASSERT (SCM_NIMP (buf) && SCM_STRINGP (buf),
86 buf, SCM_ARG2, s_read_delimited_x);
87 cbuf = SCM_CHARS (buf);
88 cend = SCM_LENGTH (buf);
89 if (SCM_UNBNDP (port))
90 port = scm_cur_inp;
91 else
92 {
93 SCM_ASSERT (SCM_NIMP (port) && SCM_OPINPORTP (port),
94 port, SCM_ARG1, s_read_delimited_x);
95 }
96
97 if (SCM_UNBNDP (start))
98 cstart = 0;
99 else
100 {
101 cstart = scm_num2long (start,
102 (char *) SCM_ARG5, s_read_delimited_x);
103 if (cstart < 0 || cstart >= cend)
104 scm_out_of_range (s_read_delimited_x, start);
105
106 if (!SCM_UNBNDP (end))
107 {
108 long tend = scm_num2long (end, (char *) SCM_ARG6,
109 s_read_delimited_x);
110 if (tend <= cstart || tend > cend)
111 scm_out_of_range (s_read_delimited_x, end);
112 cend = tend;
113 }
114 }
115
116 for (j = cstart; j < cend; j++)
117 {
118 int k;
119
120 c = scm_getc (port);
121 for (k = 0; k < num_delims; k++)
122 {
123 if (cdelims[k] == c)
124 {
125 if (SCM_FALSEP (gobble))
126 scm_ungetc (c, port);
127
128 return scm_cons (SCM_MAKICHR (c),
129 scm_long2num (j - cstart));
130 }
131 }
132 if (c == EOF)
133 return scm_cons (SCM_EOF_VAL,
134 scm_long2num (j - cstart));
135
136 cbuf[j] = c;
137 }
138 return scm_cons (SCM_BOOL_F, scm_long2num (j - cstart));
139 }
140
141 /*
142 * %read-line uses a port's fgets method for fast line i/o. It
143 * truncates any terminating newline from its input, and returns
144 * a cons of the string read and its terminating character. Doing
145 * so makes it easy to implement the hairy `read-line' options
146 * efficiently in Scheme.
147 */
148
149 SCM_PROC (s_read_line, "%read-line", 0, 1, 0, scm_read_line);
150
151 SCM
152 scm_read_line (port)
153 SCM port;
154 {
155 char *s;
156 int slen;
157 SCM line, term;
158
159 if (SCM_UNBNDP (port))
160 port = scm_cur_inp;
161 else
162 {
163 SCM_ASSERT (SCM_NIMP (port) && SCM_OPINPORTP (port),
164 port, SCM_ARG1, s_read_line);
165 }
166
167 s = scm_do_read_line (port, &slen);
168
169 if (s == NULL)
170 term = line = SCM_EOF_VAL;
171 else
172 {
173 if (s[slen-1] == '\n')
174 {
175 term = SCM_MAKICHR ('\n');
176 line = scm_makfromstr (s, slen-1, 0);
177 }
178 else
179 {
180 /* Fix: we should check for eof on the port before assuming this. */
181 term = SCM_EOF_VAL;
182 line = scm_makfromstr (s, slen, 0);
183 }
184 free (s);
185 }
186
187 return scm_cons (line, term);
188 }
189
190 SCM_PROC (s_write_line, "write-line", 1, 1, 0, scm_write_line);
191
192 SCM
193 scm_write_line (obj, port)
194 SCM obj;
195 SCM port;
196 {
197 scm_display (obj, port);
198 return scm_newline (port);
199 }
200
201 SCM_PROC (s_ftell, "ftell", 1, 0, 0, scm_ftell);
202
203 SCM
204 scm_ftell (object)
205 SCM object;
206 {
207 long pos;
208
209 object = SCM_COERCE_OUTPORT (object);
210
211 SCM_DEFER_INTS;
212 if (SCM_NIMP (object) && SCM_OPFPORTP (object))
213 {
214 SCM_SYSCALL (pos = ftell ((FILE *)SCM_STREAM (object)));
215 if (pos > 0 && SCM_CRDYP (object))
216 pos--;
217 }
218 else
219 {
220 SCM_ASSERT (SCM_INUMP (object), object, SCM_ARG1, s_ftell);
221 SCM_SYSCALL (pos = lseek (SCM_INUM (object), 0, SEEK_CUR));
222 }
223 if (pos < 0)
224 scm_syserror (s_ftell);
225 SCM_ALLOW_INTS;
226 return scm_long2num (pos);
227 }
228
229
230
231 SCM_PROC (s_fseek, "fseek", 3, 0, 0, scm_fseek);
232
233 SCM
234 scm_fseek (object, offset, whence)
235 SCM object;
236 SCM offset;
237 SCM whence;
238 {
239 int rv;
240 long loff;
241
242 object = SCM_COERCE_OUTPORT (object);
243
244 loff = scm_num2long (offset, (char *)SCM_ARG2, s_fseek);
245 SCM_ASSERT (SCM_INUMP (whence), whence, SCM_ARG3, s_fseek);
246 SCM_DEFER_INTS;
247 if (SCM_NIMP (object) && SCM_OPFPORTP (object))
248 {
249 SCM_CLRDY (object); /* Clear ungetted char */
250 rv = fseek ((FILE *)SCM_STREAM (object), loff, SCM_INUM (whence));
251 }
252 else
253 {
254 SCM_ASSERT (SCM_INUMP (object), object, SCM_ARG1, s_fseek);
255 rv = lseek (SCM_INUM (object), loff, SCM_INUM (whence));
256 }
257 if (rv < 0)
258 scm_syserror (s_fseek);
259 SCM_ALLOW_INTS;
260 return SCM_UNSPECIFIED;
261 }
262
263 SCM_PROC (s_redirect_port, "redirect-port", 2, 0, 0, scm_redirect_port);
264
265 SCM
266 scm_redirect_port (old, new)
267 SCM old;
268 SCM new;
269 {
270 int ans, oldfd, newfd;
271
272 old = SCM_COERCE_OUTPORT (old);
273 new = SCM_COERCE_OUTPORT (new);
274
275 SCM_DEFER_INTS;
276 SCM_ASSERT (SCM_NIMP (old) && SCM_OPPORTP (old), old, SCM_ARG1, s_redirect_port);
277 SCM_ASSERT (SCM_NIMP (new) && SCM_OPPORTP (new), new, SCM_ARG2, s_redirect_port);
278 oldfd = fileno ((FILE *)SCM_STREAM (old));
279 if (oldfd == -1)
280 scm_syserror (s_redirect_port);
281 newfd = fileno ((FILE *)SCM_STREAM (new));
282 if (newfd == -1)
283 scm_syserror (s_redirect_port);
284 SCM_SYSCALL (ans = dup2 (oldfd, newfd));
285 if (ans == -1)
286 scm_syserror (s_redirect_port);
287 SCM_ALLOW_INTS;
288 return SCM_UNSPECIFIED;
289 }
290
291 SCM_PROC (s_dup_to_fdes, "dup->fdes", 1, 1, 0, scm_dup_to_fdes);
292 SCM
293 scm_dup_to_fdes (SCM fd_or_port, SCM fd)
294 {
295 int oldfd, newfd, rv;
296
297 fd_or_port = SCM_COERCE_OUTPORT (fd_or_port);
298
299 SCM_DEFER_INTS;
300 if (SCM_INUMP (fd_or_port))
301 oldfd = SCM_INUM (fd_or_port);
302 else
303 {
304 SCM_ASSERT (SCM_NIMP (fd_or_port) && SCM_OPPORTP (fd_or_port),
305 fd_or_port, SCM_ARG1, s_dup_to_fdes);
306 oldfd = fileno ((FILE *)SCM_STREAM (fd_or_port));
307 if (oldfd == -1)
308 scm_syserror (s_dup_to_fdes);
309 }
310
311 if (SCM_UNBNDP (fd))
312 {
313 SCM_SYSCALL (newfd = dup (oldfd));
314 if (newfd == -1)
315 scm_syserror (s_dup_to_fdes);
316 fd = SCM_MAKINUM (newfd);
317 }
318 else
319 {
320 SCM_ASSERT (SCM_INUMP (fd), fd, SCM_ARG2, s_dup_to_fdes);
321 newfd = SCM_INUM (fd);
322 if (oldfd != newfd)
323 {
324 scm_evict_ports (newfd); /* see scsh manual. */
325 SCM_SYSCALL (rv = dup2 (oldfd, newfd));
326 if (rv == -1)
327 scm_syserror (s_dup_to_fdes);
328 }
329 }
330 SCM_ALLOW_INTS;
331 return fd;
332 }
333
334 SCM_PROC (s_fileno, "fileno", 1, 0, 0, scm_fileno);
335
336 SCM
337 scm_fileno (port)
338 SCM port;
339 {
340 int fd;
341
342 port = SCM_COERCE_OUTPORT (port);
343
344 SCM_ASSERT (SCM_NIMP (port) && SCM_OPFPORTP (port), port, SCM_ARG1, s_fileno);
345 fd = fileno ((FILE *)SCM_STREAM (port));
346 if (fd == -1)
347 scm_syserror (s_fileno);
348 return SCM_MAKINUM (fd);
349 }
350
351 SCM_PROC (s_isatty, "isatty?", 1, 0, 0, scm_isatty_p);
352
353 SCM
354 scm_isatty_p (port)
355 SCM port;
356 {
357 int rv;
358
359 port = SCM_COERCE_OUTPORT (port);
360
361 if (!(SCM_NIMP (port) && SCM_OPFPORTP (port)))
362 return SCM_BOOL_F;
363 rv = fileno ((FILE *)SCM_STREAM (port));
364 if (rv == -1)
365 scm_syserror (s_isatty);
366 rv = isatty (rv);
367 return rv ? SCM_BOOL_T : SCM_BOOL_F;
368 }
369
370
371
372 SCM_PROC (s_fdopen, "fdopen", 2, 0, 0, scm_fdopen);
373
374 SCM
375 scm_fdopen (fdes, modes)
376 SCM fdes;
377 SCM modes;
378 {
379 FILE *f;
380 SCM port;
381
382 SCM_ASSERT (SCM_INUMP (fdes), fdes, SCM_ARG1, s_fdopen);
383 SCM_ASSERT (SCM_NIMP (modes) && SCM_ROSTRINGP (modes), modes, SCM_ARG2,
384 s_fdopen);
385 SCM_COERCE_SUBSTR (modes);
386 SCM_DEFER_INTS;
387 f = fdopen (SCM_INUM (fdes), SCM_ROCHARS (modes));
388 if (f == NULL)
389 scm_syserror (s_fdopen);
390 port = scm_stdio_to_port (f, SCM_ROCHARS (modes), SCM_BOOL_F);
391 SCM_ALLOW_INTS;
392 return port;
393 }
394
395
396
397 /* Move a port's underlying file descriptor to a given value.
398 * Returns #f if fdes is already the given value.
399 * #t if fdes moved.
400 * MOVE->FDES is implemented in Scheme and calls this primitive.
401 */
402 SCM_PROC (s_primitive_move_to_fdes, "primitive-move->fdes", 2, 0, 0, scm_primitive_move_to_fdes);
403
404 SCM
405 scm_primitive_move_to_fdes (port, fd)
406 SCM port;
407 SCM fd;
408 {
409 FILE *stream;
410 int old_fd;
411 int new_fd;
412 int rv;
413
414 port = SCM_COERCE_OUTPORT (port);
415
416 SCM_ASSERT (SCM_NIMP (port) && SCM_OPFPORTP (port), port, SCM_ARG1, s_primitive_move_to_fdes);
417 SCM_ASSERT (SCM_INUMP (fd), fd, SCM_ARG2, s_primitive_move_to_fdes);
418 SCM_DEFER_INTS;
419 stream = (FILE *)SCM_STREAM (port);
420 old_fd = fileno (stream);
421 new_fd = SCM_INUM (fd);
422 if (old_fd == new_fd)
423 {
424 SCM_ALLOW_INTS;
425 return SCM_BOOL_F;
426 }
427 scm_evict_ports (new_fd);
428 rv = dup2 (old_fd, new_fd);
429 if (rv == -1)
430 scm_syserror (s_primitive_move_to_fdes);
431 scm_setfileno (stream, new_fd);
432 SCM_SYSCALL (close (old_fd));
433 SCM_ALLOW_INTS;
434 return SCM_BOOL_T;
435 }
436
437 /* Return a list of ports using a given file descriptor. */
438 SCM_PROC(s_fdes_to_ports, "fdes->ports", 1, 0, 0, scm_fdes_to_ports);
439
440 SCM
441 scm_fdes_to_ports (fd)
442 SCM fd;
443 {
444 SCM result = SCM_EOL;
445 int int_fd;
446 int i;
447
448 SCM_ASSERT (SCM_INUMP (fd), fd, SCM_ARG1, s_fdes_to_ports);
449 int_fd = SCM_INUM (fd);
450
451 SCM_DEFER_INTS;
452 for (i = 0; i < scm_port_table_size; i++)
453 {
454 if (SCM_FPORTP (scm_port_table[i]->port)
455 && fileno ((FILE *)SCM_STREAM (scm_port_table[i]->port)) == int_fd)
456 result = scm_cons (scm_port_table[i]->port, result);
457 }
458 SCM_ALLOW_INTS;
459 return result;
460 }
461
462
463 void
464 scm_init_ioext ()
465 {
466 /* fseek() symbols. */
467 scm_sysintern ("SEEK_SET", SCM_MAKINUM (SEEK_SET));
468 scm_sysintern ("SEEK_CUR", SCM_MAKINUM (SEEK_CUR));
469 scm_sysintern ("SEEK_END", SCM_MAKINUM (SEEK_END));
470
471 #include "ioext.x"
472 }
473