Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / userlock.el
blob0602f2e139c6b89740815165fa951bf4eec6ddab
1 ;;; userlock.el --- handle file access contention between multiple users
3 ;; Copyright (C) 1985, 1986, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: internal
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This file is autoloaded to handle certain conditions
27 ;; detected by the file-locking code within Emacs.
28 ;; The two entry points are `ask-user-about-lock' and
29 ;; `ask-user-about-supersession-threat'.
31 ;;; Code:
33 (put 'file-locked 'error-conditions '(file-locked file-error error))
34 (put 'file-locked 'error-message "File is locked")
36 ;;;###autoload
37 (defun ask-user-about-lock (file opponent)
38 "Ask user what to do when he wants to edit FILE but it is locked by OPPONENT.
39 This function has a choice of three things to do:
40 do (signal 'file-locked (list FILE OPPONENT))
41 to refrain from editing the file
42 return t (grab the lock on the file)
43 return nil (edit the file even though it is locked).
44 You can redefine this function to choose among those three alternatives
45 in any way you like."
46 (discard-input)
47 (save-window-excursion
48 (let (answer short-opponent short-file)
49 (setq short-file
50 (if (> (length file) 22)
51 (concat "..." (substring file (- (length file) 22)))
52 file))
53 (setq short-opponent
54 (if (> (length opponent) 25)
55 (save-match-data
56 (string-match " (pid [0-9]+)" opponent)
57 (concat (substring opponent 0 13) "..."
58 (match-string 0 opponent)))
59 opponent))
60 (while (null answer)
61 (message "%s locked by %s: (s, q, p, ?)? "
62 short-file short-opponent)
63 (let ((tem (let ((inhibit-quit t)
64 (cursor-in-echo-area t))
65 (prog1 (downcase (read-char))
66 (setq quit-flag nil)))))
67 (if (= tem help-char)
68 (ask-user-about-lock-help)
69 (setq answer (assoc tem '((?s . t)
70 (?q . yield)
71 (?\C-g . yield)
72 (?p . nil)
73 (?? . help))))
74 (cond ((null answer)
75 (beep)
76 (message "Please type q, s, or p; or ? for help")
77 (sit-for 3))
78 ((eq (cdr answer) 'help)
79 (ask-user-about-lock-help)
80 (setq answer nil))
81 ((eq (cdr answer) 'yield)
82 (signal 'file-locked (list file opponent)))))))
83 (cdr answer))))
85 (defun ask-user-about-lock-help ()
86 (with-output-to-temp-buffer "*Help*"
87 (princ "It has been detected that you want to modify a file that someone else has
88 already started modifying in Emacs.
90 You can <s>teal the file; the other user becomes the
91 intruder if (s)he ever unmodifies the file and then changes it again.
92 You can <p>roceed; you edit at your own (and the other user's) risk.
93 You can <q>uit; don't modify this file.")
94 (save-excursion
95 (set-buffer standard-output)
96 (help-mode))))
98 (put
99 'file-supersession 'error-conditions '(file-supersession file-error error))
101 ;;;###autoload
102 (defun ask-user-about-supersession-threat (fn)
103 "Ask a user who is about to modify an obsolete buffer what to do.
104 This function has two choices: it can return, in which case the modification
105 of the buffer will proceed, or it can (signal 'file-supersession (file)),
106 in which case the proposed buffer modification will not be made.
108 You can rewrite this to use any criterion you like to choose which one to do.
109 The buffer in question is current when this function is called."
110 (discard-input)
111 (save-window-excursion
112 (let (answer)
113 (while (null answer)
114 (message "%s changed on disk; really edit the buffer? (y, n, r or C-h) "
115 (file-name-nondirectory fn))
116 (let ((tem (downcase (let ((cursor-in-echo-area t))
117 (read-char-exclusive)))))
118 (setq answer
119 (if (= tem help-char)
120 'help
121 (cdr (assoc tem '((?n . yield)
122 (?\C-g . yield)
123 (?y . proceed)
124 (?r . revert)
125 (?? . help))))))
126 (cond ((null answer)
127 (beep)
128 (message "Please type y, n or r; or ? for help")
129 (sit-for 3))
130 ((eq answer 'help)
131 (ask-user-about-supersession-help)
132 (setq answer nil))
133 ((eq answer 'revert)
134 (revert-buffer nil (not (buffer-modified-p)))
135 ; ask confirmation if buffer modified
136 (signal 'file-supersession
137 (list "File reverted" fn)))
138 ((eq answer 'yield)
139 (signal 'file-supersession
140 (list "File changed on disk" fn))))))
141 (message
142 "File on disk now will become a backup file if you save these changes.")
143 (setq buffer-backed-up nil))))
145 (defun ask-user-about-supersession-help ()
146 (with-output-to-temp-buffer "*Help*"
147 (princ "You want to modify a buffer whose disk file has changed
148 since you last read it in or saved it with this buffer.
150 If you say `y' to go ahead and modify this buffer,
151 you risk ruining the work of whoever rewrote the file.
152 If you say `r' to revert, the contents of the buffer are refreshed
153 from the file on disk.
154 If you say `n', the change you started to make will be aborted.
156 Usually, you should type `n' and then `M-x revert-buffer',
157 to get the latest version of the file, then make the change again.")
158 (save-excursion
159 (set-buffer standard-output)
160 (help-mode))))
162 ;; arch-tag: a61c5b60-e1c8-44fd-894a-c617f4dfc639
163 ;;; userlock.el ends here