dep: Use weak pointers for maintaining dependents.
[lisp] / safely.lisp
CommitLineData
861345b4 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.
b2c12b4e 16;;;
861345b4 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.
b2c12b4e 21;;;
861345b4 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
0b3651e5 26(defpackage #:safely
623291d2 27 (:use #:common-lisp #:mdw.base)
861345b4 28 (:export #:safely #:safely-close #:safely-delete-file
29 #:safely-open-output-stream #:safely-bail #:safely-commit
30 #:safely-writing))
0b3651e5 31(in-package #:safely)
861345b4 32
d7d81997
MW
33#+(or cmu sbcl)
34(eval-when (:compile-toplevel :execute)
35 (import #+cmu '(ext:unix-namestring unix:unix-link)
36 #+sbcl '(sb-int:unix-namestring)))
37
861345b4 38(defstruct (safely (:predicate safelyp))
39 "Stores information about how to commit or undo safe writes."
40 (streams nil)
41 (trail nil))
5e04ac39 42
861345b4 43(defun safely-close (safe stream)
44 "Make sure that STREAM is closed when SAFE is finished."
45 (push stream (safely-streams safe)))
5e04ac39 46
861345b4 47(defun safely-delete-file (safe file)
48 "Delete FILE when SAFE is committed."
623291d2
MW
49 (push `(:delete ,file) (safely-trail safe)))
50
51(defun generate-fresh-file-name (base tag &optional func)
52 "Return a fresh file name constructed from BASE (a filespec) and TAG (some
53 short descriptive string). The generated name has the same directory and
54 type as the BASE name, but a different name.
55
56 If FUNC is non-nil, then it is a function to call on the generated file
57 name: generate-fresh-file-name runs in a loop, calling FUNC with generated
58 file names until FUNC returns non-nil, at which point generate-fresh-
59 file-name returns two values: the generated name, and the result of FUNC.
60 generate-fresh-file-name catches errors of type file-error from FUNC, and
61 just tries again with a new name.
62
63 If FUNC is nil, it's treated the same as a function which always returns
64 t.
65
66 This is inspired by a similar facility in scsh."
67 (let ((base (pathname base)))
68 (dotimes (i 256
69 (error "Gave up trying to find a temporary ~A file for ~S."
70 tag base))
71 (let* ((new (merge-pathnames
72 (make-pathname
73 :name (format nil "~A-~A-~X"
74 (pathname-name base)
75 tag
76 (random most-positive-fixnum)))
77 base))
78 (ret (and (not (probe-file new))
79 (if func
80 (handler-case (funcall func new)
81 (file-error (cond)
82 (unless (pathname-match-p
83 (file-error-pathname cond)
84 new)
85 (error cond))
86 nil))
87 t))))
88 (when ret
89 (return (values new ret)))))))
5e04ac39 90
861345b4 91(defun safely-open-output-stream (safe file &rest open-args)
92 "Create an output stream which will be named FILE when SAFE is committed.
0ff9df03 93 Other OPEN-ARGS are passed to open."
623291d2
MW
94 (multiple-value-bind
95 (name stream)
96 (generate-fresh-file-name file "new"
97 (lambda (name)
98 (apply #'open name
99 :direction :output
100 :if-exists nil
101 open-args)))
861345b4 102 (safely-close safe stream)
623291d2 103 (push `(:shunt ,name ,file)
861345b4 104 (safely-trail safe))
105 stream))
5e04ac39 106
861345b4 107(defun delete-file-without-moaning (file)
108 "Delete the FILE, ignoring errors."
623291d2
MW
109 (handler-case (delete-file file)
110 (file-error () nil)))
5e04ac39 111
861345b4 112(defun rename-file-without-moaning (old new)
113 "Rename OLD to NEW, ignoring errors, and without doing any stupid name
0ff9df03 114 mangling."
623291d2
MW
115 (handler-case (rename-file old new)
116 (file-error () nil)))
5e04ac39 117
861345b4 118(defun safely-unwind (trail)
119 "Roll back the TRAIL of operations."
120 (dolist (job trail)
121 (ecase (car job)
623291d2
MW
122 (:shunt (destructuring-bind (new file) (cdr job)
123 (declare (ignore file))
861345b4 124 (delete-file-without-moaning new)))
125 (:delete)
623291d2 126 (:rmtmp (destructuring-bind (file) (cdr job)
861345b4 127 (delete-file-without-moaning file)))
623291d2 128 (:revert (destructuring-bind (old new) (cdr job)
861345b4 129 (rename-file-without-moaning old new))))))
5e04ac39 130
861345b4 131(defun safely-reset (safe)
132 "Reset SAFE to its initial state."
133 (setf (safely-streams safe) nil)
134 (setf (safely-trail safe) nil))
5e04ac39 135
861345b4 136(defun safely-bail (safe)
137 "Abort the operations in SAFE, unwinding all the things that have been
0ff9df03 138 done. Streams are closed, new files are removed."
861345b4 139 (dolist (stream (safely-streams safe))
140 (close stream :abort t))
141 (safely-unwind (safely-trail safe))
142 (safely-reset safe))
5e04ac39 143
d7d81997
MW
144#+sbcl
145(defun unix-link (from to)
146 (sb-unix::int-syscall ("link" sb-alien:c-string sb-alien:c-string)
147 from to))
148
623291d2
MW
149(defun safe-copy (file tag)
150 "Make a copy of the FILE. Return the new name."
151
d7d81997 152 #+(or cmu sbcl)
623291d2
MW
153 ;; Use link(2) where available.
154 (generate-fresh-file-name file tag
155 (lambda (name)
d7d81997
MW
156 (let ((from (unix-namestring file t))
157 (to (unix-namestring name nil)))
623291d2 158 (and from to
d7d81997 159 (unix-link from to)))))
623291d2 160
d7d81997 161 #-(or cmu sbcl)
623291d2
MW
162 ;; Otherwise just copy the file contents and hope for the best.
163 (with-open-file (input file :element-type :default)
164 (multiple-value-bind
165 (copy output)
166 (generate-fresh-file-name file tag
167 (lambda (name)
168 (open name
169 :direction :output
170 :if-exists nil
171 :element-type :default)))
172 (unwind-protect
173 (progn
174 (let ((buffer (make-array 8192
175 :element-type (stream-element-type
176 input))))
177 (loop
178 (let ((read (read-sequence buffer input)))
179 (when (plusp read)
180 (write-sequence buffer output :end read))
181 (when (< read (length buffer))
182 (return copy))))))
183 (close output)))))
b2c12b4e 184
861345b4 185(defun safely-commit (safe)
186 "Commit SAFE. The files deleted by safely-delete-file are deleted; the
0ff9df03
MW
187 files created by safely-open-output-stream are renamed over the old
188 versions, if any. If a problem occurs during this stage, everything is
189 rewound and no changes are made."
861345b4 190 (let ((trail (safely-trail safe))
191 (revert nil)
192 (cleanup nil))
193 (unwind-protect
194 (progn
195 (dolist (stream (safely-streams safe))
196 (close stream))
197 (loop
198 (unless trail
199 (return))
200 (let ((job (pop trail)))
201 (ecase (car job)
623291d2 202 (:shunt (destructuring-bind (tag new file) job
861345b4 203 (declare (ignore tag))
861345b4 204 (push `(:rmtmp ,new) revert)
205 (if (probe-file file)
623291d2
MW
206 (let ((old (safe-copy file "old")))
207 (push `(:rmtmp ,old) cleanup)
861345b4 208 (push `(:revert ,old ,file) revert))
209 (push `(:rmtmp ,file) revert))
623291d2
MW
210 (rename-file new file)))
211 (:delete (destructuring-bind (tag file) job
861345b4 212 (declare (ignore tag))
623291d2
MW
213 (let ((old (safe-copy file "delete")))
214 (push `(:revert ,old ,file) revert)
215 (push `(:rmtmp ,old) cleanup)
216 (delete-file file)))))))
861345b4 217 (setf revert nil))
218 (safely-unwind trail)
219 (safely-unwind revert)
220 (safely-unwind cleanup)
221 (safely-reset safe))))
5e04ac39 222
861345b4 223(defmacro safely ((safe &key) &body body)
224 "Do stuff within the BODY safely. If BODY completes without errors, the
0ff9df03 225 SAFE is committed; otherwise it's bailed."
861345b4 226 `(let ((,safe (make-safely)))
227 (unwind-protect
228 (progn
229 ,@body
230 (safely-commit ,safe)
231 (setf ,safe nil))
232 (when ,safe
233 (safely-bail ,safe)))))
5e04ac39 234
861345b4 235(defmacro safely-writing ((stream file &rest open-args) &body body)
236 "Simple macro for writing a single file safely. STREAM is opened onto a
0ff9df03 237 temporary file, and if BODY completes, it is renamed to FILE."
861345b4 238 (with-gensyms safe
239 `(safely (,safe)
240 (let ((,stream (apply #'safely-open-output-stream
241 ,safe ,file ,open-args)))
242 ,@body))))
243
244;;;----- That's all, folks --------------------------------------------------