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