Mercurial > emacs
annotate lisp/userlock.el @ 14279:085bc709c11d
(sys_select): Use time macros to prevent time values
from overflowing.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 24 Jan 1996 21:21:40 +0000 |
parents | 83f275dcd93a |
children | d99336533cc0 |
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 |
841 | 3 ;; Copyright (C) 1985, 1986 Free Software Foundation, inc. |
4 | |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 ;; Maintainer: FSF |
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: internal |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
7 |
36 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
36 | 24 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
25 ;;; Commentary: |
36 | 26 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
27 ;; This file is autoloaded to handle certain conditions |
36 | 28 ;; detected by the file-locking code within Emacs. |
29 ;; The two entry points are `ask-user-about-lock' and | |
30 ;; `ask-user-about-supersession-threat'. | |
31 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
32 ;;; Code: |
36 | 33 |
34 (put 'file-locked 'error-conditions '(file-locked file-error error)) | |
35 | |
258 | 36 ;;;###autoload |
36 | 37 (defun ask-user-about-lock (fn opponent) |
38 "Ask user what to do when he wants to edit FILE but it is locked by USER. | |
39 This function has a choice of three things to do: | |
40 do (signal 'buffer-file-locked (list FILE USER)) | |
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 rewrite it to use any criterion you like to choose which one to do." | |
45 (discard-input) | |
46 (save-window-excursion | |
47 (let (answer) | |
48 (while (null answer) | |
49 (message "%s is locking %s: action (s, q, p, ?)? " opponent fn) | |
50 (let ((tem (let ((inhibit-quit t) | |
51 (cursor-in-echo-area t)) | |
52 (prog1 (downcase (read-char)) | |
53 (setq quit-flag nil))))) | |
54 (if (= tem help-char) | |
55 (ask-user-about-lock-help) | |
56 (setq answer (assoc tem '((?s . t) | |
57 (?q . yield) | |
58 (?\C-g . yield) | |
59 (?p . nil) | |
60 (?? . help)))) | |
61 (cond ((null answer) | |
62 (beep) | |
63 (message "Please type q, s, or p; or ? for help") | |
64 (sit-for 3)) | |
65 ((eq (cdr answer) 'help) | |
66 (ask-user-about-lock-help) | |
67 (setq answer nil)) | |
68 ((eq (cdr answer) 'yield) | |
69 (signal 'file-locked (list "File is locked" fn opponent))))))) | |
70 (cdr answer)))) | |
71 | |
72 (defun ask-user-about-lock-help () | |
73 (with-output-to-temp-buffer "*Help*" | |
74 (princ "It has been detected that you want to modify a file that someone else has | |
75 already started modifying in EMACS. | |
76 | |
77 You can <s>teal the file; The other user becomes the | |
78 intruder if (s)he ever unmodifies the file and then changes it again. | |
79 You can <p>roceed; you edit at your own (and the other user's) risk. | |
9843
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
80 You can <q>uit; don't modify this file.") |
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
81 (save-excursion |
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
82 (set-buffer standard-output) |
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
83 (help-mode)))) |
36 | 84 |
85 (put | |
86 'file-supersession 'error-conditions '(file-supersession file-error error)) | |
87 | |
258 | 88 ;;;###autoload |
36 | 89 (defun ask-user-about-supersession-threat (fn) |
90 "Ask a user who is about to modify an obsolete buffer what to do. | |
91 This function has two choices: it can return, in which case the modification | |
92 of the buffer will proceed, or it can (signal 'file-supersession (file)), | |
93 in which case the proposed buffer modification will not be made. | |
94 | |
95 You can rewrite this to use any criterion you like to choose which one to do. | |
96 The buffer in question is current when this function is called." | |
97 (discard-input) | |
98 (save-window-excursion | |
99 (let (answer) | |
100 (while (null answer) | |
4566
14d8646c61c4
(ask-user-about-supersession-threat): Mention file name when asking question.
Richard M. Stallman <rms@gnu.org>
parents:
841
diff
changeset
|
101 (message "%s changed on disk; really edit the buffer? (y, n or C-h) " |
14d8646c61c4
(ask-user-about-supersession-threat): Mention file name when asking question.
Richard M. Stallman <rms@gnu.org>
parents:
841
diff
changeset
|
102 (file-name-nondirectory fn)) |
36 | 103 (let ((tem (downcase (let ((cursor-in-echo-area t)) |
104 (read-char))))) | |
105 (setq answer | |
106 (if (= tem help-char) | |
107 'help | |
108 (cdr (assoc tem '((?n . yield) | |
109 (?\C-g . yield) | |
110 (?y . proceed) | |
111 (?? . help)))))) | |
112 (cond ((null answer) | |
113 (beep) | |
114 (message "Please type y or n; or ? for help") | |
115 (sit-for 3)) | |
116 ((eq answer 'help) | |
117 (ask-user-about-supersession-help) | |
118 (setq answer nil)) | |
119 ((eq answer 'yield) | |
120 (signal 'file-supersession | |
121 (list "File changed on disk" fn)))))) | |
122 (message | |
123 "File on disk now will become a backup file if you save these changes.") | |
124 (setq buffer-backed-up nil)))) | |
125 | |
126 (defun ask-user-about-supersession-help () | |
127 (with-output-to-temp-buffer "*Help*" | |
128 (princ "You want to modify a buffer whose disk file has changed | |
129 since you last read it in or saved it with this buffer. | |
130 | |
131 If you say `y' to go ahead and modify this buffer, | |
132 you risk ruining the work of whoever rewrote the file. | |
133 If you say `n', the change you started to make will be aborted. | |
134 | |
135 Usually, you should type `n' and then `M-x revert-buffer', | |
9843
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
136 to get the latest version of the file, then make the change again.") |
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
137 (save-excursion |
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
138 (set-buffer standard-output) |
f96b7683e3c5
(ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
4566
diff
changeset
|
139 (help-mode)))) |
36 | 140 |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
141 ;;; userlock.el ends here |