mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 21:59:17 +02:00
123 lines
4.7 KiB
Scheme
123 lines
4.7 KiB
Scheme
;; filesystem.scm -- additional filesystem utilities
|
|
;; Copyright (c) 2009-2012 Alex Shinn. All rights reserved.
|
|
;; BSD-style license: http://synthcode.com/license.txt
|
|
|
|
;;> The fundamental directory iterator. Applies @var{kons} to
|
|
;;> each filename in directory @var{dir} and the result of the
|
|
;;> previous application, beginning with @var{knil}. With
|
|
;;> @var{kons} as @scheme{cons} and @var{knil} as @scheme{'()},
|
|
;;> equivalent to @scheme{directory-files}.
|
|
|
|
(define (directory-fold dir kons knil)
|
|
(let ((dir (opendir dir)))
|
|
(let lp ((res knil))
|
|
(let ((file (readdir dir)))
|
|
(if file (lp (kons (dirent-name file) res)) res)))))
|
|
|
|
;;> Returns a list of the files in @var{dir} in an unspecified
|
|
;;> order.
|
|
|
|
(define (directory-files dir)
|
|
(directory-fold dir cons '()))
|
|
|
|
;;> The fundamental directory traverser.
|
|
|
|
(define (directory-fold-tree file down up here . o)
|
|
;; TODO: Use link count to reduce stats.
|
|
;; TODO: Provide higher-level wrapper for filtering and avoids links.
|
|
(let ((knil (and (pair? o) (car o)))
|
|
(down (or down (lambda (f acc) acc)))
|
|
(up (or up (lambda (f acc) acc)))
|
|
(here (or here (lambda (f acc) acc))))
|
|
(let fold ((file file) (acc knil))
|
|
(cond
|
|
((file-directory? file)
|
|
(let ((d (opendir file)))
|
|
(let lp ((acc acc))
|
|
(let ((e (readdir d)))
|
|
(cond
|
|
(e
|
|
(let ((f (dirent-name e)))
|
|
(if (member f '("." ".."))
|
|
(lp acc)
|
|
(let ((path (string-append file "/" f)))
|
|
(lp (fold path (down path acc)))))))
|
|
(else
|
|
(up file acc)))))))
|
|
(else
|
|
(here file acc))))))
|
|
|
|
;;> Recursively delete all files and directories under @var{dir}.
|
|
;;> Unless optional arg @var{ignore-errors?} is true, raises an error
|
|
;;> if any file can't be deleted.
|
|
|
|
(define (delete-file-hierarchy dir . o)
|
|
(let ((ignore-errors? (and (pair? o) (car o))))
|
|
(if (member dir '("" "/"))
|
|
(error "won't delete unsafe directory" dir))
|
|
(directory-fold-tree
|
|
dir
|
|
#f
|
|
(lambda (d acc)
|
|
(if (and (not (delete-directory d)) (not ignore-errors?))
|
|
(error "couldn't delete directory" d)))
|
|
(lambda (f acc)
|
|
(if (and (not (delete-file f)) (not ignore-errors?))
|
|
(error "couldn't delete file" f))))))
|
|
|
|
;;> Runs @var{thunk} with the current directory of the process temporarily
|
|
;;> set to @var{dir}.
|
|
|
|
(define (with-directory dir thunk)
|
|
(let ((pwd (current-directory)))
|
|
(dynamic-wind
|
|
(lambda () (change-directory dir))
|
|
thunk
|
|
(lambda () (change-directory pwd)))))
|
|
|
|
;;> Returns the @scheme{status} object for the given @var{file},
|
|
;;> which should be a string indicating the path or a file
|
|
;;> descriptor.
|
|
|
|
(define (file-status file)
|
|
(if (string? file) (stat file) (fstat file)))
|
|
|
|
(define (file-device x) (stat-dev (if (stat? x) x (file-status x))))
|
|
(define (file-inode x) (stat-ino (if (stat? x) x (file-status x))))
|
|
(define (file-mode x) (stat-mode (if (stat? x) x (file-status x))))
|
|
(define (file-num-links x) (stat-nlinks (if (stat? x) x (file-status x))))
|
|
(define (file-owner x) (stat-uid (if (stat? x) x (file-status x))))
|
|
(define (file-group x) (stat-gid (if (stat? x) x (file-status x))))
|
|
(define (file-represented-device x) (stat-rdev (if (stat? x) x (file-status x))))
|
|
(define (file-size x) (stat-size (if (stat? x) x (file-status x))))
|
|
(define (file-block-size x) (stat-blksize (if (stat? x) x (file-status x))))
|
|
(define (file-num-blocks x) (stat-blocks (if (stat? x) x (file-status x))))
|
|
(define (file-access-time x) (stat-atime (if (stat? x) x (file-status x))))
|
|
(define (file-modification-time x) (stat-mtime (if (stat? x) x (file-status x))))
|
|
(define (file-change-time x) (stat-ctime (if (stat? x) x (file-status x))))
|
|
|
|
;;> File status accessors. @var{x} should be a string indicating
|
|
;;> the file to lookup the status for, or an existing status object.
|
|
;;/
|
|
|
|
(define (file-regular? x) (S_ISREG (file-mode x)))
|
|
(define (file-directory? x) (S_ISDIR (file-mode x)))
|
|
(define (file-character? x) (S_ISCHR (file-mode x)))
|
|
(define (file-block? x) (S_ISBLK (file-mode x)))
|
|
(define (file-fifo? x) (S_ISFIFO (file-mode x)))
|
|
(define (file-link? x) (S_ISLNK (file-mode x)))
|
|
(define (file-socket? x) (S_ISSOCK (file-mode x)))
|
|
(define (file-exists? x) (and (file-status x) #t))
|
|
|
|
;;> File type tests. @var{x} should be a string indicating the
|
|
;;> file to lookup the status for, or an existing status object.
|
|
;;> Returns @scheme{#t} if the file exists and the given type
|
|
;;> is satisfied, and @scheme{#f} otherwise.
|
|
;;/
|
|
|
|
;;> Equivalent to duplicating the file descriptor @var{old} to
|
|
;;> @var{new} and closing @var{old}.
|
|
|
|
(define (renumber-file-descriptor old new)
|
|
(and (duplicate-file-descriptor-to old new)
|
|
(close-file-descriptor old)))
|