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