Mercurial > emacs
annotate lisp/shadowfile.el @ 61263:56619c3aaf99
(fancy-splash-text): Shorten default text of
"Emacs Tutorial" line. Also, if the current language env
indicates an available tutorial file other than TUTORIAL,
extract its title and append it to the line in parentheses.
(fancy-splash-insert): If arg is a thunk, funcall it.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Mon, 04 Apr 2005 07:41:58 +0000 |
parents | a5bb249b0f3b |
children | b89461946700 e24e2e78deda |
rev | line source |
---|---|
36041 | 1 ;;; shadowfile.el --- automatic file copying |
5119 | 2 |
43971 | 3 ;; Copyright (C) 1993, 1994, 2001, 2002 Free Software Foundation, Inc. |
13337 | 4 |
25278 | 5 ;; Author: Boris Goldowsky <boris@gnu.org> |
36041 | 6 ;; Keywords: comm files |
13337 | 7 |
8 ;; This file is part of GNU Emacs. | |
5119 | 9 |
13337 | 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 | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
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. | |
24 | |
36041 | 25 ;;; Commentary: |
5119 | 26 |
14169 | 27 ;; This package helps you to keep identical copies of files in more than one |
28 ;; place - possibly on different machines. When you save a file, it checks | |
29 ;; whether it is on the list of files with "shadows", and if so, it tries to | |
30 ;; copy it when you exit emacs (or use the shadow-copy-files command). | |
5119 | 31 |
14169 | 32 ;; Installation & Use: |
33 | |
36041 | 34 ;; Add clusters (if necessary) and file groups with shadow-define-cluster, |
14169 | 35 ;; shadow-define-literal-group, and shadow-define-regexp-group (see the |
36041 | 36 ;; documentation for these functions for information on how and when to use |
37 ;; them). After doing this once, everything should be automatic. | |
5119 | 38 |
14169 | 39 ;; The lists of clusters and shadows are saved in a file called .shadows, |
40 ;; so that they can be remembered from one emacs session to another, even | |
41 ;; (as much as possible) if the emacs session terminates abnormally. The | |
42 ;; files needing to be copied are stored in .shadow_todo; if a file cannot | |
43 ;; be copied for any reason, it will stay on the list to be tried again | |
44 ;; next time. The .shadows file should itself have shadows on all your | |
45 ;; accounts so that the information in it is consistent everywhere, but | |
46 ;; .shadow_todo is local information and should have no shadows. | |
47 | |
48 ;; If you do not want to copy a particular file, you can answer "no" and | |
49 ;; be asked again next time you hit C-x 4 s or exit emacs. If you do not | |
50 ;; want to be asked again, use shadow-cancel, and you will not be asked | |
51 ;; until you change the file and save it again. If you do not want to | |
52 ;; shadow that file ever again, you can edit it out of the .shadows | |
53 ;; buffer. Anytime you edit the .shadows buffer, you must type M-x | |
54 ;; shadow-read-files to load in the new information, or your changes will | |
55 ;; be overwritten! | |
5119 | 56 |
14169 | 57 ;; Bugs & Warnings: |
58 ;; | |
59 ;; - It is bad to have two emacses both running shadowfile at the same | |
60 ;; time. It tries to detect this condition, but is not always successful. | |
61 ;; | |
62 ;; - You have to be careful not to edit a file in two locations | |
63 ;; before shadowfile has had a chance to copy it; otherwise | |
64 ;; "updating shadows" will overwrite one of the changed versions. | |
65 ;; | |
66 ;; - It ought to check modification times of both files to make sure | |
67 ;; it is doing the right thing. This will have to wait until | |
68 ;; file-newer-than-file-p works between machines. | |
69 ;; | |
70 ;; - It will not make directories for you, it just fails to copy files | |
71 ;; that belong in non-existent directories. | |
72 ;; | |
25278 | 73 ;; Please report any bugs to me (boris@gnu.org). Also let me know |
14169 | 74 ;; if you have suggestions or would like to be informed of updates. |
5119 | 75 |
36041 | 76 |
5119 | 77 ;;; Code: |
78 | |
79 (require 'ange-ftp) | |
80 | |
81 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
82 ;;; Variables | |
83 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
84 | |
21088 | 85 (defgroup shadow nil |
86 "Automatic file copying when saving a file." | |
87 :prefix "shadow-" | |
36041 | 88 :link '(emacs-commentary-link "shadowfile") |
21088 | 89 :group 'files) |
90 | |
91 (defcustom shadow-noquery nil | |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
92 "*If t, always copy shadow files without asking. |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
93 If nil \(the default), always ask. If not nil and not t, ask only if there |
21088 | 94 is no buffer currently visiting the file." |
22598
dcb17af08ae0
(shadow-noquery): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents:
21408
diff
changeset
|
95 :type '(choice (const t) (const nil) (other :tag "Ask if no buffer" maybe)) |
21088 | 96 :group 'shadow) |
5119 | 97 |
21088 | 98 (defcustom shadow-inhibit-message nil |
99 "*If nonnil, do not display a message when a file needs copying." | |
100 :type 'boolean | |
101 :group 'shadow) | |
5119 | 102 |
21088 | 103 (defcustom shadow-inhibit-overload nil |
36041 | 104 "If nonnil, shadowfile won't redefine \\[save-buffers-kill-emacs]. |
5119 | 105 Normally it overloads the function `save-buffers-kill-emacs' to check |
21088 | 106 for files have been changed and need to be copied to other systems." |
107 :type 'boolean | |
108 :group 'shadow) | |
5119 | 109 |
21088 | 110 (defcustom shadow-info-file nil |
36041 | 111 "File to keep shadow information in. |
112 The `shadow-info-file' should be shadowed to all your accounts to | |
21088 | 113 ensure consistency. Default: ~/.shadows" |
114 :type '(choice (const nil) file) | |
115 :group 'shadow) | |
5119 | 116 |
21088 | 117 (defcustom shadow-todo-file nil |
5119 | 118 "File to store the list of uncopied shadows in. |
119 This means that if a remote system is down, or for any reason you cannot or | |
36041 | 120 decide not to copy your shadow files at the end of one Emacs session, it will |
121 remember and ask you again in your next Emacs session. | |
5119 | 122 This file must NOT be shadowed to any other system, it is host-specific. |
21088 | 123 Default: ~/.shadow_todo" |
124 :type '(choice (const nil) file) | |
125 :group 'shadow) | |
126 | |
5119 | 127 |
128 ;;; The following two variables should in most cases initialize themselves | |
129 ;;; correctly. They are provided as variables in case the defaults are wrong | |
130 ;;; on your machine \(and for efficiency). | |
131 | |
132 (defvar shadow-system-name (system-name) | |
133 "The complete hostname of this machine.") | |
134 | |
135 (defvar shadow-homedir nil | |
136 "Your home directory on this machine.") | |
137 | |
138 ;;; | |
139 ;;; Internal variables whose values are stored in the info and todo files: | |
140 ;;; | |
141 | |
142 (defvar shadow-clusters nil | |
36041 | 143 "List of host clusters \(see `shadow-define-cluster').") |
5119 | 144 |
145 (defvar shadow-literal-groups nil | |
146 "List of files that are shared between hosts. | |
147 This list contains shadow structures with literal filenames, created by | |
148 shadow-define-group.") | |
149 | |
150 (defvar shadow-regexp-groups nil | |
151 "List of file types that are shared between hosts. | |
36041 | 152 This list contains shadow structures with regexps matching filenames, |
153 created by `shadow-define-regexp-group'.") | |
5119 | 154 |
155 ;;; | |
156 ;;; Other internal variables: | |
157 ;;; | |
158 | |
159 (defvar shadow-files-to-copy nil) ; List of files that need to | |
160 ; be copied to remote hosts. | |
161 | |
162 (defvar shadow-hashtable nil) ; for speed | |
163 | |
164 (defvar shadow-info-buffer nil) ; buf visiting shadow-info-file | |
165 (defvar shadow-todo-buffer nil) ; buf visiting shadow-todo-file | |
166 | |
167 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
168 ;;; Syntactic sugar; General list and string manipulation | |
169 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
170 | |
171 (defun shadow-union (a b) | |
36041 | 172 "Add members of list A to list B if not equal to items already in B." |
5119 | 173 (if (null a) |
174 b | |
175 (if (member (car a) b) | |
176 (shadow-union (cdr a) b) | |
177 (shadow-union (cdr a) (cons (car a) b))))) | |
178 | |
179 (defun shadow-find (func list) | |
36041 | 180 "If FUNC applied to some element of LIST is nonnil, return first such element." |
5119 | 181 (while (and list (not (funcall func (car list)))) |
182 (setq list (cdr list))) | |
183 (car list)) | |
184 | |
185 (defun shadow-remove-if (func list) | |
186 "Remove elements satisfying FUNC from LIST. | |
187 Nondestructive; actually returns a copy of the list with the elements removed." | |
188 (if list | |
189 (if (funcall func (car list)) | |
190 (shadow-remove-if func (cdr list)) | |
191 (cons (car list) (shadow-remove-if func (cdr list)))) | |
192 nil)) | |
193 | |
194 (defun shadow-join (strings sep) | |
195 "Concatenate elements of the list of STRINGS with SEP between each." | |
196 (cond ((null strings) "") | |
197 ((null (cdr strings)) (car strings)) | |
198 ((concat (car strings) " " (shadow-join (cdr strings) sep))))) | |
199 | |
200 (defun shadow-regexp-superquote (string) | |
36041 | 201 "Like `regexp-quote', but includes the ^ and $. |
202 This makes sure regexp matches nothing but STRING." | |
5119 | 203 (concat "^" (regexp-quote string) "$")) |
204 | |
205 (defun shadow-suffix (prefix string) | |
206 "If PREFIX begins STRING, return the rest. | |
207 Return value is nonnil if PREFIX and STRING are string= up to the length of | |
208 PREFIX." | |
209 (let ((lp (length prefix)) | |
210 (ls (length string))) | |
211 (if (and (>= ls lp) | |
212 (string= prefix (substring string 0 lp))) | |
213 (substring string lp)))) | |
214 | |
215 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
216 ;;; Clusters and sites | |
217 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
218 | |
219 ;;; I use the term `site' to refer to a string which may be the name of a | |
220 ;;; cluster or a literal hostname. All user-level commands should accept | |
221 ;;; either. | |
222 | |
223 (defun shadow-make-cluster (name primary regexp) | |
36041 | 224 "Create a shadow cluster. |
225 It is called NAME, uses the PRIMARY hostname and REGEXP matching all | |
226 hosts in the cluster. The variable `shadow-clusters' associates the | |
227 names of clusters to these structures. This function is for program | |
228 use: to create clusters interactively, use `shadow-define-cluster' | |
229 instead." | |
5119 | 230 (list name primary regexp)) |
231 | |
232 (defmacro shadow-cluster-name (cluster) | |
233 "Return the name of the CLUSTER." | |
234 (list 'elt cluster 0)) | |
235 | |
236 (defmacro shadow-cluster-primary (cluster) | |
237 "Return the primary hostname of a CLUSTER." | |
238 (list 'elt cluster 1)) | |
239 | |
240 (defmacro shadow-cluster-regexp (cluster) | |
241 "Return the regexp matching hosts in a CLUSTER." | |
242 (list 'elt cluster 2)) | |
243 | |
244 (defun shadow-set-cluster (name primary regexp) | |
36041 | 245 "Put cluster NAME on the list of clusters. |
246 Replace old definition, if any. PRIMARY and REGEXP are the | |
5119 | 247 information defining the cluster. For interactive use, call |
36041 | 248 `shadow-define-cluster' instead." |
5119 | 249 (let ((rest (shadow-remove-if |
250 (function (lambda (x) (equal name (car x)))) | |
251 shadow-clusters))) | |
36041 | 252 (setq shadow-clusters |
5119 | 253 (cons (shadow-make-cluster name primary regexp) |
254 rest)))) | |
255 | |
256 (defmacro shadow-get-cluster (name) | |
257 "Return cluster named NAME, or nil." | |
258 (list 'assoc name 'shadow-clusters)) | |
259 | |
260 (defun shadow-site-primary (site) | |
261 "If SITE is a cluster, return primary host, otherwise return SITE." | |
262 (let ((c (shadow-get-cluster site))) | |
263 (if c | |
264 (shadow-cluster-primary c) | |
265 site))) | |
266 | |
267 ;;; SITES | |
268 | |
269 (defun shadow-site-cluster (site) | |
36041 | 270 "Given a SITE \(hostname or cluster name), return cluster it is in, or nil." |
5119 | 271 (or (assoc site shadow-clusters) |
272 (shadow-find | |
273 (function (lambda (x) | |
274 (string-match (shadow-cluster-regexp x) | |
275 site))) | |
276 shadow-clusters))) | |
277 | |
278 (defun shadow-read-site () | |
279 "Read a cluster name or hostname from the minibuffer." | |
280 (let ((ans (completing-read "Host or cluster name [RET when done]: " | |
281 shadow-clusters))) | |
282 (if (equal "" ans) | |
283 nil | |
284 ans))) | |
285 | |
286 (defun shadow-site-match (site1 site2) | |
36041 | 287 "Nonnil iff SITE1 is or includes SITE2. |
5119 | 288 Each may be a host or cluster name; if they are clusters, regexp of site1 will |
289 be matched against the primary of site2." | |
290 (or (string-equal site1 site2) ; quick check | |
291 (let* ((cluster1 (shadow-get-cluster site1)) | |
292 (primary2 (shadow-site-primary site2))) | |
293 (if cluster1 | |
294 (string-match (shadow-cluster-regexp cluster1) primary2) | |
295 (string-equal site1 primary2))))) | |
296 | |
297 (defun shadow-get-user (site) | |
36041 | 298 "Return the default username for a SITE." |
5119 | 299 (ange-ftp-get-user (shadow-site-primary site))) |
300 | |
301 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
302 ;;; Filename manipulation | |
303 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
304 | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
305 (defun shadow-parse-fullname (fullname) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
306 "Parse FULLNAME into \(site user path) list. |
36041 | 307 Leave it alone if it already is one. Returns nil if the argument is |
308 not a full ange-ftp pathname." | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
309 (if (listp fullname) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
310 fullname |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
311 (ange-ftp-ftp-name fullname))) |
5119 | 312 |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
313 (defun shadow-parse-name (name) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
314 "Parse any NAME into \(site user name) list. |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
315 Argument can be a simple name, full ange-ftp name, or already a hup list." |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
316 (or (shadow-parse-fullname name) |
5119 | 317 (list shadow-system-name |
318 (user-login-name) | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
319 name))) |
5119 | 320 |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
321 (defsubst shadow-make-fullname (host user name) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
322 "Make an ange-ftp style fullname out of HOST, USER (optional), and NAME. |
5119 | 323 This is probably not as general as it ought to be." |
36041 | 324 (concat "/" |
5119 | 325 (if user (concat user "@")) |
326 host ":" | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
327 name)) |
5119 | 328 |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
329 (defun shadow-replace-name-component (fullname newname) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
330 "Return FULLNAME with the name component changed to NEWNAME." |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
331 (let ((hup (shadow-parse-fullname fullname))) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
332 (shadow-make-fullname (nth 0 hup) (nth 1 hup) newname))) |
5119 | 333 |
334 (defun shadow-local-file (file) | |
36041 | 335 "If FILE is at this site, remove /user@host part. |
336 If refers to a different system or a different user on this system, | |
337 return nil." | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
338 (let ((hup (shadow-parse-fullname file))) |
5119 | 339 (cond ((null hup) file) |
340 ((and (shadow-site-match (nth 0 hup) shadow-system-name) | |
341 (string-equal (nth 1 hup) (user-login-name))) | |
342 (nth 2 hup)) | |
343 (t nil)))) | |
344 | |
345 (defun shadow-expand-cluster-in-file-name (file) | |
36041 | 346 "If hostname part of FILE is a cluster, expand it to cluster's primary hostname. |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
347 Will return the name bare if it is a local file." |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
348 (let ((hup (shadow-parse-name file)) |
5119 | 349 cluster) |
350 (cond ((null hup) file) | |
351 ((shadow-local-file hup)) | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
352 ((shadow-make-fullname (shadow-site-primary (nth 0 hup)) |
5119 | 353 (nth 1 hup) |
354 (nth 2 hup)))))) | |
355 | |
356 (defun shadow-expand-file-name (file &optional default) | |
357 "Expand file name and get file's true name." | |
358 (file-truename (expand-file-name file default))) | |
359 | |
360 (defun shadow-contract-file-name (file) | |
36041 | 361 "Simplify FILE. |
362 Do so by replacing (when possible) home directory with ~, and hostname | |
363 with cluster name that includes it. Filename should be absolute and | |
364 true." | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
365 (let* ((hup (shadow-parse-name file)) |
5119 | 366 (homedir (if (shadow-local-file hup) |
367 shadow-homedir | |
368 (file-name-as-directory | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
369 (nth 2 (shadow-parse-fullname |
5119 | 370 (expand-file-name |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
371 (shadow-make-fullname |
5119 | 372 (nth 0 hup) (nth 1 hup) "~"))))))) |
373 (suffix (shadow-suffix homedir (nth 2 hup))) | |
374 (cluster (shadow-site-cluster (nth 0 hup)))) | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
375 (shadow-make-fullname |
5119 | 376 (if cluster |
377 (shadow-cluster-name cluster) | |
378 (nth 0 hup)) | |
379 (nth 1 hup) | |
36041 | 380 (if suffix |
5119 | 381 (concat "~/" suffix) |
382 (nth 2 hup))))) | |
383 | |
384 (defun shadow-same-site (pattern file) | |
385 "True if the site of PATTERN and of FILE are on the same site. | |
386 If usernames are supplied, they must also match exactly. PATTERN and FILE may | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
387 be lists of host, user, name, or ange-ftp file names. FILE may also be just a |
5119 | 388 local filename." |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
389 (let ((pattern-sup (shadow-parse-fullname pattern)) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
390 (file-sup (shadow-parse-name file))) |
5119 | 391 (and |
392 (shadow-site-match (nth 0 pattern-sup) (nth 0 file-sup)) | |
393 (or (null (nth 1 pattern-sup)) | |
394 (string-equal (nth 1 pattern-sup) (nth 1 file-sup)))))) | |
395 | |
396 (defun shadow-file-match (pattern file &optional regexp) | |
36041 | 397 "Return t if PATTERN matches FILE. |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
398 If REGEXP is supplied and non-nil, the file part of the pattern is a regular |
5119 | 399 expression, otherwise it must match exactly. The sites and usernames must |
400 match---see shadow-same-site. The pattern must be in full ange-ftp format, but | |
401 the file can be any valid filename. This function does not do any filename | |
402 expansion or contraction, you must do that yourself first." | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
403 (let* ((pattern-sup (shadow-parse-fullname pattern)) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
404 (file-sup (shadow-parse-name file))) |
5119 | 405 (and (shadow-same-site pattern-sup file-sup) |
36041 | 406 (if regexp |
5119 | 407 (string-match (nth 2 pattern-sup) (nth 2 file-sup)) |
408 (string-equal (nth 2 pattern-sup) (nth 2 file-sup)))))) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43971
diff
changeset
|
409 |
5119 | 410 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
411 ;;; User-level Commands | |
412 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
413 | |
36041 | 414 ;;;###autoload |
5119 | 415 (defun shadow-define-cluster (name) |
36041 | 416 "Edit \(or create) the definition of a cluster NAME. |
5119 | 417 This is a group of hosts that share directories, so that copying to or from |
418 one of them is sufficient to update the file on all of them. Clusters are | |
419 defined by a name, the network address of a primary host \(the one we copy | |
420 files to), and a regular expression that matches the hostnames of all the sites | |
421 in the cluster." | |
422 (interactive (list (completing-read "Cluster name: " shadow-clusters () ()))) | |
423 (let* ((old (shadow-get-cluster name)) | |
424 (primary (read-string "Primary host: " | |
36041 | 425 (if old (shadow-cluster-primary old) |
5119 | 426 name))) |
427 (regexp (let (try-regexp) | |
428 (while (not | |
36041 | 429 (string-match |
5119 | 430 (setq try-regexp |
36041 | 431 (read-string |
5119 | 432 "Regexp matching all host names: " |
433 (if old (shadow-cluster-regexp old) | |
434 (shadow-regexp-superquote primary)))) | |
435 primary)) | |
436 (message "Regexp doesn't include the primary host!") | |
437 (sit-for 2)) | |
438 try-regexp)) | |
36041 | 439 ; (username (read-no-blanks-input |
440 ; (format "Username [default: %s]: " | |
5119 | 441 ; (shadow-get-user primary)) |
442 ; (if old (or (shadow-cluster-username old) "") | |
443 ; (user-login-name)))) | |
444 ) | |
445 ; (if (string-equal "" username) (setq username nil)) | |
446 (shadow-set-cluster name primary regexp))) | |
447 | |
36041 | 448 ;;;###autoload |
5119 | 449 (defun shadow-define-literal-group () |
450 "Declare a single file to be shared between sites. | |
451 It may have different filenames on each site. When this file is edited, the | |
452 new version will be copied to each of the other locations. Sites can be | |
36041 | 453 specific hostnames, or names of clusters \(see `shadow-define-cluster')." |
5119 | 454 (interactive) |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
455 (let* ((hup (shadow-parse-fullname |
5119 | 456 (shadow-contract-file-name (buffer-file-name)))) |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
457 (name (nth 2 hup)) |
5119 | 458 user site group) |
459 (while (setq site (shadow-read-site)) | |
460 (setq user (read-string (format "Username [default %s]: " | |
461 (shadow-get-user site))) | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
462 name (read-string "Filename: " name)) |
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
463 (setq group (cons (shadow-make-fullname site |
5119 | 464 (if (string-equal "" user) |
465 (shadow-get-user site) | |
466 user) | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
467 name) |
5119 | 468 group))) |
469 (setq shadow-literal-groups (cons group shadow-literal-groups))) | |
470 (shadow-write-info-file)) | |
471 | |
36041 | 472 ;;;###autoload |
5119 | 473 (defun shadow-define-regexp-group () |
474 "Make each of a group of files be shared between hosts. | |
475 Prompts for regular expression; files matching this are shared between a list | |
36041 | 476 of sites, which are also prompted for. The filenames must be identical on all |
5119 | 477 hosts \(if they aren't, use shadow-define-group instead of this function). |
478 Each site can be either a hostname or the name of a cluster \(see | |
36041 | 479 `shadow-define-cluster')." |
5119 | 480 (interactive) |
36041 | 481 (let ((regexp (read-string |
482 "Filename regexp: " | |
5119 | 483 (if (buffer-file-name) |
484 (shadow-regexp-superquote | |
485 (nth 2 | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
486 (shadow-parse-name |
5119 | 487 (shadow-contract-file-name |
488 (buffer-file-name)))))))) | |
489 site sites usernames) | |
490 (while (setq site (shadow-read-site)) | |
491 (setq sites (cons site sites)) | |
36041 | 492 (setq usernames |
5119 | 493 (cons (read-string (format "Username for %s: " site) |
494 (shadow-get-user site)) | |
495 usernames))) | |
36041 | 496 (setq shadow-regexp-groups |
5119 | 497 (cons (shadow-make-group regexp sites usernames) |
498 shadow-regexp-groups)) | |
499 (shadow-write-info-file))) | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43971
diff
changeset
|
500 |
5119 | 501 (defun shadow-shadows () |
502 ;; Mostly for debugging. | |
503 "Interactive function to display shadows of a buffer." | |
504 (interactive) | |
505 (let ((msg (shadow-join (mapcar (function cdr) | |
506 (shadow-shadows-of (buffer-file-name))) | |
507 " "))) | |
14349
96692e2ba103
(shadow-shadows, shadow-add-to-todo): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
508 (message "%s" |
36041 | 509 (if (zerop (length msg)) |
5119 | 510 "No shadows." |
511 msg)))) | |
512 | |
513 (defun shadow-copy-files (&optional arg) | |
514 "Copy all pending shadow files. | |
515 With prefix argument, copy all pending files without query. | |
36041 | 516 Pending copies are stored in variable `shadow-files-to-copy', and in |
517 `shadow-todo-file' if necessary. This function is invoked by | |
518 `shadow-save-buffers-kill-emacs', so it is not usually necessary to | |
5119 | 519 call it manually." |
520 (interactive "P") | |
57748
a5bb249b0f3b
(shadow-copy-files): Use interactive-p
Richard M. Stallman <rms@gnu.org>
parents:
57544
diff
changeset
|
521 (if (not shadow-files-to-copy) |
a5bb249b0f3b
(shadow-copy-files): Use interactive-p
Richard M. Stallman <rms@gnu.org>
parents:
57544
diff
changeset
|
522 (if (interactive-p) |
a5bb249b0f3b
(shadow-copy-files): Use interactive-p
Richard M. Stallman <rms@gnu.org>
parents:
57544
diff
changeset
|
523 (message "No files need to be shadowed.")) |
5119 | 524 (save-excursion |
525 (map-y-or-n-p (function | |
526 (lambda (pair) | |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
527 (or arg shadow-noquery |
5119 | 528 (format "Copy shadow file %s? " (cdr pair))))) |
529 (function shadow-copy-file) | |
530 shadow-files-to-copy | |
531 '("shadow" "shadows" "copy")) | |
532 (shadow-write-todo-file t)))) | |
533 | |
534 (defun shadow-cancel () | |
535 "Cancel the instruction to copy some files. | |
536 Prompts for which copy operations to cancel. You will not be asked to copy | |
537 them again, unless you make more changes to the files. To cancel a shadow | |
36041 | 538 permanently, remove the group from `shadow-literal-groups' or |
539 `shadow-regexp-groups'." | |
5119 | 540 (interactive) |
541 (map-y-or-n-p (function (lambda (pair) | |
36041 | 542 (format "Cancel copying %s to %s? " |
5119 | 543 (car pair) (cdr pair)))) |
36041 | 544 (function (lambda (pair) |
5119 | 545 (shadow-remove-from-todo pair))) |
546 shadow-files-to-copy | |
547 '("shadow" "shadows" "cancel copy")) | |
36041 | 548 (message "There are %d shadows to be updated." |
14349
96692e2ba103
(shadow-shadows, shadow-add-to-todo): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
549 (length shadow-files-to-copy)) |
5119 | 550 (shadow-write-todo-file)) |
551 | |
552 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
553 ;;; Internal functions | |
554 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
555 | |
556 (defun shadow-make-group (regexp sites usernames) | |
36041 | 557 "Make a description of a file group--- |
5119 | 558 actually a list of regexp ange-ftp file names---from REGEXP \(name of file to |
559 be shadowed), list of SITES, and corresponding list of USERNAMES for each | |
560 site." | |
561 (if sites | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
562 (cons (shadow-make-fullname (car sites) (car usernames) regexp) |
5119 | 563 (shadow-make-group regexp (cdr sites) (cdr usernames))) |
564 nil)) | |
565 | |
566 (defun shadow-copy-file (s) | |
567 "Copy one shadow file." | |
36041 | 568 (let* ((buffer |
569 (cond ((get-file-buffer | |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
570 (abbreviate-file-name (shadow-expand-file-name (car s))))) |
5119 | 571 ((not (file-readable-p (car s))) |
572 (if (y-or-n-p | |
36041 | 573 (format "Cannot find file %s--cancel copy request? " |
5119 | 574 (car s))) |
575 (shadow-remove-from-todo s)) | |
576 nil) | |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
577 ((or (eq t shadow-noquery) |
36041 | 578 (y-or-n-p |
579 (format "No buffer for %s -- update shadow anyway? " | |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
580 (car s)))) |
5119 | 581 (find-file-noselect (car s))))) |
582 (to (shadow-expand-cluster-in-file-name (cdr s)))) | |
27685 | 583 (when buffer |
5119 | 584 (set-buffer buffer) |
585 (save-restriction | |
586 (widen) | |
36041 | 587 (condition-case i |
5119 | 588 (progn |
589 (write-region (point-min) (point-max) to) | |
590 (shadow-remove-from-todo s)) | |
14349
96692e2ba103
(shadow-shadows, shadow-add-to-todo): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
591 (error (message "Shadow %s not updated!" (cdr s)))))))) |
5119 | 592 |
593 (defun shadow-shadows-of (file) | |
36041 | 594 "Return copy operations needed to update FILE. |
595 Filename should have clusters expanded, but otherwise can have any format. | |
5119 | 596 Return value is a list of dotted pairs like \(from . to), where from |
597 and to are absolute file names." | |
598 (or (symbol-value (intern-soft file shadow-hashtable)) | |
599 (let* ((absolute-file (shadow-expand-file-name | |
600 (or (shadow-local-file file) file) | |
601 shadow-homedir)) | |
602 (canonical-file (shadow-contract-file-name absolute-file)) | |
36041 | 603 (shadows |
5119 | 604 (mapcar (function (lambda (shadow) |
605 (cons absolute-file shadow))) | |
606 (append | |
607 (shadow-shadows-of-1 | |
608 canonical-file shadow-literal-groups nil) | |
609 (shadow-shadows-of-1 | |
610 canonical-file shadow-regexp-groups t))))) | |
611 (set (intern file shadow-hashtable) shadows)))) | |
612 | |
613 (defun shadow-shadows-of-1 (file groups regexp) | |
36041 | 614 "Return list of FILE's shadows in GROUPS. |
615 Consider them as regular expressions if third arg REGEXP is true." | |
5119 | 616 (if groups |
617 (let ((nonmatching | |
36041 | 618 (shadow-remove-if |
5119 | 619 (function (lambda (x) (shadow-file-match x file regexp))) |
620 (car groups)))) | |
621 (append (cond ((equal nonmatching (car groups)) nil) | |
36041 | 622 (regexp |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
623 (let ((realname (nth 2 (shadow-parse-fullname file)))) |
36041 | 624 (mapcar |
625 (function | |
626 (lambda (x) | |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
627 (shadow-replace-name-component x realname))) |
5119 | 628 nonmatching))) |
629 (t nonmatching)) | |
630 (shadow-shadows-of-1 file (cdr groups) regexp))))) | |
631 | |
632 (defun shadow-add-to-todo () | |
36041 | 633 "If current buffer has shadows, add them to the list needing to be copied." |
634 (let ((shadows (shadow-shadows-of | |
635 (shadow-expand-file-name | |
5119 | 636 (buffer-file-name (current-buffer)))))) |
27685 | 637 (when shadows |
5119 | 638 (setq shadow-files-to-copy |
639 (shadow-union shadows shadow-files-to-copy)) | |
27685 | 640 (when (not shadow-inhibit-message) |
14349
96692e2ba103
(shadow-shadows, shadow-add-to-todo): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
641 (message "%s" (substitute-command-keys |
96692e2ba103
(shadow-shadows, shadow-add-to-todo): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
642 "Use \\[shadow-copy-files] to update shadows.")) |
5119 | 643 (sit-for 1)) |
644 (shadow-write-todo-file))) | |
645 nil) ; Return nil for write-file-hooks | |
646 | |
647 (defun shadow-remove-from-todo (pair) | |
36041 | 648 "Remove PAIR from `shadow-files-to-copy'. |
5119 | 649 PAIR must be (eq to) one of the elements of that list." |
36041 | 650 (setq shadow-files-to-copy |
5119 | 651 (shadow-remove-if (function (lambda (s) (eq s pair))) |
652 shadow-files-to-copy))) | |
653 | |
654 (defun shadow-read-files () | |
36041 | 655 "Visit and load `shadow-info-file' and `shadow-todo-file'. |
656 Thus restores shadowfile's state from your last Emacs session. | |
5119 | 657 Returns t unless files were locked; then returns nil." |
658 (interactive) | |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
659 (if (and (fboundp 'file-locked-p) |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
660 (or (stringp (file-locked-p shadow-info-file)) |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
661 (stringp (file-locked-p shadow-todo-file)))) |
5119 | 662 (progn |
663 (message "Shadowfile is running in another emacs; can't have two.") | |
664 (beep) | |
665 (sit-for 3) | |
666 nil) | |
667 (save-excursion | |
27685 | 668 (when shadow-info-file |
5119 | 669 (set-buffer (setq shadow-info-buffer |
670 (find-file-noselect shadow-info-file))) | |
27685 | 671 (when (and (not (buffer-modified-p)) |
672 (file-newer-than-file-p (make-auto-save-file-name) | |
673 shadow-info-file)) | |
5119 | 674 (erase-buffer) |
36041 | 675 (message "Data recovered from %s." |
5119 | 676 (car (insert-file-contents (make-auto-save-file-name)))) |
677 (sit-for 1)) | |
678 (eval-current-buffer)) | |
27685 | 679 (when shadow-todo-file |
36041 | 680 (set-buffer (setq shadow-todo-buffer |
5119 | 681 (find-file-noselect shadow-todo-file))) |
27685 | 682 (when (and (not (buffer-modified-p)) |
683 (file-newer-than-file-p (make-auto-save-file-name) | |
684 shadow-todo-file)) | |
5119 | 685 (erase-buffer) |
36041 | 686 (message "Data recovered from %s." |
5119 | 687 (car (insert-file-contents (make-auto-save-file-name)))) |
688 (sit-for 1)) | |
689 (eval-current-buffer nil)) | |
690 (shadow-invalidate-hashtable)) | |
691 t)) | |
692 | |
693 (defun shadow-write-info-file () | |
36041 | 694 "Write out information to `shadow-info-file'. |
695 Also clear `shadow-hashtable', since when there are new shadows | |
696 defined, the old hashtable info is invalid." | |
5119 | 697 (shadow-invalidate-hashtable) |
698 (if shadow-info-file | |
699 (save-excursion | |
700 (if (not shadow-info-buffer) | |
701 (setq shadow-info-buffer (find-file-noselect shadow-info-file))) | |
702 (set-buffer shadow-info-buffer) | |
703 (delete-region (point-min) (point-max)) | |
704 (shadow-insert-var 'shadow-clusters) | |
705 (shadow-insert-var 'shadow-literal-groups) | |
706 (shadow-insert-var 'shadow-regexp-groups)))) | |
707 | |
708 (defun shadow-write-todo-file (&optional save) | |
36041 | 709 "Write out information to shadow-todo-file. |
5119 | 710 With nonnil argument also saves the buffer." |
711 (save-excursion | |
712 (if (not shadow-todo-buffer) | |
713 (setq shadow-todo-buffer (find-file-noselect shadow-todo-file))) | |
714 (set-buffer shadow-todo-buffer) | |
715 (delete-region (point-min) (point-max)) | |
716 (shadow-insert-var 'shadow-files-to-copy) | |
717 (if save (shadow-save-todo-file)))) | |
718 | |
719 (defun shadow-save-todo-file () | |
720 (if (and shadow-todo-buffer (buffer-modified-p shadow-todo-buffer)) | |
721 (save-excursion | |
722 (set-buffer shadow-todo-buffer) | |
36041 | 723 (condition-case nil ; have to continue even in case of |
5119 | 724 (basic-save-buffer) ; error, otherwise kill-emacs might |
725 (error ; not work! | |
726 (message "WARNING: Can't save shadow todo file; it is locked!") | |
727 (sit-for 1)))))) | |
728 | |
729 (defun shadow-invalidate-hashtable () | |
730 (setq shadow-hashtable (make-vector 37 0))) | |
731 | |
732 (defun shadow-insert-var (variable) | |
733 "Prettily insert a setq command for VARIABLE. | |
734 which, when later evaluated, will restore it to its current setting. | |
735 SYMBOL must be the name of a variable whose value is a list." | |
736 (let ((standard-output (current-buffer))) | |
737 (insert (format "(setq %s" variable)) | |
738 (cond ((consp (eval variable)) | |
36041 | 739 (insert "\n '(") |
5119 | 740 (prin1 (car (eval variable))) |
741 (let ((rest (cdr (eval variable)))) | |
742 (while rest | |
743 (insert "\n ") | |
744 (prin1 (car rest)) | |
745 (setq rest (cdr rest))) | |
746 (insert "))\n\n"))) | |
747 (t (insert " ") | |
748 (prin1 (eval variable)) | |
749 (insert ")\n\n"))))) | |
750 | |
751 (defun shadow-save-buffers-kill-emacs (&optional arg) | |
752 "Offer to save each buffer and copy shadows, then kill this Emacs process. | |
753 With prefix arg, silently save all file-visiting buffers, then kill. | |
754 | |
755 Extended by shadowfile to automatically save `shadow-todo-file' and | |
756 look for files that have been changed and need to be copied to other systems." | |
757 ;; This function is necessary because we need to get control and save | |
758 ;; the todo file /after/ saving other files, but /before/ the warning | |
759 ;; message about unsaved buffers (because it can get modified by the | |
760 ;; action of saving other buffers). `kill-emacs-hook' is no good | |
761 ;; because it is not called at the correct time, and also because it is | |
762 ;; called when the terminal is disconnected and we cannot ask whether | |
763 ;; to copy files. | |
764 (interactive "P") | |
765 (shadow-save-todo-file) | |
766 (save-some-buffers arg t) | |
767 (shadow-copy-files) | |
768 (shadow-save-todo-file) | |
769 (and (or (not (memq t (mapcar (function | |
770 (lambda (buf) (and (buffer-file-name buf) | |
771 (buffer-modified-p buf)))) | |
772 (buffer-list)))) | |
773 (yes-or-no-p "Modified buffers exist; exit anyway? ")) | |
774 (or (not (fboundp 'process-list)) | |
775 ;; process-list is not defined on VMS. | |
776 (let ((processes (process-list)) | |
777 active) | |
778 (while processes | |
43971 | 779 (and (memq (process-status (car processes)) '(run stop open listen)) |
780 (process-query-on-exit-flag (car processes)) | |
5119 | 781 (setq active t)) |
782 (setq processes (cdr processes))) | |
783 (or (not active) | |
784 (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))) | |
785 (kill-emacs))) | |
786 | |
787 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
36041 | 788 ;;; Lucid Emacs compatibility |
5119 | 789 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
790 | |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
791 ;; This is on hold until someone tells me about a working version of |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
792 ;; map-ynp for Lucid Emacs. |
5119 | 793 |
27685 | 794 ;(when (string-match "Lucid" emacs-version) |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
795 ; (require 'symlink-fix) |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
796 ; (require 'ange-ftp) |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
797 ; (require 'map-ynp) |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
798 ; (if (not (fboundp 'file-truename)) |
36041 | 799 ; (fset 'shadow-expand-file-name |
5288
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
800 ; (symbol-function 'symlink-expand-file-name))) |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
801 ; (if (not (fboundp 'ange-ftp-ftp-name)) |
c32c5d1aa89d
(shadow-noquery): Use it.
Richard M. Stallman <rms@gnu.org>
parents:
5119
diff
changeset
|
802 ; (fset 'ange-ftp-ftp-name |
50426
23d82f089582
(shadow-parse-fullname): Renamed from shadow-parse-fullpath.
Richard M. Stallman <rms@gnu.org>
parents:
49597
diff
changeset
|
803 ; (symbol-function 'ange-ftp-ftp-name)))) |
5119 | 804 |
805 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
806 ;;; Hook us up | |
807 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
808 | |
36041 | 809 ;;;###autoload |
5119 | 810 (defun shadow-initialize () |
36041 | 811 "Set up file shadowing." |
812 (interactive) | |
5119 | 813 (if (null shadow-homedir) |
814 (setq shadow-homedir | |
815 (file-name-as-directory (shadow-expand-file-name "~")))) | |
816 (if (null shadow-info-file) | |
36041 | 817 (setq shadow-info-file |
5119 | 818 (shadow-expand-file-name "~/.shadows"))) |
819 (if (null shadow-todo-file) | |
36041 | 820 (setq shadow-todo-file |
5119 | 821 (shadow-expand-file-name "~/.shadow_todo"))) |
822 (if (not (shadow-read-files)) | |
823 (progn | |
824 (message "Shadowfile information files not found - aborting") | |
825 (beep) | |
826 (sit-for 3)) | |
27685 | 827 (when (and (not shadow-inhibit-overload) |
828 (not (fboundp 'shadow-orig-save-buffers-kill-emacs))) | |
36041 | 829 (defalias 'shadow-orig-save-buffers-kill-emacs |
830 (symbol-function 'save-buffers-kill-emacs)) | |
831 (defalias 'save-buffers-kill-emacs 'shadow-save-buffers-kill-emacs)) | |
5119 | 832 (add-hook 'write-file-hooks 'shadow-add-to-todo) |
833 (define-key ctl-x-4-map "s" 'shadow-copy-files))) | |
834 | |
36041 | 835 (defun shadowfile-unload-hook () |
836 (if (fboundp 'shadow-orig-save-buffers-kill-emacs) | |
837 (fset 'save-buffers-kill-emacs | |
838 (symbol-function 'shadow-orig-save-buffers-kill-emacs))) | |
839 (remove-hook 'write-file-hooks 'shadow-add-to-todo)) | |
840 | |
57544
9eb4eed0a14c
(shadowfile-unload-hook): Set as variable w/ add-hook.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
841 (add-hook 'shadowfile-unload-hook 'shadowfile-unload-hook) |
9eb4eed0a14c
(shadowfile-unload-hook): Set as variable w/ add-hook.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
842 |
36041 | 843 (provide 'shadowfile) |
844 | |
52401 | 845 ;;; arch-tag: e2f4cdd7-2bab-4def-9130-9e69b412b79e |
5119 | 846 ;;; shadowfile.el ends here |