1999-08-11 Gary Houston <ghouston@easynet.co.uk>
[bpt/guile.git] / libguile / filesys.c
CommitLineData
def804a3 1/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
0f2d19dd
JB
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
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
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.
82892bed 40 * If you do not wish that, delete this exception notice. */
0f2d19dd 41\f
3d8d56df 42#include <stdio.h>
0f2d19dd 43#include "_scm.h"
20e6290e
JB
44#include "genio.h"
45#include "smob.h"
52f4f4d6 46#include "feature.h"
3d8d56df 47#include "fports.h"
44e8413c 48#include "iselect.h"
0f2d19dd 49
20e6290e 50#include "filesys.h"
def804a3 51
0f2d19dd 52\f
def804a3
JB
53#ifdef HAVE_IO_H
54#include <io.h>
55#endif
56
0f2d19dd
JB
57#ifdef TIME_WITH_SYS_TIME
58# include <sys/time.h>
59# include <time.h>
60#else
61# if HAVE_SYS_TIME_H
62# include <sys/time.h>
63# else
64# include <time.h>
65# endif
66#endif
67
68#ifdef HAVE_UNISTD_H
69#include <unistd.h>
70#endif
71
3594582b 72#ifdef LIBC_H_WITH_UNISTD_H
1f9e2226
JB
73#include <libc.h>
74#endif
75
0f2d19dd
JB
76#ifdef HAVE_SYS_SELECT_H
77#include <sys/select.h>
78#endif
79
1f9e2226
JB
80#ifdef HAVE_STRING_H
81#include <string.h>
82#endif
83
8cc71382 84#include <sys/types.h>
0f2d19dd
JB
85#include <sys/stat.h>
86#include <fcntl.h>
87
88#include <pwd.h>
89
90
0f2d19dd
JB
91#if HAVE_DIRENT_H
92# include <dirent.h>
93# define NAMLEN(dirent) strlen((dirent)->d_name)
94#else
95# define dirent direct
96# define NAMLEN(dirent) (dirent)->d_namlen
97# if HAVE_SYS_NDIR_H
98# include <sys/ndir.h>
99# endif
100# if HAVE_SYS_DIR_H
101# include <sys/dir.h>
102# endif
103# if HAVE_NDIR_H
104# include <ndir.h>
105# endif
106#endif
107
d7b8a21a
JB
108/* Ultrix has S_IFSOCK, but no S_ISSOCK. Ipe! */
109#if defined (S_IFSOCK) && ! defined (S_ISSOCK)
110#define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
111#endif
0f2d19dd
JB
112\f
113
0f2d19dd
JB
114
115\f
116
117/* {Permissions}
118 */
119
3d8d56df 120SCM_PROC (s_chown, "chown", 3, 0, 0, scm_chown);
1cc91f1b 121
0f2d19dd 122SCM
6afcd3b2
GH
123scm_chown (object, owner, group)
124 SCM object;
0f2d19dd
JB
125 SCM owner;
126 SCM group;
0f2d19dd 127{
6afcd3b2
GH
128 int rv;
129 int fdes;
02b754d3 130
78446828
MV
131 object = SCM_COERCE_OUTPORT (object);
132
3d8d56df
GH
133 SCM_ASSERT (SCM_INUMP (owner), owner, SCM_ARG2, s_chown);
134 SCM_ASSERT (SCM_INUMP (group), group, SCM_ARG3, s_chown);
6afcd3b2
GH
135 if (SCM_INUMP (object) || (SCM_NIMP (object) && SCM_OPFPORTP (object)))
136 {
137 if (SCM_INUMP (object))
138 fdes = SCM_INUM (object);
139 else
77a76b64 140 fdes = SCM_FPORT_FDES (object);
6afcd3b2
GH
141 SCM_SYSCALL (rv = fchown (fdes, SCM_INUM (owner), SCM_INUM (group)));
142 }
143 else
144 {
145 SCM_ASSERT (SCM_NIMP (object) && SCM_ROSTRINGP (object),
146 object, SCM_ARG1, s_chown);
147 SCM_COERCE_SUBSTR (object);
148 SCM_SYSCALL (rv = chown (SCM_ROCHARS (object),
149 SCM_INUM (owner), SCM_INUM (group)));
150 }
151 if (rv == -1)
3d8d56df 152 scm_syserror (s_chown);
02b754d3 153 return SCM_UNSPECIFIED;
0f2d19dd
JB
154}
155
156
3d8d56df 157SCM_PROC (s_chmod, "chmod", 2, 0, 0, scm_chmod);
1cc91f1b 158
0f2d19dd 159SCM
6afcd3b2
GH
160scm_chmod (object, mode)
161 SCM object;
0f2d19dd 162 SCM mode;
0f2d19dd
JB
163{
164 int rv;
6afcd3b2
GH
165 int fdes;
166
78446828
MV
167 object = SCM_COERCE_OUTPORT (object);
168
3d8d56df 169 SCM_ASSERT (SCM_INUMP (mode), mode, SCM_ARG2, s_chmod);
6afcd3b2 170 if (SCM_INUMP (object) || (SCM_NIMP (object) && SCM_OPFPORTP (object)))
89958ad0 171 {
6afcd3b2
GH
172 if (SCM_INUMP (object))
173 fdes = SCM_INUM (object);
174 else
77a76b64 175 fdes = SCM_FPORT_FDES (object);
6afcd3b2 176 SCM_SYSCALL (rv = fchmod (fdes, SCM_INUM (mode)));
89958ad0 177 }
0f2d19dd
JB
178 else
179 {
6afcd3b2
GH
180 SCM_ASSERT (SCM_NIMP (object) && SCM_ROSTRINGP (object),
181 object, SCM_ARG1, s_chmod);
182 SCM_COERCE_SUBSTR (object);
183 SCM_SYSCALL (rv = chmod (SCM_ROCHARS (object), SCM_INUM (mode)));
0f2d19dd 184 }
6afcd3b2 185 if (rv == -1)
3d8d56df 186 scm_syserror (s_chmod);
02b754d3 187 return SCM_UNSPECIFIED;
0f2d19dd
JB
188}
189
190SCM_PROC (s_umask, "umask", 0, 1, 0, scm_umask);
1cc91f1b 191
0f2d19dd
JB
192SCM
193scm_umask (mode)
194 SCM mode;
0f2d19dd
JB
195{
196 mode_t mask;
197 if (SCM_UNBNDP (mode))
198 {
199 mask = umask (0);
200 umask (mask);
201 }
202 else
203 {
204 SCM_ASSERT (SCM_INUMP (mode), mode, SCM_ARG1, s_umask);
205 mask = umask (SCM_INUM (mode));
206 }
207 return SCM_MAKINUM (mask);
208}
209
210\f
0f2d19dd 211
6afcd3b2 212SCM_PROC (s_open_fdes, "open-fdes", 2, 1, 0, scm_open_fdes);
0f2d19dd 213SCM
6afcd3b2 214scm_open_fdes (SCM path, SCM flags, SCM mode)
0f2d19dd
JB
215{
216 int fd;
3d8d56df 217 int iflags;
6afcd3b2 218 int imode;
0f2d19dd 219
6afcd3b2
GH
220 SCM_ASSERT (SCM_NIMP (path) && SCM_ROSTRINGP (path), path, SCM_ARG1,
221 s_open_fdes);
222 SCM_COERCE_SUBSTR (path);
223 iflags = scm_num2long (flags, (char *) SCM_ARG2, s_open_fdes);
0f2d19dd 224
3d8d56df 225 if (SCM_UNBNDP (mode))
6afcd3b2 226 imode = 0666;
0f2d19dd
JB
227 else
228 {
6afcd3b2
GH
229 SCM_ASSERT (SCM_INUMP (mode), mode, SCM_ARG3, s_open_fdes);
230 imode = SCM_INUM (mode);
0f2d19dd 231 }
6afcd3b2 232 SCM_SYSCALL (fd = open (SCM_ROCHARS (path), iflags, imode));
3d8d56df 233 if (fd == -1)
6afcd3b2 234 scm_syserror (s_open_fdes);
6afcd3b2
GH
235 return SCM_MAKINUM (fd);
236}
237
238SCM_PROC (s_open, "open", 2, 1, 0, scm_open);
239SCM
240scm_open (SCM path, SCM flags, SCM mode)
241{
242 SCM newpt;
243 char *port_mode;
244 int fd;
6afcd3b2
GH
245 int iflags;
246
247 fd = SCM_INUM (scm_open_fdes (path, flags, mode));
248 iflags = scm_num2long (flags, (char *) SCM_ARG2, s_open_fdes);
3d8d56df 249 if (iflags & O_RDWR)
77a76b64
JB
250 {
251 if (iflags & O_APPEND)
252 port_mode = "a+";
253 else if (iflags & O_CREAT)
254 port_mode = "w+";
255 else
256 port_mode = "r+";
257 }
3d8d56df 258 else {
77a76b64
JB
259 if (iflags & O_APPEND)
260 port_mode = "a";
261 else if (iflags & O_WRONLY)
3d8d56df
GH
262 port_mode = "w";
263 else
264 port_mode = "r";
265 }
77a76b64 266 newpt = scm_fdes_to_port (fd, port_mode, path);
3d8d56df 267 return newpt;
0f2d19dd
JB
268}
269
eadd48de
GH
270SCM_PROC (s_close, "close", 1, 0, 0, scm_close);
271SCM
272scm_close (SCM fd_or_port)
273{
274 int rv;
275 int fd;
276
78446828
MV
277 fd_or_port = SCM_COERCE_OUTPORT (fd_or_port);
278
eadd48de
GH
279 if (SCM_NIMP (fd_or_port) && SCM_PORTP (fd_or_port))
280 return scm_close_port (fd_or_port);
281 SCM_ASSERT (SCM_INUMP (fd_or_port), fd_or_port, SCM_ARG1, s_close);
282 fd = SCM_INUM (fd_or_port);
eadd48de 283 scm_evict_ports (fd); /* see scsh manual. */
a9488d12 284 SCM_SYSCALL (rv = close (fd));
eadd48de
GH
285 /* following scsh, closing an already closed file descriptor is
286 not an error. */
287 if (rv < 0 && errno != EBADF)
288 scm_syserror (s_close);
eadd48de
GH
289 return (rv < 0) ? SCM_BOOL_F : SCM_BOOL_T;
290}
291
0f2d19dd
JB
292\f
293/* {Files}
294 */
1cc91f1b 295
ae5253c5
GH
296SCM_SYMBOL (scm_sym_regular, "regular");
297SCM_SYMBOL (scm_sym_directory, "directory");
298SCM_SYMBOL (scm_sym_symlink, "symlink");
299SCM_SYMBOL (scm_sym_block_special, "block-special");
300SCM_SYMBOL (scm_sym_char_special, "char-special");
301SCM_SYMBOL (scm_sym_fifo, "fifo");
302SCM_SYMBOL (scm_sym_sock, "socket");
303SCM_SYMBOL (scm_sym_unknown, "unknown");
304
1cc91f1b
JB
305static SCM scm_stat2scm SCM_P ((struct stat *stat_temp));
306
0f2d19dd
JB
307static SCM
308scm_stat2scm (stat_temp)
309 struct stat *stat_temp;
0f2d19dd 310{
a8741caa 311 SCM ans = scm_make_vector (SCM_MAKINUM (15), SCM_UNSPECIFIED);
0f2d19dd 312 SCM *ve = SCM_VELTS (ans);
ae5253c5 313
0f2d19dd
JB
314 ve[0] = scm_ulong2num ((unsigned long) stat_temp->st_dev);
315 ve[1] = scm_ulong2num ((unsigned long) stat_temp->st_ino);
316 ve[2] = scm_ulong2num ((unsigned long) stat_temp->st_mode);
317 ve[3] = scm_ulong2num ((unsigned long) stat_temp->st_nlink);
318 ve[4] = scm_ulong2num ((unsigned long) stat_temp->st_uid);
319 ve[5] = scm_ulong2num ((unsigned long) stat_temp->st_gid);
320#ifdef HAVE_ST_RDEV
321 ve[6] = scm_ulong2num ((unsigned long) stat_temp->st_rdev);
322#else
323 ve[6] = SCM_BOOL_F;
324#endif
325 ve[7] = scm_ulong2num ((unsigned long) stat_temp->st_size);
326 ve[8] = scm_ulong2num ((unsigned long) stat_temp->st_atime);
327 ve[9] = scm_ulong2num ((unsigned long) stat_temp->st_mtime);
328 ve[10] = scm_ulong2num ((unsigned long) stat_temp->st_ctime);
329#ifdef HAVE_ST_BLKSIZE
330 ve[11] = scm_ulong2num ((unsigned long) stat_temp->st_blksize);
331#else
332 ve[11] = scm_ulong2num (4096L);
333#endif
334#ifdef HAVE_ST_BLOCKS
335 ve[12] = scm_ulong2num ((unsigned long) stat_temp->st_blocks);
336#else
337 ve[12] = SCM_BOOL_F;
338#endif
ae5253c5
GH
339 {
340 int mode = stat_temp->st_mode;
341
342 if (S_ISREG (mode))
343 ve[13] = scm_sym_regular;
344 else if (S_ISDIR (mode))
345 ve[13] = scm_sym_directory;
346 else if (S_ISLNK (mode))
347 ve[13] = scm_sym_symlink;
348 else if (S_ISBLK (mode))
349 ve[13] = scm_sym_block_special;
350 else if (S_ISCHR (mode))
351 ve[13] = scm_sym_char_special;
352 else if (S_ISFIFO (mode))
353 ve[13] = scm_sym_fifo;
354 else if (S_ISSOCK (mode))
355 ve[13] = scm_sym_sock;
356 else
357 ve[13] = scm_sym_unknown;
358
359 ve[14] = SCM_MAKINUM ((~S_IFMT) & mode);
360
361 /* the layout of the bits in ve[14] is intended to be portable.
362 If there are systems that don't follow the usual convention,
363 the following could be used:
364
365 tmp = 0;
366 if (S_ISUID & mode) tmp += 1;
367 tmp <<= 1;
368 if (S_IRGRP & mode) tmp += 1;
369 tmp <<= 1;
370 if (S_ISVTX & mode) tmp += 1;
371 tmp <<= 1;
372 if (S_IRUSR & mode) tmp += 1;
373 tmp <<= 1;
374 if (S_IWUSR & mode) tmp += 1;
375 tmp <<= 1;
376 if (S_IXUSR & mode) tmp += 1;
377 tmp <<= 1;
378 if (S_IWGRP & mode) tmp += 1;
379 tmp <<= 1;
380 if (S_IXGRP & mode) tmp += 1;
381 tmp <<= 1;
382 if (S_IROTH & mode) tmp += 1;
383 tmp <<= 1;
384 if (S_IWOTH & mode) tmp += 1;
385 tmp <<= 1;
386 if (S_IXOTH & mode) tmp += 1;
387
388 ve[14] = SCM_MAKINUM (tmp);
389
390 */
391 }
0f2d19dd
JB
392
393 return ans;
394}
395
3d8d56df 396SCM_PROC (s_stat, "stat", 1, 0, 0, scm_stat);
1cc91f1b 397
0f2d19dd 398SCM
6afcd3b2
GH
399scm_stat (object)
400 SCM object;
0f2d19dd 401{
6afcd3b2
GH
402 int rv;
403 int fdes;
0f2d19dd
JB
404 struct stat stat_temp;
405
1ea47048
MD
406 if (SCM_INUMP (object))
407 SCM_SYSCALL (rv = fstat (SCM_INUM (object), &stat_temp));
408 else
0f2d19dd 409 {
1ea47048
MD
410 SCM_ASSERT (SCM_NIMP (object), object, SCM_ARG1, s_stat);
411 if (SCM_ROSTRINGP (object))
412 {
413 SCM_COERCE_SUBSTR (object);
414 SCM_SYSCALL (rv = stat (SCM_ROCHARS (object), &stat_temp));
415 }
c0ebd8c5 416 else
0f2d19dd 417 {
1ea47048
MD
418 object = SCM_COERCE_OUTPORT (object);
419 SCM_ASSERT (SCM_OPFPORTP (object), object, SCM_ARG1, s_stat);
77a76b64 420 fdes = SCM_FPORT_FDES (object);
1ea47048 421 SCM_SYSCALL (rv = fstat (fdes, &stat_temp));
0f2d19dd 422 }
6afcd3b2
GH
423 }
424 if (rv == -1)
3d8d56df
GH
425 {
426 int en = errno;
427
428 scm_syserror_msg (s_stat, "%s: %S",
429 scm_listify (scm_makfrom0str (strerror (errno)),
6afcd3b2 430 object,
3d8d56df
GH
431 SCM_UNDEFINED),
432 en);
433 }
02b754d3 434 return scm_stat2scm (&stat_temp);
0f2d19dd
JB
435}
436
0f2d19dd
JB
437\f
438/* {Modifying Directories}
439 */
440
3d8d56df 441SCM_PROC (s_link, "link", 2, 0, 0, scm_link);
1cc91f1b 442
0f2d19dd 443SCM
3d8d56df 444scm_link (oldpath, newpath)
0f2d19dd
JB
445 SCM oldpath;
446 SCM newpath;
0f2d19dd
JB
447{
448 int val;
02b754d3 449
6afcd3b2
GH
450 SCM_ASSERT (SCM_NIMP (oldpath) && SCM_ROSTRINGP (oldpath), oldpath,
451 SCM_ARG1, s_link);
0f2d19dd 452 if (SCM_SUBSTRP (oldpath))
6afcd3b2
GH
453 oldpath = scm_makfromstr (SCM_ROCHARS (oldpath),
454 SCM_ROLENGTH (oldpath), 0);
455 SCM_ASSERT (SCM_NIMP (newpath) && SCM_ROSTRINGP (newpath), newpath,
456 SCM_ARG2, s_link);
0f2d19dd 457 if (SCM_SUBSTRP (newpath))
6afcd3b2
GH
458 newpath = scm_makfromstr (SCM_ROCHARS (newpath),
459 SCM_ROLENGTH (newpath), 0);
0f2d19dd 460 SCM_SYSCALL (val = link (SCM_ROCHARS (oldpath), SCM_ROCHARS (newpath)));
02b754d3 461 if (val != 0)
3d8d56df 462 scm_syserror (s_link);
02b754d3 463 return SCM_UNSPECIFIED;
0f2d19dd
JB
464}
465
466
467
3d8d56df 468SCM_PROC (s_rename, "rename-file", 2, 0, 0, scm_rename);
1cc91f1b 469
0f2d19dd 470SCM
3d8d56df 471scm_rename (oldname, newname)
0f2d19dd
JB
472 SCM oldname;
473 SCM newname;
0f2d19dd
JB
474{
475 int rv;
89958ad0
JB
476 SCM_ASSERT (SCM_NIMP (oldname) && SCM_ROSTRINGP (oldname), oldname, SCM_ARG1,
477 s_rename);
478 SCM_ASSERT (SCM_NIMP (newname) && SCM_ROSTRINGP (newname), newname, SCM_ARG2,
479 s_rename);
480 SCM_COERCE_SUBSTR (oldname);
481 SCM_COERCE_SUBSTR (newname);
0f2d19dd 482#ifdef HAVE_RENAME
89958ad0 483 SCM_SYSCALL (rv = rename (SCM_ROCHARS (oldname), SCM_ROCHARS (newname)));
0f2d19dd 484#else
89958ad0 485 SCM_SYSCALL (rv = link (SCM_ROCHARS (oldname), SCM_ROCHARS (newname)));
02b754d3 486 if (rv == 0)
0f2d19dd 487 {
89958ad0 488 SCM_SYSCALL (rv = unlink (SCM_ROCHARS (oldname)));;
02b754d3 489 if (rv != 0)
0f2d19dd 490 /* unlink failed. remove new name */
89958ad0 491 SCM_SYSCALL (unlink (SCM_ROCHARS (newname)));
0f2d19dd 492 }
6afcd3b2 493#endif
02b754d3 494 if (rv != 0)
3d8d56df 495 scm_syserror (s_rename);
02b754d3 496 return SCM_UNSPECIFIED;
0f2d19dd
JB
497}
498
499
3d8d56df 500SCM_PROC(s_delete_file, "delete-file", 1, 0, 0, scm_delete_file);
1cc91f1b 501
2f3ed1ba 502SCM
3d8d56df 503scm_delete_file (str)
2f3ed1ba 504 SCM str;
2f3ed1ba
JB
505{
506 int ans;
6afcd3b2
GH
507 SCM_ASSERT (SCM_NIMP (str) && SCM_ROSTRINGP (str), str, SCM_ARG1,
508 s_delete_file);
89958ad0
JB
509 SCM_COERCE_SUBSTR (str);
510 SCM_SYSCALL (ans = unlink (SCM_ROCHARS (str)));
2f3ed1ba 511 if (ans != 0)
3d8d56df 512 scm_syserror (s_delete_file);
2f3ed1ba
JB
513 return SCM_UNSPECIFIED;
514}
515
3d8d56df 516SCM_PROC (s_mkdir, "mkdir", 1, 1, 0, scm_mkdir);
1cc91f1b 517
0f2d19dd 518SCM
3d8d56df 519scm_mkdir (path, mode)
0f2d19dd
JB
520 SCM path;
521 SCM mode;
0f2d19dd
JB
522{
523#ifdef HAVE_MKDIR
524 int rv;
525 mode_t mask;
89958ad0
JB
526 SCM_ASSERT (SCM_NIMP (path) && SCM_ROSTRINGP (path), path, SCM_ARG1,
527 s_mkdir);
528 SCM_COERCE_SUBSTR (path);
0f2d19dd
JB
529 if (SCM_UNBNDP (mode))
530 {
531 mask = umask (0);
532 umask (mask);
89958ad0 533 SCM_SYSCALL (rv = mkdir (SCM_ROCHARS (path), 0777 ^ mask));
0f2d19dd
JB
534 }
535 else
536 {
3d8d56df 537 SCM_ASSERT (SCM_INUMP (mode), mode, SCM_ARG2, s_mkdir);
89958ad0 538 SCM_SYSCALL (rv = mkdir (SCM_ROCHARS (path), SCM_INUM (mode)));
0f2d19dd 539 }
02b754d3 540 if (rv != 0)
3d8d56df 541 scm_syserror (s_mkdir);
02b754d3 542 return SCM_UNSPECIFIED;
0f2d19dd 543#else
3d8d56df 544 scm_sysmissing (s_mkdir);
02b754d3
GH
545 /* not reached. */
546 return SCM_BOOL_F;
0f2d19dd
JB
547#endif
548}
549
550
3d8d56df 551SCM_PROC (s_rmdir, "rmdir", 1, 0, 0, scm_rmdir);
1cc91f1b 552
0f2d19dd 553SCM
3d8d56df 554scm_rmdir (path)
0f2d19dd 555 SCM path;
0f2d19dd
JB
556{
557#ifdef HAVE_RMDIR
558 int val;
02b754d3 559
89958ad0
JB
560 SCM_ASSERT (SCM_NIMP (path) && SCM_ROSTRINGP (path), path, SCM_ARG1,
561 s_rmdir);
562 SCM_COERCE_SUBSTR (path);
563 SCM_SYSCALL (val = rmdir (SCM_ROCHARS (path)));
02b754d3 564 if (val != 0)
3d8d56df 565 scm_syserror (s_rmdir);
02b754d3 566 return SCM_UNSPECIFIED;
0f2d19dd 567#else
3d8d56df 568 scm_sysmissing (s_rmdir);
02b754d3
GH
569 /* not reached. */
570 return SCM_BOOL_F;
0f2d19dd
JB
571#endif
572}
573
574\f
575/* {Examining Directories}
576 */
577
578long scm_tc16_dir;
579
3d8d56df 580SCM_PROC (s_opendir, "opendir", 1, 0, 0, scm_opendir);
1cc91f1b 581
0f2d19dd 582SCM
3d8d56df 583scm_opendir (dirname)
0f2d19dd 584 SCM dirname;
0f2d19dd
JB
585{
586 DIR *ds;
89958ad0
JB
587 SCM_ASSERT (SCM_NIMP (dirname) && SCM_ROSTRINGP (dirname), dirname, SCM_ARG1,
588 s_opendir);
589 SCM_COERCE_SUBSTR (dirname);
89958ad0 590 SCM_SYSCALL (ds = opendir (SCM_ROCHARS (dirname)));
02b754d3 591 if (ds == NULL)
3d8d56df 592 scm_syserror (s_opendir);
23a62151 593 SCM_RETURN_NEWSMOB (scm_tc16_dir | SCM_OPN, ds);
0f2d19dd
JB
594}
595
596
3d8d56df 597SCM_PROC (s_readdir, "readdir", 1, 0, 0, scm_readdir);
1cc91f1b 598
0f2d19dd 599SCM
3d8d56df 600scm_readdir (port)
0f2d19dd 601 SCM port;
0f2d19dd
JB
602{
603 struct dirent *rdent;
3d8d56df 604 SCM_ASSERT (SCM_NIMP (port) && SCM_OPDIRP (port), port, SCM_ARG1, s_readdir);
0f2d19dd
JB
605 errno = 0;
606 SCM_SYSCALL (rdent = readdir ((DIR *) SCM_CDR (port)));
02b754d3 607 if (errno != 0)
3d8d56df 608 scm_syserror (s_readdir);
02b754d3
GH
609 return (rdent ? scm_makfromstr (rdent->d_name, NAMLEN (rdent), 0)
610 : SCM_EOF_VAL);
0f2d19dd
JB
611}
612
613
614
615SCM_PROC (s_rewinddir, "rewinddir", 1, 0, 0, scm_rewinddir);
1cc91f1b 616
0f2d19dd
JB
617SCM
618scm_rewinddir (port)
619 SCM port;
0f2d19dd
JB
620{
621 SCM_ASSERT (SCM_NIMP (port) && SCM_OPDIRP (port), port, SCM_ARG1, s_rewinddir);
622 rewinddir ((DIR *) SCM_CDR (port));
623 return SCM_UNSPECIFIED;
624}
625
626
627
3d8d56df 628SCM_PROC (s_closedir, "closedir", 1, 0, 0, scm_closedir);
1cc91f1b 629
0f2d19dd 630SCM
3d8d56df 631scm_closedir (port)
0f2d19dd 632 SCM port;
0f2d19dd
JB
633{
634 int sts;
02b754d3 635
3d8d56df 636 SCM_ASSERT (SCM_NIMP (port) && SCM_DIRP (port), port, SCM_ARG1, s_closedir);
0f2d19dd
JB
637 if (SCM_CLOSEDP (port))
638 {
02b754d3 639 return SCM_UNSPECIFIED;
0f2d19dd
JB
640 }
641 SCM_SYSCALL (sts = closedir ((DIR *) SCM_CDR (port)));
02b754d3 642 if (sts != 0)
3d8d56df 643 scm_syserror (s_closedir);
a6c64c3c 644 SCM_SETCAR (port, scm_tc16_dir);
02b754d3 645 return SCM_UNSPECIFIED;
0f2d19dd
JB
646}
647
648
649
1cc91f1b
JB
650
651static int scm_dir_print SCM_P ((SCM sexp, SCM port, scm_print_state *pstate));
652
0f2d19dd 653static int
f8b16091 654scm_dir_print (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 655{
f8b16091
MD
656 scm_puts ("#<", port);
657 if (SCM_CLOSEDP (exp))
658 scm_puts ("closed: ", port);
659 scm_puts ("directory ", port);
660 scm_intprint (SCM_CDR (exp), 16, port);
661 scm_putc ('>', port);
0f2d19dd
JB
662 return 1;
663}
664
1cc91f1b
JB
665
666static scm_sizet scm_dir_free SCM_P ((SCM p));
667
0f2d19dd
JB
668static scm_sizet
669scm_dir_free (p)
670 SCM p;
0f2d19dd
JB
671{
672 if (SCM_OPENP (p))
673 closedir ((DIR *) SCM_CDR (p));
674 return 0;
675}
676
0f2d19dd
JB
677\f
678/* {Navigating Directories}
679 */
680
681
3d8d56df 682SCM_PROC (s_chdir, "chdir", 1, 0, 0, scm_chdir);
1cc91f1b 683
0f2d19dd 684SCM
3d8d56df 685scm_chdir (str)
0f2d19dd 686 SCM str;
0f2d19dd
JB
687{
688 int ans;
02b754d3 689
89958ad0
JB
690 SCM_ASSERT (SCM_NIMP (str) && SCM_ROSTRINGP (str), str, SCM_ARG1, s_chdir);
691 SCM_COERCE_SUBSTR (str);
692 SCM_SYSCALL (ans = chdir (SCM_ROCHARS (str)));
02b754d3 693 if (ans != 0)
3d8d56df 694 scm_syserror (s_chdir);
02b754d3 695 return SCM_UNSPECIFIED;
0f2d19dd
JB
696}
697
698
699
3d8d56df 700SCM_PROC (s_getcwd, "getcwd", 0, 0, 0, scm_getcwd);
1cc91f1b 701
0f2d19dd 702SCM
3d8d56df 703scm_getcwd ()
0f2d19dd
JB
704{
705#ifdef HAVE_GETCWD
706 char *rv;
707
708 scm_sizet size = 100;
709 char *wd;
710 SCM result;
711
3d8d56df 712 wd = scm_must_malloc (size, s_getcwd);
0f2d19dd
JB
713 while ((rv = getcwd (wd, size)) == 0 && errno == ERANGE)
714 {
715 scm_must_free (wd);
716 size *= 2;
3d8d56df 717 wd = scm_must_malloc (size, s_getcwd);
0f2d19dd 718 }
02b754d3 719 if (rv == 0)
3d8d56df 720 scm_syserror (s_getcwd);
02b754d3 721 result = scm_makfromstr (wd, strlen (wd), 0);
0f2d19dd 722 scm_must_free (wd);
0f2d19dd
JB
723 return result;
724#else
3d8d56df 725 scm_sysmissing (s_getcwd);
02b754d3
GH
726 /* not reached. */
727 return SCM_BOOL_F;
0f2d19dd
JB
728#endif
729}
730
731\f
732
cafc12ff
MD
733SCM_PROC (s_select, "select", 3, 2, 0, scm_select);
734
1cc91f1b 735
cafc12ff
MD
736static int
737set_element (SELECT_TYPE *set, SCM element, int arg)
a48a89bc 738{
cafc12ff 739 int fd;
78446828 740 element = SCM_COERCE_OUTPORT (element);
77a76b64
JB
741 if (SCM_NIMP (element) && SCM_OPFPORTP (element))
742 fd = SCM_FPORT_FDES (element);
cafc12ff
MD
743 else {
744 SCM_ASSERT (SCM_INUMP (element), element, arg, s_select);
745 fd = SCM_INUM (element);
746 }
747 FD_SET (fd, set);
748 return fd;
a48a89bc 749}
1cc91f1b 750
cafc12ff
MD
751static int
752fill_select_type (SELECT_TYPE *set, SCM list, int arg)
0f2d19dd 753{
cafc12ff 754 int max_fd = 0, fd;
a48a89bc 755 if (SCM_NIMP (list) && SCM_VECTORP (list))
0f2d19dd 756 {
a48a89bc
GH
757 int len = SCM_LENGTH (list);
758 SCM *ve = SCM_VELTS (list);
759
760 while (len > 0)
761 {
cafc12ff
MD
762 fd = set_element (set, ve[len - 1], arg);
763 if (fd > max_fd)
764 max_fd = fd;
a48a89bc
GH
765 len--;
766 }
767 }
768 else
769 {
770 while (list != SCM_EOL)
771 {
cafc12ff
MD
772 fd = set_element (set, SCM_CAR (list), arg);
773 if (fd > max_fd)
774 max_fd = fd;
a48a89bc
GH
775 list = SCM_CDR (list);
776 }
0f2d19dd 777 }
cafc12ff
MD
778
779 return max_fd;
0f2d19dd
JB
780}
781
a48a89bc
GH
782static SCM
783get_element (SELECT_TYPE *set, SCM element, SCM list)
784{
78446828 785 element = SCM_COERCE_OUTPORT (element);
77a76b64 786 if (SCM_NIMP (element) && SCM_OPFPORTP (element))
a48a89bc 787 {
77a76b64 788 if (FD_ISSET (SCM_FPORT_FDES (element), set))
a48a89bc
GH
789 list = scm_cons (element, list);
790 }
791 else if (SCM_INUMP (element))
792 {
793 if (FD_ISSET (SCM_INUM (element), set))
794 list = scm_cons (element, list);
795 }
796 return list;
797}
1cc91f1b 798
0f2d19dd 799static SCM
a48a89bc 800retrieve_select_type (SELECT_TYPE *set, SCM list)
0f2d19dd 801{
a48a89bc
GH
802 SCM answer_list = SCM_EOL;
803
804 if (SCM_NIMP (list) && SCM_VECTORP (list))
0f2d19dd 805 {
a48a89bc
GH
806 int len = SCM_LENGTH (list);
807 SCM *ve = SCM_VELTS (list);
808
809 while (len > 0)
0f2d19dd 810 {
a48a89bc
GH
811 answer_list = get_element (set, ve[len - 1], answer_list);
812 len--;
0f2d19dd 813 }
a48a89bc
GH
814 return scm_vector (answer_list);
815 }
816 else
817 {
818 /* list is a list. */
819 while (list != SCM_EOL)
0f2d19dd 820 {
a48a89bc
GH
821 answer_list = get_element (set, SCM_CAR (list), answer_list);
822 list = SCM_CDR (list);
0f2d19dd 823 }
a48a89bc 824 return answer_list;
0f2d19dd 825 }
0f2d19dd
JB
826}
827
828
0f2d19dd 829SCM
a48a89bc 830scm_select (reads, writes, excepts, secs, usecs)
0f2d19dd
JB
831 SCM reads;
832 SCM writes;
833 SCM excepts;
834 SCM secs;
a48a89bc 835 SCM usecs;
0f2d19dd
JB
836{
837#ifdef HAVE_SELECT
838 struct timeval timeout;
839 struct timeval * time_p;
840 SELECT_TYPE read_set;
841 SELECT_TYPE write_set;
842 SELECT_TYPE except_set;
cafc12ff 843 int max_fd, fd;
0f2d19dd
JB
844 int sreturn;
845
a48a89bc
GH
846#define assert_set(x, arg) \
847 SCM_ASSERT (scm_ilength (x) > -1 || (SCM_NIMP (x) && SCM_VECTORP (x)), \
848 x, arg, s_select)
849 assert_set (reads, SCM_ARG1);
850 assert_set (writes, SCM_ARG2);
851 assert_set (excepts, SCM_ARG3);
852#undef assert_set
0f2d19dd
JB
853
854 FD_ZERO (&read_set);
855 FD_ZERO (&write_set);
856 FD_ZERO (&except_set);
857
cafc12ff
MD
858 max_fd = fill_select_type (&read_set, reads, SCM_ARG1);
859 fd = fill_select_type (&write_set, writes, SCM_ARG2);
860 if (fd > max_fd)
861 max_fd = fd;
862 fd = fill_select_type (&except_set, excepts, SCM_ARG3);
863 if (fd > max_fd)
864 max_fd = fd;
0f2d19dd 865
a48a89bc 866 if (SCM_UNBNDP (secs) || SCM_FALSEP (secs))
0f2d19dd
JB
867 time_p = 0;
868 else
869 {
a48a89bc
GH
870 if (SCM_INUMP (secs))
871 {
872 timeout.tv_sec = SCM_INUM (secs);
873 if (SCM_UNBNDP (usecs))
874 timeout.tv_usec = 0;
875 else
876 {
877 SCM_ASSERT (SCM_INUMP (usecs), usecs, SCM_ARG5, s_select);
878
879 timeout.tv_usec = SCM_INUM (usecs);
880 }
881 }
0f2d19dd 882 else
a48a89bc
GH
883 {
884 double fl = scm_num2dbl (secs, s_select);
885
886 if (!SCM_UNBNDP (usecs))
887 scm_wrong_type_arg (s_select, 4, secs);
888 if (fl > LONG_MAX)
889 scm_out_of_range (s_select, secs);
890 timeout.tv_sec = (long) fl;
891 timeout.tv_usec = (long) ((fl - timeout.tv_sec) * 1000000);
892 }
0f2d19dd
JB
893 time_p = &timeout;
894 }
895
44e8413c 896#ifdef GUILE_ISELECT
cafc12ff 897 sreturn = scm_internal_select (max_fd + 1,
44e8413c
MD
898 &read_set, &write_set, &except_set, time_p);
899#else
cafc12ff 900 sreturn = select (max_fd + 1,
0f2d19dd 901 &read_set, &write_set, &except_set, time_p);
44e8413c 902#endif
0f2d19dd 903 if (sreturn < 0)
3d8d56df 904 scm_syserror (s_select);
02b754d3
GH
905 return scm_listify (retrieve_select_type (&read_set, reads),
906 retrieve_select_type (&write_set, writes),
907 retrieve_select_type (&except_set, excepts),
908 SCM_UNDEFINED);
0f2d19dd 909#else
3d8d56df 910 scm_sysmissing (s_select);
02b754d3
GH
911 /* not reached. */
912 return SCM_BOOL_F;
0f2d19dd
JB
913#endif
914}
915
916\f
4c1feaa5 917
6afcd3b2 918SCM_PROC (s_fcntl, "fcntl", 2, 0, 1, scm_fcntl);
4c1feaa5 919SCM
6afcd3b2 920scm_fcntl (SCM object, SCM cmd, SCM value)
4c1feaa5
JB
921{
922 int rv;
6afcd3b2
GH
923 int fdes;
924 int ivalue;
4c1feaa5 925
78446828
MV
926 object = SCM_COERCE_OUTPORT (object);
927
4c1feaa5 928 SCM_ASSERT (SCM_INUMP (cmd), cmd, SCM_ARG2, s_fcntl);
6afcd3b2 929 if (SCM_NIMP (object) && SCM_OPFPORTP (object))
77a76b64 930 fdes = SCM_FPORT_FDES (object);
6afcd3b2
GH
931 else
932 {
933 SCM_ASSERT (SCM_INUMP (object), object, SCM_ARG1, s_fcntl);
934 fdes = SCM_INUM (object);
935 }
936 if (SCM_NULLP (value))
937 ivalue = 0;
938 else
939 {
940 SCM_ASSERT (SCM_INUMP (SCM_CAR (value)), value, SCM_ARG3, s_fcntl);
941 ivalue = SCM_INUM (SCM_CAR (value));
942 }
77a76b64
JB
943 SCM_SYSCALL (rv = fcntl (fdes, SCM_INUM (cmd), ivalue));
944 if (rv == -1)
4c1feaa5
JB
945 scm_syserror (s_fcntl);
946 return SCM_MAKINUM (rv);
947}
6afcd3b2
GH
948
949SCM_PROC (s_fsync, "fsync", 1, 0, 0, scm_fsync);
950SCM
951scm_fsync (SCM object)
952{
953 int fdes;
954
78446828
MV
955 object = SCM_COERCE_OUTPORT (object);
956
6afcd3b2
GH
957 if (SCM_NIMP (object) && SCM_OPFPORTP (object))
958 {
affc96b5 959 scm_flush (object);
77a76b64 960 fdes = SCM_FPORT_FDES (object);
6afcd3b2
GH
961 }
962 else
963 {
964 SCM_ASSERT (SCM_INUMP (object), object, SCM_ARG1, s_fsync);
965 fdes = SCM_INUM (object);
966 }
967 if (fsync (fdes) == -1)
968 scm_syserror (s_fsync);
6afcd3b2
GH
969 return SCM_UNSPECIFIED;
970}
0f2d19dd 971
3d8d56df 972SCM_PROC (s_symlink, "symlink", 2, 0, 0, scm_symlink);
1cc91f1b 973
0f2d19dd 974SCM
3d8d56df 975scm_symlink(oldpath, newpath)
0f2d19dd
JB
976 SCM oldpath;
977 SCM newpath;
0f2d19dd
JB
978{
979#ifdef HAVE_SYMLINK
980 int val;
02b754d3 981
89958ad0
JB
982 SCM_ASSERT (SCM_NIMP (oldpath) && SCM_ROSTRINGP (oldpath), oldpath, SCM_ARG1,
983 s_symlink);
984 SCM_ASSERT (SCM_NIMP (newpath) && SCM_ROSTRINGP (newpath), newpath, SCM_ARG2,
985 s_symlink);
986 SCM_COERCE_SUBSTR (oldpath);
987 SCM_COERCE_SUBSTR (newpath);
988 SCM_SYSCALL (val = symlink(SCM_ROCHARS(oldpath), SCM_ROCHARS(newpath)));
02b754d3 989 if (val != 0)
3d8d56df 990 scm_syserror (s_symlink);
02b754d3 991 return SCM_UNSPECIFIED;
0f2d19dd 992#else
3d8d56df 993 scm_sysmissing (s_symlink);
02b754d3
GH
994 /* not reached. */
995 return SCM_BOOL_F;
0f2d19dd
JB
996#endif
997}
998
999
3d8d56df 1000SCM_PROC (s_readlink, "readlink", 1, 0, 0, scm_readlink);
1cc91f1b 1001
0f2d19dd 1002SCM
3d8d56df 1003scm_readlink(path)
0f2d19dd 1004 SCM path;
0f2d19dd
JB
1005{
1006#ifdef HAVE_READLINK
6a738a25
JB
1007 int rv;
1008 int size = 100;
0f2d19dd
JB
1009 char *buf;
1010 SCM result;
89958ad0
JB
1011 SCM_ASSERT (SCM_NIMP (path) && SCM_ROSTRINGP (path), path, (char *) SCM_ARG1,
1012 s_readlink);
1013 SCM_COERCE_SUBSTR (path);
3d8d56df 1014 buf = scm_must_malloc (size, s_readlink);
6a738a25 1015 while ((rv = readlink (SCM_ROCHARS (path), buf, size)) == size)
0f2d19dd
JB
1016 {
1017 scm_must_free (buf);
1018 size *= 2;
3d8d56df 1019 buf = scm_must_malloc (size, s_readlink);
0f2d19dd 1020 }
02b754d3 1021 if (rv == -1)
3d8d56df 1022 scm_syserror (s_readlink);
02b754d3 1023 result = scm_makfromstr (buf, rv, 0);
0f2d19dd 1024 scm_must_free (buf);
0f2d19dd
JB
1025 return result;
1026#else
3d8d56df 1027 scm_sysmissing (s_readlink);
02b754d3
GH
1028 /* not reached. */
1029 return SCM_BOOL_F;
0f2d19dd
JB
1030#endif
1031}
1032
1033
3d8d56df 1034SCM_PROC (s_lstat, "lstat", 1, 0, 0, scm_lstat);
1cc91f1b 1035
0f2d19dd 1036SCM
3d8d56df 1037scm_lstat(str)
0f2d19dd 1038 SCM str;
0f2d19dd 1039{
02b754d3
GH
1040#ifdef HAVE_LSTAT
1041 int rv;
0f2d19dd 1042 struct stat stat_temp;
02b754d3 1043
89958ad0
JB
1044 SCM_ASSERT (SCM_NIMP (str) && SCM_ROSTRINGP (str), str, (char *) SCM_ARG1,
1045 s_lstat);
1046 SCM_COERCE_SUBSTR (str);
1047 SCM_SYSCALL(rv = lstat(SCM_ROCHARS(str), &stat_temp));
02b754d3 1048 if (rv != 0)
3d8d56df
GH
1049 {
1050 int en = errno;
1051
1052 scm_syserror_msg (s_lstat, "%s: %S",
1053 scm_listify (scm_makfrom0str (strerror (errno)),
1054 str,
1055 SCM_UNDEFINED),
1056 en);
1057 }
02b754d3 1058 return scm_stat2scm(&stat_temp);
0f2d19dd 1059#else
3d8d56df 1060 scm_sysmissing (s_lstat);
02b754d3
GH
1061 /* not reached. */
1062 return SCM_BOOL_F;
0f2d19dd
JB
1063#endif
1064}
1065
1066
3d8d56df 1067SCM_PROC (s_copy_file, "copy-file", 2, 0, 0, scm_copy_file);
1cc91f1b 1068
0f2d19dd 1069SCM
3d8d56df 1070scm_copy_file (oldfile, newfile)
0f2d19dd
JB
1071 SCM oldfile;
1072 SCM newfile;
0f2d19dd
JB
1073{
1074 int oldfd, newfd;
1075 int n;
77a76b64 1076 char buf[BUFSIZ];
0f2d19dd
JB
1077 struct stat oldstat;
1078
3d8d56df 1079 SCM_ASSERT (SCM_NIMP (oldfile) && SCM_ROSTRINGP (oldfile), oldfile, SCM_ARG1, s_copy_file);
0f2d19dd
JB
1080 if (SCM_SUBSTRP (oldfile))
1081 oldfile = scm_makfromstr (SCM_ROCHARS (oldfile), SCM_ROLENGTH (oldfile), 0);
3d8d56df 1082 SCM_ASSERT (SCM_NIMP (newfile) && SCM_ROSTRINGP (newfile), newfile, SCM_ARG2, s_copy_file);
0f2d19dd
JB
1083 if (SCM_SUBSTRP (newfile))
1084 newfile = scm_makfromstr (SCM_ROCHARS (newfile), SCM_ROLENGTH (newfile), 0);
1085 if (stat (SCM_ROCHARS (oldfile), &oldstat) == -1)
3d8d56df 1086 scm_syserror (s_copy_file);
0f2d19dd
JB
1087 oldfd = open (SCM_ROCHARS (oldfile), O_RDONLY);
1088 if (oldfd == -1)
3d8d56df 1089 scm_syserror (s_copy_file);
02b754d3
GH
1090
1091 /* use POSIX flags instead of 07777?. */
0f2d19dd
JB
1092 newfd = open (SCM_ROCHARS (newfile), O_WRONLY | O_CREAT | O_TRUNC,
1093 oldstat.st_mode & 07777);
1094 if (newfd == -1)
3d8d56df 1095 scm_syserror (s_copy_file);
02b754d3 1096
0f2d19dd
JB
1097 while ((n = read (oldfd, buf, sizeof buf)) > 0)
1098 if (write (newfd, buf, n) != n)
1099 {
1100 close (oldfd);
1101 close (newfd);
3d8d56df 1102 scm_syserror (s_copy_file);
0f2d19dd
JB
1103 }
1104 close (oldfd);
1105 if (close (newfd) == -1)
3d8d56df 1106 scm_syserror (s_copy_file);
02b754d3 1107 return SCM_UNSPECIFIED;
0f2d19dd
JB
1108}
1109
1110\f
6a738a25
JB
1111/* Filename manipulation */
1112
1113SCM scm_dot_string;
1114
1115SCM_PROC (s_dirname, "dirname", 1, 0, 0, scm_dirname);
1116
1117SCM
1118scm_dirname (SCM filename)
1119{
1120 char *s;
1121 int i, len;
1122 SCM_ASSERT (SCM_NIMP (filename) && SCM_ROSTRINGP (filename),
1123 filename,
1124 SCM_ARG1,
1125 s_dirname);
1126 s = SCM_ROCHARS (filename);
1127 len = SCM_LENGTH (filename);
1128 i = len - 1;
1129 while (i >= 0 && s[i] == '/') --i;
1130 while (i >= 0 && s[i] != '/') --i;
1131 while (i >= 0 && s[i] == '/') --i;
1132 if (i < 0)
1133 {
1134 if (len > 0 && s[0] == '/')
1135 return scm_make_shared_substring (filename, SCM_INUM0, SCM_MAKINUM (1));
1136 else
1137 return scm_dot_string;
1138 }
1139 else
1140 return scm_make_shared_substring (filename, SCM_INUM0, SCM_MAKINUM (i + 1));
1141}
1142
1143SCM_PROC (s_basename, "basename", 1, 1, 0, scm_basename);
1144
1145SCM
1146scm_basename (SCM filename, SCM suffix)
1147{
1148 char *f, *s = 0;
1149 int i, j, len, end;
1150 SCM_ASSERT (SCM_NIMP (filename) && SCM_ROSTRINGP (filename),
1151 filename,
1152 SCM_ARG1,
1153 s_basename);
1154 SCM_ASSERT (SCM_UNBNDP (suffix)
1155 || (SCM_NIMP (suffix) && SCM_ROSTRINGP (suffix)),
1156 suffix,
1157 SCM_ARG2,
1158 s_basename);
1159 f = SCM_ROCHARS (filename);
1160 if (SCM_UNBNDP (suffix))
1161 j = -1;
1162 else
1163 {
1164 s = SCM_ROCHARS (suffix);
1165 j = SCM_LENGTH (suffix) - 1;
1166 }
1167 len = SCM_LENGTH (filename);
1168 i = len - 1;
1169 while (i >= 0 && f[i] == '/') --i;
1170 end = i;
1171 while (i >= 0 && j >= 0 && f[i] == s[j]) --i, --j;
1172 if (j == -1)
1173 end = i;
1174 while (i >= 0 && f[i] != '/') --i;
1175 if (i == end)
1176 {
1177 if (len > 0 && f[0] == '/')
1178 return scm_make_shared_substring (filename, SCM_INUM0, SCM_MAKINUM (1));
1179 else
1180 return scm_dot_string;
1181 }
1182 else
1183 return scm_make_shared_substring (filename,
1184 SCM_MAKINUM (i + 1),
1185 SCM_MAKINUM (end + 1));
1186}
1187
1188
1189
1190\f
1cc91f1b 1191
0f2d19dd
JB
1192void
1193scm_init_filesys ()
0f2d19dd 1194{
52f4f4d6 1195 scm_add_feature ("i/o-extensions");
0f2d19dd 1196
23a62151
MD
1197 scm_tc16_dir = scm_make_smob_type_mfpe ("directory", 0,
1198 NULL, scm_dir_free,scm_dir_print, NULL);
0f2d19dd 1199
a163dda9
MD
1200 scm_dot_string = scm_permanent_object (scm_makfrom0str ("."));
1201
3d8d56df
GH
1202#ifdef O_RDONLY
1203scm_sysintern ("O_RDONLY", scm_long2num (O_RDONLY));
1204#endif
1205#ifdef O_WRONLY
1206scm_sysintern ("O_WRONLY", scm_long2num (O_WRONLY));
1207#endif
1208#ifdef O_RDWR
1209scm_sysintern ("O_RDWR", scm_long2num (O_RDWR));
1210#endif
1211#ifdef O_CREAT
1212scm_sysintern ("O_CREAT", scm_long2num (O_CREAT));
1213#endif
1214#ifdef O_EXCL
1215scm_sysintern ("O_EXCL", scm_long2num (O_EXCL));
1216#endif
1217#ifdef O_NOCTTY
1218scm_sysintern ("O_NOCTTY", scm_long2num (O_NOCTTY));
1219#endif
1220#ifdef O_TRUNC
1221scm_sysintern ("O_TRUNC", scm_long2num (O_TRUNC));
1222#endif
1223#ifdef O_APPEND
1224scm_sysintern ("O_APPEND", scm_long2num (O_APPEND));
1225#endif
6afcd3b2 1226#ifdef O_NONBLOCK
3d8d56df
GH
1227scm_sysintern ("O_NONBLOCK", scm_long2num (O_NONBLOCK));
1228#endif
1229#ifdef O_NDELAY
1230scm_sysintern ("O_NDELAY", scm_long2num (O_NDELAY));
1231#endif
1232#ifdef O_SYNC
1233scm_sysintern ("O_SYNC", scm_long2num (O_SYNC));
1234#endif
1235
4c1feaa5
JB
1236#ifdef F_DUPFD
1237scm_sysintern ("F_DUPFD", scm_long2num (F_DUPFD));
1238#endif
1239#ifdef F_GETFD
1240scm_sysintern ("F_GETFD", scm_long2num (F_GETFD));
1241#endif
1242#ifdef F_SETFD
1243scm_sysintern ("F_SETFD", scm_long2num (F_SETFD));
1244#endif
1245#ifdef F_GETFL
1246scm_sysintern ("F_GETFL", scm_long2num (F_GETFL));
1247#endif
1248#ifdef F_SETFL
1249scm_sysintern ("F_SETFL", scm_long2num (F_SETFL));
1250#endif
1251#ifdef F_GETOWN
1252scm_sysintern ("F_GETOWN", scm_long2num (F_GETOWN));
1253#endif
1254#ifdef F_SETOWN
1255scm_sysintern ("F_SETOWN", scm_long2num (F_SETOWN));
1256#endif
1257#ifdef FD_CLOEXEC
1258scm_sysintern ("FD_CLOEXEC", scm_long2num (FD_CLOEXEC));
1259#endif
3d8d56df 1260
0f2d19dd
JB
1261#include "filesys.x"
1262}