Rewrite Eshell tests using ERT
[bpt/emacs.git] / lisp / userlock.el
CommitLineData
d501f516
ER
1;;; userlock.el --- handle file access contention between multiple users
2
ab422c4d 3;; Copyright (C) 1985-1986, 2001-2013 Free Software Foundation, Inc.
58142744 4
6251ee24 5;; Maintainer: FSF
6251ee24 6;; Keywords: internal
d0b822e3 7;; Package: emacs
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 93You can <q>uit; don't modify this file.")
7fdbcd83 94 (with-current-buffer standard-output
0dc07483 95 (help-mode))))
a2535589
JA
96
97(put
98 'file-supersession 'error-conditions '(file-supersession file-error error))
99
f9f9507e 100;;;###autoload
a2535589
JA
101(defun ask-user-about-supersession-threat (fn)
102 "Ask a user who is about to modify an obsolete buffer what to do.
103This function has two choices: it can return, in which case the modification
104of the buffer will proceed, or it can (signal 'file-supersession (file)),
105in which case the proposed buffer modification will not be made.
106
107You can rewrite this to use any criterion you like to choose which one to do.
108The buffer in question is current when this function is called."
109 (discard-input)
110 (save-window-excursion
145823ec
CY
111 (let ((prompt
112 (format "%s changed on disk; \
113really edit the buffer? (y, n, r or C-h) "
114 (file-name-nondirectory fn)))
115 (choices '(?y ?n ?r ?? ?\C-h))
116 answer)
a2535589 117 (while (null answer)
145823ec
CY
118 (setq answer (read-char-choice prompt choices))
119 (cond ((memq answer '(?? ?\C-h))
120 (ask-user-about-supersession-help)
121 (setq answer nil))
122 ((eq answer ?r)
123 ;; Ask for confirmation if buffer modified
124 (revert-buffer nil (not (buffer-modified-p)))
125 (signal 'file-supersession
126 (list "File reverted" fn)))
127 ((eq answer ?n)
128 (signal 'file-supersession
129 (list "File changed on disk" fn)))))
a2535589 130 (message
145823ec 131 "File on disk now will become a backup file if you save these changes.")
a2535589
JA
132 (setq buffer-backed-up nil))))
133
134(defun ask-user-about-supersession-help ()
135 (with-output-to-temp-buffer "*Help*"
136 (princ "You want to modify a buffer whose disk file has changed
137since you last read it in or saved it with this buffer.
138
139If you say `y' to go ahead and modify this buffer,
140you risk ruining the work of whoever rewrote the file.
11fc9165
RS
141If you say `r' to revert, the contents of the buffer are refreshed
142from the file on disk.
a2535589
JA
143If you say `n', the change you started to make will be aborted.
144
145Usually, you should type `n' and then `M-x revert-buffer',
0dc07483 146to get the latest version of the file, then make the change again.")
7fdbcd83 147 (with-current-buffer standard-output
0dc07483 148 (help-mode))))
a2535589 149
d501f516 150;;; userlock.el ends here