X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/blobdiff_plain/7f853a8ae70d1f8c922db2840194aa0afbbe4f79..d7d819976cb5d84766bffd2c5272c86203687ee9:/safely.lisp diff --git a/safely.lisp b/safely.lisp index 0a05f8b..b5d7ff8 100644 --- a/safely.lisp +++ b/safely.lisp @@ -30,6 +30,11 @@ #:safely-writing)) (in-package #:safely) +#+(or cmu sbcl) +(eval-when (:compile-toplevel :execute) + (import #+cmu '(ext:unix-namestring unix:unix-link) + #+sbcl '(sb-int:unix-namestring))) + (defstruct (safely (:predicate safelyp)) "Stores information about how to commit or undo safe writes." (streams nil) @@ -136,19 +141,24 @@ (safely-unwind (safely-trail safe)) (safely-reset safe)) +#+sbcl +(defun unix-link (from to) + (sb-unix::int-syscall ("link" sb-alien:c-string sb-alien:c-string) + from to)) + (defun safe-copy (file tag) "Make a copy of the FILE. Return the new name." - #+cmu + #+(or cmu sbcl) ;; Use link(2) where available. (generate-fresh-file-name file tag (lambda (name) - (let ((from (ext:unix-namestring file t)) - (to (ext:unix-namestring name nil))) + (let ((from (unix-namestring file t)) + (to (unix-namestring name nil))) (and from to - (unix:unix-link from to))))) + (unix-link from to))))) - #-cmu + #-(or cmu sbcl) ;; Otherwise just copy the file contents and hope for the best. (with-open-file (input file :element-type :default) (multiple-value-bind