Mercurial > emacs
annotate lisp/midnight.el @ 22979:ceb8e4a89a32
(default_buffer_file_coding): New variable.
(init_coding_once): Initialize default_buffer_file_coding.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 10 Aug 1998 06:29:02 +0000 |
parents | ff793b9329c9 |
children | 5615932155fe |
rev | line source |
---|---|
22443 | 1 ;;; midnight.el --- run something every midnight, e.g., kill old buffers. |
2 | |
3 ;;; Copyright (C) 1998 Free Software Foundation, Inc. | |
4 | |
5 ;;; Author: Sam Steingold <sds@usa.net> | |
6 ;;; Maintainer: Sam Steingold <sds@usa.net> | |
7 ;;; Created: 1998-05-18 | |
8 ;;; Keywords: utilities | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
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) | |
15 ;; any later version. | |
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 | |
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. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; To use the file, put (require 'midnight) into your .emacs. Then, at | |
30 ;; midnight, Emacs will run the normal hook `midnight-hook'. You can | |
31 ;; put whatever you like there, say, `calendar'; by default there is | |
32 ;; only one function there - `clean-buffer-list'. It will kill the | |
33 ;; buffers matching `clean-buffer-list-kill-buffer-names' and | |
34 ;; `clean-buffer-list-kill-regexps' and the buffers which where last | |
35 ;; displayed more than `clean-buffer-list-delay-general' days ago, | |
36 ;; keeping `clean-buffer-list-kill-never-buffer-names' and | |
37 ;; `clean-buffer-list-kill-never-regexps'. | |
38 | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
39 ;;; Code: |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
40 |
22859 | 41 (eval-when-compile |
42 (require 'cl) | |
43 (require 'timer)) | |
22443 | 44 |
45 (defgroup midnight nil | |
46 "Run something every day at midnight." | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
47 :group 'calendar |
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
48 :version "20.3") |
22443 | 49 |
22497
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
50 (defcustom midnight-mode t |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
51 "*Non-nil means run `midnight-hook' at midnight. |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
52 Setting this variable outside customize has no effect; |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
53 call `cancel-timer' or `timer-activate' on `midnight-timer' instead." |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
54 :type 'boolean |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
55 :group 'midnight |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
56 :require 'midnight |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
57 :set (lambda (symb val) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
58 (set symb val) (require 'midnight) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
59 (if val (timer-activate midnight-timer) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
60 (cancel-timer midnight-timer)))) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
61 |
22443 | 62 ;;; time conversion |
63 | |
64 (defun float-time (&optional tm) | |
65 "Convert `current-time' to a float number of seconds." | |
66 (multiple-value-bind (s0 s1 s2) (or tm (current-time)) | |
67 (+ (* (float (ash 1 16)) s0) (float s1) (* 0.0000001 s2)))) | |
68 | |
69 (defun time-float (num) | |
70 "Convert the float number of seconds since epoch to the list of 3 integers." | |
71 (let* ((div (ash 1 16)) (1st (floor num div))) | |
72 (list 1st (floor (- num (* (float div) 1st))) | |
73 (round (* 10000000 (mod num 1)))))) | |
74 | |
75 (defun buffer-display-time (&optional buf) | |
76 "Return the time-stamp of the given buffer, or current buffer, as float." | |
77 (save-excursion | |
78 (set-buffer (or buf (current-buffer))) | |
79 (when buffer-display-time (float-time buffer-display-time)))) | |
80 | |
81 ;;; clean-buffer-list stuff | |
82 | |
83 (defcustom clean-buffer-list-delay-general 3 | |
84 "*The number of days before any buffer becomes eligible for autokilling. | |
85 The autokilling is done by `clean-buffer-list' when is it in `midnight-hook'. | |
86 Currently displayed and/or modified (unsaved) buffers, as well as buffers | |
87 matching `clean-buffer-list-kill-never-buffer-names' and | |
88 `clean-buffer-list-kill-never-regexps' are excluded." | |
89 :type 'integer | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
90 :group 'midnight) |
22443 | 91 |
92 (defcustom clean-buffer-list-delay-special 3600 | |
93 "*The number of seconds before some buffers become eligible for autokilling. | |
94 Buffers matched by `clean-buffer-list-kill-regexps' and | |
95 `clean-buffer-list-kill-buffer-names' are killed if they were last | |
96 displayed more than this many seconds ago." | |
97 :type 'integer | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
98 :group 'midnight) |
22443 | 99 |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
100 (defcustom clean-buffer-list-kill-regexps nil |
22443 | 101 "*List of regexps saying which buffers will be killed at midnight. |
102 If buffer name matches a regexp in the list and the buffer was not displayed | |
103 in the last `clean-buffer-list-delay-special' seconds, it is killed by | |
104 `clean-buffer-list' when is it in `midnight-hook'. | |
105 If a member of the list is a cons, it's `car' is the regexp and its `cdr' is | |
106 the number of seconds to use instead of `clean-buffer-list-delay-special'. | |
107 See also `clean-buffer-list-kill-buffer-names', | |
108 `clean-buffer-list-kill-never-regexps' and | |
109 `clean-buffer-list-kill-never-buffer-names'." | |
110 :type 'list | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
111 :group 'midnight) |
22443 | 112 |
113 (defcustom clean-buffer-list-kill-buffer-names | |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
114 '("*Help*" "*Apropos*" "*Man " "*Buffer List*" "*Compile-Log*" "*info*" |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
115 "*vc*" "*vc-diff*" "*diff*") |
22443 | 116 "*List of strings saying which buffers will be killed at midnight. |
117 Buffers with names in this list, which were not displayed in the last | |
118 `clean-buffer-list-delay-special' seconds, are killed by `clean-buffer-list' | |
119 when is it in `midnight-hook'. | |
120 If a member of the list is a cons, it's `car' is the name and its `cdr' is | |
121 the number of seconds to use instead of `clean-buffer-list-delay-special'. | |
122 See also `clean-buffer-list-kill-regexps', | |
123 `clean-buffer-list-kill-never-regexps' and | |
124 `clean-buffer-list-kill-never-buffer-names'." | |
125 :type 'list | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
126 :group 'midnight) |
22443 | 127 |
128 (defcustom clean-buffer-list-kill-never-buffer-names | |
129 '("*scratch*" "*Messages*") | |
130 "*List of buffer names which will never be killed by `clean-buffer-list'. | |
131 See also `clean-buffer-list-kill-never-regexps'. | |
132 Note that this does override `clean-buffer-list-kill-regexps' and | |
133 `clean-buffer-list-kill-buffer-names' so a buffer matching any of these | |
134 two lists will NOT be killed if it is also present in this list." | |
135 :type 'list | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
136 :group 'midnight) |
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
137 |
22443 | 138 |
139 (defcustom clean-buffer-list-kill-never-regexps '("^ \*Minibuf-.*\*$") | |
140 "*List of regexp saying which buffers will never be killed at midnight. | |
141 See also `clean-buffer-list-kill-never-buffer-names'. | |
142 Killing is done by `clean-buffer-list'. | |
143 Note that this does override `clean-buffer-list-kill-regexps' and | |
144 `clean-buffer-list-kill-buffer-names' so a buffer matching any of these | |
145 two lists will NOT be killed if it also matches anything in this list." | |
146 :type 'list | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
147 :group 'midnight) |
22443 | 148 |
149 (defun midnight-find (el ls test &optional key) | |
150 "A stopgap solution to the absence of `find' in ELisp." | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
151 (dolist (rr ls) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
152 (when (funcall test el (if key (funcall key rr) rr)) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
153 (return rr)))) |
22859 | 154 |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
155 (defun clean-buffer-list-delay (name) |
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
156 "Return the delay, in seconds, before killing a buffer named NAME. |
22443 | 157 Uses `clean-buffer-list-kill-buffer-names', `clean-buffer-list-kill-regexps' |
158 `clean-buffer-list-delay-general' and `clean-buffer-list-delay-special'. | |
159 Autokilling is done by `clean-buffer-list'." | |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
160 (or (assoc-default name clean-buffer-list-kill-buffer-names 'string= |
22859 | 161 clean-buffer-list-delay-special) |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
162 (assoc-default name clean-buffer-list-kill-regexps 'string-match |
22859 | 163 clean-buffer-list-delay-special) |
164 (* clean-buffer-list-delay-general 24 60 60))) | |
22443 | 165 |
166 (defun clean-buffer-list () | |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
167 "Kill old buffers that have not been displayed recently. |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
168 The relevant variables are `clean-buffer-list-delay-general', |
22443 | 169 `clean-buffer-list-delay-special', `clean-buffer-list-kill-buffer-names', |
170 `clean-buffer-list-kill-never-buffer-names', | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
171 `clean-buffer-list-kill-regexps' and |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
172 `clean-buffer-list-kill-never-regexps'. |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
173 While processing buffers, this procedure displays messages containing |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
174 the current date/time, buffer name, how many seconds ago it was |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
175 displayed (can be NIL if the buffer was never displayed) and its |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
176 lifetime, i.e., its `age' when it will be purged." |
22443 | 177 (interactive) |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
178 (let ((tm (float-time)) bts (ts (format-time-string "%Y-%m-%d %T")) bn |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
179 (bufs (buffer-list)) buf delay cbld) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
180 (while (setq buf (pop bufs)) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
181 (setq bts (buffer-display-time buf) bn (buffer-name buf) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
182 delay (if bts (- tm bts) 0) cbld (clean-buffer-list-delay bn)) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
183 (message "[%s] `%s' [%s %d]" ts bn (if bts (round delay)) cbld) |
22859 | 184 (unless (or (midnight-find bn clean-buffer-list-kill-never-regexps |
22443 | 185 'string-match) |
186 (midnight-find bn clean-buffer-list-kill-never-buffer-names | |
187 'string-equal) | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
188 (and (buffer-file-name buf) (buffer-modified-p buf)) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
189 (get-buffer-window buf 'visible) (< delay cbld)) |
22443 | 190 (message "[%s] killing `%s'" ts bn) |
191 (kill-buffer buf))))) | |
192 | |
193 ;;; midnight hook | |
194 | |
195 (defvar midnight-period (* 24 60 60) | |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
196 "The number of seconds in a day--the delta for `midnight-timer'.") |
22443 | 197 |
198 (defcustom midnight-hook 'clean-buffer-list | |
199 "The hook run `midnight-delay' seconds after midnight every day. | |
200 The default value is `clean-buffer-list'." | |
201 :type 'hook | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
202 :group 'midnight) |
22443 | 203 |
204 (defun midnight-next () | |
205 "Return the number of seconds till the next midnight." | |
206 (multiple-value-bind (sec min hrs) (decode-time) | |
207 (- (* 24 60 60) (* 60 60 hrs) (* 60 min) sec))) | |
208 | |
209 (defvar midnight-timer nil | |
210 "Timer running the `midnight-hook' `midnight-delay' seconds after midnight. | |
211 Use `cancel-timer' to stop it and `midnight-delay-set' to change | |
212 the time when it is run.") | |
213 | |
214 ;;;###autoload | |
215 (defun midnight-delay-set (symb tm) | |
216 "Modify `midnight-timer' according to `midnight-delay'. | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
217 Sets the first argument SYMB (which must be symbol `midnight-delay') |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
218 to its second argument TM." |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
219 (assert (eq symb 'midnight-delay) t |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
220 "Illegal argument to `midnight-delay-set': `%s'" symb) |
22443 | 221 (set symb tm) |
222 (when (timerp midnight-timer) (cancel-timer midnight-timer)) | |
223 (setq midnight-timer | |
224 (run-at-time (if (numberp tm) (+ (midnight-next) tm) tm) | |
22938
a45f2afb8ed9
(midnight-delay-set): Use run-hooks directly.
Richard M. Stallman <rms@gnu.org>
parents:
22936
diff
changeset
|
225 midnight-period 'run-hooks 'midnight-hook))) |
22443 | 226 |
227 (defcustom midnight-delay 3600 | |
228 "*The number of seconds after the midnight when the `midnight-timer' is run. | |
229 You should set this variable before loading midnight.el, or | |
230 set it by calling `midnight-delay-set', or use `custom'. | |
231 If you wish, you can use a string instead, it will be passed as the | |
232 first argument to `run-at-time'." | |
233 :type 'sexp | |
234 :set 'midnight-delay-set | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
235 :group 'midnight) |
22443 | 236 |
237 (provide 'midnight) | |
238 | |
239 ;;; midnight.el ends here |