1 ;;; autorevert.el --- revert buffers when files on disk change
3 ;; Copyright (C) 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
5 ;; Author: Anders Lindgren <andersl@andersl.com>
6 ;; Keywords: convenience
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
31 ;; Whenever a file that Emacs is editing has been changed by another
32 ;; program the user normally has to execute the command `revert-buffer'
33 ;; to load the new content of the file into Emacs.
35 ;; This package contains two minor modes: Global Auto-Revert Mode and
36 ;; Auto-Revert Mode. Both modes automatically revert buffers
37 ;; whenever the corresponding files have been changed on disk.
39 ;; Auto-Revert Mode can be activated for individual buffers.
40 ;; Global Auto-Revert Mode applies to all file buffers.
42 ;; Both modes operate by checking the time stamp of all files at
43 ;; intervals of `auto-revert-interval'. The default is every five
44 ;; seconds. The check is aborted whenever the user actually uses
45 ;; Emacs. You should never even notice that this package is active
46 ;; (except that your buffers will be reverted, of course).
50 ;; Go to the appropriate buffer and press:
51 ;; M-x auto-revert-mode RET
53 ;; To activate Global Auto-Revert Mode, press:
54 ;; M-x global-auto-revert-mode RET
56 ;; To activate Global Auto-Revert Mode every time Emacs is started
57 ;; customise the option `global-auto-revert-mode' or the following
58 ;; line could be added to your ~/.emacs:
59 ;; (global-auto-revert-mode 1)
61 ;; The function `turn-on-auto-revert-mode' could be added to any major
62 ;; mode hook to activate Auto-Revert Mode for all buffers in that
63 ;; mode. For example, the following line will activate Auto-Revert
64 ;; Mode in all C mode buffers:
66 ;; (add-hook 'c-mode-hook 'turn-on-auto-revert-mode)
73 (autoload 'dired-get-filename
"dired")
74 (autoload 'vc-workfile-version
"vc-hooks")
75 (autoload 'vc-mode-line
"vc-hooks")
78 (defvar dired-directory
)
85 ;; The two modes will be placed next to Auto Save Mode under the
86 ;; Files group under Emacs.
88 (defgroup auto-revert nil
89 "Revert individual buffers when files on disk change.
91 Auto-Revert Mode can be activated for individual buffer.
92 Global Auto-Revert Mode applies to all buffers."
99 ;; Autoload for the benefit of `make-mode-line-mouse-sensitive'.
101 (defvar auto-revert-mode nil
102 "*Non-nil when Auto-Revert Mode is active.
103 Never set this variable directly, use the command `auto-revert-mode' instead.")
104 (put 'auto-revert-mode
'permanent-local t
)
106 (defvar auto-revert-timer nil
107 "Timer used by Auto-Revert Mode.")
109 (defcustom auto-revert-interval
5
110 "Time, in seconds, between Auto-Revert Mode file checks.
111 The value may be an integer or floating point number.
113 If a timer is already active, there are two ways to make sure
114 that the new value will take effect immediately. You can set
115 this variable through Custom or you can call the command
116 `auto-revert-set-timer' after setting the variable. Otherwise,
117 the new value will take effect the first time Auto Revert Mode
118 calls `auto-revert-set-timer' for internal reasons or in your
119 next editing session."
122 :set
(lambda (variable value
)
123 (set-default variable value
)
124 (and (boundp 'auto-revert-timer
)
126 (auto-revert-set-timer))))
128 (defcustom auto-revert-stop-on-user-input t
129 "When non-nil Auto-Revert Mode stops checking files on user input."
133 (defcustom auto-revert-verbose t
134 "When nil, Auto-Revert Mode will not generate any messages.
136 Currently, messages are generated when the mode is activated or
137 deactivated, and whenever a file is reverted."
141 (defcustom auto-revert-mode-text
" ARev"
142 "String to display in the mode line when Auto-Revert Mode is active.
144 \(When the string is not empty, make sure that it has a leading space.)"
145 :tag
"Auto Revert Mode Text" ; To separate it from `global-...'
149 (defcustom auto-revert-mode-hook nil
150 "Functions to run when Auto-Revert Mode is activated."
151 :tag
"Auto Revert Mode Hook" ; To separate it from `global-...'
155 (defcustom global-auto-revert-mode-text
""
156 "String to display when Global Auto-Revert Mode is active.
158 The default is nothing since when this mode is active this text doesn't
159 vary over time, or between buffers. Hence mode line text
160 would only waste precious space."
164 (defcustom global-auto-revert-mode-hook nil
165 "Hook called when Global Auto-Revert Mode is activated."
169 (defcustom global-auto-revert-non-file-buffers nil
170 "When nil only file buffers are reverted by Global Auto-Revert Mode.
172 When non-nil, both file buffers and buffers with a custom
173 `revert-buffer-function' are reverted by Global Auto-Revert Mode.
175 Use this option with care since it could lead to excessive reverts.
176 Note also that for some non-file buffers the check whether the
177 buffer needs updating may be imperfect, due to efficiency
178 considerations, and may not take all information listed in the
179 buffer into account. Hence, a non-nil value for this option does
180 not necessarily make manual updates useless for non-file buffers."
184 (defcustom global-auto-revert-ignore-modes
'()
185 "List of major modes Global Auto-Revert Mode should not check."
187 :type
'(repeat sexp
))
189 (defcustom auto-revert-load-hook nil
190 "Functions to run when Auto-Revert Mode is first loaded."
195 (defvar global-auto-revert-ignore-buffer nil
196 "*When non-nil, Global Auto-Revert Mode will not revert this buffer.
198 This variable becomes buffer local when set in any fashion.")
199 (make-variable-buffer-local 'global-auto-revert-ignore-buffer
)
201 ;; Internal variables:
203 (defvar auto-revert-buffer-list
'()
204 "List of buffers in Auto-Revert Mode.
206 Note that only Auto-Revert Mode, never Global Auto-Revert Mode, adds
207 buffers to this list.
209 The timer function `auto-revert-buffers' is responsible for purging
210 the list of old buffers.")
212 (defvar auto-revert-remaining-buffers
'()
213 "Buffers not checked when user input stopped execution.")
219 (define-minor-mode auto-revert-mode
220 "Toggle reverting buffer when file on disk changes.
222 With arg, turn Auto Revert mode on if and only if arg is positive.
223 This is a minor mode that affects only the current buffer.
224 Use `global-auto-revert-mode' to automatically revert all buffers."
225 nil auto-revert-mode-text nil
227 (if (not (memq (current-buffer) auto-revert-buffer-list
))
228 (push (current-buffer) auto-revert-buffer-list
))
229 (setq auto-revert-buffer-list
230 (delq (current-buffer) auto-revert-buffer-list
)))
231 (auto-revert-set-timer)
232 (when auto-revert-mode
233 (auto-revert-buffers)))
237 (defun turn-on-auto-revert-mode ()
238 "Turn on Auto-Revert Mode.
240 This function is designed to be added to hooks, for example:
241 (add-hook 'c-mode-hook 'turn-on-auto-revert-mode)"
242 (auto-revert-mode 1))
246 (define-minor-mode global-auto-revert-mode
247 "Revert any buffer when file on disk change.
249 With arg, turn Auto Revert mode on globally if and only if arg is positive.
250 This is a minor mode that affects all buffers.
251 Use `auto-revert-mode' to revert a particular buffer."
252 :global t
:group
'auto-revert
:lighter global-auto-revert-mode-text
253 (auto-revert-set-timer)
254 (when global-auto-revert-mode
255 (auto-revert-buffers)))
258 (defun auto-revert-set-timer ()
259 "Restart or cancel the timer."
261 (if (timerp auto-revert-timer
)
262 (cancel-timer auto-revert-timer
))
263 (setq auto-revert-timer
264 (if (or global-auto-revert-mode auto-revert-buffer-list
)
265 (run-with-timer auto-revert-interval
267 'auto-revert-buffers
)
270 (defun auto-revert-active-p ()
271 "Check if auto-revert is active (in current buffer or globally)."
274 global-auto-revert-mode
275 (not global-auto-revert-ignore-buffer
)
276 (not (memq major-mode
277 global-auto-revert-ignore-modes
)))))
279 (defun auto-revert-vc-cvs-file-version (file)
280 "Get version of FILE by reading control file on disk."
281 (let* ((control "CVS/Entries")
282 (name (file-name-nondirectory file
))
283 (path (format "%s/%s"
284 (file-name-directory file
)
286 (when (file-exists-p path
)
288 (insert-file-contents-literally path
)
289 (goto-char (point-min))
290 (when (re-search-forward
291 ;; /file.txt/1.3/Mon Sep 15 18:43:20 2003//
292 (format "%s/\\([.0-9]+\\)" (regexp-quote name
))
294 (match-string 1))))))
296 (defun auto-revert-vc-buffer-p ()
297 "Check if buffer is version controlled."
298 (and (boundp 'vc-mode
)
299 (string-match "[0-9]" (or vc-mode
""))))
301 (defun auto-revert-handler-vc ()
302 "Check if version controlled buffer needs revert."
304 ;; 1. File is saved (*)
305 ;; 2. checkin is done 1.1 -> 1.2
306 ;; 3. VC reverts, so that updated version number is shown in mode line
308 ;; Suppose the same file has been opened in another Emacs and
309 ;; autorevert.el is on.
312 ;; 1. Step (1) is detected and buffer is reverted.
313 ;; 2. But check in does not always change the file in dis, but possibly only
314 ;; control files like CVS/Entries
315 ;; 3. The buffer is not reverted to update VC version line.
316 ;; Incorrect version number 1.1 is shown in this Emacs
319 (let* ((file (buffer-file-name))
320 (backend (vc-backend (buffer-file-name)))
321 (version-buffer (vc-workfile-version file
)))
322 (when (stringp version-buffer
)
326 (auto-revert-vc-cvs-file-version (buffer-file-name))))
327 (and (stringp version-file
)
328 (not (string-match version-file version-buffer
)))))
333 (defun auto-revert-handler ()
334 "Revert current buffer."
335 (unless (buffer-modified-p)
338 ((auto-revert-vc-buffer-p)
339 (when (auto-revert-handler-vc)
341 ((or (and (buffer-file-name)
342 (file-readable-p (buffer-file-name))
343 (not (verify-visited-file-modtime (current-buffer))))
344 (and global-auto-revert-non-file-buffers
345 revert-buffer-function
346 (boundp 'buffer-stale-function
)
347 (functionp buffer-stale-function
)
348 (funcall buffer-stale-function t
)))
351 (when auto-revert-verbose
352 (message "Reverting buffer `%s'." (buffer-name)))
353 (revert-buffer 'ignore-auto
'dont-ask
'preserve-modes
)
355 (vc-mode-line buffer-file-name
))))))
357 (defun auto-revert-buffers ()
358 "Revert buffers as specified by Auto-Revert and Global Auto-Revert Mode.
360 Should `global-auto-revert-mode' be active all file buffers are checked.
362 Should `auto-revert-mode' be active in some buffers, those buffers
365 Non-file buffers that have a custom `revert-buffer-function' are
366 reverted either when Auto-Revert Mode is active in that buffer, or
367 when the variable `global-auto-revert-non-file-buffers' is non-nil
368 and Global Auto-Revert Mode is active.
370 This function stops whenever there is user input. The buffers not
371 checked are stored in the variable `auto-revert-remaining-buffers'.
373 To avoid starvation, the buffers in `auto-revert-remaining-buffers'
374 are checked first the next time this function is called.
376 This function is also responsible for removing buffers no longer in
377 Auto-Revert mode from `auto-revert-buffer-list', and for canceling
378 the timer when no buffers need to be checked."
379 (let ((bufs (if global-auto-revert-mode
381 auto-revert-buffer-list
))
384 ;; Partition `bufs' into two halves depending on whether or not
385 ;; the buffers are in `auto-revert-remaining-buffers'. The two
386 ;; halves are then re-joined with the "remaining" buffers at the
388 (dolist (buf auto-revert-remaining-buffers
)
390 (push buf remaining
)))
392 (if (not (memq buf remaining
))
394 (setq bufs
(nreverse (nconc new remaining
)))
396 (not (and auto-revert-stop-on-user-input
398 (let ((buf (car bufs
)))
399 (if (buffer-name buf
) ; Buffer still alive?
400 (with-current-buffer buf
401 ;; Test if someone has turned off Auto-Revert Mode in a
402 ;; non-standard way, for example by changing major mode.
403 (if (and (not auto-revert-mode
)
404 (memq buf auto-revert-buffer-list
))
405 (setq auto-revert-buffer-list
406 (delq buf auto-revert-buffer-list
)))
407 (when (auto-revert-active-p)
408 (auto-revert-handler)
409 ;; `preserve-modes' avoids changing the (minor) modes. But we
410 ;; do want to reset the mode for VC, so we do it explicitly.
411 (vc-find-file-hook)))
412 ;; Remove dead buffer from `auto-revert-buffer-list'.
413 (setq auto-revert-buffer-list
414 (delq buf auto-revert-buffer-list
))))
415 (setq bufs
(cdr bufs
)))
416 (setq auto-revert-remaining-buffers bufs
)
417 ;; Check if we should cancel the timer.
418 (when (and (not global-auto-revert-mode
)
419 (null auto-revert-buffer-list
))
420 (cancel-timer auto-revert-timer
)
421 (setq auto-revert-timer nil
))))
425 (provide 'autorevert
)
427 (run-hooks 'auto-revert-load-hook
)
429 ;;; arch-tag: f6bcb07b-4841-477e-9e44-b18678e58876
430 ;;; autorevert.el ends here