* Makefile.am (version.texi): Override automake's rule for
[bpt/guile.git] / libguile / filesys.c
CommitLineData
def804a3 1/* Copyright (C) 1996, 1997, 1998, 1999 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
GB
41
42/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
43 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
44
0f2d19dd 45\f
3d8d56df 46#include <stdio.h>
0f2d19dd 47#include "_scm.h"
20e6290e
JB
48#include "genio.h"
49#include "smob.h"
52f4f4d6 50#include "feature.h"
3d8d56df 51#include "fports.h"
44e8413c 52#include "iselect.h"
0f2d19dd 53
1bbd0b84 54#include "scm_validate.h"
20e6290e 55#include "filesys.h"
def804a3 56
0f2d19dd 57\f
def804a3
JB
58#ifdef HAVE_IO_H
59#include <io.h>
60#endif
61
0f2d19dd
JB
62#ifdef TIME_WITH_SYS_TIME
63# include <sys/time.h>
64# include <time.h>
65#else
66# if HAVE_SYS_TIME_H
67# include <sys/time.h>
68# else
69# include <time.h>
70# endif
71#endif
72
73#ifdef HAVE_UNISTD_H
74#include <unistd.h>
75#endif
76
3594582b 77#ifdef LIBC_H_WITH_UNISTD_H
1f9e2226
JB
78#include <libc.h>
79#endif
80
0f2d19dd
JB
81#ifdef HAVE_SYS_SELECT_H
82#include <sys/select.h>
83#endif
84
1f9e2226
JB
85#ifdef HAVE_STRING_H
86#include <string.h>
87#endif
88
8cc71382 89#include <sys/types.h>
0f2d19dd
JB
90#include <sys/stat.h>
91#include <fcntl.h>
92
93#include <pwd.h>
94
95
0f2d19dd
JB
96#if HAVE_DIRENT_H
97# include <dirent.h>
98# define NAMLEN(dirent) strlen((dirent)->d_name)
99#else
100# define dirent direct
101# define NAMLEN(dirent) (dirent)->d_namlen
102# if HAVE_SYS_NDIR_H
103# include <sys/ndir.h>
104# endif
105# if HAVE_SYS_DIR_H
106# include <sys/dir.h>
107# endif
108# if HAVE_NDIR_H
109# include <ndir.h>
110# endif
111#endif
112
d7b8a21a
JB
113/* Ultrix has S_IFSOCK, but no S_ISSOCK. Ipe! */
114#if defined (S_IFSOCK) && ! defined (S_ISSOCK)
115#define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
116#endif
0f2d19dd
JB
117\f
118
0f2d19dd
JB
119
120\f
121
122/* {Permissions}
123 */
124
a1ec6916 125SCM_DEFINE (scm_chown, "chown", 3, 0, 0,
1bbd0b84 126 (SCM object, SCM owner, SCM group),
d831b039
GH
127 "Change the ownership and group of the file referred to by @var{object} to\n"
128 "the integer values @var{owner} and @var{group}. @var{object} can be\n"
129 "a string containing a file name or, if the platform\n"
130 "supports fchown, a port or integer file descriptor\n"
131 "which is open on the file. The return value\n"
d3818c29 132 "is unspecified.\n\n"
d831b039 133 "If @var{object} is a symbolic link, either the\n"
d3818c29
MD
134 "ownership of the link or the ownership of the referenced file will be\n"
135 "changed depending on the operating system (lchown is\n"
136 "unsupported at present). If @var{owner} or @var{group} is specified\n"
137 "as @code{-1}, then that ID is not changed.")
1bbd0b84 138#define FUNC_NAME s_scm_chown
0f2d19dd 139{
6afcd3b2 140 int rv;
02b754d3 141
78446828
MV
142 object = SCM_COERCE_OUTPORT (object);
143
3b3b36dd
GB
144 SCM_VALIDATE_INUM (2,owner);
145 SCM_VALIDATE_INUM (3,group);
d831b039 146#ifdef HAVE_FCHOWN
0c95b57d 147 if (SCM_INUMP (object) || (SCM_OPFPORTP (object)))
6afcd3b2 148 {
d831b039
GH
149 int fdes = SCM_INUMP (object) ? SCM_INUM (object)
150 : SCM_FPORT_FDES (object);
151
6afcd3b2
GH
152 SCM_SYSCALL (rv = fchown (fdes, SCM_INUM (owner), SCM_INUM (group)));
153 }
154 else
d831b039 155#endif
6afcd3b2 156 {
c1bfcf60 157 SCM_VALIDATE_ROSTRING(1,object);
6afcd3b2
GH
158 SCM_COERCE_SUBSTR (object);
159 SCM_SYSCALL (rv = chown (SCM_ROCHARS (object),
160 SCM_INUM (owner), SCM_INUM (group)));
161 }
162 if (rv == -1)
1bbd0b84 163 SCM_SYSERROR;
02b754d3 164 return SCM_UNSPECIFIED;
0f2d19dd 165}
1bbd0b84 166#undef FUNC_NAME
0f2d19dd
JB
167
168
a1ec6916 169SCM_DEFINE (scm_chmod, "chmod", 2, 0, 0,
1bbd0b84 170 (SCM object, SCM mode),
d3818c29
MD
171 "Changes the permissions of the file referred to by @var{obj}.\n"
172 "@var{obj} can be a string containing a file name or a port or integer file\n"
173 "descriptor which is open on a file (in which case @code{fchmod} is used\n"
174 "as the underlying system call).\n"
175 "@var{mode} specifies\n"
176 "the new permissions as a decimal number, e.g., @code{(chmod \"foo\" #o755)}.\n"
177 "The return value is unspecified.")
1bbd0b84 178#define FUNC_NAME s_scm_chmod
0f2d19dd
JB
179{
180 int rv;
6afcd3b2
GH
181 int fdes;
182
78446828
MV
183 object = SCM_COERCE_OUTPORT (object);
184
3b3b36dd 185 SCM_VALIDATE_INUM (2,mode);
0c95b57d 186 if (SCM_INUMP (object) || SCM_OPFPORTP (object))
89958ad0 187 {
6afcd3b2
GH
188 if (SCM_INUMP (object))
189 fdes = SCM_INUM (object);
190 else
77a76b64 191 fdes = SCM_FPORT_FDES (object);
6afcd3b2 192 SCM_SYSCALL (rv = fchmod (fdes, SCM_INUM (mode)));
89958ad0 193 }
0f2d19dd
JB
194 else
195 {
3b3b36dd 196 SCM_VALIDATE_ROSTRING (1,object);
6afcd3b2
GH
197 SCM_COERCE_SUBSTR (object);
198 SCM_SYSCALL (rv = chmod (SCM_ROCHARS (object), SCM_INUM (mode)));
0f2d19dd 199 }
6afcd3b2 200 if (rv == -1)
1bbd0b84 201 SCM_SYSERROR;
02b754d3 202 return SCM_UNSPECIFIED;
0f2d19dd 203}
1bbd0b84 204#undef FUNC_NAME
0f2d19dd 205
a1ec6916 206SCM_DEFINE (scm_umask, "umask", 0, 1, 0,
1bbd0b84 207 (SCM mode),
d3818c29
MD
208 "If @var{mode} is omitted, retuns a decimal number representing the current\n"
209 "file creation mask. Otherwise the file creation mask is set to\n"
210 "@var{mode} and the previous value is returned.\n\n"
211 "E.g., @code{(umask #o022)} sets the mask to octal 22, decimal 18.")
1bbd0b84 212#define FUNC_NAME s_scm_umask
0f2d19dd
JB
213{
214 mode_t mask;
215 if (SCM_UNBNDP (mode))
216 {
217 mask = umask (0);
218 umask (mask);
219 }
220 else
221 {
3b3b36dd 222 SCM_VALIDATE_INUM (1,mode);
0f2d19dd
JB
223 mask = umask (SCM_INUM (mode));
224 }
225 return SCM_MAKINUM (mask);
226}
1bbd0b84 227#undef FUNC_NAME
0f2d19dd
JB
228
229\f
0f2d19dd 230
a1ec6916 231SCM_DEFINE (scm_open_fdes, "open-fdes", 2, 1, 0,
1bbd0b84 232 (SCM path, SCM flags, SCM mode),
d3818c29
MD
233 "Similar to @code{open} but returns a file descriptor instead of a\n"
234 "port.")
1bbd0b84 235#define FUNC_NAME s_scm_open_fdes
0f2d19dd
JB
236{
237 int fd;
3d8d56df 238 int iflags;
6afcd3b2 239 int imode;
0f2d19dd 240
3b3b36dd 241 SCM_VALIDATE_ROSTRING (1,path);
6afcd3b2 242 SCM_COERCE_SUBSTR (path);
c1bfcf60
GB
243 iflags = SCM_NUM2LONG(2,flags);
244 imode = SCM_NUM2LONG_DEF(3,mode,0666);
6afcd3b2 245 SCM_SYSCALL (fd = open (SCM_ROCHARS (path), iflags, imode));
3d8d56df 246 if (fd == -1)
1bbd0b84 247 SCM_SYSERROR;
6afcd3b2
GH
248 return SCM_MAKINUM (fd);
249}
1bbd0b84 250#undef FUNC_NAME
6afcd3b2 251
a1ec6916 252SCM_DEFINE (scm_open, "open", 2, 1, 0,
1bbd0b84 253 (SCM path, SCM flags, SCM mode),
d3818c29
MD
254 "Open the file named by @var{path} for reading and/or writing.\n"
255 "@var{flags} is an integer specifying how the file should be opened.\n"
256 "@var{mode} is an integer specifying the permission bits of the file, if\n"
257 "it needs to be created, before the umask is applied. The default is 666\n"
258 "(Unix itself has no default).\n\n"
259 "@var{flags} can be constructed by combining variables using @code{logior}.\n"
260 "Basic flags are:\n\n"
261 "@defvar O_RDONLY\n"
262 "Open the file read-only.\n"
263 "@end defvar\n"
264 "@defvar O_WRONLY\n"
265 "Open the file write-only. \n"
266 "@end defvar\n"
267 "@defvar O_RDWR\n"
268 "Open the file read/write.\n"
269 "@end defvar\n"
270 "@defvar O_APPEND\n"
271 "Append to the file instead of truncating.\n"
272 "@end defvar\n"
273 "@defvar O_CREAT\n"
274 "Create the file if it does not already exist.\n"
275 "@end defvar\n\n"
276 "See the Unix documentation of the @code{open} system call\n"
277 "for additional flags.")
1bbd0b84 278#define FUNC_NAME s_scm_open
6afcd3b2
GH
279{
280 SCM newpt;
281 char *port_mode;
282 int fd;
6afcd3b2
GH
283 int iflags;
284
285 fd = SCM_INUM (scm_open_fdes (path, flags, mode));
c1bfcf60 286 iflags = SCM_NUM2LONG (2,flags);
3d8d56df 287 if (iflags & O_RDWR)
77a76b64
JB
288 {
289 if (iflags & O_APPEND)
290 port_mode = "a+";
291 else if (iflags & O_CREAT)
292 port_mode = "w+";
293 else
294 port_mode = "r+";
295 }
3d8d56df 296 else {
77a76b64
JB
297 if (iflags & O_APPEND)
298 port_mode = "a";
299 else if (iflags & O_WRONLY)
3d8d56df
GH
300 port_mode = "w";
301 else
302 port_mode = "r";
303 }
77a76b64 304 newpt = scm_fdes_to_port (fd, port_mode, path);
3d8d56df 305 return newpt;
0f2d19dd 306}
1bbd0b84 307#undef FUNC_NAME
0f2d19dd 308
a1ec6916 309SCM_DEFINE (scm_close, "close", 1, 0, 0,
1bbd0b84 310 (SCM fd_or_port),
d3818c29
MD
311 "Similar to close-port (@pxref{Generic Port Operations, close-port}),\n"
312 "but also works on file descriptors. A side\n"
313 "effect of closing a file descriptor is that any ports using that file\n"
314 "descriptor are moved to a different file descriptor and have\n"
315 "their revealed counts set to zero.")
1bbd0b84 316#define FUNC_NAME s_scm_close
eadd48de
GH
317{
318 int rv;
319 int fd;
320
78446828
MV
321 fd_or_port = SCM_COERCE_OUTPORT (fd_or_port);
322
0c95b57d 323 if (SCM_PORTP (fd_or_port))
eadd48de 324 return scm_close_port (fd_or_port);
3b3b36dd 325 SCM_VALIDATE_INUM (1,fd_or_port);
eadd48de 326 fd = SCM_INUM (fd_or_port);
eadd48de 327 scm_evict_ports (fd); /* see scsh manual. */
a9488d12 328 SCM_SYSCALL (rv = close (fd));
eadd48de
GH
329 /* following scsh, closing an already closed file descriptor is
330 not an error. */
331 if (rv < 0 && errno != EBADF)
1bbd0b84
GB
332 SCM_SYSERROR;
333 return SCM_NEGATE_BOOL(rv < 0);
eadd48de 334}
1bbd0b84 335#undef FUNC_NAME
eadd48de 336
0f2d19dd
JB
337\f
338/* {Files}
339 */
1cc91f1b 340
ae5253c5
GH
341SCM_SYMBOL (scm_sym_regular, "regular");
342SCM_SYMBOL (scm_sym_directory, "directory");
f326ecf3 343#ifdef HAVE_S_ISLNK
ae5253c5 344SCM_SYMBOL (scm_sym_symlink, "symlink");
f326ecf3 345#endif
ae5253c5
GH
346SCM_SYMBOL (scm_sym_block_special, "block-special");
347SCM_SYMBOL (scm_sym_char_special, "char-special");
348SCM_SYMBOL (scm_sym_fifo, "fifo");
349SCM_SYMBOL (scm_sym_sock, "socket");
350SCM_SYMBOL (scm_sym_unknown, "unknown");
351
0f2d19dd 352static SCM
1bbd0b84 353scm_stat2scm (struct stat *stat_temp)
0f2d19dd 354{
a8741caa 355 SCM ans = scm_make_vector (SCM_MAKINUM (15), SCM_UNSPECIFIED);
0f2d19dd 356 SCM *ve = SCM_VELTS (ans);
ae5253c5 357
0f2d19dd
JB
358 ve[0] = scm_ulong2num ((unsigned long) stat_temp->st_dev);
359 ve[1] = scm_ulong2num ((unsigned long) stat_temp->st_ino);
360 ve[2] = scm_ulong2num ((unsigned long) stat_temp->st_mode);
361 ve[3] = scm_ulong2num ((unsigned long) stat_temp->st_nlink);
362 ve[4] = scm_ulong2num ((unsigned long) stat_temp->st_uid);
363 ve[5] = scm_ulong2num ((unsigned long) stat_temp->st_gid);
364#ifdef HAVE_ST_RDEV
365 ve[6] = scm_ulong2num ((unsigned long) stat_temp->st_rdev);
366#else
367 ve[6] = SCM_BOOL_F;
368#endif
369 ve[7] = scm_ulong2num ((unsigned long) stat_temp->st_size);
370 ve[8] = scm_ulong2num ((unsigned long) stat_temp->st_atime);
371 ve[9] = scm_ulong2num ((unsigned long) stat_temp->st_mtime);
372 ve[10] = scm_ulong2num ((unsigned long) stat_temp->st_ctime);
373#ifdef HAVE_ST_BLKSIZE
374 ve[11] = scm_ulong2num ((unsigned long) stat_temp->st_blksize);
375#else
376 ve[11] = scm_ulong2num (4096L);
377#endif
378#ifdef HAVE_ST_BLOCKS
379 ve[12] = scm_ulong2num ((unsigned long) stat_temp->st_blocks);
380#else
381 ve[12] = SCM_BOOL_F;
382#endif
ae5253c5
GH
383 {
384 int mode = stat_temp->st_mode;
385
386 if (S_ISREG (mode))
387 ve[13] = scm_sym_regular;
388 else if (S_ISDIR (mode))
389 ve[13] = scm_sym_directory;
f326ecf3 390#ifdef HAVE_S_ISLNK
ae5253c5
GH
391 else if (S_ISLNK (mode))
392 ve[13] = scm_sym_symlink;
f326ecf3 393#endif
ae5253c5
GH
394 else if (S_ISBLK (mode))
395 ve[13] = scm_sym_block_special;
396 else if (S_ISCHR (mode))
397 ve[13] = scm_sym_char_special;
398 else if (S_ISFIFO (mode))
399 ve[13] = scm_sym_fifo;
400 else if (S_ISSOCK (mode))
401 ve[13] = scm_sym_sock;
402 else
403 ve[13] = scm_sym_unknown;
404
405 ve[14] = SCM_MAKINUM ((~S_IFMT) & mode);
406
407 /* the layout of the bits in ve[14] is intended to be portable.
408 If there are systems that don't follow the usual convention,
409 the following could be used:
410
411 tmp = 0;
412 if (S_ISUID & mode) tmp += 1;
413 tmp <<= 1;
414 if (S_IRGRP & mode) tmp += 1;
415 tmp <<= 1;
416 if (S_ISVTX & mode) tmp += 1;
417 tmp <<= 1;
418 if (S_IRUSR & mode) tmp += 1;
419 tmp <<= 1;
420 if (S_IWUSR & mode) tmp += 1;
421 tmp <<= 1;
422 if (S_IXUSR & mode) tmp += 1;
423 tmp <<= 1;
424 if (S_IWGRP & mode) tmp += 1;
425 tmp <<= 1;
426 if (S_IXGRP & mode) tmp += 1;
427 tmp <<= 1;
428 if (S_IROTH & mode) tmp += 1;
429 tmp <<= 1;
430 if (S_IWOTH & mode) tmp += 1;
431 tmp <<= 1;
432 if (S_IXOTH & mode) tmp += 1;
433
434 ve[14] = SCM_MAKINUM (tmp);
435
436 */
437 }
0f2d19dd
JB
438
439 return ans;
440}
441
a1ec6916 442SCM_DEFINE (scm_stat, "stat", 1, 0, 0,
1bbd0b84 443 (SCM object),
d3818c29
MD
444 "Returns an object containing various information\n"
445 "about the file determined by @var{obj}.\n"
446 "@var{obj} can be a string containing a file name or a port or integer file\n"
447 "descriptor which is open on a file (in which case @code{fstat} is used\n"
448 "as the underlying system call).\n\n"
449 "The object returned by @code{stat} can be passed as a single parameter\n"
450 "to the following procedures, all of which return integers:\n\n"
451 "@table @code\n"
452 "@item stat:dev\n"
453 "The device containing the file.\n"
454 "@item stat:ino\n"
455 "The file serial number, which distinguishes this file from all other\n"
456 "files on the same device.\n"
457 "@item stat:mode\n"
458 "The mode of the file. This includes file type information\n"
459 "and the file permission bits. See @code{stat:type} and @code{stat:perms}\n"
460 "below.\n"
461 "@item stat:nlink\n"
462 "The number of hard links to the file.\n"
463 "@item stat:uid\n"
464 "The user ID of the file's owner.\n"
465 "@item stat:gid\n"
466 "The group ID of the file.\n"
467 "@item stat:rdev\n"
468 "Device ID; this entry is defined only for character or block\n"
469 "special files.\n"
470 "@item stat:size\n"
471 "The size of a regular file in bytes.\n"
472 "@item stat:atime\n"
473 "The last access time for the file.\n"
474 "@item stat:mtime\n"
475 "The last modification time for the file.\n"
476 "@item stat:ctime\n"
477 "The last modification time for the attributes of the file.\n"
478 "@item stat:blksize\n"
479 "The optimal block size for reading or writing the file, in bytes.\n"
480 "@item stat:blocks\n"
481 "The amount of disk space that the file occupies measured in units of\n"
482 "512 byte blocks.\n"
483 "@end table\n\n"
484 "In addition, the following procedures return the information\n"
485 "from stat:mode in a more convenient form:\n\n"
486 "@table @code\n"
487 "@item stat:type\n"
488 "A symbol representing the type of file. Possible values are\n"
489 "regular, directory, symlink, block-special, char-special,\n"
490 "fifo, socket and unknown\n"
491 "@item stat:perms\n"
492 "An integer representing the access permission bits.\n"
493 "@end table")
1bbd0b84 494#define FUNC_NAME s_scm_stat
0f2d19dd 495{
6afcd3b2
GH
496 int rv;
497 int fdes;
0f2d19dd
JB
498 struct stat stat_temp;
499
1ea47048
MD
500 if (SCM_INUMP (object))
501 SCM_SYSCALL (rv = fstat (SCM_INUM (object), &stat_temp));
502 else
0f2d19dd 503 {
6b5a304f 504 SCM_VALIDATE_NIM (1,object);
1ea47048
MD
505 if (SCM_ROSTRINGP (object))
506 {
507 SCM_COERCE_SUBSTR (object);
508 SCM_SYSCALL (rv = stat (SCM_ROCHARS (object), &stat_temp));
509 }
c0ebd8c5 510 else
0f2d19dd 511 {
1ea47048 512 object = SCM_COERCE_OUTPORT (object);
c1bfcf60 513 SCM_VALIDATE_OPFPORT(1,object);
77a76b64 514 fdes = SCM_FPORT_FDES (object);
1ea47048 515 SCM_SYSCALL (rv = fstat (fdes, &stat_temp));
0f2d19dd 516 }
6afcd3b2
GH
517 }
518 if (rv == -1)
3d8d56df
GH
519 {
520 int en = errno;
521
5d2d2ffc 522 SCM_SYSERROR_MSG ("~A: ~S",
3d8d56df 523 scm_listify (scm_makfrom0str (strerror (errno)),
6afcd3b2 524 object,
5d2d2ffc 525 SCM_UNDEFINED), en);
3d8d56df 526 }
02b754d3 527 return scm_stat2scm (&stat_temp);
0f2d19dd 528}
1bbd0b84 529#undef FUNC_NAME
0f2d19dd 530
0f2d19dd
JB
531\f
532/* {Modifying Directories}
533 */
534
a1ec6916 535SCM_DEFINE (scm_link, "link", 2, 0, 0,
1bbd0b84 536 (SCM oldpath, SCM newpath),
d3818c29
MD
537 "Creates a new name @var{path-to} in the file system for the file\n"
538 "named by @var{path-from}. If @var{path-from} is a symbolic link, the\n"
539 "link may or may not be followed depending on the system.")
1bbd0b84 540#define FUNC_NAME s_scm_link
0f2d19dd
JB
541{
542 int val;
02b754d3 543
3b3b36dd 544 SCM_VALIDATE_ROSTRING (1,oldpath);
0f2d19dd 545 if (SCM_SUBSTRP (oldpath))
6afcd3b2
GH
546 oldpath = scm_makfromstr (SCM_ROCHARS (oldpath),
547 SCM_ROLENGTH (oldpath), 0);
3b3b36dd 548 SCM_VALIDATE_ROSTRING (2,newpath);
0f2d19dd 549 if (SCM_SUBSTRP (newpath))
6afcd3b2
GH
550 newpath = scm_makfromstr (SCM_ROCHARS (newpath),
551 SCM_ROLENGTH (newpath), 0);
0f2d19dd 552 SCM_SYSCALL (val = link (SCM_ROCHARS (oldpath), SCM_ROCHARS (newpath)));
02b754d3 553 if (val != 0)
1bbd0b84 554 SCM_SYSERROR;
02b754d3 555 return SCM_UNSPECIFIED;
0f2d19dd 556}
1bbd0b84 557#undef FUNC_NAME
0f2d19dd
JB
558
559
560
a1ec6916 561SCM_DEFINE (scm_rename, "rename-file", 2, 0, 0,
1bbd0b84 562 (SCM oldname, SCM newname),
d3818c29
MD
563 "Renames the file specified by @var{path-from} to @var{path-to}.\n"
564 "The return value is unspecified.")
1bbd0b84 565#define FUNC_NAME s_scm_rename
0f2d19dd
JB
566{
567 int rv;
3b3b36dd
GB
568 SCM_VALIDATE_ROSTRING (1,oldname);
569 SCM_VALIDATE_ROSTRING (2,newname);
89958ad0
JB
570 SCM_COERCE_SUBSTR (oldname);
571 SCM_COERCE_SUBSTR (newname);
0f2d19dd 572#ifdef HAVE_RENAME
89958ad0 573 SCM_SYSCALL (rv = rename (SCM_ROCHARS (oldname), SCM_ROCHARS (newname)));
0f2d19dd 574#else
89958ad0 575 SCM_SYSCALL (rv = link (SCM_ROCHARS (oldname), SCM_ROCHARS (newname)));
02b754d3 576 if (rv == 0)
0f2d19dd 577 {
89958ad0 578 SCM_SYSCALL (rv = unlink (SCM_ROCHARS (oldname)));;
02b754d3 579 if (rv != 0)
0f2d19dd 580 /* unlink failed. remove new name */
89958ad0 581 SCM_SYSCALL (unlink (SCM_ROCHARS (newname)));
0f2d19dd 582 }
6afcd3b2 583#endif
02b754d3 584 if (rv != 0)
1bbd0b84 585 SCM_SYSERROR;
02b754d3 586 return SCM_UNSPECIFIED;
0f2d19dd 587}
1bbd0b84 588#undef FUNC_NAME
0f2d19dd
JB
589
590
3b3b36dd 591SCM_DEFINE (scm_delete_file, "delete-file", 1, 0, 0,
1bbd0b84 592 (SCM str),
d3818c29 593 "Deletes (or \"unlinks\") the file specified by @var{path}.")
1bbd0b84 594#define FUNC_NAME s_scm_delete_file
2f3ed1ba
JB
595{
596 int ans;
3b3b36dd 597 SCM_VALIDATE_ROSTRING (1,str);
89958ad0
JB
598 SCM_COERCE_SUBSTR (str);
599 SCM_SYSCALL (ans = unlink (SCM_ROCHARS (str)));
2f3ed1ba 600 if (ans != 0)
1bbd0b84 601 SCM_SYSERROR;
2f3ed1ba
JB
602 return SCM_UNSPECIFIED;
603}
1bbd0b84 604#undef FUNC_NAME
2f3ed1ba 605
f25f761d 606#ifdef HAVE_MKDIR
a1ec6916 607SCM_DEFINE (scm_mkdir, "mkdir", 1, 1, 0,
1bbd0b84 608 (SCM path, SCM mode),
d3818c29
MD
609 "Create a new directory named by @var{path}. If @var{mode} is omitted\n"
610 "then the permissions of the directory file are set using the current\n"
611 "umask. Otherwise they are set to the decimal value specified with\n"
612 "@var{mode}. The return value is unspecified.")
1bbd0b84 613#define FUNC_NAME s_scm_mkdir
0f2d19dd 614{
0f2d19dd
JB
615 int rv;
616 mode_t mask;
3b3b36dd 617 SCM_VALIDATE_ROSTRING (1,path);
89958ad0 618 SCM_COERCE_SUBSTR (path);
0f2d19dd
JB
619 if (SCM_UNBNDP (mode))
620 {
621 mask = umask (0);
622 umask (mask);
89958ad0 623 SCM_SYSCALL (rv = mkdir (SCM_ROCHARS (path), 0777 ^ mask));
0f2d19dd
JB
624 }
625 else
626 {
3b3b36dd 627 SCM_VALIDATE_INUM (2,mode);
89958ad0 628 SCM_SYSCALL (rv = mkdir (SCM_ROCHARS (path), SCM_INUM (mode)));
0f2d19dd 629 }
02b754d3 630 if (rv != 0)
1bbd0b84 631 SCM_SYSERROR;
02b754d3 632 return SCM_UNSPECIFIED;
0f2d19dd 633}
1bbd0b84 634#undef FUNC_NAME
f25f761d 635#endif /* HAVE_MKDIR */
0f2d19dd 636
f25f761d 637#ifdef HAVE_RMDIR
a1ec6916 638SCM_DEFINE (scm_rmdir, "rmdir", 1, 0, 0,
1bbd0b84 639 (SCM path),
d3818c29
MD
640 "Remove the existing directory named by @var{path}. The directory must\n"
641 "be empty for this to succeed. The return value is unspecified.")
1bbd0b84 642#define FUNC_NAME s_scm_rmdir
0f2d19dd 643{
0f2d19dd 644 int val;
02b754d3 645
3b3b36dd 646 SCM_VALIDATE_ROSTRING (1,path);
89958ad0
JB
647 SCM_COERCE_SUBSTR (path);
648 SCM_SYSCALL (val = rmdir (SCM_ROCHARS (path)));
02b754d3 649 if (val != 0)
1bbd0b84 650 SCM_SYSERROR;
02b754d3 651 return SCM_UNSPECIFIED;
0f2d19dd 652}
1bbd0b84 653#undef FUNC_NAME
f25f761d 654#endif
0f2d19dd
JB
655
656\f
657/* {Examining Directories}
658 */
659
660long scm_tc16_dir;
661
a1ec6916 662SCM_DEFINE (scm_directory_stream_p, "directory-stream?", 1, 0, 0,
1bbd0b84 663 (SCM obj),
d3818c29
MD
664 "Returns a boolean indicating whether @var{object} is a directory stream\n"
665 "as returned by @code{opendir}.")
1bbd0b84 666#define FUNC_NAME s_scm_directory_stream_p
77242ff9 667{
0c95b57d 668 return SCM_BOOL(SCM_DIRP (obj));
77242ff9 669}
1bbd0b84 670#undef FUNC_NAME
77242ff9 671
a1ec6916 672SCM_DEFINE (scm_opendir, "opendir", 1, 0, 0,
1bbd0b84 673 (SCM dirname),
d3818c29
MD
674 "Open the directory specified by @var{path} and return a directory\n"
675 "stream.")
1bbd0b84 676#define FUNC_NAME s_scm_opendir
0f2d19dd
JB
677{
678 DIR *ds;
3b3b36dd 679 SCM_VALIDATE_ROSTRING (1,dirname);
89958ad0 680 SCM_COERCE_SUBSTR (dirname);
89958ad0 681 SCM_SYSCALL (ds = opendir (SCM_ROCHARS (dirname)));
02b754d3 682 if (ds == NULL)
1bbd0b84 683 SCM_SYSERROR;
23a62151 684 SCM_RETURN_NEWSMOB (scm_tc16_dir | SCM_OPN, ds);
0f2d19dd 685}
1bbd0b84 686#undef FUNC_NAME
0f2d19dd
JB
687
688
a1ec6916 689SCM_DEFINE (scm_readdir, "readdir", 1, 0, 0,
1bbd0b84 690 (SCM port),
d3818c29
MD
691 "Return (as a string) the next directory entry from the directory stream\n"
692 "@var{stream}. If there is no remaining entry to be read then the\n"
693 "end of file object is returned.")
1bbd0b84 694#define FUNC_NAME s_scm_readdir
0f2d19dd
JB
695{
696 struct dirent *rdent;
3b3b36dd 697 SCM_VALIDATE_OPDIR (1,port);
0f2d19dd
JB
698 errno = 0;
699 SCM_SYSCALL (rdent = readdir ((DIR *) SCM_CDR (port)));
02b754d3 700 if (errno != 0)
1bbd0b84 701 SCM_SYSERROR;
02b754d3
GH
702 return (rdent ? scm_makfromstr (rdent->d_name, NAMLEN (rdent), 0)
703 : SCM_EOF_VAL);
0f2d19dd 704}
1bbd0b84 705#undef FUNC_NAME
0f2d19dd
JB
706
707
708
a1ec6916 709SCM_DEFINE (scm_rewinddir, "rewinddir", 1, 0, 0,
1bbd0b84 710 (SCM port),
d3818c29
MD
711 "Reset the directory port @var{stream} so that the next call to\n"
712 "@code{readdir} will return the first directory entry.")
1bbd0b84 713#define FUNC_NAME s_scm_rewinddir
0f2d19dd 714{
3b3b36dd 715 SCM_VALIDATE_OPDIR (1,port);
0f2d19dd
JB
716 rewinddir ((DIR *) SCM_CDR (port));
717 return SCM_UNSPECIFIED;
718}
1bbd0b84 719#undef FUNC_NAME
0f2d19dd
JB
720
721
722
a1ec6916 723SCM_DEFINE (scm_closedir, "closedir", 1, 0, 0,
1bbd0b84 724 (SCM port),
d3818c29
MD
725 "Close the directory stream @var{stream}.\n"
726 "The return value is unspecified.")
1bbd0b84 727#define FUNC_NAME s_scm_closedir
0f2d19dd
JB
728{
729 int sts;
02b754d3 730
3b3b36dd 731 SCM_VALIDATE_DIR (1,port);
0f2d19dd
JB
732 if (SCM_CLOSEDP (port))
733 {
02b754d3 734 return SCM_UNSPECIFIED;
0f2d19dd
JB
735 }
736 SCM_SYSCALL (sts = closedir ((DIR *) SCM_CDR (port)));
02b754d3 737 if (sts != 0)
1bbd0b84 738 SCM_SYSERROR;
a6c64c3c 739 SCM_SETCAR (port, scm_tc16_dir);
02b754d3 740 return SCM_UNSPECIFIED;
0f2d19dd 741}
1bbd0b84 742#undef FUNC_NAME
0f2d19dd
JB
743
744
745
1cc91f1b 746
0f2d19dd 747static int
f8b16091 748scm_dir_print (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 749{
f8b16091
MD
750 scm_puts ("#<", port);
751 if (SCM_CLOSEDP (exp))
752 scm_puts ("closed: ", port);
0d03da62 753 scm_puts ("directory stream ", port);
f8b16091
MD
754 scm_intprint (SCM_CDR (exp), 16, port);
755 scm_putc ('>', port);
0f2d19dd
JB
756 return 1;
757}
758
1cc91f1b 759
0f2d19dd 760static scm_sizet
1bbd0b84 761scm_dir_free (SCM p)
0f2d19dd
JB
762{
763 if (SCM_OPENP (p))
764 closedir ((DIR *) SCM_CDR (p));
765 return 0;
766}
767
0f2d19dd
JB
768\f
769/* {Navigating Directories}
770 */
771
772
a1ec6916 773SCM_DEFINE (scm_chdir, "chdir", 1, 0, 0,
1bbd0b84 774 (SCM str),
d3818c29
MD
775 "Change the current working directory to @var{path}.\n"
776 "The return value is unspecified.")
1bbd0b84 777#define FUNC_NAME s_scm_chdir
0f2d19dd
JB
778{
779 int ans;
02b754d3 780
3b3b36dd 781 SCM_VALIDATE_ROSTRING (1,str);
89958ad0
JB
782 SCM_COERCE_SUBSTR (str);
783 SCM_SYSCALL (ans = chdir (SCM_ROCHARS (str)));
02b754d3 784 if (ans != 0)
1bbd0b84 785 SCM_SYSERROR;
02b754d3 786 return SCM_UNSPECIFIED;
0f2d19dd 787}
1bbd0b84 788#undef FUNC_NAME
0f2d19dd 789
f25f761d 790#ifdef HAVE_GETCWD
a1ec6916 791SCM_DEFINE (scm_getcwd, "getcwd", 0, 0, 0,
1bbd0b84 792 (),
d3818c29 793 "Returns the name of the current working directory.")
1bbd0b84 794#define FUNC_NAME s_scm_getcwd
0f2d19dd 795{
0f2d19dd 796 char *rv;
0f2d19dd
JB
797 scm_sizet size = 100;
798 char *wd;
799 SCM result;
800
1bbd0b84 801 wd = scm_must_malloc (size, FUNC_NAME);
0f2d19dd
JB
802 while ((rv = getcwd (wd, size)) == 0 && errno == ERANGE)
803 {
804 scm_must_free (wd);
805 size *= 2;
1bbd0b84 806 wd = scm_must_malloc (size, FUNC_NAME);
0f2d19dd 807 }
02b754d3 808 if (rv == 0)
1bbd0b84 809 SCM_SYSERROR;
02b754d3 810 result = scm_makfromstr (wd, strlen (wd), 0);
0f2d19dd 811 scm_must_free (wd);
0f2d19dd 812 return result;
0f2d19dd 813}
1bbd0b84 814#undef FUNC_NAME
f25f761d 815#endif /* HAVE_GETCWD */
0f2d19dd
JB
816
817\f
818
28d77376
GH
819#ifdef HAVE_SELECT
820
821/* check that element is a port or file descriptor. if it's a port
822 and its buffer is ready for use, add it to the ports_ready list.
823 otherwise add its file descriptor to *set. the type of list can be
824 determined from pos: SCM_ARG1 for reads, SCM_ARG2 for writes,
825 SCM_ARG3 for excepts. */
cafc12ff 826static int
28d77376 827set_element (SELECT_TYPE *set, SCM *ports_ready, SCM element, int pos)
a48a89bc 828{
cafc12ff 829 int fd;
d831b039 830
28d77376
GH
831 if (SCM_INUMP (element))
832 {
833 fd = SCM_INUM (element);
834 }
835 else
836 {
837 int use_buf = 0;
838
839 element = SCM_COERCE_OUTPORT (element);
840 SCM_ASSERT (SCM_OPFPORTP (element), element, pos, "select");
841 if (pos == SCM_ARG1)
842 {
843 /* check whether port has buffered input. */
844 scm_port *pt = SCM_PTAB_ENTRY (element);
845
846 if (pt->read_pos < pt->read_end)
847 use_buf = 1;
848 }
849 else if (pos == SCM_ARG2)
850 {
851 /* check whether port's output buffer has room. */
852 scm_port *pt = SCM_PTAB_ENTRY (element);
853
854 /* > 1 since writing the last byte in the buffer causes flush. */
855 if (pt->write_end - pt->write_pos > 1)
856 use_buf = 1;
857 }
858 fd = use_buf ? -1 : SCM_FPORT_FDES (element);
859 }
860 if (fd == -1)
861 *ports_ready = scm_cons (element, *ports_ready);
862 else
863 FD_SET (fd, set);
cafc12ff 864 return fd;
a48a89bc 865}
1cc91f1b 866
28d77376
GH
867/* check list_or_vec, a list or vector of ports or file descriptors,
868 adding each member to either the ports_ready list (if it's a port
869 with a usable buffer) or to *set. the kind of list_or_vec can be
870 determined from pos: SCM_ARG1 for reads, SCM_ARG2 for writes,
871 SCM_ARG3 for excepts. */
cafc12ff 872static int
28d77376 873fill_select_type (SELECT_TYPE *set, SCM *ports_ready, SCM list_or_vec, int pos)
0f2d19dd 874{
28d77376
GH
875 int max_fd = 0;
876
877 if (SCM_VECTORP (list_or_vec))
0f2d19dd 878 {
28d77376
GH
879 int i = SCM_LENGTH (list_or_vec);
880 SCM *ve = SCM_VELTS (list_or_vec);
a48a89bc 881
28d77376 882 while (--i >= 0)
a48a89bc 883 {
28d77376
GH
884 int fd = set_element (set, ports_ready, ve[i], pos);
885
cafc12ff
MD
886 if (fd > max_fd)
887 max_fd = fd;
a48a89bc
GH
888 }
889 }
890 else
891 {
28d77376 892 while (list_or_vec != SCM_EOL)
a48a89bc 893 {
28d77376
GH
894 int fd = set_element (set, ports_ready, SCM_CAR (list_or_vec), pos);
895
cafc12ff
MD
896 if (fd > max_fd)
897 max_fd = fd;
28d77376 898 list_or_vec = SCM_CDR (list_or_vec);
a48a89bc 899 }
0f2d19dd 900 }
cafc12ff
MD
901
902 return max_fd;
0f2d19dd
JB
903}
904
28d77376
GH
905/* if element (a file descriptor or port) appears in *set, cons it to
906 list. return list. */
a48a89bc
GH
907static SCM
908get_element (SELECT_TYPE *set, SCM element, SCM list)
909{
28d77376
GH
910 int fd;
911
912 if (SCM_INUMP (element))
a48a89bc 913 {
28d77376 914 fd = SCM_INUM (element);
a48a89bc 915 }
28d77376 916 else
a48a89bc 917 {
28d77376 918 fd = SCM_FPORT_FDES (SCM_COERCE_OUTPORT (element));
a48a89bc 919 }
28d77376
GH
920 if (FD_ISSET (fd, set))
921 list = scm_cons (element, list);
a48a89bc
GH
922 return list;
923}
1cc91f1b 924
28d77376
GH
925/* construct component of scm_select return value.
926 set: pointer to set of file descriptors found by select to be ready
927 ports_ready: ports ready due to buffering
928 list_or_vec: original list/vector handed to scm_select.
929 the return value is a list/vector of ready ports/file descriptors.
930 works by finding the objects in list which correspond to members of
931 *set and appending them to ports_ready. result is converted to a
932 vector if list_or_vec is a vector. */
0f2d19dd 933static SCM
28d77376 934retrieve_select_type (SELECT_TYPE *set, SCM ports_ready, SCM list_or_vec)
0f2d19dd 935{
28d77376 936 SCM answer_list = ports_ready;
a48a89bc 937
28d77376 938 if (SCM_VECTORP (list_or_vec))
0f2d19dd 939 {
28d77376
GH
940 int i = SCM_LENGTH (list_or_vec);
941 SCM *ve = SCM_VELTS (list_or_vec);
a48a89bc 942
28d77376 943 while (--i >= 0)
0f2d19dd 944 {
28d77376 945 answer_list = get_element (set, ve[i], answer_list);
0f2d19dd 946 }
a48a89bc
GH
947 return scm_vector (answer_list);
948 }
949 else
950 {
28d77376
GH
951 /* list_or_vec must be a list. */
952 while (list_or_vec != SCM_EOL)
0f2d19dd 953 {
28d77376
GH
954 answer_list = get_element (set, SCM_CAR (list_or_vec), answer_list);
955 list_or_vec = SCM_CDR (list_or_vec);
0f2d19dd 956 }
a48a89bc 957 return answer_list;
0f2d19dd 958 }
0f2d19dd
JB
959}
960
1bbd0b84 961/* Static helper functions above refer to s_scm_select directly as s_select */
a1ec6916 962SCM_DEFINE (scm_select, "select", 3, 2, 0,
1bbd0b84 963 (SCM reads, SCM writes, SCM excepts, SCM secs, SCM usecs),
28d77376
GH
964 "This procedure has a variety of uses: waiting for the ability\n"
965 "to provide input, accept output, or the existance of\n"
966 "exceptional conditions on a collection of ports or file\n"
967 "descriptors, or waiting for a timeout to occur.\n"
968 "It also returns if interrupted by a signal.\n\n"
969 "@var{reads}, @var{writes} and @var{excepts} can be lists or\n"
970 "vectors, with each member a port or a file descriptor.\n"
971 "The value returned is a list of three corresponding\n"
972 "lists or vectors containing only the members which meet the\n"
973 "specified requirement. The ability of port buffers to\n"
974 "provide input or accept output is taken into account.\n"
975 "Ordering of the input lists or vectors is not preserved.\n\n"
976 "The optional arguments @var{secs} and @var{usecs} specify the\n"
977 "timeout. Either @var{secs} can be specified alone, as\n"
978 "either an integer or a real number, or both @var{secs} and\n"
979 "@var{usecs} can be specified as integers, in which case\n"
980 "@var{usecs} is an additional timeout expressed in\n"
981 "microseconds. If @var{secs} is omitted or is @code{#f} then\n"
982 "select will wait for as long as it takes for one of the other\n"
983 "conditions to be satisfied.\n\n"
984 "The scsh version of @code{select} differs as follows:\n"
985 "Only vectors are accepted for the first three arguments.\n"
986 "The @var{usecs} argument is not supported.\n"
987 "Multiple values are returned instead of a list.\n"
988 "Duplicates in the input vectors appear only once in output.\n"
989 "An additional @code{select!} interface is provided.\n"
990 )
1bbd0b84 991#define FUNC_NAME s_scm_select
0f2d19dd 992{
0f2d19dd 993 struct timeval timeout;
28d77376 994 struct timeval * time_ptr;
0f2d19dd
JB
995 SELECT_TYPE read_set;
996 SELECT_TYPE write_set;
997 SELECT_TYPE except_set;
28d77376
GH
998 int read_count;
999 int write_count;
1000 int except_count;
1001 /* these lists accumulate ports which are ready due to buffering.
1002 their file descriptors don't need to be added to the select sets. */
1003 SCM read_ports_ready = SCM_EOL;
1004 SCM write_ports_ready = SCM_EOL;
1005 int max_fd;
1006
1007 if (SCM_VECTORP (reads))
1008 {
1009 read_count = SCM_LENGTH (reads);
1010 }
1011 else
1012 {
1013 read_count = scm_ilength (reads);
1014 SCM_ASSERT (read_count >= 0, reads, SCM_ARG1, FUNC_NAME);
1015 }
1016 if (SCM_VECTORP (writes))
1017 {
1018 write_count = SCM_LENGTH (writes);
1019 }
1020 else
1021 {
1022 write_count = scm_ilength (writes);
1023 SCM_ASSERT (write_count >= 0, writes, SCM_ARG2, FUNC_NAME);
1024 }
1025 if (SCM_VECTORP (excepts))
1026 {
1027 except_count = SCM_LENGTH (excepts);
1028 }
1029 else
1030 {
1031 except_count = scm_ilength (excepts);
1032 SCM_ASSERT (except_count >= 0, excepts, SCM_ARG3, FUNC_NAME);
1033 }
0f2d19dd
JB
1034
1035 FD_ZERO (&read_set);
1036 FD_ZERO (&write_set);
1037 FD_ZERO (&except_set);
1038
28d77376
GH
1039 max_fd = fill_select_type (&read_set, &read_ports_ready, reads, SCM_ARG1);
1040
1041 {
1042 int write_max = fill_select_type (&write_set, &write_ports_ready,
1043 writes, SCM_ARG2);
1044 int except_max = fill_select_type (&except_set, NULL,
1045 excepts, SCM_ARG3);
1046
1047 if (write_max > max_fd)
1048 max_fd = write_max;
1049 if (except_max > max_fd)
1050 max_fd = except_max;
1051 }
0f2d19dd 1052
ae1b098b
GH
1053 /* if there's a port with a ready buffer, don't block, just
1054 check for ready file descriptors. */
1055 if (read_ports_ready != SCM_EOL || write_ports_ready != SCM_EOL)
1056 {
1057 timeout.tv_sec = 0;
1058 timeout.tv_usec = 0;
1059 time_ptr = &timeout;
1060 }
1061 else if (SCM_UNBNDP (secs) || SCM_FALSEP (secs))
28d77376 1062 time_ptr = 0;
0f2d19dd
JB
1063 else
1064 {
ae1b098b 1065 if (SCM_INUMP (secs))
a48a89bc
GH
1066 {
1067 timeout.tv_sec = SCM_INUM (secs);
1068 if (SCM_UNBNDP (usecs))
1069 timeout.tv_usec = 0;
1070 else
1071 {
3b3b36dd 1072 SCM_VALIDATE_INUM (5,usecs);
a48a89bc
GH
1073 timeout.tv_usec = SCM_INUM (usecs);
1074 }
1075 }
0f2d19dd 1076 else
a48a89bc 1077 {
1bbd0b84 1078 double fl = scm_num2dbl (secs, FUNC_NAME);
a48a89bc
GH
1079
1080 if (!SCM_UNBNDP (usecs))
c1bfcf60 1081 SCM_WRONG_TYPE_ARG (4, secs);
a48a89bc 1082 if (fl > LONG_MAX)
c1bfcf60 1083 SCM_OUT_OF_RANGE (4, secs);
a48a89bc
GH
1084 timeout.tv_sec = (long) fl;
1085 timeout.tv_usec = (long) ((fl - timeout.tv_sec) * 1000000);
1086 }
28d77376 1087 time_ptr = &timeout;
0f2d19dd
JB
1088 }
1089
28d77376 1090 {
44e8413c 1091#ifdef GUILE_ISELECT
28d77376
GH
1092 int rv = scm_internal_select (max_fd + 1,
1093 &read_set, &write_set, &except_set,
1094 time_ptr);
44e8413c 1095#else
28d77376
GH
1096 int rv = select (max_fd + 1,
1097 &read_set, &write_set, &except_set, time_ptr);
44e8413c 1098#endif
28d77376
GH
1099 if (rv < 0)
1100 SCM_SYSERROR;
1101 }
1102 return scm_listify (retrieve_select_type (&read_set, read_ports_ready,
1103 reads),
1104 retrieve_select_type (&write_set, write_ports_ready,
1105 writes),
1106 retrieve_select_type (&except_set, SCM_EOL, excepts),
02b754d3 1107 SCM_UNDEFINED);
0f2d19dd 1108}
1bbd0b84 1109#undef FUNC_NAME
f25f761d 1110#endif /* HAVE_SELECT */
0f2d19dd
JB
1111
1112\f
4c1feaa5 1113
a1ec6916 1114SCM_DEFINE (scm_fcntl, "fcntl", 2, 0, 1,
1bbd0b84 1115 (SCM object, SCM cmd, SCM value),
d3818c29
MD
1116 "Apply @var{command} to the specified file descriptor or the underlying\n"
1117 "file descriptor of the specified port. @var{value} is an optional\n"
1118 "integer argument.\n\n"
1119 "Values for @var{command} are:\n\n"
1120 "@table @code\n"
1121 "@item F_DUPFD\n"
1122 "Duplicate a file descriptor\n"
1123 "@item F_GETFD\n"
1124 "Get flags associated with the file descriptor.\n"
1125 "@item F_SETFD\n"
1126 "Set flags associated with the file descriptor to @var{value}.\n"
1127 "@item F_GETFL\n"
1128 "Get flags associated with the open file.\n"
1129 "@item F_SETFL\n"
1130 "Set flags associated with the open file to @var{value}\n"
1131 "@item F_GETOWN\n"
1132 "Get the process ID of a socket's owner, for @code{SIGIO} signals.\n"
1133 "@item F_SETOWN\n"
1134 "Set the process that owns a socket to @var{value}, for @code{SIGIO} signals.\n"
1135 "@item FD_CLOEXEC\n"
a3c8b9fc
MD
1136 "The value used to indicate the \"close on exec\" flag with @code{F_GETFL} or"
1137 "@code{F_SETFL}."
1138 "@end table")
1bbd0b84 1139#define FUNC_NAME s_scm_fcntl
4c1feaa5
JB
1140{
1141 int rv;
6afcd3b2
GH
1142 int fdes;
1143 int ivalue;
4c1feaa5 1144
78446828
MV
1145 object = SCM_COERCE_OUTPORT (object);
1146
3b3b36dd 1147 SCM_VALIDATE_INUM (2,cmd);
0c95b57d 1148 if (SCM_OPFPORTP (object))
77a76b64 1149 fdes = SCM_FPORT_FDES (object);
6afcd3b2
GH
1150 else
1151 {
3b3b36dd 1152 SCM_VALIDATE_INUM (1,object);
6afcd3b2
GH
1153 fdes = SCM_INUM (object);
1154 }
1155 if (SCM_NULLP (value))
1156 ivalue = 0;
1157 else
1158 {
1bbd0b84 1159 SCM_ASSERT (SCM_INUMP (SCM_CAR (value)), value, SCM_ARG3, FUNC_NAME);
6afcd3b2
GH
1160 ivalue = SCM_INUM (SCM_CAR (value));
1161 }
77a76b64
JB
1162 SCM_SYSCALL (rv = fcntl (fdes, SCM_INUM (cmd), ivalue));
1163 if (rv == -1)
1bbd0b84 1164 SCM_SYSERROR;
4c1feaa5
JB
1165 return SCM_MAKINUM (rv);
1166}
1bbd0b84 1167#undef FUNC_NAME
6afcd3b2 1168
a1ec6916 1169SCM_DEFINE (scm_fsync, "fsync", 1, 0, 0,
1bbd0b84 1170 (SCM object),
d3818c29
MD
1171 "Copies any unwritten data for the specified output file descriptor to disk.\n"
1172 "If @var{port/fd} is a port, its buffer is flushed before the underlying\n"
1173 "file descriptor is fsync'd.\n"
1174 "The return value is unspecified.")
1bbd0b84 1175#define FUNC_NAME s_scm_fsync
6afcd3b2
GH
1176{
1177 int fdes;
1178
78446828
MV
1179 object = SCM_COERCE_OUTPORT (object);
1180
0c95b57d 1181 if (SCM_OPFPORTP (object))
6afcd3b2 1182 {
affc96b5 1183 scm_flush (object);
77a76b64 1184 fdes = SCM_FPORT_FDES (object);
6afcd3b2
GH
1185 }
1186 else
1187 {
3b3b36dd 1188 SCM_VALIDATE_INUM (1,object);
6afcd3b2
GH
1189 fdes = SCM_INUM (object);
1190 }
1191 if (fsync (fdes) == -1)
1bbd0b84 1192 SCM_SYSERROR;
6afcd3b2
GH
1193 return SCM_UNSPECIFIED;
1194}
1bbd0b84 1195#undef FUNC_NAME
0f2d19dd 1196
f25f761d 1197#ifdef HAVE_SYMLINK
a1ec6916 1198SCM_DEFINE (scm_symlink, "symlink", 2, 0, 0,
1bbd0b84 1199 (SCM oldpath, SCM newpath),
d3818c29
MD
1200 "Create a symbolic link named @var{path-to} with the value (i.e., pointing to)\n"
1201 "@var{path-from}. The return value is unspecified.")
1bbd0b84 1202#define FUNC_NAME s_scm_symlink
0f2d19dd 1203{
0f2d19dd 1204 int val;
02b754d3 1205
3b3b36dd
GB
1206 SCM_VALIDATE_ROSTRING (1,oldpath);
1207 SCM_VALIDATE_ROSTRING (2,newpath);
89958ad0
JB
1208 SCM_COERCE_SUBSTR (oldpath);
1209 SCM_COERCE_SUBSTR (newpath);
1210 SCM_SYSCALL (val = symlink(SCM_ROCHARS(oldpath), SCM_ROCHARS(newpath)));
02b754d3 1211 if (val != 0)
1bbd0b84 1212 SCM_SYSERROR;
02b754d3 1213 return SCM_UNSPECIFIED;
0f2d19dd 1214}
1bbd0b84 1215#undef FUNC_NAME
f25f761d 1216#endif /* HAVE_SYMLINK */
0f2d19dd 1217
f25f761d 1218#ifdef HAVE_READLINK
a1ec6916 1219SCM_DEFINE (scm_readlink, "readlink", 1, 0, 0,
1bbd0b84 1220 (SCM path),
d3818c29
MD
1221 "Returns the value of the symbolic link named by\n"
1222 "@var{path} (a string), i.e., the\n"
1223 "file that the link points to.")
1bbd0b84 1224#define FUNC_NAME s_scm_readlink
0f2d19dd 1225{
6a738a25
JB
1226 int rv;
1227 int size = 100;
0f2d19dd
JB
1228 char *buf;
1229 SCM result;
3b3b36dd 1230 SCM_VALIDATE_ROSTRING (1,path);
89958ad0 1231 SCM_COERCE_SUBSTR (path);
1bbd0b84 1232 buf = scm_must_malloc (size, FUNC_NAME);
6a738a25 1233 while ((rv = readlink (SCM_ROCHARS (path), buf, size)) == size)
0f2d19dd
JB
1234 {
1235 scm_must_free (buf);
1236 size *= 2;
1bbd0b84 1237 buf = scm_must_malloc (size, FUNC_NAME);
0f2d19dd 1238 }
02b754d3 1239 if (rv == -1)
1bbd0b84 1240 SCM_SYSERROR;
02b754d3 1241 result = scm_makfromstr (buf, rv, 0);
0f2d19dd 1242 scm_must_free (buf);
0f2d19dd 1243 return result;
0f2d19dd 1244}
1bbd0b84 1245#undef FUNC_NAME
f25f761d 1246#endif /* HAVE_READLINK */
0f2d19dd 1247
f25f761d 1248#ifdef HAVE_LSTAT
a1ec6916 1249SCM_DEFINE (scm_lstat, "lstat", 1, 0, 0,
1bbd0b84 1250 (SCM str),
d3818c29
MD
1251 "Similar to @code{stat}, but does not follow symbolic links, i.e.,\n"
1252 "it will return information about a symbolic link itself, not the \n"
1253 "file it points to. @var{path} must be a string.")
1bbd0b84 1254#define FUNC_NAME s_scm_lstat
0f2d19dd 1255{
02b754d3 1256 int rv;
0f2d19dd 1257 struct stat stat_temp;
02b754d3 1258
3b3b36dd 1259 SCM_VALIDATE_ROSTRING (1,str);
89958ad0
JB
1260 SCM_COERCE_SUBSTR (str);
1261 SCM_SYSCALL(rv = lstat(SCM_ROCHARS(str), &stat_temp));
02b754d3 1262 if (rv != 0)
3d8d56df
GH
1263 {
1264 int en = errno;
1265
5d2d2ffc 1266 SCM_SYSERROR_MSG ("~A: ~S",
3d8d56df
GH
1267 scm_listify (scm_makfrom0str (strerror (errno)),
1268 str,
5d2d2ffc 1269 SCM_UNDEFINED), en);
3d8d56df 1270 }
02b754d3 1271 return scm_stat2scm(&stat_temp);
0f2d19dd 1272}
1bbd0b84 1273#undef FUNC_NAME
f25f761d 1274#endif /* HAVE_LSTAT */
0f2d19dd 1275
a1ec6916 1276SCM_DEFINE (scm_copy_file, "copy-file", 2, 0, 0,
1bbd0b84 1277 (SCM oldfile, SCM newfile),
d3818c29
MD
1278 "Copy the file specified by @var{path-from} to @var{path-to}.\n"
1279 "The return value is unspecified.")
1bbd0b84 1280#define FUNC_NAME s_scm_copy_file
0f2d19dd
JB
1281{
1282 int oldfd, newfd;
1283 int n;
77a76b64 1284 char buf[BUFSIZ];
0f2d19dd
JB
1285 struct stat oldstat;
1286
3b3b36dd 1287 SCM_VALIDATE_ROSTRING (1,oldfile);
0f2d19dd
JB
1288 if (SCM_SUBSTRP (oldfile))
1289 oldfile = scm_makfromstr (SCM_ROCHARS (oldfile), SCM_ROLENGTH (oldfile), 0);
3b3b36dd 1290 SCM_VALIDATE_ROSTRING (2,newfile);
0f2d19dd
JB
1291 if (SCM_SUBSTRP (newfile))
1292 newfile = scm_makfromstr (SCM_ROCHARS (newfile), SCM_ROLENGTH (newfile), 0);
1293 if (stat (SCM_ROCHARS (oldfile), &oldstat) == -1)
1bbd0b84 1294 SCM_SYSERROR;
0f2d19dd
JB
1295 oldfd = open (SCM_ROCHARS (oldfile), O_RDONLY);
1296 if (oldfd == -1)
1bbd0b84 1297 SCM_SYSERROR;
02b754d3
GH
1298
1299 /* use POSIX flags instead of 07777?. */
0f2d19dd
JB
1300 newfd = open (SCM_ROCHARS (newfile), O_WRONLY | O_CREAT | O_TRUNC,
1301 oldstat.st_mode & 07777);
1302 if (newfd == -1)
1bbd0b84 1303 SCM_SYSERROR;
02b754d3 1304
0f2d19dd
JB
1305 while ((n = read (oldfd, buf, sizeof buf)) > 0)
1306 if (write (newfd, buf, n) != n)
1307 {
1308 close (oldfd);
1309 close (newfd);
1bbd0b84 1310 SCM_SYSERROR;
0f2d19dd
JB
1311 }
1312 close (oldfd);
1313 if (close (newfd) == -1)
1bbd0b84 1314 SCM_SYSERROR;
02b754d3 1315 return SCM_UNSPECIFIED;
0f2d19dd 1316}
1bbd0b84 1317#undef FUNC_NAME
0f2d19dd
JB
1318
1319\f
6a738a25
JB
1320/* Filename manipulation */
1321
1322SCM scm_dot_string;
1323
a1ec6916 1324SCM_DEFINE (scm_dirname, "dirname", 1, 0, 0,
1bbd0b84 1325 (SCM filename),
d3818c29 1326 "")
1bbd0b84 1327#define FUNC_NAME s_scm_dirname
6a738a25
JB
1328{
1329 char *s;
1330 int i, len;
3b3b36dd 1331 SCM_VALIDATE_ROSTRING (1,filename);
6a738a25
JB
1332 s = SCM_ROCHARS (filename);
1333 len = SCM_LENGTH (filename);
1334 i = len - 1;
1335 while (i >= 0 && s[i] == '/') --i;
1336 while (i >= 0 && s[i] != '/') --i;
1337 while (i >= 0 && s[i] == '/') --i;
1338 if (i < 0)
1339 {
1340 if (len > 0 && s[0] == '/')
1341 return scm_make_shared_substring (filename, SCM_INUM0, SCM_MAKINUM (1));
1342 else
1343 return scm_dot_string;
1344 }
1345 else
1346 return scm_make_shared_substring (filename, SCM_INUM0, SCM_MAKINUM (i + 1));
1347}
1bbd0b84 1348#undef FUNC_NAME
6a738a25 1349
a1ec6916 1350SCM_DEFINE (scm_basename, "basename", 1, 1, 0,
1bbd0b84 1351 (SCM filename, SCM suffix),
d3818c29 1352 "")
1bbd0b84 1353#define FUNC_NAME s_scm_basename
6a738a25
JB
1354{
1355 char *f, *s = 0;
1356 int i, j, len, end;
3b3b36dd 1357 SCM_VALIDATE_ROSTRING (1,filename);
6a738a25 1358 SCM_ASSERT (SCM_UNBNDP (suffix)
0c95b57d 1359 || (SCM_ROSTRINGP (suffix)),
6a738a25
JB
1360 suffix,
1361 SCM_ARG2,
1bbd0b84 1362 FUNC_NAME);
6a738a25
JB
1363 f = SCM_ROCHARS (filename);
1364 if (SCM_UNBNDP (suffix))
1365 j = -1;
1366 else
1367 {
1368 s = SCM_ROCHARS (suffix);
1369 j = SCM_LENGTH (suffix) - 1;
1370 }
1371 len = SCM_LENGTH (filename);
1372 i = len - 1;
1373 while (i >= 0 && f[i] == '/') --i;
1374 end = i;
1375 while (i >= 0 && j >= 0 && f[i] == s[j]) --i, --j;
1376 if (j == -1)
1377 end = i;
1378 while (i >= 0 && f[i] != '/') --i;
1379 if (i == end)
1380 {
1381 if (len > 0 && f[0] == '/')
1382 return scm_make_shared_substring (filename, SCM_INUM0, SCM_MAKINUM (1));
1383 else
1384 return scm_dot_string;
1385 }
1386 else
1387 return scm_make_shared_substring (filename,
1388 SCM_MAKINUM (i + 1),
1389 SCM_MAKINUM (end + 1));
1390}
1bbd0b84 1391#undef FUNC_NAME
6a738a25
JB
1392
1393
1394
1395\f
1cc91f1b 1396
0f2d19dd
JB
1397void
1398scm_init_filesys ()
0f2d19dd 1399{
23a62151
MD
1400 scm_tc16_dir = scm_make_smob_type_mfpe ("directory", 0,
1401 NULL, scm_dir_free,scm_dir_print, NULL);
0f2d19dd 1402
a163dda9
MD
1403 scm_dot_string = scm_permanent_object (scm_makfrom0str ("."));
1404
3d8d56df
GH
1405#ifdef O_RDONLY
1406scm_sysintern ("O_RDONLY", scm_long2num (O_RDONLY));
1407#endif
1408#ifdef O_WRONLY
1409scm_sysintern ("O_WRONLY", scm_long2num (O_WRONLY));
1410#endif
1411#ifdef O_RDWR
1412scm_sysintern ("O_RDWR", scm_long2num (O_RDWR));
1413#endif
1414#ifdef O_CREAT
1415scm_sysintern ("O_CREAT", scm_long2num (O_CREAT));
1416#endif
1417#ifdef O_EXCL
1418scm_sysintern ("O_EXCL", scm_long2num (O_EXCL));
1419#endif
1420#ifdef O_NOCTTY
1421scm_sysintern ("O_NOCTTY", scm_long2num (O_NOCTTY));
1422#endif
1423#ifdef O_TRUNC
1424scm_sysintern ("O_TRUNC", scm_long2num (O_TRUNC));
1425#endif
1426#ifdef O_APPEND
1427scm_sysintern ("O_APPEND", scm_long2num (O_APPEND));
1428#endif
6afcd3b2 1429#ifdef O_NONBLOCK
3d8d56df
GH
1430scm_sysintern ("O_NONBLOCK", scm_long2num (O_NONBLOCK));
1431#endif
1432#ifdef O_NDELAY
1433scm_sysintern ("O_NDELAY", scm_long2num (O_NDELAY));
1434#endif
1435#ifdef O_SYNC
1436scm_sysintern ("O_SYNC", scm_long2num (O_SYNC));
1437#endif
1438
4c1feaa5
JB
1439#ifdef F_DUPFD
1440scm_sysintern ("F_DUPFD", scm_long2num (F_DUPFD));
1441#endif
1442#ifdef F_GETFD
1443scm_sysintern ("F_GETFD", scm_long2num (F_GETFD));
1444#endif
1445#ifdef F_SETFD
1446scm_sysintern ("F_SETFD", scm_long2num (F_SETFD));
1447#endif
1448#ifdef F_GETFL
1449scm_sysintern ("F_GETFL", scm_long2num (F_GETFL));
1450#endif
1451#ifdef F_SETFL
1452scm_sysintern ("F_SETFL", scm_long2num (F_SETFL));
1453#endif
1454#ifdef F_GETOWN
1455scm_sysintern ("F_GETOWN", scm_long2num (F_GETOWN));
1456#endif
1457#ifdef F_SETOWN
1458scm_sysintern ("F_SETOWN", scm_long2num (F_SETOWN));
1459#endif
1460#ifdef FD_CLOEXEC
1461scm_sysintern ("FD_CLOEXEC", scm_long2num (FD_CLOEXEC));
1462#endif
3d8d56df 1463
0f2d19dd
JB
1464#include "filesys.x"
1465}