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