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