Custom Theme bugfixes.
[bpt/emacs.git] / lisp / gnus / gnus-util.el
CommitLineData
eec82323 1;;; gnus-util.el --- utility functions for Gnus
e84b4b86
TTN
2
3;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4;; 2005 Free Software Foundation, Inc.
eec82323 5
6748645f 6;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
eec82323
LMI
7;; Keywords: news
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
eec82323
LMI
25
26;;; Commentary:
27
28;; Nothing in this file depends on any other parts of Gnus -- all
29;; functions and macros in this file are utility functions that are
30;; used by Gnus and may be used by any other package without loading
31;; Gnus first.
32
23f87bed
MB
33;; [Unfortunately, it does depend on other parts of Gnus, e.g. the
34;; autoloads below...]
35
eec82323
LMI
36;;; Code:
37
38(require 'custom)
5eee36fa
DL
39(eval-when-compile
40 (require 'cl)
41 ;; Fixme: this should be a gnus variable, not nnmail-.
54506618 42 (defvar nnmail-pathname-coding-system)
a9cbf387 43 (defvar nnmail-active-file-coding-system)
54506618
MB
44
45 ;; Inappropriate references to other parts of Gnus.
46 (defvar gnus-emphasize-whitespace-regexp)
a9cbf387
JB
47 (defvar gnus-original-article-buffer)
48 (defvar gnus-user-agent)
54506618 49 )
16409b0b 50(require 'time-date)
23f87bed 51(require 'netrc)
eec82323
LMI
52
53(eval-and-compile
c4fedaa0 54 (autoload 'message-fetch-field "message")
23f87bed 55 (autoload 'gnus-get-buffer-window "gnus-win")
6748645f
LMI
56 (autoload 'rmail-insert-rmail-file-header "rmail")
57 (autoload 'rmail-count-new-messages "rmail")
23f87bed
MB
58 (autoload 'rmail-show-message "rmail")
59 (autoload 'nnheader-narrow-to-headers "nnheader")
60 (autoload 'nnheader-replace-chars-in-string "nnheader"))
61
62(eval-and-compile
63 (cond
64 ((fboundp 'replace-in-string)
65 (defalias 'gnus-replace-in-string 'replace-in-string))
66 ((fboundp 'replace-regexp-in-string)
ad136a7c
MB
67 (defun gnus-replace-in-string (string regexp newtext &optional literal)
68 "Replace all matches for REGEXP with NEWTEXT in STRING.
69If LITERAL is non-nil, insert NEWTEXT literally. Return a new
70string containing the replacements.
71
72This is a compatibility function for different Emacsen."
23f87bed
MB
73 (replace-regexp-in-string regexp newtext string nil literal)))
74 (t
75 (defun gnus-replace-in-string (string regexp newtext &optional literal)
ad136a7c
MB
76 "Replace all matches for REGEXP with NEWTEXT in STRING.
77If LITERAL is non-nil, insert NEWTEXT literally. Return a new
78string containing the replacements.
79
80This is a compatibility function for different Emacsen."
23f87bed
MB
81 (let ((start 0) tail)
82 (while (string-match regexp string start)
83 (setq tail (- (length string) (match-end 0)))
84 (setq string (replace-match newtext nil literal string))
85 (setq start (- (length string) tail))))
86 string))))
87
88;;; bring in the netrc functions as aliases
89(defalias 'gnus-netrc-get 'netrc-get)
90(defalias 'gnus-netrc-machine 'netrc-machine)
91(defalias 'gnus-parse-netrc 'netrc-parse)
eec82323
LMI
92
93(defun gnus-boundp (variable)
94 "Return non-nil if VARIABLE is bound and non-nil."
95 (and (boundp variable)
96 (symbol-value variable)))
97
98(defmacro gnus-eval-in-buffer-window (buffer &rest forms)
99 "Pop to BUFFER, evaluate FORMS, and then return to the original window."
100 (let ((tempvar (make-symbol "GnusStartBufferWindow"))
23f87bed
MB
101 (w (make-symbol "w"))
102 (buf (make-symbol "buf")))
eec82323 103 `(let* ((,tempvar (selected-window))
23f87bed
MB
104 (,buf ,buffer)
105 (,w (gnus-get-buffer-window ,buf 'visible)))
eec82323 106 (unwind-protect
23f87bed
MB
107 (progn
108 (if ,w
109 (progn
110 (select-window ,w)
111 (set-buffer (window-buffer ,w)))
112 (pop-to-buffer ,buf))
113 ,@forms)
114 (select-window ,tempvar)))))
eec82323
LMI
115
116(put 'gnus-eval-in-buffer-window 'lisp-indent-function 1)
117(put 'gnus-eval-in-buffer-window 'edebug-form-spec '(form body))
118
119(defmacro gnus-intern-safe (string hashtable)
120 "Set hash value. Arguments are STRING, VALUE, and HASHTABLE."
121 `(let ((symbol (intern ,string ,hashtable)))
122 (or (boundp symbol)
123 (set symbol nil))
124 symbol))
125
eec82323
LMI
126;; Added by Geoffrey T. Dairiki <dairiki@u.washington.edu>. A safe way
127;; to limit the length of a string. This function is necessary since
128;; `(substr "abc" 0 30)' pukes with "Args out of range".
23f87bed 129;; Fixme: Why not `truncate-string-to-width'?
eec82323
LMI
130(defsubst gnus-limit-string (str width)
131 (if (> (length str) width)
132 (substring str 0 width)
133 str))
134
eec82323
LMI
135(defsubst gnus-goto-char (point)
136 (and point (goto-char point)))
137
138(defmacro gnus-buffer-exists-p (buffer)
139 `(let ((buffer ,buffer))
140 (when buffer
141 (funcall (if (stringp buffer) 'get-buffer 'buffer-name)
142 buffer))))
143
16409b0b
GM
144(defalias 'gnus-point-at-bol
145 (if (fboundp 'point-at-bol)
146 'point-at-bol
147 'line-beginning-position))
148
149(defalias 'gnus-point-at-eol
150 (if (fboundp 'point-at-eol)
151 'point-at-eol
152 'line-end-position))
eec82323 153
23f87bed
MB
154;; The LOCAL arg to `add-hook' is interpreted differently in Emacs and
155;; XEmacs. In Emacs we don't need to call `make-local-hook' first.
156;; It's harmless, though, so the main purpose of this alias is to shut
157;; up the byte compiler.
158(defalias 'gnus-make-local-hook
159 (if (eq (get 'make-local-hook 'byte-compile)
160 'byte-compile-obsolete)
161 'ignore ; Emacs
162 'make-local-hook)) ; XEmacs
163
eec82323
LMI
164(defun gnus-delete-first (elt list)
165 "Delete by side effect the first occurrence of ELT as a member of LIST."
166 (if (equal (car list) elt)
167 (cdr list)
168 (let ((total list))
169 (while (and (cdr list)
170 (not (equal (cadr list) elt)))
171 (setq list (cdr list)))
172 (when (cdr list)
173 (setcdr list (cddr list)))
174 total)))
175
176;; Delete the current line (and the next N lines).
177(defmacro gnus-delete-line (&optional n)
23f87bed 178 `(delete-region (gnus-point-at-bol)
eec82323
LMI
179 (progn (forward-line ,(or n 1)) (point))))
180
181(defun gnus-byte-code (func)
182 "Return a form that can be `eval'ed based on FUNC."
6748645f
LMI
183 (let ((fval (indirect-function func)))
184 (if (byte-code-function-p fval)
eec82323
LMI
185 (let ((flist (append fval nil)))
186 (setcar flist 'byte-code)
187 flist)
188 (cons 'progn (cddr fval)))))
189
190(defun gnus-extract-address-components (from)
23f87bed
MB
191 "Extract address components from a From header.
192Given an RFC-822 address FROM, extract full name and canonical address.
193Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). Much more simple
194solution than `mail-extract-address-components', which works much better, but
195is slower."
eec82323
LMI
196 (let (name address)
197 ;; First find the address - the thing with the @ in it. This may
198 ;; not be accurate in mail addresses, but does the trick most of
199 ;; the time in news messages.
200 (when (string-match "\\b[^@ \t<>]+[!@][^@ \t<>]+\\b" from)
201 (setq address (substring from (match-beginning 0) (match-end 0))))
202 ;; Then we check whether the "name <address>" format is used.
203 (and address
eec82323
LMI
204 ;; Linear white space is not required.
205 (string-match (concat "[ \t]*<" (regexp-quote address) ">") from)
206 (and (setq name (substring from 0 (match-beginning 0)))
207 ;; Strip any quotes from the name.
23f87bed 208 (string-match "^\".*\"$" name)
eec82323
LMI
209 (setq name (substring name 1 (1- (match-end 0))))))
210 ;; If not, then "address (name)" is used.
211 (or name
212 (and (string-match "(.+)" from)
213 (setq name (substring from (1+ (match-beginning 0))
214 (1- (match-end 0)))))
215 (and (string-match "()" from)
216 (setq name address))
eec82323
LMI
217 ;; XOVER might not support folded From headers.
218 (and (string-match "(.*" from)
219 (setq name (substring from (1+ (match-beginning 0))
220 (match-end 0)))))
16409b0b
GM
221 (list (if (string= name "") nil name) (or address from))))
222
eec82323
LMI
223
224(defun gnus-fetch-field (field)
225 "Return the value of the header FIELD of current article."
226 (save-excursion
227 (save-restriction
228 (let ((case-fold-search t)
229 (inhibit-point-motion-hooks t))
230 (nnheader-narrow-to-headers)
231 (message-fetch-field field)))))
232
23f87bed
MB
233(defun gnus-fetch-original-field (field)
234 "Fetch FIELD from the original version of the current article."
235 (with-current-buffer gnus-original-article-buffer
236 (gnus-fetch-field field)))
237
238
eec82323
LMI
239(defun gnus-goto-colon ()
240 (beginning-of-line)
23f87bed
MB
241 (let ((eol (gnus-point-at-eol)))
242 (goto-char (or (text-property-any (point) eol 'gnus-position t)
243 (search-forward ":" eol t)
244 (point)))))
245
246(defun gnus-decode-newsgroups (newsgroups group &optional method)
247 (let ((method (or method (gnus-find-method-for-group group))))
248 (mapconcat (lambda (group)
249 (gnus-group-name-decode group (gnus-group-name-charset
250 method group)))
251 (message-tokenize-header newsgroups)
252 ",")))
eec82323
LMI
253
254(defun gnus-remove-text-with-property (prop)
255 "Delete all text in the current buffer with text property PROP."
256 (save-excursion
257 (goto-char (point-min))
258 (while (not (eobp))
259 (while (get-text-property (point) prop)
260 (delete-char 1))
261 (goto-char (next-single-property-change (point) prop nil (point-max))))))
262
263(defun gnus-newsgroup-directory-form (newsgroup)
264 "Make hierarchical directory name from NEWSGROUP name."
23f87bed
MB
265 (let* ((newsgroup (gnus-newsgroup-savable-name newsgroup))
266 (idx (string-match ":" newsgroup)))
267 (concat
268 (if idx (substring newsgroup 0 idx))
269 (if idx "/")
270 (nnheader-replace-chars-in-string
271 (if idx (substring newsgroup (1+ idx)) newsgroup)
272 ?. ?/))))
eec82323
LMI
273
274(defun gnus-newsgroup-savable-name (group)
275 ;; Replace any slashes in a group name (eg. an ange-ftp nndoc group)
276 ;; with dots.
277 (nnheader-replace-chars-in-string group ?/ ?.))
278
279(defun gnus-string> (s1 s2)
280 (not (or (string< s1 s2)
281 (string= s1 s2))))
282
283;;; Time functions.
284
eec82323
LMI
285(defun gnus-file-newer-than (file date)
286 (let ((fdate (nth 5 (file-attributes file))))
287 (or (> (car fdate) (car date))
288 (and (= (car fdate) (car date))
289 (> (nth 1 fdate) (nth 1 date))))))
290
291;;; Keymap macros.
292
293(defmacro gnus-local-set-keys (&rest plist)
294 "Set the keys in PLIST in the current keymap."
295 `(gnus-define-keys-1 (current-local-map) ',plist))
296
297(defmacro gnus-define-keys (keymap &rest plist)
298 "Define all keys in PLIST in KEYMAP."
299 `(gnus-define-keys-1 (quote ,keymap) (quote ,plist)))
300
301(defmacro gnus-define-keys-safe (keymap &rest plist)
302 "Define all keys in PLIST in KEYMAP without overwriting previous definitions."
303 `(gnus-define-keys-1 (quote ,keymap) (quote ,plist) t))
304
305(put 'gnus-define-keys 'lisp-indent-function 1)
306(put 'gnus-define-keys-safe 'lisp-indent-function 1)
307(put 'gnus-local-set-keys 'lisp-indent-function 1)
308
309(defmacro gnus-define-keymap (keymap &rest plist)
310 "Define all keys in PLIST in KEYMAP."
311 `(gnus-define-keys-1 ,keymap (quote ,plist)))
312
313(put 'gnus-define-keymap 'lisp-indent-function 1)
314
315(defun gnus-define-keys-1 (keymap plist &optional safe)
316 (when (null keymap)
317 (error "Can't set keys in a null keymap"))
318 (cond ((symbolp keymap)
319 (setq keymap (symbol-value keymap)))
320 ((keymapp keymap))
321 ((listp keymap)
322 (set (car keymap) nil)
323 (define-prefix-command (car keymap))
324 (define-key (symbol-value (caddr keymap)) (cadr keymap) (car keymap))
325 (setq keymap (symbol-value (car keymap)))))
326 (let (key)
327 (while plist
328 (when (symbolp (setq key (pop plist)))
329 (setq key (symbol-value key)))
330 (if (or (not safe)
331 (eq (lookup-key keymap key) 'undefined))
332 (define-key keymap key (pop plist))
333 (pop plist)))))
334
23f87bed 335(defun gnus-completing-read-with-default (default prompt &rest args)
eec82323
LMI
336 ;; Like `completing-read', except that DEFAULT is the default argument.
337 (let* ((prompt (if default
338 (concat prompt " (default " default ") ")
339 (concat prompt " ")))
340 (answer (apply 'completing-read prompt args)))
341 (if (or (null answer) (zerop (length answer)))
342 default
343 answer)))
344
345;; Two silly functions to ensure that all `y-or-n-p' questions clear
346;; the echo area.
347(defun gnus-y-or-n-p (prompt)
348 (prog1
349 (y-or-n-p prompt)
350 (message "")))
351
352(defun gnus-yes-or-no-p (prompt)
353 (prog1
354 (yes-or-no-p prompt)
355 (message "")))
356
23f87bed
MB
357;; By Frank Schmitt <ich@Frank-Schmitt.net>. Allows to have
358;; age-depending date representations. (e.g. just the time if it's
359;; from today, the day of the week if it's within the last 7 days and
360;; the full date if it's older)
361
362(defun gnus-seconds-today ()
363 "Return the number of seconds passed today."
364 (let ((now (decode-time (current-time))))
365 (+ (car now) (* (car (cdr now)) 60) (* (car (nthcdr 2 now)) 3600))))
366
367(defun gnus-seconds-month ()
368 "Return the number of seconds passed this month."
369 (let ((now (decode-time (current-time))))
370 (+ (car now) (* (car (cdr now)) 60) (* (car (nthcdr 2 now)) 3600)
371 (* (- (car (nthcdr 3 now)) 1) 3600 24))))
372
373(defun gnus-seconds-year ()
374 "Return the number of seconds passed this year."
375 (let ((now (decode-time (current-time)))
376 (days (format-time-string "%j" (current-time))))
377 (+ (car now) (* (car (cdr now)) 60) (* (car (nthcdr 2 now)) 3600)
378 (* (- (string-to-number days) 1) 3600 24))))
379
380(defvar gnus-user-date-format-alist
381 '(((gnus-seconds-today) . "%k:%M")
382 (604800 . "%a %k:%M") ;;that's one week
383 ((gnus-seconds-month) . "%a %d")
384 ((gnus-seconds-year) . "%b %d")
385 (t . "%b %d '%y")) ;;this one is used when no
386 ;;other does match
387 "Specifies date format depending on age of article.
388This is an alist of items (AGE . FORMAT). AGE can be a number (of
389seconds) or a Lisp expression evaluating to a number. When the age of
390the article is less than this number, then use `format-time-string'
391with the corresponding FORMAT for displaying the date of the article.
392If AGE is not a number or a Lisp expression evaluating to a
393non-number, then the corresponding FORMAT is used as a default value.
394
395Note that the list is processed from the beginning, so it should be
396sorted by ascending AGE. Also note that items following the first
397non-number AGE will be ignored.
398
399You can use the functions `gnus-seconds-today', `gnus-seconds-month'
400and `gnus-seconds-year' in the AGE spec. They return the number of
401seconds passed since the start of today, of this month, of this year,
402respectively.")
403
404(defun gnus-user-date (messy-date)
405 "Format the messy-date according to gnus-user-date-format-alist.
406Returns \" ? \" if there's bad input or if an other error occurs.
407Input should look like this: \"Sun, 14 Oct 2001 13:34:39 +0200\"."
408 (condition-case ()
409 (let* ((messy-date (time-to-seconds (safe-date-to-time messy-date)))
410 (now (time-to-seconds (current-time)))
411 ;;If we don't find something suitable we'll use this one
412 (my-format "%b %d '%y"))
413 (let* ((difference (- now messy-date))
414 (templist gnus-user-date-format-alist)
415 (top (eval (caar templist))))
416 (while (if (numberp top) (< top difference) (not top))
417 (progn
418 (setq templist (cdr templist))
419 (setq top (eval (caar templist)))))
420 (if (stringp (cdr (car templist)))
421 (setq my-format (cdr (car templist)))))
422 (format-time-string (eval my-format) (seconds-to-time messy-date)))
423 (error " ? ")))
424
eec82323 425(defun gnus-dd-mmm (messy-date)
6748645f 426 "Return a string like DD-MMM from a big messy string."
16409b0b
GM
427 (condition-case ()
428 (format-time-string "%d-%b" (safe-date-to-time messy-date))
429 (error " - ")))
eec82323
LMI
430
431(defmacro gnus-date-get-time (date)
432 "Convert DATE string to Emacs time.
433Cache the result as a text property stored in DATE."
434 ;; Either return the cached value...
435 `(let ((d ,date))
436 (if (equal "" d)
437 '(0 0)
438 (or (get-text-property 0 'gnus-time d)
439 ;; or compute the value...
16409b0b 440 (let ((time (safe-date-to-time d)))
eec82323
LMI
441 ;; and store it back in the string.
442 (put-text-property 0 1 'gnus-time time d)
443 time)))))
444
445(defsubst gnus-time-iso8601 (time)
8b93df01 446 "Return a string of TIME in YYYYMMDDTHHMMSS format."
eec82323
LMI
447 (format-time-string "%Y%m%dT%H%M%S" time))
448
6748645f 449(defun gnus-date-iso8601 (date)
8b93df01 450 "Convert the DATE to YYYYMMDDTHHMMSS."
eec82323 451 (condition-case ()
6748645f 452 (gnus-time-iso8601 (gnus-date-get-time date))
eec82323
LMI
453 (error "")))
454
455(defun gnus-mode-string-quote (string)
456 "Quote all \"%\"'s in STRING."
23f87bed 457 (gnus-replace-in-string string "%" "%%"))
eec82323
LMI
458
459;; Make a hash table (default and minimum size is 256).
460;; Optional argument HASHSIZE specifies the table size.
461(defun gnus-make-hashtable (&optional hashsize)
462 (make-vector (if hashsize (max (gnus-create-hash-size hashsize) 256) 256) 0))
463
464;; Make a number that is suitable for hashing; bigger than MIN and
465;; equal to some 2^x. Many machines (such as sparcs) do not have a
466;; hardware modulo operation, so they implement it in software. On
467;; many sparcs over 50% of the time to intern is spent in the modulo.
468;; Yes, it's slower than actually computing the hash from the string!
469;; So we use powers of 2 so people can optimize the modulo to a mask.
470(defun gnus-create-hash-size (min)
471 (let ((i 1))
472 (while (< i min)
473 (setq i (* 2 i)))
474 i))
475
476(defcustom gnus-verbose 7
477 "*Integer that says how verbose Gnus should be.
478The higher the number, the more messages Gnus will flash to say what
479it's doing. At zero, Gnus will be totally mute; at five, Gnus will
480display most important messages; and at ten, Gnus will keep on
481jabbering all the time."
482 :group 'gnus-start
483 :type 'integer)
484
eec82323 485(defun gnus-message (level &rest args)
23f87bed
MB
486 "If LEVEL is lower than `gnus-verbose' print ARGS using `message'.
487
488Guideline for numbers:
4891 - error messages, 3 - non-serious error messages, 5 - messages for things
490that take a long time, 7 - not very important messages on stuff, 9 - messages
491inside loops."
eec82323
LMI
492 (if (<= level gnus-verbose)
493 (apply 'message args)
494 ;; We have to do this format thingy here even if the result isn't
495 ;; shown - the return value has to be the same as the return value
496 ;; from `message'.
497 (apply 'format args)))
498
499(defun gnus-error (level &rest args)
500 "Beep an error if LEVEL is equal to or less than `gnus-verbose'."
501 (when (<= (floor level) gnus-verbose)
502 (apply 'message args)
503 (ding)
504 (let (duration)
505 (when (and (floatp level)
506 (not (zerop (setq duration (* 10 (- level (floor level)))))))
507 (sit-for duration))))
508 nil)
509
510(defun gnus-split-references (references)
511 "Return a list of Message-IDs in REFERENCES."
512 (let ((beg 0)
513 ids)
23f87bed 514 (while (string-match "<[^<]+[^< \t]" references beg)
eec82323
LMI
515 (push (substring references (match-beginning 0) (setq beg (match-end 0)))
516 ids))
517 (nreverse ids)))
518
16409b0b 519(defsubst gnus-parent-id (references &optional n)
eec82323
LMI
520 "Return the last Message-ID in REFERENCES.
521If N, return the Nth ancestor instead."
23f87bed
MB
522 (when (and references
523 (not (zerop (length references))))
524 (if n
525 (let ((ids (inline (gnus-split-references references))))
526 (while (nthcdr n ids)
527 (setq ids (cdr ids)))
528 (car ids))
529 (when (string-match "\\(<[^<]+>\\)[ \t]*\\'" references)
530 (match-string 1 references)))))
531
532(defun gnus-buffer-live-p (buffer)
eec82323
LMI
533 "Say whether BUFFER is alive or not."
534 (and buffer
535 (get-buffer buffer)
536 (buffer-name (get-buffer buffer))))
537
538(defun gnus-horizontal-recenter ()
539 "Recenter the current buffer horizontally."
540 (if (< (current-column) (/ (window-width) 2))
23f87bed 541 (set-window-hscroll (gnus-get-buffer-window (current-buffer) t) 0)
eec82323 542 (let* ((orig (point))
23f87bed 543 (end (window-end (gnus-get-buffer-window (current-buffer) t)))
eec82323 544 (max 0))
6748645f
LMI
545 (when end
546 ;; Find the longest line currently displayed in the window.
547 (goto-char (window-start))
548 (while (and (not (eobp))
549 (< (point) end))
550 (end-of-line)
551 (setq max (max max (current-column)))
552 (forward-line 1))
553 (goto-char orig)
554 ;; Scroll horizontally to center (sort of) the point.
555 (if (> max (window-width))
556 (set-window-hscroll
23f87bed 557 (gnus-get-buffer-window (current-buffer) t)
6748645f
LMI
558 (min (- (current-column) (/ (window-width) 3))
559 (+ 2 (- max (window-width)))))
23f87bed 560 (set-window-hscroll (gnus-get-buffer-window (current-buffer) t) 0))
6748645f 561 max))))
eec82323 562
23f87bed 563(defun gnus-read-event-char (&optional prompt)
eec82323 564 "Get the next event."
23f87bed 565 (let ((event (read-event prompt)))
eec82323
LMI
566 ;; should be gnus-characterp, but this can't be called in XEmacs anyway
567 (cons (and (numberp event) event) event)))
568
569(defun gnus-sortable-date (date)
16409b0b
GM
570 "Make string suitable for sorting from DATE."
571 (gnus-time-iso8601 (date-to-time date)))
eec82323
LMI
572
573(defun gnus-copy-file (file &optional to)
574 "Copy FILE to TO."
575 (interactive
576 (list (read-file-name "Copy file: " default-directory)
577 (read-file-name "Copy file to: " default-directory)))
578 (unless to
579 (setq to (read-file-name "Copy file to: " default-directory)))
580 (when (file-directory-p to)
581 (setq to (concat (file-name-as-directory to)
582 (file-name-nondirectory file))))
583 (copy-file file to))
584
eec82323
LMI
585(defvar gnus-work-buffer " *gnus work*")
586
587(defun gnus-set-work-buffer ()
588 "Put point in the empty Gnus work buffer."
589 (if (get-buffer gnus-work-buffer)
590 (progn
591 (set-buffer gnus-work-buffer)
592 (erase-buffer))
6748645f 593 (set-buffer (gnus-get-buffer-create gnus-work-buffer))
eec82323 594 (kill-all-local-variables)
16409b0b 595 (mm-enable-multibyte)))
eec82323
LMI
596
597(defmacro gnus-group-real-name (group)
598 "Find the real name of a foreign newsgroup."
599 `(let ((gname ,group))
600 (if (string-match "^[^:]+:" gname)
601 (substring gname (match-end 0))
602 gname)))
603
604(defun gnus-make-sort-function (funs)
23f87bed 605 "Return a composite sort condition based on the functions in FUNS."
eec82323 606 (cond
16409b0b 607 ;; Just a simple function.
23f87bed 608 ((functionp funs) funs)
16409b0b 609 ;; No functions at all.
eec82323 610 ((null funs) funs)
16409b0b
GM
611 ;; A list of functions.
612 ((or (cdr funs)
613 (listp (car funs)))
23f87bed
MB
614 (gnus-byte-compile
615 `(lambda (t1 t2)
616 ,(gnus-make-sort-function-1 (reverse funs)))))
16409b0b 617 ;; A list containing just one function.
eec82323
LMI
618 (t
619 (car funs))))
620
621(defun gnus-make-sort-function-1 (funs)
23f87bed 622 "Return a composite sort condition based on the functions in FUNS."
16409b0b
GM
623 (let ((function (car funs))
624 (first 't1)
625 (last 't2))
626 (when (consp function)
627 (cond
628 ;; Reversed spec.
629 ((eq (car function) 'not)
630 (setq function (cadr function)
631 first 't2
632 last 't1))
23f87bed 633 ((functionp function)
16409b0b
GM
634 ;; Do nothing.
635 )
636 (t
637 (error "Invalid sort spec: %s" function))))
638 (if (cdr funs)
639 `(or (,function ,first ,last)
640 (and (not (,function ,last ,first))
641 ,(gnus-make-sort-function-1 (cdr funs))))
642 `(,function ,first ,last))))
eec82323
LMI
643
644(defun gnus-turn-off-edit-menu (type)
645 "Turn off edit menu in `gnus-TYPE-mode-map'."
646 (define-key (symbol-value (intern (format "gnus-%s-mode-map" type)))
647 [menu-bar edit] 'undefined))
648
23f87bed
MB
649(defmacro gnus-bind-print-variables (&rest forms)
650 "Bind print-* variables and evaluate FORMS.
651This macro is used with `prin1', `pp', etc. in order to ensure printed
652Lisp objects are loadable. Bind `print-quoted' and `print-readably'
653to t, and `print-escape-multibyte', `print-escape-newlines',
654`print-escape-nonascii', `print-length', `print-level' and
655`print-string-length' to nil."
656 `(let ((print-quoted t)
657 (print-readably t)
658 ;;print-circle
659 ;;print-continuous-numbering
660 print-escape-multibyte
661 print-escape-newlines
662 print-escape-nonascii
663 ;;print-gensym
664 print-length
665 print-level
666 print-string-length)
667 ,@forms))
668
eec82323
LMI
669(defun gnus-prin1 (form)
670 "Use `prin1' on FORM in the current buffer.
23f87bed
MB
671Bind `print-quoted' and `print-readably' to t, and `print-length' and
672`print-level' to nil. See also `gnus-bind-print-variables'."
673 (gnus-bind-print-variables (prin1 form (current-buffer))))
eec82323
LMI
674
675(defun gnus-prin1-to-string (form)
23f87bed
MB
676 "The same as `prin1'.
677Bind `print-quoted' and `print-readably' to t, and `print-length' and
678`print-level' to nil. See also `gnus-bind-print-variables'."
679 (gnus-bind-print-variables (prin1-to-string form)))
680
681(defun gnus-pp (form)
682 "Use `pp' on FORM in the current buffer.
683Bind `print-quoted' and `print-readably' to t, and `print-length' and
684`print-level' to nil. See also `gnus-bind-print-variables'."
685 (gnus-bind-print-variables (pp form (current-buffer))))
686
687(defun gnus-pp-to-string (form)
688 "The same as `pp-to-string'.
689Bind `print-quoted' and `print-readably' to t, and `print-length' and
690`print-level' to nil. See also `gnus-bind-print-variables'."
691 (gnus-bind-print-variables (pp-to-string form)))
eec82323
LMI
692
693(defun gnus-make-directory (directory)
694 "Make DIRECTORY (and all its parents) if it doesn't exist."
5eee36fa 695 (require 'nnmail)
16409b0b
GM
696 (let ((file-name-coding-system nnmail-pathname-coding-system))
697 (when (and directory
698 (not (file-exists-p directory)))
699 (make-directory directory t)))
eec82323
LMI
700 t)
701
702(defun gnus-write-buffer (file)
703 "Write the current buffer's contents to FILE."
704 ;; Make sure the directory exists.
705 (gnus-make-directory (file-name-directory file))
16409b0b
GM
706 (let ((file-name-coding-system nnmail-pathname-coding-system))
707 ;; Write the buffer.
708 (write-region (point-min) (point-max) file nil 'quietly)))
eec82323 709
eec82323
LMI
710(defun gnus-delete-file (file)
711 "Delete FILE if it exists."
712 (when (file-exists-p file)
713 (delete-file file)))
714
aa0a8561
MB
715(defun gnus-delete-directory (directory)
716 "Delete files in DIRECTORY. Subdirectories remain.
717If there's no subdirectory, delete DIRECTORY as well."
718 (when (file-directory-p directory)
719 (let ((files (directory-files
720 directory t "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"))
721 file dir)
722 (while files
723 (setq file (pop files))
724 (if (eq t (car (file-attributes file)))
725 ;; `file' is a subdirectory.
726 (setq dir t)
727 ;; `file' is a file or a symlink.
728 (delete-file file)))
729 (unless dir
730 (delete-directory directory)))))
731
eec82323
LMI
732(defun gnus-strip-whitespace (string)
733 "Return STRING stripped of all whitespace."
734 (while (string-match "[\r\n\t ]+" string)
735 (setq string (replace-match "" t t string)))
736 string)
737
16409b0b 738(defsubst gnus-put-text-property-excluding-newlines (beg end prop val)
eec82323
LMI
739 "The same as `put-text-property', but don't put this prop on any newlines in the region."
740 (save-match-data
741 (save-excursion
742 (save-restriction
743 (goto-char beg)
16409b0b 744 (while (re-search-forward gnus-emphasize-whitespace-regexp end 'move)
6748645f 745 (gnus-put-text-property beg (match-beginning 0) prop val)
eec82323 746 (setq beg (point)))
6748645f
LMI
747 (gnus-put-text-property beg (point) prop val)))))
748
23f87bed
MB
749(defsubst gnus-put-overlay-excluding-newlines (beg end prop val)
750 "The same as `put-text-property', but don't put this prop on any newlines in the region."
751 (save-match-data
752 (save-excursion
753 (save-restriction
754 (goto-char beg)
755 (while (re-search-forward gnus-emphasize-whitespace-regexp end 'move)
756 (gnus-overlay-put
757 (gnus-make-overlay beg (match-beginning 0))
758 prop val)
759 (setq beg (point)))
760 (gnus-overlay-put (gnus-make-overlay beg (point)) prop val)))))
761
6748645f
LMI
762(defun gnus-put-text-property-excluding-characters-with-faces (beg end
763 prop val)
764 "The same as `put-text-property', but don't put props on characters with the `gnus-face' property."
765 (let ((b beg))
766 (while (/= b end)
767 (when (get-text-property b 'gnus-face)
768 (setq b (next-single-property-change b 'gnus-face nil end)))
769 (when (/= b end)
23f87bed
MB
770 (inline
771 (gnus-put-text-property
772 b (setq b (next-single-property-change b 'gnus-face nil end))
773 prop val))))))
774
775(defmacro gnus-faces-at (position)
776 "Return a list of faces at POSITION."
777 (if (featurep 'xemacs)
778 `(let ((pos ,position))
779 (mapcar-extents 'extent-face
780 nil (current-buffer) pos pos nil 'face))
781 `(let ((pos ,position))
782 (delq nil (cons (get-text-property pos 'face)
783 (mapcar
784 (lambda (overlay)
785 (overlay-get overlay 'face))
786 (overlays-at pos)))))))
eec82323
LMI
787
788;;; Protected and atomic operations. dmoore@ucsd.edu 21.11.1996
789;;; The primary idea here is to try to protect internal datastructures
790;;; from becoming corrupted when the user hits C-g, or if a hook or
791;;; similar blows up. Often in Gnus multiple tables/lists need to be
792;;; updated at the same time, or information can be lost.
793
794(defvar gnus-atomic-be-safe t
795 "If t, certain operations will be protected from interruption by C-g.")
796
797(defmacro gnus-atomic-progn (&rest forms)
798 "Evaluate FORMS atomically, which means to protect the evaluation
799from being interrupted by the user. An error from the forms themselves
800will return without finishing the operation. Since interrupts from
801the user are disabled, it is recommended that only the most minimal
802operations are performed by FORMS. If you wish to assign many
803complicated values atomically, compute the results into temporary
804variables and then do only the assignment atomically."
805 `(let ((inhibit-quit gnus-atomic-be-safe))
806 ,@forms))
807
808(put 'gnus-atomic-progn 'lisp-indent-function 0)
809
810(defmacro gnus-atomic-progn-assign (protect &rest forms)
811 "Evaluate FORMS, but insure that the variables listed in PROTECT
812are not changed if anything in FORMS signals an error or otherwise
813non-locally exits. The variables listed in PROTECT are updated atomically.
814It is safe to use gnus-atomic-progn-assign with long computations.
815
816Note that if any of the symbols in PROTECT were unbound, they will be
8f688cb0 817set to nil on a successful assignment. In case of an error or other
eec82323
LMI
818non-local exit, it will still be unbound."
819 (let* ((temp-sym-map (mapcar (lambda (x) (list (make-symbol
820 (concat (symbol-name x)
821 "-tmp"))
822 x))
823 protect))
824 (sym-temp-map (mapcar (lambda (x) (list (cadr x) (car x)))
825 temp-sym-map))
826 (temp-sym-let (mapcar (lambda (x) (list (car x)
827 `(and (boundp ',(cadr x))
828 ,(cadr x))))
829 temp-sym-map))
830 (sym-temp-let sym-temp-map)
831 (temp-sym-assign (apply 'append temp-sym-map))
832 (sym-temp-assign (apply 'append sym-temp-map))
833 (result (make-symbol "result-tmp")))
834 `(let (,@temp-sym-let
835 ,result)
836 (let ,sym-temp-let
837 (setq ,result (progn ,@forms))
838 (setq ,@temp-sym-assign))
839 (let ((inhibit-quit gnus-atomic-be-safe))
840 (setq ,@sym-temp-assign))
841 ,result)))
842
843(put 'gnus-atomic-progn-assign 'lisp-indent-function 1)
844;(put 'gnus-atomic-progn-assign 'edebug-form-spec '(sexp body))
845
846(defmacro gnus-atomic-setq (&rest pairs)
847 "Similar to setq, except that the real symbols are only assigned when
848there are no errors. And when the real symbols are assigned, they are
849done so atomically. If other variables might be changed via side-effect,
850see gnus-atomic-progn-assign. It is safe to use gnus-atomic-setq
851with potentially long computations."
852 (let ((tpairs pairs)
853 syms)
854 (while tpairs
855 (push (car tpairs) syms)
856 (setq tpairs (cddr tpairs)))
857 `(gnus-atomic-progn-assign ,syms
858 (setq ,@pairs))))
859
860;(put 'gnus-atomic-setq 'edebug-form-spec '(body))
861
862
863;;; Functions for saving to babyl/mail files.
864
23f87bed
MB
865(eval-when-compile
866 (condition-case nil
867 (progn
868 (require 'rmail)
869 (autoload 'rmail-update-summary "rmailsum"))
870 (error
871 (define-compiler-macro rmail-select-summary (&rest body)
872 ;; Rmail of the XEmacs version is supplied by the package, and
873 ;; requires tm and apel packages. However, there may be those
874 ;; who haven't installed those packages. This macro helps such
875 ;; people even if they install those packages later.
876 `(eval '(rmail-select-summary ,@body)))
877 ;; If there's rmail but there's no tm (or there's apel of the
878 ;; mainstream, not the XEmacs version), loading rmail of the XEmacs
879 ;; version fails halfway, however it provides the rmail-select-summary
880 ;; macro which uses the following functions:
881 (autoload 'rmail-summary-displayed "rmail")
882 (autoload 'rmail-maybe-display-summary "rmail")))
883 (defvar rmail-default-rmail-file)
884 (defvar mm-text-coding-system))
885
eec82323
LMI
886(defun gnus-output-to-rmail (filename &optional ask)
887 "Append the current article to an Rmail file named FILENAME."
888 (require 'rmail)
23f87bed 889 (require 'mm-util)
eec82323
LMI
890 ;; Most of these codes are borrowed from rmailout.el.
891 (setq filename (expand-file-name filename))
892 (setq rmail-default-rmail-file filename)
893 (let ((artbuf (current-buffer))
894 (tmpbuf (get-buffer-create " *Gnus-output*")))
895 (save-excursion
896 (or (get-file-buffer filename)
897 (file-exists-p filename)
898 (if (or (not ask)
899 (gnus-yes-or-no-p
900 (concat "\"" filename "\" does not exist, create it? ")))
901 (let ((file-buffer (create-file-buffer filename)))
902 (save-excursion
903 (set-buffer file-buffer)
904 (rmail-insert-rmail-file-header)
16409b0b
GM
905 (let ((require-final-newline nil)
906 (coding-system-for-write mm-text-coding-system))
eec82323
LMI
907 (gnus-write-buffer filename)))
908 (kill-buffer file-buffer))
909 (error "Output file does not exist")))
910 (set-buffer tmpbuf)
911 (erase-buffer)
912 (insert-buffer-substring artbuf)
913 (gnus-convert-article-to-rmail)
914 ;; Decide whether to append to a file or to an Emacs buffer.
915 (let ((outbuf (get-file-buffer filename)))
916 (if (not outbuf)
47e77e9f
SZ
917 (let ((file-name-coding-system nnmail-pathname-coding-system))
918 (mm-append-to-file (point-min) (point-max) filename))
eec82323
LMI
919 ;; File has been visited, in buffer OUTBUF.
920 (set-buffer outbuf)
921 (let ((buffer-read-only nil)
922 (msg (and (boundp 'rmail-current-message)
923 (symbol-value 'rmail-current-message))))
924 ;; If MSG is non-nil, buffer is in RMAIL mode.
925 (when msg
926 (widen)
927 (narrow-to-region (point-max) (point-max)))
928 (insert-buffer-substring tmpbuf)
929 (when msg
930 (goto-char (point-min))
931 (widen)
23f87bed
MB
932 (search-backward "\n\^_")
933 (narrow-to-region (point) (point-max))
934 (rmail-count-new-messages t)
935 (when (rmail-summary-exists)
6748645f
LMI
936 (rmail-select-summary
937 (rmail-update-summary)))
eec82323 938 (rmail-count-new-messages t)
6748645f
LMI
939 (rmail-show-message msg))
940 (save-buffer)))))
eec82323
LMI
941 (kill-buffer tmpbuf)))
942
943(defun gnus-output-to-mail (filename &optional ask)
944 "Append the current article to a mail file named FILENAME."
945 (setq filename (expand-file-name filename))
946 (let ((artbuf (current-buffer))
947 (tmpbuf (get-buffer-create " *Gnus-output*")))
948 (save-excursion
949 ;; Create the file, if it doesn't exist.
950 (when (and (not (get-file-buffer filename))
951 (not (file-exists-p filename)))
952 (if (or (not ask)
953 (gnus-y-or-n-p
954 (concat "\"" filename "\" does not exist, create it? ")))
955 (let ((file-buffer (create-file-buffer filename)))
956 (save-excursion
957 (set-buffer file-buffer)
16409b0b
GM
958 (let ((require-final-newline nil)
959 (coding-system-for-write mm-text-coding-system))
eec82323
LMI
960 (gnus-write-buffer filename)))
961 (kill-buffer file-buffer))
962 (error "Output file does not exist")))
963 (set-buffer tmpbuf)
964 (erase-buffer)
965 (insert-buffer-substring artbuf)
966 (goto-char (point-min))
967 (if (looking-at "From ")
968 (forward-line 1)
969 (insert "From nobody " (current-time-string) "\n"))
970 (let (case-fold-search)
971 (while (re-search-forward "^From " nil t)
972 (beginning-of-line)
973 (insert ">")))
974 ;; Decide whether to append to a file or to an Emacs buffer.
975 (let ((outbuf (get-file-buffer filename)))
976 (if (not outbuf)
977 (let ((buffer-read-only nil))
978 (save-excursion
979 (goto-char (point-max))
980 (forward-char -2)
981 (unless (looking-at "\n\n")
982 (goto-char (point-max))
983 (unless (bolp)
984 (insert "\n"))
985 (insert "\n"))
986 (goto-char (point-max))
47e77e9f
SZ
987 (let ((file-name-coding-system nnmail-pathname-coding-system))
988 (mm-append-to-file (point-min) (point-max) filename))))
eec82323
LMI
989 ;; File has been visited, in buffer OUTBUF.
990 (set-buffer outbuf)
991 (let ((buffer-read-only nil))
992 (goto-char (point-max))
993 (unless (eobp)
994 (insert "\n"))
995 (insert "\n")
996 (insert-buffer-substring tmpbuf)))))
997 (kill-buffer tmpbuf)))
998
999(defun gnus-convert-article-to-rmail ()
1000 "Convert article in current buffer to Rmail message format."
1001 (let ((buffer-read-only nil))
1002 ;; Convert article directly into Babyl format.
1003 (goto-char (point-min))
1004 (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
1005 (while (search-forward "\n\^_" nil t) ;single char
1006 (replace-match "\n^_" t t)) ;2 chars: "^" and "_"
1007 (goto-char (point-max))
1008 (insert "\^_")))
1009
6748645f 1010(defun gnus-map-function (funs arg)
23f87bed 1011 "Apply the result of the first function in FUNS to the second, and so on.
6748645f 1012ARG is passed to the first function."
23f87bed
MB
1013 (while funs
1014 (setq arg (funcall (pop funs) arg)))
1015 arg)
6748645f
LMI
1016
1017(defun gnus-run-hooks (&rest funcs)
23f87bed
MB
1018 "Does the same as `run-hooks', but saves the current buffer."
1019 (save-current-buffer
1020 (apply 'run-hooks funcs)))
6748645f 1021
b4e8a25b 1022(defun gnus-run-mode-hooks (&rest funcs)
cfcd5c91
MB
1023 "Run `run-mode-hooks' if it is available, otherwise `run-hooks'.
1024This function saves the current buffer."
b4e8a25b 1025 (if (fboundp 'run-mode-hooks)
cfcd5c91
MB
1026 (save-current-buffer (apply 'run-mode-hooks funcs))
1027 (save-current-buffer (apply 'run-hooks funcs))))
b4e8a25b 1028
6748645f
LMI
1029;;; Various
1030
16409b0b 1031(defvar gnus-group-buffer) ; Compiler directive
6748645f
LMI
1032(defun gnus-alive-p ()
1033 "Say whether Gnus is running or not."
1034 (and (boundp 'gnus-group-buffer)
1035 (get-buffer gnus-group-buffer)
1036 (save-excursion
1037 (set-buffer gnus-group-buffer)
1038 (eq major-mode 'gnus-group-mode))))
1039
1040(defun gnus-remove-duplicates (list)
23f87bed
MB
1041 (let (new)
1042 (while list
1043 (or (member (car list) new)
1044 (setq new (cons (car list) new)))
1045 (setq list (cdr list)))
6748645f
LMI
1046 (nreverse new)))
1047
23f87bed
MB
1048(defun gnus-remove-if (predicate list)
1049 "Return a copy of LIST with all items satisfying PREDICATE removed."
6748645f
LMI
1050 (let (out)
1051 (while list
1052 (unless (funcall predicate (car list))
1053 (push (car list) out))
23f87bed 1054 (setq list (cdr list)))
6748645f
LMI
1055 (nreverse out)))
1056
23f87bed
MB
1057(if (fboundp 'assq-delete-all)
1058 (defalias 'gnus-delete-alist 'assq-delete-all)
1059 (defun gnus-delete-alist (key alist)
1060 "Delete from ALIST all elements whose car is KEY.
1061Return the modified alist."
1062 (let (entry)
1063 (while (setq entry (assq key alist))
1064 (setq alist (delq entry alist)))
1065 alist)))
6748645f 1066
16409b0b 1067(defmacro gnus-pull (key alist &optional assoc-p)
6748645f
LMI
1068 "Modify ALIST to be without KEY."
1069 (unless (symbolp alist)
1070 (error "Not a symbol: %s" alist))
16409b0b
GM
1071 (let ((fun (if assoc-p 'assoc 'assq)))
1072 `(setq ,alist (delq (,fun ,key ,alist) ,alist))))
6748645f
LMI
1073
1074(defun gnus-globalify-regexp (re)
23f87bed 1075 "Return a regexp that matches a whole line, iff RE matches a part of it."
6748645f
LMI
1076 (concat (unless (string-match "^\\^" re) "^.*")
1077 re
1078 (unless (string-match "\\$$" re) ".*$")))
1079
16409b0b
GM
1080(defun gnus-set-window-start (&optional point)
1081 "Set the window start to POINT, or (point) if nil."
23f87bed 1082 (let ((win (gnus-get-buffer-window (current-buffer) t)))
16409b0b
GM
1083 (when win
1084 (set-window-start win (or point (point))))))
1085
1086(defun gnus-annotation-in-region-p (b e)
1087 (if (= b e)
1088 (eq (cadr (memq 'gnus-undeletable (text-properties-at b))) t)
1089 (text-property-any b e 'gnus-undeletable t)))
1090
1091(defun gnus-or (&rest elems)
1092 "Return non-nil if any of the elements are non-nil."
1093 (catch 'found
1094 (while elems
1095 (when (pop elems)
1096 (throw 'found t)))))
1097
1098(defun gnus-and (&rest elems)
1099 "Return non-nil if all of the elements are non-nil."
1100 (catch 'found
1101 (while elems
1102 (unless (pop elems)
1103 (throw 'found nil)))
1104 t))
1105
1106(defun gnus-write-active-file (file hashtb &optional full-names)
1107 (let ((coding-system-for-write nnmail-active-file-coding-system))
1108 (with-temp-file file
1109 (mapatoms
1110 (lambda (sym)
1111 (when (and sym
1112 (boundp sym)
1113 (symbol-value sym))
1114 (insert (format "%S %d %d y\n"
1115 (if full-names
1116 sym
1117 (intern (gnus-group-real-name (symbol-name sym))))
1118 (or (cdr (symbol-value sym))
1119 (car (symbol-value sym)))
1120 (car (symbol-value sym))))))
1121 hashtb)
1122 (goto-char (point-max))
1123 (while (search-backward "\\." nil t)
1124 (delete-char 1)))))
1125
23f87bed
MB
1126;; Fixme: Why not use `with-output-to-temp-buffer'?
1127(defmacro gnus-with-output-to-file (file &rest body)
1128 (let ((buffer (make-symbol "output-buffer"))
1129 (size (make-symbol "output-buffer-size"))
1130 (leng (make-symbol "output-buffer-length"))
1131 (append (make-symbol "output-buffer-append")))
1132 `(let* ((,size 131072)
1133 (,buffer (make-string ,size 0))
1134 (,leng 0)
1135 (,append nil)
1136 (standard-output
1137 (lambda (c)
1138 (aset ,buffer ,leng c)
bf247b6e 1139
23f87bed
MB
1140 (if (= ,size (setq ,leng (1+ ,leng)))
1141 (progn (write-region ,buffer nil ,file ,append 'no-msg)
1142 (setq ,leng 0
1143 ,append t))))))
1144 ,@body
1145 (when (> ,leng 0)
1146 (let ((coding-system-for-write 'no-conversion))
1147 (write-region (substring ,buffer 0 ,leng) nil ,file
1148 ,append 'no-msg))))))
1149
1150(put 'gnus-with-output-to-file 'lisp-indent-function 1)
1151(put 'gnus-with-output-to-file 'edebug-form-spec '(form body))
1152
1153(if (fboundp 'union)
1154 (defalias 'gnus-union 'union)
1155 (defun gnus-union (l1 l2)
1156 "Set union of lists L1 and L2."
1157 (cond ((null l1) l2)
1158 ((null l2) l1)
1159 ((equal l1 l2) l1)
1160 (t
1161 (or (>= (length l1) (length l2))
1162 (setq l1 (prog1 l2 (setq l2 l1))))
1163 (while l2
1164 (or (member (car l2) l1)
1165 (push (car l2) l1))
1166 (pop l2))
1167 l1))))
1168
520aa572
SZ
1169(defun gnus-add-text-properties-when
1170 (property value start end properties &optional object)
1171 "Like `gnus-add-text-properties', only applied on where PROPERTY is VALUE."
1172 (let (point)
3d8c35d3 1173 (while (and start
23f87bed 1174 (< start end) ;; XEmacs will loop for every when start=end.
520aa572
SZ
1175 (setq point (text-property-not-all start end property value)))
1176 (gnus-add-text-properties start point properties object)
1177 (setq start (text-property-any point end property value)))
1178 (if start
1179 (gnus-add-text-properties start end properties object))))
1180
1181(defun gnus-remove-text-properties-when
1182 (property value start end properties &optional object)
1183 "Like `remove-text-properties', only applied on where PROPERTY is VALUE."
1184 (let (point)
3d8c35d3 1185 (while (and start
23f87bed 1186 (< start end)
520aa572
SZ
1187 (setq point (text-property-not-all start end property value)))
1188 (remove-text-properties start point properties object)
1189 (setq start (text-property-any point end property value)))
1190 (if start
4481aa98
SZ
1191 (remove-text-properties start end properties object))
1192 t))
520aa572 1193
23f87bed
MB
1194;; This might use `compare-strings' to reduce consing in the
1195;; case-insensitive case, but it has to cope with null args.
1196;; (`string-equal' uses symbol print names.)
1197(defun gnus-string-equal (x y)
1198 "Like `string-equal', except it compares case-insensitively."
1199 (and (= (length x) (length y))
1200 (or (string-equal x y)
1201 (string-equal (downcase x) (downcase y)))))
1202
1203(defcustom gnus-use-byte-compile t
1204 "If non-nil, byte-compile crucial run-time code.
1205Setting it to nil has no effect after the first time `gnus-byte-compile'
1206is run."
1207 :type 'boolean
bf247b6e 1208 :version "22.1"
23f87bed
MB
1209 :group 'gnus-various)
1210
1211(defun gnus-byte-compile (form)
1212 "Byte-compile FORM if `gnus-use-byte-compile' is non-nil."
1213 (if gnus-use-byte-compile
1214 (progn
1215 (condition-case nil
1216 ;; Work around a bug in XEmacs 21.4
1217 (require 'byte-optimize)
1218 (error))
1219 (require 'bytecomp)
1220 (defalias 'gnus-byte-compile
1221 (lambda (form)
1222 (let ((byte-compile-warnings '(unresolved callargs redefine)))
1223 (byte-compile form))))
1224 (gnus-byte-compile form))
1225 form))
1226
1227(defun gnus-remassoc (key alist)
1228 "Delete by side effect any elements of LIST whose car is `equal' to KEY.
1229The modified LIST is returned. If the first member
1230of LIST has a car that is `equal' to KEY, there is no way to remove it
54506618 1231by side effect; therefore, write `(setq foo (gnus-remassoc key foo))' to be
23f87bed
MB
1232sure of changing the value of `foo'."
1233 (when alist
1234 (if (equal key (caar alist))
1235 (cdr alist)
1236 (setcdr alist (gnus-remassoc key (cdr alist)))
1237 alist)))
1238
1239(defun gnus-update-alist-soft (key value alist)
1240 (if value
1241 (cons (cons key value) (gnus-remassoc key alist))
1242 (gnus-remassoc key alist)))
1243
1244(defun gnus-create-info-command (node)
1245 "Create a command that will go to info NODE."
1246 `(lambda ()
1247 (interactive)
1248 ,(concat "Enter the info system at node " node)
1249 (Info-goto-node ,node)
1250 (setq gnus-info-buffer (current-buffer))
1251 (gnus-configure-windows 'info)))
1252
1253(defun gnus-not-ignore (&rest args)
1254 t)
1255
47b63dfa
SZ
1256(defvar gnus-directory-sep-char-regexp "/"
1257 "The regexp of directory separator character.
1258If you find some problem with the directory separator character, try
1259\"[/\\\\\]\" for some systems.")
1260
23f87bed
MB
1261(defun gnus-url-unhex (x)
1262 (if (> x ?9)
1263 (if (>= x ?a)
1264 (+ 10 (- x ?a))
1265 (+ 10 (- x ?A)))
1266 (- x ?0)))
1267
1268;; Fixme: Do it like QP.
1269(defun gnus-url-unhex-string (str &optional allow-newlines)
1270 "Remove %XX, embedded spaces, etc in a url.
1271If optional second argument ALLOW-NEWLINES is non-nil, then allow the
1272decoding of carriage returns and line feeds in the string, which is normally
1273forbidden in URL encoding."
1274 (let ((tmp "")
1275 (case-fold-search t))
1276 (while (string-match "%[0-9a-f][0-9a-f]" str)
1277 (let* ((start (match-beginning 0))
1278 (ch1 (gnus-url-unhex (elt str (+ start 1))))
1279 (code (+ (* 16 ch1)
1280 (gnus-url-unhex (elt str (+ start 2))))))
1281 (setq tmp (concat
1282 tmp (substring str 0 start)
1283 (cond
1284 (allow-newlines
1285 (char-to-string code))
1286 ((or (= code ?\n) (= code ?\r))
1287 " ")
1288 (t (char-to-string code))))
1289 str (substring str (match-end 0)))))
1290 (setq tmp (concat tmp str))
1291 tmp))
1292
1293(defun gnus-make-predicate (spec)
1294 "Transform SPEC into a function that can be called.
1295SPEC is a predicate specifier that contains stuff like `or', `and',
1296`not', lists and functions. The functions all take one parameter."
1297 `(lambda (elem) ,(gnus-make-predicate-1 spec)))
1298
1299(defun gnus-make-predicate-1 (spec)
1300 (cond
1301 ((symbolp spec)
1302 `(,spec elem))
1303 ((listp spec)
1304 (if (memq (car spec) '(or and not))
1305 `(,(car spec) ,@(mapcar 'gnus-make-predicate-1 (cdr spec)))
1306 (error "Invalid predicate specifier: %s" spec)))))
1307
1308(defun gnus-local-map-property (map)
1309 "Return a list suitable for a text property list specifying keymap MAP."
1310 (cond
1311 ((featurep 'xemacs)
1312 (list 'keymap map))
1313 ((>= emacs-major-version 21)
1314 (list 'keymap map))
1315 (t
1316 (list 'local-map map))))
1317
1318(defmacro gnus-completing-read-maybe-default (prompt table &optional predicate
1319 require-match initial-contents
1320 history default)
1321 "Like `completing-read', allowing for non-existent 7th arg in older XEmacsen."
1322 `(completing-read ,prompt ,table ,predicate ,require-match
1323 ,initial-contents ,history
1324 ,@(if (and (featurep 'xemacs) (< emacs-minor-version 2))
1325 ()
1326 (list default))))
1327
1328(defun gnus-completing-read (prompt table &optional predicate require-match
1329 history)
1330 (when (and history
1331 (not (boundp history)))
1332 (set history nil))
1333 (gnus-completing-read-maybe-default
1334 (if (symbol-value history)
1335 (concat prompt " (" (car (symbol-value history)) "): ")
1336 (concat prompt ": "))
1337 table
1338 predicate
1339 require-match
1340 nil
1341 history
1342 (car (symbol-value history))))
1343
1344(defun gnus-graphic-display-p ()
1345 (or (and (fboundp 'display-graphic-p)
1346 (display-graphic-p))
1347 ;;;!!!This is bogus. Fixme!
1348 (and (featurep 'xemacs)
1349 t)))
1350
1351(put 'gnus-parse-without-error 'lisp-indent-function 0)
1352(put 'gnus-parse-without-error 'edebug-form-spec '(body))
1353
1354(defmacro gnus-parse-without-error (&rest body)
1355 "Allow continuing onto the next line even if an error occurs."
1356 `(while (not (eobp))
1357 (condition-case ()
1358 (progn
1359 ,@body
1360 (goto-char (point-max)))
1361 (error
1362 (gnus-error 4 "Invalid data on line %d"
1363 (count-lines (point-min) (point)))
1364 (forward-line 1)))))
1365
1366(defun gnus-cache-file-contents (file variable function)
1367 "Cache the contents of FILE in VARIABLE. The contents come from FUNCTION."
1368 (let ((time (nth 5 (file-attributes file)))
1369 contents value)
1370 (if (or (null (setq value (symbol-value variable)))
1371 (not (equal (car value) file))
1372 (not (equal (nth 1 value) time)))
1373 (progn
1374 (setq contents (funcall function file))
1375 (set variable (list file time contents))
1376 contents)
1377 (nth 2 value))))
1378
1379(defun gnus-multiple-choice (prompt choice &optional idx)
1380 "Ask user a multiple choice question.
1381CHOICE is a list of the choice char and help message at IDX."
1382 (let (tchar buf)
1383 (save-window-excursion
1384 (save-excursion
1385 (while (not tchar)
1386 (message "%s (%s): "
1387 prompt
1388 (concat
1389 (mapconcat (lambda (s) (char-to-string (car s)))
1390 choice ", ") ", ?"))
1391 (setq tchar (read-char))
1392 (when (not (assq tchar choice))
1393 (setq tchar nil)
1394 (setq buf (get-buffer-create "*Gnus Help*"))
1395 (pop-to-buffer buf)
1396 (fundamental-mode) ; for Emacs 20.4+
1397 (buffer-disable-undo)
1398 (erase-buffer)
1399 (insert prompt ":\n\n")
1400 (let ((max -1)
1401 (list choice)
1402 (alist choice)
1403 (idx (or idx 1))
1404 (i 0)
1405 n width pad format)
1406 ;; find the longest string to display
1407 (while list
1408 (setq n (length (nth idx (car list))))
1409 (unless (> max n)
1410 (setq max n))
1411 (setq list (cdr list)))
1412 (setq max (+ max 4)) ; %c, `:', SPACE, a SPACE at end
1413 (setq n (/ (1- (window-width)) max)) ; items per line
1414 (setq width (/ (1- (window-width)) n)) ; width of each item
1415 ;; insert `n' items, each in a field of width `width'
1416 (while alist
1417 (if (< i n)
1418 ()
1419 (setq i 0)
1420 (delete-char -1) ; the `\n' takes a char
1421 (insert "\n"))
1422 (setq pad (- width 3))
1423 (setq format (concat "%c: %-" (int-to-string pad) "s"))
1424 (insert (format format (caar alist) (nth idx (car alist))))
1425 (setq alist (cdr alist))
1426 (setq i (1+ i))))))))
1427 (if (buffer-live-p buf)
1428 (kill-buffer buf))
1429 tchar))
1430
1431(defun gnus-select-frame-set-input-focus (frame)
1432 "Select FRAME, raise it, and set input focus, if possible."
1433 (cond ((featurep 'xemacs)
1434 (raise-frame frame)
1435 (select-frame frame)
1436 (focus-frame frame))
1437 ;; The function `select-frame-set-input-focus' won't set
1438 ;; the input focus under Emacs 21.2 and X window system.
1439 ;;((fboundp 'select-frame-set-input-focus)
1440 ;; (defalias 'gnus-select-frame-set-input-focus
1441 ;; 'select-frame-set-input-focus)
1442 ;; (select-frame-set-input-focus frame))
1443 (t
1444 (raise-frame frame)
1445 (select-frame frame)
1446 (cond ((and (eq window-system 'x)
1447 (fboundp 'x-focus-frame))
1448 (x-focus-frame frame))
1449 ((eq window-system 'w32)
1450 (w32-focus-frame frame)))
1451 (when focus-follows-mouse
1452 (set-mouse-position frame (1- (frame-width frame)) 0)))))
1453
1454(defun gnus-frame-or-window-display-name (object)
1455 "Given a frame or window, return the associated display name.
1456Return nil otherwise."
1457 (if (featurep 'xemacs)
1458 (device-connection (dfw-device object))
1459 (if (or (framep object)
1460 (and (windowp object)
1461 (setq object (window-frame object))))
1462 (let ((display (frame-parameter object 'display)))
1463 (if (and (stringp display)
1464 ;; Exclude invalid display names.
1465 (string-match "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'"
1466 display))
1467 display)))))
1468
1469;; Fixme: This has only one use (in gnus-agent), which isn't worthwhile.
1470(defmacro gnus-mapcar (function seq1 &rest seqs2_n)
1471 "Apply FUNCTION to each element of the sequences, and make a list of the results.
1472If there are several sequences, FUNCTION is called with that many arguments,
1473and mapping stops as soon as the shortest sequence runs out. With just one
1474sequence, this is like `mapcar'. With several, it is like the Common Lisp
1475`mapcar' function extended to arbitrary sequence types."
1476
1477 (if seqs2_n
1478 (let* ((seqs (cons seq1 seqs2_n))
1479 (cnt 0)
1480 (heads (mapcar (lambda (seq)
1481 (make-symbol (concat "head"
1482 (int-to-string
1483 (setq cnt (1+ cnt))))))
1484 seqs))
1485 (result (make-symbol "result"))
1486 (result-tail (make-symbol "result-tail")))
1487 `(let* ,(let* ((bindings (cons nil nil))
1488 (heads heads))
1489 (nconc bindings (list (list result '(cons nil nil))))
1490 (nconc bindings (list (list result-tail result)))
1491 (while heads
1492 (nconc bindings (list (list (pop heads) (pop seqs)))))
1493 (cdr bindings))
1494 (while (and ,@heads)
1495 (setcdr ,result-tail (cons (funcall ,function
1496 ,@(mapcar (lambda (h) (list 'car h))
1497 heads))
1498 nil))
1499 (setq ,result-tail (cdr ,result-tail)
1500 ,@(apply 'nconc (mapcar (lambda (h) (list h (list 'cdr h))) heads))))
1501 (cdr ,result)))
1502 `(mapcar ,function ,seq1)))
1503
1504(if (fboundp 'merge)
1505 (defalias 'gnus-merge 'merge)
1506 ;; Adapted from cl-seq.el
1507 (defun gnus-merge (type list1 list2 pred)
1508 "Destructively merge lists LIST1 and LIST2 to produce a new list.
1509Argument TYPE is for compatibility and ignored.
1510Ordering of the elements is preserved according to PRED, a `less-than'
1511predicate on the elements."
1512 (let ((res nil))
1513 (while (and list1 list2)
1514 (if (funcall pred (car list2) (car list1))
1515 (push (pop list2) res)
1516 (push (pop list1) res)))
1517 (nconc (nreverse res) list1 list2))))
1518
1519(eval-when-compile
1520 (defvar xemacs-codename))
1521
1522(defun gnus-emacs-version ()
1523 "Stringified Emacs version."
1524 (let ((system-v
1525 (cond
1526 ((eq gnus-user-agent 'emacs-gnus-config)
1527 system-configuration)
1528 ((eq gnus-user-agent 'emacs-gnus-type)
1529 (symbol-name system-type))
1530 (t nil))))
1531 (cond
1532 ((eq gnus-user-agent 'gnus)
1533 nil)
1534 ((string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$" emacs-version)
1535 (concat "Emacs/" (match-string 1 emacs-version)
1536 (if system-v
1537 (concat " (" system-v ")")
1538 "")))
1539 ((string-match
1540 "\\([A-Z]*[Mm][Aa][Cc][Ss]\\)[^(]*\\(\\((beta.*)\\|'\\)\\)?"
1541 emacs-version)
1542 (concat
1543 (match-string 1 emacs-version)
1544 (format "/%d.%d" emacs-major-version emacs-minor-version)
1545 (if (match-beginning 3)
1546 (match-string 3 emacs-version)
1547 "")
1548 (if (boundp 'xemacs-codename)
1549 (concat
1550 " (" xemacs-codename
1551 (if system-v
1552 (concat ", " system-v ")")
1553 ")"))
1554 "")))
1555 (t emacs-version))))
1556
54506618
MB
1557(defun gnus-rename-file (old-path new-path &optional trim)
1558 "Rename OLD-PATH as NEW-PATH. If TRIM, recursively delete
1559empty directories from OLD-PATH."
1560 (when (file-exists-p old-path)
1561 (let* ((old-dir (file-name-directory old-path))
1562 (old-name (file-name-nondirectory old-path))
1563 (new-dir (file-name-directory new-path))
1564 (new-name (file-name-nondirectory new-path))
1565 temp)
1566 (gnus-make-directory new-dir)
1567 (rename-file old-path new-path t)
1568 (when trim
1569 (while (progn (setq temp (directory-files old-dir))
1570 (while (member (car temp) '("." ".."))
1571 (setq temp (cdr temp)))
1572 (= (length temp) 0))
1573 (delete-directory old-dir)
bf247b6e
KS
1574 (setq old-dir (file-name-as-directory
1575 (file-truename
54506618
MB
1576 (concat old-dir "..")))))))))
1577
4a43ee9b
MB
1578(if (fboundp 'set-process-query-on-exit-flag)
1579 (defalias 'gnus-set-process-query-on-exit-flag
1580 'set-process-query-on-exit-flag)
1581 (defalias 'gnus-set-process-query-on-exit-flag
1582 'process-kill-without-query))
54506618 1583
eec82323
LMI
1584(provide 'gnus-util)
1585
ab5796a9 1586;;; arch-tag: f94991af-d32b-4c97-8c26-ca12a934de49
eec82323 1587;;; gnus-util.el ends here