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