Mercurial > emacs
annotate lisp/userlock.el @ 15097:32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
(Ffile_exists_p, Ffile_executable_p, Ffile_readable_p)
(Ffile_writable_p, Ffile_directory_p, Ffile_regular_p)
(Ffile_modes, Fset_file_modes, Ffile_newer_than_file_p)
(expand_and_dir_to_file): Rename abspath to absname.
(CORRECT_DIR_SEPS) [DOS_NT]: New macro.
(IS_DRIVE) [DOS_NT]: Added separate definitions for DOS and NT.
(Ffile_name_directory) [DOS_NT]: Simplify code to match change in
getdefdir in msdos.c. Ignore embedded colons. Correct dir seps.
(Ffile_name_nondirectory) [DOS_NT]: Ignore embedded colons.
Correct IS_ANY_SEP to IS_DIRECTORY_SEP.
(file_name_as_directory) [DOS_NT]: Correct dir seps.
Correct IS_ANY_SEP to IS_DIRECTORY_SEP.
(directory_file_name) [DOS_NT]: Correct dir seps.
(Fmake_temp_name) [DOS_NT: Correct dir seps.
(Fexpand_file_name) [mostly DOS_NT]: Remove relpath, tmp and
defdir variables; init drive to 0.
Correctly detect when default_directory is absolute.
Be strict when looking for MSDOS drive specifier; defer calling
getdefdir. Ignore drive specifier if name now has UNC prefix.
Correctly recognise if name is not absolute when trying simple
method to expand; return original string if possible.
Skip dir sep after ~ or ~user.
Use getpwnam instead of HOME for ~user on NT.
Handle error return from getdefdir.
Correctly detect if newdir is absolute before using default_directory.
Handle case where newdir is not absolute - expand relative to
current working dir if necessary (instead of calling getdisk
later). Only keep UNC prefix if nm starts with dir sep.
Replace kludgy handling of drive spec in newdir. Correct dir seps.
(Fexpand_file_name) [!DOS_NT]: Fix incorrect expansion of
"/foo/../bar" -> "//bar".
(Fsubstitute_in_file_name) [DOS_NT]: Correct dir seps for NT as
well. Merge equivalent #ifdef APOLLO and WINDOWSNT cases. Ignore
embedded colons and be strict about drive specs.
(Fcopy_file) [DOS_NT]: Do dev/inode check on NT.
(Ffile_name_absolute_p) [DOS_NT]: Be strict about drive specs.
(check_executable) [DOS_NT]: Test st_mode on NT.
(Ffile_readable_p) [DOS_NT]: Use access instead of open on NT.
(Ffile_modes) [DOS_NT]: Don't embelish st_mode value on NT.
(Fread_file_name) [DOS_NT]: Correct dir seps in HOME.
(syms_of_fileio): Add Vdirectory_sep_char.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 27 Apr 1996 01:14:17 +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 |