]> code.delx.au - gnu-emacs/blob - lisp/autorevert.el
(change-log-mode-map): Add a menu.
[gnu-emacs] / lisp / autorevert.el
1 ;;; autorevert.el --- revert buffers when files on disk change
2
3 ;; Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
5
6 ;; Author: Anders Lindgren <andersl@andersl.com>
7 ;; Keywords: convenience
8 ;; Created: 1997-06-01
9 ;; Date: 1999-11-30
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;; Introduction:
29 ;;
30 ;; Whenever a file that Emacs is editing has been changed by another
31 ;; program the user normally has to execute the command `revert-buffer'
32 ;; to load the new content of the file into Emacs.
33 ;;
34 ;; This package contains two minor modes: Global Auto-Revert Mode and
35 ;; Auto-Revert Mode. Both modes automatically revert buffers
36 ;; whenever the corresponding files have been changed on disk and the
37 ;; buffer contains no unsaved changes.
38 ;;
39 ;; Auto-Revert Mode can be activated for individual buffers. Global
40 ;; Auto-Revert Mode applies to all file buffers. (If the user option
41 ;; `global-auto-revert-non-file-buffers' is non-nil, it also applies
42 ;; to some non-file buffers. This option is disabled by default.)
43 ;; Since checking a remote file is too slow, these modes do not check
44 ;; or revert remote files.
45 ;;
46 ;; Both modes operate by checking the time stamp of all files at
47 ;; intervals of `auto-revert-interval'. The default is every five
48 ;; seconds. The check is aborted whenever the user actually uses
49 ;; Emacs. You should never even notice that this package is active
50 ;; (except that your buffers will be reverted, of course).
51 ;;
52 ;; After reverting a file buffer, Auto Revert Mode normally puts point
53 ;; at the same position that a regular manual revert would. However,
54 ;; there is one exception to this rule. If point is at the end of the
55 ;; buffer before reverting, it stays at the end. Similarly if point
56 ;; is displayed at the end of a file buffer in any window, it will stay
57 ;; at the end of the buffer in that window, even if the window is not
58 ;; selected. This way, you can use Auto Revert Mode to `tail' a file.
59 ;; Just put point at the end of the buffer and it will stay there.
60 ;; These rules apply to file buffers. For non-file buffers, the
61 ;; behavior may be mode dependent.
62 ;;
63 ;; While you can use Auto Revert Mode to tail a file, this package
64 ;; contains a third minor mode, Auto Revert Tail Mode, which does so
65 ;; more efficiently, as long as you are sure that the file will only
66 ;; change by growing at the end. It only appends the new output,
67 ;; instead of reverting the entire buffer. It does so even if the
68 ;; buffer contains unsaved changes. (Because they will not be lost.)
69
70 ;; Usage:
71 ;;
72 ;; Go to the appropriate buffer and press either of:
73 ;; M-x auto-revert-mode RET
74 ;; M-x auto-revert-tail-mode RET
75 ;;
76 ;; To activate Global Auto-Revert Mode, press:
77 ;; M-x global-auto-revert-mode RET
78 ;;
79 ;; To activate Global Auto-Revert Mode every time Emacs is started
80 ;; customise the option `global-auto-revert-mode' or the following
81 ;; line could be added to your ~/.emacs:
82 ;; (global-auto-revert-mode 1)
83 ;;
84 ;; The function `turn-on-auto-revert-mode' could be added to any major
85 ;; mode hook to activate Auto-Revert Mode for all buffers in that
86 ;; mode. For example, the following line will activate Auto-Revert
87 ;; Mode in all C mode buffers:
88 ;;
89 ;; (add-hook 'c-mode-hook 'turn-on-auto-revert-mode)
90
91 ;;; Code:
92
93 ;; Dependencies:
94
95 (require 'timer)
96
97 (eval-when-compile (require 'cl))
98
99
100 ;; Custom Group:
101 ;;
102 ;; The two modes will be placed next to Auto Save Mode under the
103 ;; Files group under Emacs.
104
105 (defgroup auto-revert nil
106 "Revert individual buffers when files on disk change.
107
108 Auto-Revert Mode can be activated for individual buffer.
109 Global Auto-Revert Mode applies to all buffers."
110 :group 'files
111 :group 'convenience)
112
113
114 ;; Variables:
115
116 ;;; What's this?: ;; Autoload for the benefit of `make-mode-line-mouse-sensitive'.
117 ;;; What's this?: ;;;###autoload
118 (defvar auto-revert-mode nil
119 "*Non-nil when Auto-Revert Mode is active.
120 Never set this variable directly, use the command `auto-revert-mode' instead.")
121 (put 'auto-revert-mode 'permanent-local t)
122
123 (defvar auto-revert-tail-mode nil
124 "*Non-nil when Auto-Revert Tail Mode is active.
125 Never set this variable directly, use the command
126 `auto-revert-tail-mode' instead.")
127 (put 'auto-revert-tail-mode 'permanent-local t)
128
129 (defvar auto-revert-timer nil
130 "Timer used by Auto-Revert Mode.")
131
132 (defcustom auto-revert-interval 5
133 "Time, in seconds, between Auto-Revert Mode file checks.
134 The value may be an integer or floating point number.
135
136 If a timer is already active, there are two ways to make sure
137 that the new value will take effect immediately. You can set
138 this variable through Custom or you can call the command
139 `auto-revert-set-timer' after setting the variable. Otherwise,
140 the new value will take effect the first time Auto Revert Mode
141 calls `auto-revert-set-timer' for internal reasons or in your
142 next editing session."
143 :group 'auto-revert
144 :type 'number
145 :set (lambda (variable value)
146 (set-default variable value)
147 (and (boundp 'auto-revert-timer)
148 auto-revert-timer
149 (auto-revert-set-timer))))
150
151 (defcustom auto-revert-stop-on-user-input t
152 "When non-nil, user input temporarily interrupts Auto-Revert Mode.
153 With this setting, Auto-Revert Mode checks for user input after
154 handling each buffer and does not process any further buffers
155 \(until the next run of the timer) if user input is available.
156 When nil, Auto-Revert Mode checks files and reverts buffers,
157 with quitting disabled, without paying attention to user input.
158 Thus, with this setting, Emacs might be non-responsive at times."
159 :group 'auto-revert
160 :type 'boolean)
161
162 (defcustom auto-revert-verbose t
163 "When nil, Auto-Revert Mode does not generate any messages.
164 When non-nil, a message is generated whenever a file is reverted."
165 :group 'auto-revert
166 :type 'boolean)
167
168 (defcustom auto-revert-mode-text " ARev"
169 "String to display in the mode line when Auto-Revert Mode is active.
170
171 \(When the string is not empty, make sure that it has a leading space.)"
172 :tag "Auto Revert Mode Text" ; To separate it from `global-...'
173 :group 'auto-revert
174 :type 'string)
175
176 (defcustom auto-revert-tail-mode-text " Tail"
177 "String to display in the mode line when Auto-Revert Tail Mode is active.
178
179 \(When the string is not empty, make sure that it has a leading space.)"
180 :group 'auto-revert
181 :type 'string
182 :version "22.1")
183
184 (defcustom auto-revert-mode-hook nil
185 "Functions to run when Auto-Revert Mode is activated."
186 :tag "Auto Revert Mode Hook" ; To separate it from `global-...'
187 :group 'auto-revert
188 :type 'hook)
189
190 (defcustom global-auto-revert-mode-text ""
191 "String to display when Global Auto-Revert Mode is active.
192
193 The default is nothing since when this mode is active this text doesn't
194 vary over time, or between buffers. Hence mode line text
195 would only waste precious space."
196 :group 'auto-revert
197 :type 'string)
198
199 (defcustom global-auto-revert-mode-hook nil
200 "Hook called when Global Auto-Revert Mode is activated."
201 :group 'auto-revert
202 :type 'hook)
203
204 (defcustom global-auto-revert-non-file-buffers nil
205 "When nil, Global Auto-Revert mode operates only on file-visiting buffers.
206
207 When non-nil, both file buffers and buffers with a custom
208 `revert-buffer-function' and a `buffer-stale-function' are
209 reverted by Global Auto-Revert mode. These include the Buffer
210 List buffer displayed by `buffer-menu', and Dired buffers showing
211 complete local directories. The Buffer List buffer reverts every
212 `auto-revert-interval' seconds; Dired buffers when the file list of
213 the main directory changes. Dired buffers do not auto-revert as
214 a result of changes in subdirectories, or in the contents, size,
215 modes, etc., of files. You may still sometimes want to revert
216 them manually.
217
218 Use this option with care since it could lead to excessive auto-reverts.
219 For more information, see Info node `(emacs)Autorevert'."
220 :group 'auto-revert
221 :type 'boolean
222 :link '(info-link "(emacs)Autorevert"))
223
224 (defcustom global-auto-revert-ignore-modes ()
225 "List of major modes Global Auto-Revert Mode should not check."
226 :group 'auto-revert
227 :type '(repeat sexp))
228
229 (defcustom auto-revert-load-hook nil
230 "Functions to run when Auto-Revert Mode is first loaded."
231 :tag "Load Hook"
232 :group 'auto-revert
233 :type 'hook)
234
235 (defcustom auto-revert-check-vc-info nil
236 "If non-nil Auto Revert Mode reliably updates version control info.
237 Auto Revert Mode updates version control info whenever the buffer
238 needs reverting, regardless of the value of this variable.
239 However, the version control state can change without changes to
240 the work file. If the change is made from the current Emacs
241 session, all info is updated. But if, for instance, a new
242 version is checked in from outside the current Emacs session, the
243 version control number in the mode line, as well as other version
244 control related information, may not be properly updated. If you
245 are worried about this, set this variable to a non-nil value.
246
247 This currently works by automatically updating the version
248 control info every `auto-revert-interval' seconds. Nevertheless,
249 it should not cause excessive CPU usage on a reasonably fast
250 machine, if it does not apply to too many version controlled
251 buffers. CPU usage depends on the version control system."
252 :group 'auto-revert
253 :type 'boolean
254 :version "22.1")
255
256 (defvar global-auto-revert-ignore-buffer nil
257 "*When non-nil, Global Auto-Revert Mode will not revert this buffer.
258
259 This variable becomes buffer local when set in any fashion.")
260 (make-variable-buffer-local 'global-auto-revert-ignore-buffer)
261
262 ;; Internal variables:
263
264 (defvar auto-revert-buffer-list ()
265 "List of buffers in Auto-Revert Mode.
266
267 Note that only Auto-Revert Mode, never Global Auto-Revert Mode, adds
268 buffers to this list.
269
270 The timer function `auto-revert-buffers' is responsible for purging
271 the list of old buffers.")
272
273 (defvar auto-revert-remaining-buffers ()
274 "Buffers not checked when user input stopped execution.")
275
276 (defvar auto-revert-tail-pos 0
277 "Position of last known end of file.")
278
279 (add-hook 'find-file-hook
280 (lambda ()
281 (set (make-local-variable 'auto-revert-tail-pos)
282 (nth 7 (file-attributes buffer-file-name)))))
283
284 ;; Functions:
285
286 ;;;###autoload
287 (define-minor-mode auto-revert-mode
288 "Toggle reverting buffer when file on disk changes.
289
290 With arg, turn Auto Revert mode on if and only if arg is positive.
291 This is a minor mode that affects only the current buffer.
292 Use `global-auto-revert-mode' to automatically revert all buffers.
293 Use `auto-revert-tail-mode' if you know that the file will only grow
294 without being changed in the part that is already in the buffer."
295 :group 'auto-revert :lighter auto-revert-mode-text
296 (if auto-revert-mode
297 (if (not (memq (current-buffer) auto-revert-buffer-list))
298 (push (current-buffer) auto-revert-buffer-list))
299 (setq auto-revert-buffer-list
300 (delq (current-buffer) auto-revert-buffer-list)))
301 (auto-revert-set-timer)
302 (when auto-revert-mode
303 (auto-revert-buffers)
304 (setq auto-revert-tail-mode nil)))
305
306
307 ;;;###autoload
308 (defun turn-on-auto-revert-mode ()
309 "Turn on Auto-Revert Mode.
310
311 This function is designed to be added to hooks, for example:
312 (add-hook 'c-mode-hook 'turn-on-auto-revert-mode)"
313 (auto-revert-mode 1))
314
315
316 ;;;###autoload
317 (define-minor-mode auto-revert-tail-mode
318 "Toggle reverting tail of buffer when file on disk grows.
319 With arg, turn Tail mode on if arg is positive, otherwise turn it off.
320
321 When Tail mode is enabled, the tail of the file is constantly
322 followed, as with the shell command `tail -f'. This means that
323 whenever the file grows on disk (presumably because some
324 background process is appending to it from time to time), this is
325 reflected in the current buffer.
326
327 You can edit the buffer and turn this mode off and on again as
328 you please. But make sure the background process has stopped
329 writing before you save the file!
330
331 Use `auto-revert-mode' for changes other than appends!"
332 :group 'find-file :lighter auto-revert-tail-mode-text
333 (when auto-revert-tail-mode
334 (unless buffer-file-name
335 (auto-revert-tail-mode 0)
336 (error "This buffer is not visiting a file"))
337 (if (and (buffer-modified-p)
338 (zerop auto-revert-tail-pos) ; library was loaded only after finding file
339 (not (y-or-n-p "Buffer is modified, so tail offset may be wrong. Proceed? ")))
340 (auto-revert-tail-mode 0)
341 ;; a-r-tail-pos stores the size of the file at the time of the
342 ;; last revert. After this package loads, it adds a
343 ;; find-file-hook to set this variable every time a file is
344 ;; loaded. If the package is loaded only _after_ visiting the
345 ;; file to be reverted, then we have no idea what the value of
346 ;; a-r-tail-pos should have been when the file was visited. If
347 ;; the file has changed on disk in the meantime, all we can do
348 ;; is offer to revert the whole thing. If you choose not to
349 ;; revert, then you might miss some output then happened
350 ;; between visiting the file and activating a-r-t-mode.
351 (and (zerop auto-revert-tail-pos)
352 (not (verify-visited-file-modtime (current-buffer)))
353 (y-or-n-p "File changed on disk, content may be missing. \
354 Perform a full revert? ")
355 ;; Use this (not just revert-buffer) for point-preservation.
356 (auto-revert-handler))
357 ;; else we might reappend our own end when we save
358 (add-hook 'before-save-hook (lambda () (auto-revert-tail-mode 0)) nil t)
359 (or (local-variable-p 'auto-revert-tail-pos) ; don't lose prior position
360 (set (make-local-variable 'auto-revert-tail-pos)
361 (nth 7 (file-attributes buffer-file-name))))
362 ;; let auto-revert-mode set up the mechanism for us if it isn't already
363 (or auto-revert-mode
364 (let ((auto-revert-tail-mode t))
365 (auto-revert-mode 1)))
366 (setq auto-revert-mode nil))))
367
368
369 ;;;###autoload
370 (defun turn-on-auto-revert-tail-mode ()
371 "Turn on Auto-Revert Tail Mode.
372
373 This function is designed to be added to hooks, for example:
374 (add-hook 'my-logfile-mode-hook 'turn-on-auto-revert-tail-mode)"
375 (auto-revert-tail-mode 1))
376
377
378 ;;;###autoload
379 (define-minor-mode global-auto-revert-mode
380 "Toggle Global Auto Revert mode.
381 With optional prefix argument ARG, enable Global Auto Revert Mode
382 if ARG > 0, else disable it.
383
384 This is a global minor mode that reverts any buffer associated
385 with a file when the file changes on disk. Use `auto-revert-mode'
386 to revert a particular buffer.
387
388 If `global-auto-revert-non-file-buffers' is non-nil, this mode
389 may also revert some non-file buffers, as described in the
390 documentation of that variable. It ignores buffers with modes
391 matching `global-auto-revert-ignore-modes', and buffers with a
392 non-nil vale of `global-auto-revert-ignore-buffer'.
393
394 This function calls the hook `global-auto-revert-mode-hook'.
395 It displays the text that `global-auto-revert-mode-text'
396 specifies in the mode line."
397 :global t :group 'auto-revert :lighter global-auto-revert-mode-text
398 (auto-revert-set-timer)
399 (when global-auto-revert-mode
400 (auto-revert-buffers)))
401
402
403 (defun auto-revert-set-timer ()
404 "Restart or cancel the timer used by Auto-Revert Mode.
405 If such a timer is active, cancel it. Start a new timer if
406 Global Auto-Revert Mode is active or if Auto-Revert Mode is active
407 in some buffer. Restarting the timer ensures that Auto-Revert Mode
408 will use an up-to-date value of `auto-revert-interval'"
409 (interactive)
410 (if (timerp auto-revert-timer)
411 (cancel-timer auto-revert-timer))
412 (setq auto-revert-timer
413 (if (or global-auto-revert-mode auto-revert-buffer-list)
414 (run-with-timer auto-revert-interval
415 auto-revert-interval
416 'auto-revert-buffers))))
417
418 (defun auto-revert-active-p ()
419 "Check if auto-revert is active (in current buffer or globally)."
420 (or auto-revert-mode
421 auto-revert-tail-mode
422 (and
423 global-auto-revert-mode
424 (not global-auto-revert-ignore-buffer)
425 (not (memq major-mode
426 global-auto-revert-ignore-modes)))))
427
428 (defun auto-revert-handler ()
429 "Revert current buffer, if appropriate.
430 This is an internal function used by Auto-Revert Mode."
431 (when (or auto-revert-tail-mode (not (buffer-modified-p)))
432 (let* ((buffer (current-buffer)) size
433 (revert
434 (or (and buffer-file-name
435 (not (file-remote-p buffer-file-name))
436 (file-readable-p buffer-file-name)
437 (if auto-revert-tail-mode
438 (/= auto-revert-tail-pos
439 (setq size
440 (nth 7 (file-attributes buffer-file-name))))
441 (not (verify-visited-file-modtime buffer))))
442 (and (or auto-revert-mode
443 global-auto-revert-non-file-buffers)
444 revert-buffer-function
445 (boundp 'buffer-stale-function)
446 (functionp buffer-stale-function)
447 (funcall buffer-stale-function t))))
448 eob eoblist)
449 (when revert
450 (when (and auto-revert-verbose
451 (not (eq revert 'fast)))
452 (message "Reverting buffer `%s'." (buffer-name)))
453 ;; If point (or a window point) is at the end of the buffer,
454 ;; we want to keep it at the end after reverting. This allows
455 ;; to tail a file.
456 (when buffer-file-name
457 (setq eob (eobp))
458 (walk-windows
459 #'(lambda (window)
460 (and (eq (window-buffer window) buffer)
461 (= (window-point window) (point-max))
462 (push window eoblist)))
463 'no-mini t))
464 (if auto-revert-tail-mode
465 (auto-revert-tail-handler size)
466 ;; Bind buffer-read-only in case user has done C-x C-q,
467 ;; so as not to forget that. This gives undesirable results
468 ;; when the file's mode changes, but that is less common.
469 (let ((buffer-read-only buffer-read-only))
470 (revert-buffer 'ignore-auto 'dont-ask 'preserve-modes)))
471 (when buffer-file-name
472 (when eob (goto-char (point-max)))
473 (dolist (window eoblist)
474 (set-window-point window (point-max)))))
475 ;; `preserve-modes' avoids changing the (minor) modes. But we
476 ;; do want to reset the mode for VC, so we do it manually.
477 (when (or revert auto-revert-check-vc-info)
478 (vc-find-file-hook)))))
479
480 (defun auto-revert-tail-handler (size)
481 (let ((modified (buffer-modified-p))
482 (inhibit-read-only t) ; Ignore.
483 (file buffer-file-name)
484 (buffer-file-name nil)) ; Ignore that file has changed.
485 (when (/= auto-revert-tail-pos size)
486 (run-hooks 'before-revert-hook)
487 (undo-boundary)
488 (save-restriction
489 (widen)
490 (save-excursion
491 (goto-char (point-max))
492 (insert-file-contents file nil
493 (and (< auto-revert-tail-pos size)
494 auto-revert-tail-pos)
495 size)))
496 (run-hooks 'after-revert-hook)
497 (undo-boundary)
498 (setq auto-revert-tail-pos size)
499 (restore-buffer-modified-p modified)))
500 (set-visited-file-modtime))
501
502 (defun auto-revert-buffers ()
503 "Revert buffers as specified by Auto-Revert and Global Auto-Revert Mode.
504
505 Should `global-auto-revert-mode' be active all file buffers are checked.
506
507 Should `auto-revert-mode' be active in some buffers, those buffers
508 are checked.
509
510 Non-file buffers that have a custom `revert-buffer-function' and
511 a `buffer-stale-function' are reverted either when Auto-Revert
512 Mode is active in that buffer, or when the variable
513 `global-auto-revert-non-file-buffers' is non-nil and Global
514 Auto-Revert Mode is active.
515
516 This function stops whenever there is user input. The buffers not
517 checked are stored in the variable `auto-revert-remaining-buffers'.
518
519 To avoid starvation, the buffers in `auto-revert-remaining-buffers'
520 are checked first the next time this function is called.
521
522 This function is also responsible for removing buffers no longer in
523 Auto-Revert mode from `auto-revert-buffer-list', and for canceling
524 the timer when no buffers need to be checked."
525 (save-match-data
526 (let ((bufs (if global-auto-revert-mode
527 (buffer-list)
528 auto-revert-buffer-list))
529 (remaining ())
530 (new ()))
531 ;; Partition `bufs' into two halves depending on whether or not
532 ;; the buffers are in `auto-revert-remaining-buffers'. The two
533 ;; halves are then re-joined with the "remaining" buffers at the
534 ;; head of the list.
535 (dolist (buf auto-revert-remaining-buffers)
536 (if (memq buf bufs)
537 (push buf remaining)))
538 (dolist (buf bufs)
539 (if (not (memq buf remaining))
540 (push buf new)))
541 (setq bufs (nreverse (nconc new remaining)))
542 (while (and bufs
543 (not (and auto-revert-stop-on-user-input
544 (input-pending-p))))
545 (let ((buf (car bufs)))
546 (if (buffer-live-p buf)
547 (with-current-buffer buf
548 ;; Test if someone has turned off Auto-Revert Mode in a
549 ;; non-standard way, for example by changing major mode.
550 (if (and (not auto-revert-mode)
551 (not auto-revert-tail-mode)
552 (memq buf auto-revert-buffer-list))
553 (setq auto-revert-buffer-list
554 (delq buf auto-revert-buffer-list)))
555 (when (auto-revert-active-p) (auto-revert-handler)))
556 ;; Remove dead buffer from `auto-revert-buffer-list'.
557 (setq auto-revert-buffer-list
558 (delq buf auto-revert-buffer-list))))
559 (setq bufs (cdr bufs)))
560 (setq auto-revert-remaining-buffers bufs)
561 ;; Check if we should cancel the timer.
562 (when (and (not global-auto-revert-mode)
563 (null auto-revert-buffer-list))
564 (cancel-timer auto-revert-timer)
565 (setq auto-revert-timer nil)))))
566
567
568 ;; The end:
569 (provide 'autorevert)
570
571 (run-hooks 'auto-revert-load-hook)
572
573 ;; arch-tag: f6bcb07b-4841-477e-9e44-b18678e58876
574 ;;; autorevert.el ends here