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