chiark / gitweb /
Merge branch 'master' of metalzone.distorted.org.uk:~mdw/public-git/lisp
[lisp] / safely.lisp
1 ;;; -*-lisp-*-
2 ;;;
3 ;;; $Id$
4 ;;;
5 ;;; Safely modify collections of files
6 ;;;
7 ;;; (c) 2005 Straylight/Edgeware
8 ;;;
9
10 ;;;----- Licensing notice ---------------------------------------------------
11 ;;;
12 ;;; This program is free software; you can redistribute it and/or modify
13 ;;; it under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 2 of the License, or
15 ;;; (at your option) any later version.
16 ;;;
17 ;;; This program is distributed in the hope that it will be useful,
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with this program; if not, write to the Free Software Foundation,
24 ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 (defpackage #:safely
27   (:use #:common-lisp #:mdw.base)
28   (:export #:safely #:safely-close #:safely-delete-file
29            #:safely-open-output-stream #:safely-bail #:safely-commit
30            #:safely-writing))
31 (in-package #:safely)
32
33 #+(or cmu sbcl)
34 (eval-when (:compile-toplevel :execute)
35   (import #+cmu '(ext:unix-namestring unix:unix-link)
36           #+sbcl '(sb-ext:native-namestring)))
37 #+cmu
38 (progn
39   (declaim (inline unix-namestring))
40   (defun native-namestring (pathname &key as-file)
41     (declare (ignore as-file))
42     (unix-namestring pathname nil)))
43
44 (defstruct (safely (:predicate safelyp))
45   "Stores information about how to commit or undo safe writes."
46   (streams nil)
47   (trail nil))
48
49 (defun safely-close (safe stream)
50   "Make sure that STREAM is closed when SAFE is finished."
51   (push stream (safely-streams safe)))
52
53 (defun safely-delete-file (safe file)
54   "Delete FILE when SAFE is committed."
55   (push `(:delete ,file) (safely-trail safe)))
56
57 (defun generate-fresh-file-name (base tag &optional func)
58   "Return a fresh file name constructed from BASE (a filespec) and TAG (some
59    short descriptive string).  The generated name has the same directory and
60    type as the BASE name, but a different name.
61
62    If FUNC is non-nil, then it is a function to call on the generated file
63    name: generate-fresh-file-name runs in a loop, calling FUNC with generated
64    file names until FUNC returns non-nil, at which point generate-fresh-
65    file-name returns two values: the generated name, and the result of FUNC.
66    generate-fresh-file-name catches errors of type file-error from FUNC, and
67    just tries again with a new name.
68
69    If FUNC is nil, it's treated the same as a function which always returns
70    t.
71
72    This is inspired by a similar facility in scsh."
73   (let ((base (pathname base)))
74     (dotimes (i 256
75               (error "Gave up trying to find a temporary ~A file for ~S."
76                      tag base))
77       (let* ((new (merge-pathnames
78                    (make-pathname
79                     :name (format nil "~A-~A-~X"
80                                   (pathname-name base)
81                                   tag
82                                   (random most-positive-fixnum)))
83                    base))
84              (ret (and (not (probe-file new))
85                        (if func
86                            (handler-case (funcall func new)
87                              (file-error (cond)
88                                (unless (pathname-match-p
89                                         (file-error-pathname cond)
90                                         new)
91                                  (error cond))
92                                nil))
93                            t))))
94         (when ret
95           (return (values new ret)))))))
96
97 (defun safely-open-output-stream (safe file &rest open-args)
98   "Create an output stream which will be named FILE when SAFE is committed.
99    Other OPEN-ARGS are passed to open."
100   (multiple-value-bind
101       (name stream)
102       (generate-fresh-file-name file "new"
103                                 (lambda (name)
104                                   (apply #'open name
105                                          :direction :output
106                                          :if-exists nil
107                                          open-args)))
108     (safely-close safe stream)
109     (push `(:shunt ,name ,file)
110           (safely-trail safe))
111     stream))
112
113 (declaim (inline rename))
114 (defun rename (old new)
115   #-clisp (rename-file old new)
116   #+clisp (posix:copy-file old new :method :rename))
117
118 (defun delete-file-without-moaning (file)
119   "Delete the FILE, ignoring errors."
120   (handler-case (delete-file file)
121     (file-error () nil)))
122
123 (defun rename-file-without-moaning (old new)
124   "Rename OLD to NEW, ignoring errors, and without doing any stupid name
125    mangling."
126   (handler-case (rename old new)
127     (file-error () nil)))
128
129 (defun safely-unwind (trail)
130   "Roll back the TRAIL of operations."
131   (dolist (job trail)
132     (ecase (car job)
133       (:shunt (destructuring-bind (new file) (cdr job)
134                 (declare (ignore file))
135                 (delete-file-without-moaning new)))
136       (:delete)
137       (:rmtmp (destructuring-bind (file) (cdr job)
138                 (delete-file-without-moaning file)))
139       (:revert (destructuring-bind (old new) (cdr job)
140                  (rename-file-without-moaning old new))))))
141
142 (defun safely-reset (safe)
143   "Reset SAFE to its initial state."
144   (setf (safely-streams safe) nil)
145   (setf (safely-trail safe) nil))
146
147 (defun safely-bail (safe)
148   "Abort the operations in SAFE, unwinding all the things that have been
149    done.  Streams are closed, new files are removed."
150   (dolist (stream (safely-streams safe))
151     (close stream :abort t))
152   (safely-unwind (safely-trail safe))
153   (safely-reset safe))
154
155 #+sbcl
156 (defun unix-link (from to)
157   (sb-unix::int-syscall ("link" sb-alien:c-string sb-alien:c-string)
158                         from to))
159
160 (defun safe-copy (file tag)
161   "Make a copy of the FILE.  Return the new name."
162
163   #+(or cmu sbcl)
164   ;; Use link(2) where available.
165   (generate-fresh-file-name file tag
166                             (lambda (name)
167                               (let ((from (native-namestring file
168                                                              :as-file t))
169                                     (to (native-namestring name
170                                                            :as-file t)))
171                                 (and from to
172                                      (unix-link from to)))))
173
174   #+clisp
175   (generate-fresh-file-name file tag
176                             (lambda (name)
177                               (posix:copy-file (namestring file)
178                                                (namestring name)
179                                                :method :hardlink
180                                                :if-exists nil)))
181
182
183
184   #-(or cmu sbcl)
185   ;; Otherwise just copy the file contents and hope for the best.
186   (with-open-file (input file :element-type :default)
187     (multiple-value-bind
188         (copy output)
189         (generate-fresh-file-name file tag
190                                   (lambda (name)
191                                     (open name
192                                           :direction :output
193                                           :if-exists nil
194                                           :element-type :default)))
195       (unwind-protect
196            (progn
197              (let ((buffer (make-array 8192
198                                        :element-type (stream-element-type
199                                                       input))))
200                (loop
201                  (let ((read (read-sequence buffer input)))
202                    (when (plusp read)
203                      (write-sequence buffer output :end read))
204                    (when (< read (length buffer))
205                      (return copy))))))
206         (close output)))))
207
208 (defun safely-commit (safe)
209   "Commit SAFE.  The files deleted by safely-delete-file are deleted; the
210    files created by safely-open-output-stream are renamed over the old
211    versions, if any.  If a problem occurs during this stage, everything is
212    rewound and no changes are made."
213   (let ((trail (safely-trail safe))
214         (revert nil)
215         (cleanup nil))
216     (unwind-protect
217         (progn
218           (dolist (stream (safely-streams safe))
219             (close stream))
220           (loop
221             (unless trail
222               (return))
223               (let ((job (pop trail)))
224                 (ecase (car job)
225                   (:shunt (destructuring-bind (tag new file) job
226                             (declare (ignore tag))
227                             (push `(:rmtmp ,new) revert)
228                             (if (probe-file file)
229                                 (let ((old (safe-copy file "old")))
230                                   (push `(:rmtmp ,old) cleanup)
231                                   (push `(:revert ,old ,file) revert))
232                                 (push `(:rmtmp ,file) revert))
233                             (rename new file)))
234                   (:delete (destructuring-bind (tag file) job
235                              (declare (ignore tag))
236                              (let ((old (safe-copy file "delete")))
237                                (push `(:revert ,old ,file) revert)
238                                (push `(:rmtmp ,old) cleanup)
239                                (delete-file file)))))))
240           (setf revert nil))
241       (safely-unwind trail)
242       (safely-unwind revert)
243       (safely-unwind cleanup)
244       (safely-reset safe))))
245
246 (defmacro safely ((safe &key) &body body)
247   "Do stuff within the BODY safely.  If BODY completes without errors, the
248    SAFE is committed; otherwise it's bailed."
249   `(let ((,safe (make-safely)))
250      (unwind-protect
251          (progn
252            ,@body
253            (safely-commit ,safe)
254            (setf ,safe nil))
255        (when ,safe
256          (safely-bail ,safe)))))
257
258 (defmacro safely-writing ((stream file &rest open-args) &body body)
259   "Simple macro for writing a single file safely.  STREAM is opened onto a
260    temporary file, and if BODY completes, it is renamed to FILE."
261   (with-gensyms safe
262     `(safely (,safe)
263        (let ((,stream (safely-open-output-stream ,safe ,file ,@open-args)))
264          ,@body))))
265
266 ;;;----- That's all, folks --------------------------------------------------