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