Mercurial > emacs
annotate lisp/userlock.el @ 748:4714ad36583c
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 07 Jul 1992 18:36:02 +0000 |
parents | fec3f9a1e3e5 |
children | 4f28bd14272c |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; userlock.el --- handle file access contention between multiple users |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
36 | 3 ;; Copyright (C) 1985, 1986 Free Software Foundation, inc. |
4 | |
5 ;; This file is part of GNU Emacs. | |
6 | |
7 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
8 ;; it under the terms of the GNU General Public License as published by | |
9 ;; the Free Software Foundation; either version 1, or (at your option) | |
10 ;; any later version. | |
11 | |
12 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ;; GNU General Public License for more details. | |
16 | |
17 ;; You should have received a copy of the GNU General Public License | |
18 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | |
21 | |
22 ;; This file is autloaded to handle certain conditions | |
23 ;; detected by the file-locking code within Emacs. | |
24 ;; The two entry points are `ask-user-about-lock' and | |
25 ;; `ask-user-about-supersession-threat'. | |
26 | |
27 | |
28 (put 'file-locked 'error-conditions '(file-locked file-error error)) | |
29 | |
258 | 30 ;;;###autoload |
36 | 31 (defun ask-user-about-lock (fn opponent) |
32 "Ask user what to do when he wants to edit FILE but it is locked by USER. | |
33 This function has a choice of three things to do: | |
34 do (signal 'buffer-file-locked (list FILE USER)) | |
35 to refrain from editing the file | |
36 return t (grab the lock on the file) | |
37 return nil (edit the file even though it is locked). | |
38 You can rewrite it to use any criterion you like to choose which one to do." | |
39 (discard-input) | |
40 (save-window-excursion | |
41 (let (answer) | |
42 (while (null answer) | |
43 (message "%s is locking %s: action (s, q, p, ?)? " opponent fn) | |
44 (let ((tem (let ((inhibit-quit t) | |
45 (cursor-in-echo-area t)) | |
46 (prog1 (downcase (read-char)) | |
47 (setq quit-flag nil))))) | |
48 (if (= tem help-char) | |
49 (ask-user-about-lock-help) | |
50 (setq answer (assoc tem '((?s . t) | |
51 (?q . yield) | |
52 (?\C-g . yield) | |
53 (?p . nil) | |
54 (?? . help)))) | |
55 (cond ((null answer) | |
56 (beep) | |
57 (message "Please type q, s, or p; or ? for help") | |
58 (sit-for 3)) | |
59 ((eq (cdr answer) 'help) | |
60 (ask-user-about-lock-help) | |
61 (setq answer nil)) | |
62 ((eq (cdr answer) 'yield) | |
63 (signal 'file-locked (list "File is locked" fn opponent))))))) | |
64 (cdr answer)))) | |
65 | |
66 (defun ask-user-about-lock-help () | |
67 (with-output-to-temp-buffer "*Help*" | |
68 (princ "It has been detected that you want to modify a file that someone else has | |
69 already started modifying in EMACS. | |
70 | |
71 You can <s>teal the file; The other user becomes the | |
72 intruder if (s)he ever unmodifies the file and then changes it again. | |
73 You can <p>roceed; you edit at your own (and the other user's) risk. | |
74 You can <q>uit; don't modify this file."))) | |
75 | |
76 (put | |
77 'file-supersession 'error-conditions '(file-supersession file-error error)) | |
78 | |
258 | 79 ;;;###autoload |
36 | 80 (defun ask-user-about-supersession-threat (fn) |
81 "Ask a user who is about to modify an obsolete buffer what to do. | |
82 This function has two choices: it can return, in which case the modification | |
83 of the buffer will proceed, or it can (signal 'file-supersession (file)), | |
84 in which case the proposed buffer modification will not be made. | |
85 | |
86 You can rewrite this to use any criterion you like to choose which one to do. | |
87 The buffer in question is current when this function is called." | |
88 (discard-input) | |
89 (save-window-excursion | |
90 (let (answer) | |
91 (while (null answer) | |
92 (message "File has changed on disk; really want to edit the buffer? (y, n or C-h) ") | |
93 (let ((tem (downcase (let ((cursor-in-echo-area t)) | |
94 (read-char))))) | |
95 (setq answer | |
96 (if (= tem help-char) | |
97 'help | |
98 (cdr (assoc tem '((?n . yield) | |
99 (?\C-g . yield) | |
100 (?y . proceed) | |
101 (?? . help)))))) | |
102 (cond ((null answer) | |
103 (beep) | |
104 (message "Please type y or n; or ? for help") | |
105 (sit-for 3)) | |
106 ((eq answer 'help) | |
107 (ask-user-about-supersession-help) | |
108 (setq answer nil)) | |
109 ((eq answer 'yield) | |
110 (signal 'file-supersession | |
111 (list "File changed on disk" fn)))))) | |
112 (message | |
113 "File on disk now will become a backup file if you save these changes.") | |
114 (setq buffer-backed-up nil)))) | |
115 | |
116 (defun ask-user-about-supersession-help () | |
117 (with-output-to-temp-buffer "*Help*" | |
118 (princ "You want to modify a buffer whose disk file has changed | |
119 since you last read it in or saved it with this buffer. | |
120 | |
121 If you say `y' to go ahead and modify this buffer, | |
122 you risk ruining the work of whoever rewrote the file. | |
123 If you say `n', the change you started to make will be aborted. | |
124 | |
125 Usually, you should type `n' and then `M-x revert-buffer', | |
126 to get the latest version of the file, then make the change again."))) | |
127 | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
128 ;;; userlock.el ends here |