Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / userlock.el
CommitLineData
d501f516
ER
1;;; userlock.el --- handle file access contention between multiple users
2
c90f2757 3;; Copyright (C) 1985, 1986, 2001, 2002, 2003, 2004,
409cc4a3 4;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
58142744 5
6251ee24 6;; Maintainer: FSF
6251ee24 7;; Keywords: internal
e5167999 8
a2535589
JA
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
a2535589 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
a2535589
JA
15
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.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a2535589 23
e5167999 24;;; Commentary:
a2535589 25
e5167999 26;; This file is autoloaded to handle certain conditions
a2535589
JA
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'.
30
e5167999 31;;; Code:
a2535589
JA
32
33(put 'file-locked 'error-conditions '(file-locked file-error error))
bdca5405 34(put 'file-locked 'error-message "File is locked")
a2535589 35
f9f9507e 36;;;###autoload
bdca5405
RS
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.
a2535589 39This function has a choice of three things to do:
5f60927d 40 do (signal 'file-locked (list FILE OPPONENT))
a2535589
JA
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).
bdca5405
RS
44You can redefine this function to choose among those three alternatives
45in any way you like."
a2535589
JA
46 (discard-input)
47 (save-window-excursion
bdca5405
RS
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))
a2535589 60 (while (null answer)
bdca5405
RS
61 (message "%s locked by %s: (s, q, p, ?)? "
62 short-file short-opponent)
a2535589
JA
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)
bdca5405 82 (signal 'file-locked (list file opponent)))))))
a2535589
JA
83 (cdr answer))))
84
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
95d2516a 88already started modifying in Emacs.
a2535589 89
95d2516a 90You can <s>teal the file; the other user becomes the
a2535589
JA
91 intruder if (s)he ever unmodifies the file and then changes it again.
92You can <p>roceed; you edit at your own (and the other user's) risk.
0dc07483
KH
93You can <q>uit; don't modify this file.")
94 (save-excursion
95 (set-buffer standard-output)
96 (help-mode))))
a2535589
JA
97
98(put
99 'file-supersession 'error-conditions '(file-supersession file-error error))
100
f9f9507e 101;;;###autoload
a2535589
JA
102(defun ask-user-about-supersession-threat (fn)
103 "Ask a user who is about to modify an obsolete buffer what to do.
104This function has two choices: it can return, in which case the modification
105of the buffer will proceed, or it can (signal 'file-supersession (file)),
106in which case the proposed buffer modification will not be made.
107
108You can rewrite this to use any criterion you like to choose which one to do.
109The buffer in question is current when this function is called."
110 (discard-input)
111 (save-window-excursion
112 (let (answer)
113 (while (null answer)
11fc9165 114 (message "%s changed on disk; really edit the buffer? (y, n, r or C-h) "
a217e08a 115 (file-name-nondirectory fn))
a2535589 116 (let ((tem (downcase (let ((cursor-in-echo-area t))
91568070 117 (read-char-exclusive)))))
a2535589
JA
118 (setq answer
119 (if (= tem help-char)
120 'help
121 (cdr (assoc tem '((?n . yield)
122 (?\C-g . yield)
123 (?y . proceed)
11fc9165 124 (?r . revert)
a2535589
JA
125 (?? . help))))))
126 (cond ((null answer)
127 (beep)
11fc9165 128 (message "Please type y, n or r; or ? for help")
a2535589
JA
129 (sit-for 3))
130 ((eq answer 'help)
131 (ask-user-about-supersession-help)
132 (setq answer nil))
11fc9165
RS
133 ((eq answer 'revert)
134 (revert-buffer nil (not (buffer-modified-p)))
4837b516 135 ; ask confirmation if buffer modified
11fc9165
RS
136 (signal 'file-supersession
137 (list "File reverted" fn)))
a2535589
JA
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))))
144
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
148since you last read it in or saved it with this buffer.
149
150If you say `y' to go ahead and modify this buffer,
151you risk ruining the work of whoever rewrote the file.
11fc9165
RS
152If you say `r' to revert, the contents of the buffer are refreshed
153from the file on disk.
a2535589
JA
154If you say `n', the change you started to make will be aborted.
155
156Usually, you should type `n' and then `M-x revert-buffer',
0dc07483
KH
157to get the latest version of the file, then make the change again.")
158 (save-excursion
159 (set-buffer standard-output)
160 (help-mode))))
a2535589 161
cbee283d 162;; arch-tag: a61c5b60-e1c8-44fd-894a-c617f4dfc639
d501f516 163;;; userlock.el ends here