Mercurial > emacs
annotate lisp/midnight.el @ 23323:0800a4f84757
(underlying_strftime):
Set the buffer to a nonzero value before calling
strftime, and check to see whether strftime has set the buffer to zero.
This lets us distinguish between an empty buffer and an error.
I'm installing this patch by hand now; it will be superseded whenever
the glibc sources are propagated back to fsf.org.
author | Paul Eggert <eggert@twinsun.com> |
---|---|
date | Fri, 25 Sep 1998 21:40:23 +0000 |
parents | 7f15741f1899 |
children | b61fd1c104f9 |
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 |
23104
b1ce2a4bc9b0
Require `timer' not only when compiling.
Karl Heuer <kwzh@gnu.org>
parents:
23059
diff
changeset
|
42 (require 'cl)) |
b1ce2a4bc9b0
Require `timer' not only when compiling.
Karl Heuer <kwzh@gnu.org>
parents:
23059
diff
changeset
|
43 |
b1ce2a4bc9b0
Require `timer' not only when compiling.
Karl Heuer <kwzh@gnu.org>
parents:
23059
diff
changeset
|
44 (require 'timer) |
22443 | 45 |
46 (defgroup midnight nil | |
47 "Run something every day at midnight." | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
48 :group 'calendar |
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
49 :version "20.3") |
22443 | 50 |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
51 (defcustom midnight-mode nil |
22497
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
52 "*Non-nil means run `midnight-hook' at midnight. |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
53 Setting this variable outside customize has no effect; |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
54 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
|
55 :type 'boolean |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
56 :group 'midnight |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
57 :require 'midnight |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
58 :initialize 'custom-initialize-default |
22497
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
59 :set (lambda (symb val) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
60 (set symb val) (require 'midnight) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
61 (if val (timer-activate midnight-timer) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
62 (cancel-timer midnight-timer)))) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
63 |
22443 | 64 ;;; time conversion |
65 | |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
66 (defun midnight-float-time (&optional tm) |
22443 | 67 "Convert `current-time' to a float number of seconds." |
68 (multiple-value-bind (s0 s1 s2) (or tm (current-time)) | |
69 (+ (* (float (ash 1 16)) s0) (float s1) (* 0.0000001 s2)))) | |
70 | |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
71 (defun midnight-time-float (num) |
22443 | 72 "Convert the float number of seconds since epoch to the list of 3 integers." |
73 (let* ((div (ash 1 16)) (1st (floor num div))) | |
74 (list 1st (floor (- num (* (float div) 1st))) | |
75 (round (* 10000000 (mod num 1)))))) | |
76 | |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
77 (defun midnight-buffer-display-time (&optional buf) |
22443 | 78 "Return the time-stamp of the given buffer, or current buffer, as float." |
79 (save-excursion | |
80 (set-buffer (or buf (current-buffer))) | |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
81 (when buffer-display-time (midnight-float-time buffer-display-time)))) |
22443 | 82 |
83 ;;; clean-buffer-list stuff | |
84 | |
85 (defcustom clean-buffer-list-delay-general 3 | |
86 "*The number of days before any buffer becomes eligible for autokilling. | |
87 The autokilling is done by `clean-buffer-list' when is it in `midnight-hook'. | |
88 Currently displayed and/or modified (unsaved) buffers, as well as buffers | |
89 matching `clean-buffer-list-kill-never-buffer-names' and | |
90 `clean-buffer-list-kill-never-regexps' are excluded." | |
91 :type 'integer | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
92 :group 'midnight) |
22443 | 93 |
94 (defcustom clean-buffer-list-delay-special 3600 | |
95 "*The number of seconds before some buffers become eligible for autokilling. | |
96 Buffers matched by `clean-buffer-list-kill-regexps' and | |
97 `clean-buffer-list-kill-buffer-names' are killed if they were last | |
98 displayed more than this many seconds ago." | |
99 :type 'integer | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
100 :group 'midnight) |
22443 | 101 |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
102 (defcustom clean-buffer-list-kill-regexps nil |
22443 | 103 "*List of regexps saying which buffers will be killed at midnight. |
104 If buffer name matches a regexp in the list and the buffer was not displayed | |
105 in the last `clean-buffer-list-delay-special' seconds, it is killed by | |
106 `clean-buffer-list' when is it in `midnight-hook'. | |
107 If a member of the list is a cons, it's `car' is the regexp and its `cdr' is | |
108 the number of seconds to use instead of `clean-buffer-list-delay-special'. | |
109 See also `clean-buffer-list-kill-buffer-names', | |
110 `clean-buffer-list-kill-never-regexps' and | |
111 `clean-buffer-list-kill-never-buffer-names'." | |
23268
7f15741f1899
(clean-buffer-list-kill-regexps,
Andreas Schwab <schwab@suse.de>
parents:
23104
diff
changeset
|
112 :type '(repeat regexp) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
113 :group 'midnight) |
22443 | 114 |
115 (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
|
116 '("*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
|
117 "*vc*" "*vc-diff*" "*diff*") |
22443 | 118 "*List of strings saying which buffers will be killed at midnight. |
119 Buffers with names in this list, which were not displayed in the last | |
120 `clean-buffer-list-delay-special' seconds, are killed by `clean-buffer-list' | |
121 when is it in `midnight-hook'. | |
122 If a member of the list is a cons, it's `car' is the name and its `cdr' is | |
123 the number of seconds to use instead of `clean-buffer-list-delay-special'. | |
124 See also `clean-buffer-list-kill-regexps', | |
125 `clean-buffer-list-kill-never-regexps' and | |
126 `clean-buffer-list-kill-never-buffer-names'." | |
23268
7f15741f1899
(clean-buffer-list-kill-regexps,
Andreas Schwab <schwab@suse.de>
parents:
23104
diff
changeset
|
127 :type '(repeat string) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
128 :group 'midnight) |
22443 | 129 |
130 (defcustom clean-buffer-list-kill-never-buffer-names | |
131 '("*scratch*" "*Messages*") | |
132 "*List of buffer names which will never be killed by `clean-buffer-list'. | |
133 See also `clean-buffer-list-kill-never-regexps'. | |
134 Note that this does override `clean-buffer-list-kill-regexps' and | |
135 `clean-buffer-list-kill-buffer-names' so a buffer matching any of these | |
136 two lists will NOT be killed if it is also present in this list." | |
23268
7f15741f1899
(clean-buffer-list-kill-regexps,
Andreas Schwab <schwab@suse.de>
parents:
23104
diff
changeset
|
137 :type '(repeat string) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
138 :group 'midnight) |
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
139 |
22443 | 140 |
141 (defcustom clean-buffer-list-kill-never-regexps '("^ \*Minibuf-.*\*$") | |
142 "*List of regexp saying which buffers will never be killed at midnight. | |
143 See also `clean-buffer-list-kill-never-buffer-names'. | |
144 Killing is done by `clean-buffer-list'. | |
145 Note that this does override `clean-buffer-list-kill-regexps' and | |
146 `clean-buffer-list-kill-buffer-names' so a buffer matching any of these | |
147 two lists will NOT be killed if it also matches anything in this list." | |
23268
7f15741f1899
(clean-buffer-list-kill-regexps,
Andreas Schwab <schwab@suse.de>
parents:
23104
diff
changeset
|
148 :type '(repeat regexp) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
149 :group 'midnight) |
22443 | 150 |
151 (defun midnight-find (el ls test &optional key) | |
152 "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
|
153 (dolist (rr ls) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
154 (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
|
155 (return rr)))) |
22859 | 156 |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
157 (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
|
158 "Return the delay, in seconds, before killing a buffer named NAME. |
22443 | 159 Uses `clean-buffer-list-kill-buffer-names', `clean-buffer-list-kill-regexps' |
160 `clean-buffer-list-delay-general' and `clean-buffer-list-delay-special'. | |
161 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
|
162 (or (assoc-default name clean-buffer-list-kill-buffer-names 'string= |
22859 | 163 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
|
164 (assoc-default name clean-buffer-list-kill-regexps 'string-match |
22859 | 165 clean-buffer-list-delay-special) |
166 (* clean-buffer-list-delay-general 24 60 60))) | |
22443 | 167 |
168 (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
|
169 "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
|
170 The relevant variables are `clean-buffer-list-delay-general', |
22443 | 171 `clean-buffer-list-delay-special', `clean-buffer-list-kill-buffer-names', |
172 `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
|
173 `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
|
174 `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
|
175 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
|
176 the current date/time, buffer name, how many seconds ago it was |
23059
41745889db17
(midnight-hook): initialize to a list.
Richard M. Stallman <rms@gnu.org>
parents:
23040
diff
changeset
|
177 displayed (can be nil if the buffer was never displayed) and its |
41745889db17
(midnight-hook): initialize to a list.
Richard M. Stallman <rms@gnu.org>
parents:
23040
diff
changeset
|
178 lifetime, i.e., its \"age\" when it will be purged." |
22443 | 179 (interactive) |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
180 (let ((tm (midnight-float-time)) bts (ts (format-time-string "%Y-%m-%d %T")) bn |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
181 (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
|
182 (while (setq buf (pop bufs)) |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
183 (setq bts (midnight-buffer-display-time buf) bn (buffer-name buf) |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
184 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
|
185 (message "[%s] `%s' [%s %d]" ts bn (if bts (round delay)) cbld) |
22859 | 186 (unless (or (midnight-find bn clean-buffer-list-kill-never-regexps |
22443 | 187 'string-match) |
188 (midnight-find bn clean-buffer-list-kill-never-buffer-names | |
189 'string-equal) | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
190 (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
|
191 (get-buffer-window buf 'visible) (< delay cbld)) |
22443 | 192 (message "[%s] killing `%s'" ts bn) |
193 (kill-buffer buf))))) | |
194 | |
195 ;;; midnight hook | |
196 | |
197 (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
|
198 "The number of seconds in a day--the delta for `midnight-timer'.") |
22443 | 199 |
23059
41745889db17
(midnight-hook): initialize to a list.
Richard M. Stallman <rms@gnu.org>
parents:
23040
diff
changeset
|
200 (defcustom midnight-hook '(clean-buffer-list) |
22443 | 201 "The hook run `midnight-delay' seconds after midnight every day. |
202 The default value is `clean-buffer-list'." | |
203 :type 'hook | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
204 :group 'midnight) |
22443 | 205 |
206 (defun midnight-next () | |
207 "Return the number of seconds till the next midnight." | |
208 (multiple-value-bind (sec min hrs) (decode-time) | |
209 (- (* 24 60 60) (* 60 60 hrs) (* 60 min) sec))) | |
210 | |
211 (defvar midnight-timer nil | |
212 "Timer running the `midnight-hook' `midnight-delay' seconds after midnight. | |
213 Use `cancel-timer' to stop it and `midnight-delay-set' to change | |
214 the time when it is run.") | |
215 | |
216 ;;;###autoload | |
217 (defun midnight-delay-set (symb tm) | |
218 "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
|
219 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
|
220 to its second argument TM." |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
221 (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
|
222 "Illegal argument to `midnight-delay-set': `%s'" symb) |
22443 | 223 (set symb tm) |
224 (when (timerp midnight-timer) (cancel-timer midnight-timer)) | |
225 (setq midnight-timer | |
226 (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
|
227 midnight-period 'run-hooks 'midnight-hook))) |
22443 | 228 |
229 (defcustom midnight-delay 3600 | |
230 "*The number of seconds after the midnight when the `midnight-timer' is run. | |
231 You should set this variable before loading midnight.el, or | |
232 set it by calling `midnight-delay-set', or use `custom'. | |
233 If you wish, you can use a string instead, it will be passed as the | |
234 first argument to `run-at-time'." | |
235 :type 'sexp | |
236 :set 'midnight-delay-set | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
237 :group 'midnight) |
22443 | 238 |
239 (provide 'midnight) | |
240 | |
241 ;;; midnight.el ends here |