Merge from emacs-24; up to 2012-12-24T15:56:17Z!eliz@gnu.org
[bpt/emacs.git] / lisp / gnus / gnus-util.el
CommitLineData
eec82323 1;;; gnus-util.el --- utility functions for Gnus
e84b4b86 2
ab422c4d 3;; Copyright (C) 1996-2013 Free Software Foundation, Inc.
eec82323 4
6748645f 5;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
eec82323
LMI
6;; Keywords: news
7
8;; This file is part of GNU Emacs.
9
5e809f55 10;; GNU Emacs is free software: you can redistribute it and/or modify
eec82323 11;; it under the terms of the GNU General Public License as published by
5e809f55
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
eec82323
LMI
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
5e809f55 17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
eec82323
LMI
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
5e809f55 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
eec82323
LMI
22
23;;; Commentary:
24
25;; Nothing in this file depends on any other parts of Gnus -- all
26;; functions and macros in this file are utility functions that are
27;; used by Gnus and may be used by any other package without loading
28;; Gnus first.
29
23f87bed 30;; [Unfortunately, it does depend on other parts of Gnus, e.g. the
01c52d31 31;; autoloads and defvars below...]
23f87bed 32
eec82323
LMI
33;;; Code:
34
f0b7f5a8 35;; For Emacs <22.2 and XEmacs.
88bfa2e4
GM
36(eval-and-compile
37 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
5eee36fa 38(eval-when-compile
9efa445f 39 (require 'cl))
5cc79e5a 40
647559c2
LI
41(require 'time-date)
42
870409d4
G
43(defcustom gnus-completing-read-function 'gnus-emacs-completing-read
44 "Function use to do completing read."
967f57dc 45 :version "24.1"
229b59da 46 :group 'gnus-meta
1225bc49 47 :type `(radio (function-item
870409d4
G
48 :doc "Use Emacs standard `completing-read' function."
49 gnus-emacs-completing-read)
1225bc49
KY
50 ;; iswitchb.el is very old and ido.el is unavailable
51 ;; in XEmacs, so we exclude those function items.
52 ,@(unless (featurep 'xemacs)
53 '((function-item
54 :doc "Use `ido-completing-read' function."
55 gnus-ido-completing-read)
56 (function-item
57 :doc "Use iswitchb based completing-read function."
58 gnus-iswitchb-completing-read)))))
229b59da
G
59
60(defcustom gnus-completion-styles
61 (if (and (boundp 'completion-styles-alist)
62 (boundp 'completion-styles))
63 (append (when (and (assq 'substring completion-styles-alist)
64 (not (memq 'substring completion-styles)))
65 (list 'substring))
66 completion-styles)
67 nil)
68 "Value of `completion-styles' to use when completing."
69 :version "24.1"
70 :group 'gnus-meta
71 :type 'list)
72
9efa445f
DN
73;; Fixme: this should be a gnus variable, not nnmail-.
74(defvar nnmail-pathname-coding-system)
75(defvar nnmail-active-file-coding-system)
76
77;; Inappropriate references to other parts of Gnus.
78(defvar gnus-emphasize-whitespace-regexp)
79(defvar gnus-original-article-buffer)
80(defvar gnus-user-agent)
81
dbb6c370 82(autoload 'gnus-get-buffer-window "gnus-win")
dbb6c370
GM
83(autoload 'nnheader-narrow-to-headers "nnheader")
84(autoload 'nnheader-replace-chars-in-string "nnheader")
09aece0b 85(autoload 'mail-header-remove-comments "mail-parse")
23f87bed
MB
86
87(eval-and-compile
88 (cond
f67d6742 89 ;; Prefer `replace-regexp-in-string' (present in Emacs, XEmacs 21.5,
4b4f6dc8 90 ;; SXEmacs 22.1.4) over `replace-in-string'. The latter leads to inf-loops
f67d6742
MB
91 ;; on empty matches:
92 ;; (replace-in-string "foo" "/*$" "/")
93 ;; (replace-in-string "xe" "\\(x\\)?" "")
23f87bed 94 ((fboundp 'replace-regexp-in-string)
01c52d31 95 (defun gnus-replace-in-string (string regexp newtext &optional literal)
ad136a7c
MB
96 "Replace all matches for REGEXP with NEWTEXT in STRING.
97If LITERAL is non-nil, insert NEWTEXT literally. Return a new
98string containing the replacements.
99
100This is a compatibility function for different Emacsen."
23f87bed 101 (replace-regexp-in-string regexp newtext string nil literal)))
f67d6742 102 ((fboundp 'replace-in-string)
01c52d31 103 (defalias 'gnus-replace-in-string 'replace-in-string))))
eec82323
LMI
104
105(defun gnus-boundp (variable)
106 "Return non-nil if VARIABLE is bound and non-nil."
107 (and (boundp variable)
108 (symbol-value variable)))
109
110(defmacro gnus-eval-in-buffer-window (buffer &rest forms)
111 "Pop to BUFFER, evaluate FORMS, and then return to the original window."
112 (let ((tempvar (make-symbol "GnusStartBufferWindow"))
23f87bed
MB
113 (w (make-symbol "w"))
114 (buf (make-symbol "buf")))
eec82323 115 `(let* ((,tempvar (selected-window))
23f87bed
MB
116 (,buf ,buffer)
117 (,w (gnus-get-buffer-window ,buf 'visible)))
eec82323 118 (unwind-protect
23f87bed
MB
119 (progn
120 (if ,w
121 (progn
122 (select-window ,w)
123 (set-buffer (window-buffer ,w)))
124 (pop-to-buffer ,buf))
125 ,@forms)
126 (select-window ,tempvar)))))
eec82323
LMI
127
128(put 'gnus-eval-in-buffer-window 'lisp-indent-function 1)
129(put 'gnus-eval-in-buffer-window 'edebug-form-spec '(form body))
130
131(defmacro gnus-intern-safe (string hashtable)
815b81c8 132 "Get hash value. Arguments are STRING and HASHTABLE."
eec82323
LMI
133 `(let ((symbol (intern ,string ,hashtable)))
134 (or (boundp symbol)
135 (set symbol nil))
136 symbol))
137
eec82323
LMI
138(defsubst gnus-goto-char (point)
139 (and point (goto-char point)))
140
141(defmacro gnus-buffer-exists-p (buffer)
142 `(let ((buffer ,buffer))
143 (when buffer
144 (funcall (if (stringp buffer) 'get-buffer 'buffer-name)
145 buffer))))
146
23f87bed
MB
147;; The LOCAL arg to `add-hook' is interpreted differently in Emacs and
148;; XEmacs. In Emacs we don't need to call `make-local-hook' first.
149;; It's harmless, though, so the main purpose of this alias is to shut
150;; up the byte compiler.
922ad43e
GM
151(defalias 'gnus-make-local-hook (if (featurep 'xemacs)
152 'make-local-hook
e6389c4e 153 'ignore))
23f87bed 154
eec82323
LMI
155(defun gnus-delete-first (elt list)
156 "Delete by side effect the first occurrence of ELT as a member of LIST."
157 (if (equal (car list) elt)
158 (cdr list)
159 (let ((total list))
160 (while (and (cdr list)
161 (not (equal (cadr list) elt)))
162 (setq list (cdr list)))
163 (when (cdr list)
164 (setcdr list (cddr list)))
165 total)))
166
167;; Delete the current line (and the next N lines).
168(defmacro gnus-delete-line (&optional n)
01c52d31 169 `(delete-region (point-at-bol)
eec82323
LMI
170 (progn (forward-line ,(or n 1)) (point))))
171
eec82323 172(defun gnus-extract-address-components (from)
23f87bed
MB
173 "Extract address components from a From header.
174Given an RFC-822 address FROM, extract full name and canonical address.
175Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). Much more simple
176solution than `mail-extract-address-components', which works much better, but
177is slower."
eec82323
LMI
178 (let (name address)
179 ;; First find the address - the thing with the @ in it. This may
180 ;; not be accurate in mail addresses, but does the trick most of
181 ;; the time in news messages.
4573e0df
MB
182 (cond (;; Check ``<foo@bar>'' first in order to handle the quite common
183 ;; form ``"abc@xyz" <foo@bar>'' (i.e. ``@'' as part of a comment)
184 ;; correctly.
185 (string-match "<\\([^@ \t<>]+[!@][^@ \t<>]+\\)>" from)
186 (setq address (substring from (match-beginning 1) (match-end 1))))
187 ((string-match "\\b[^@ \t<>]+[!@][^@ \t<>]+\\b" from)
188 (setq address (substring from (match-beginning 0) (match-end 0)))))
eec82323
LMI
189 ;; Then we check whether the "name <address>" format is used.
190 (and address
eec82323
LMI
191 ;; Linear white space is not required.
192 (string-match (concat "[ \t]*<" (regexp-quote address) ">") from)
193 (and (setq name (substring from 0 (match-beginning 0)))
194 ;; Strip any quotes from the name.
23f87bed 195 (string-match "^\".*\"$" name)
eec82323
LMI
196 (setq name (substring name 1 (1- (match-end 0))))))
197 ;; If not, then "address (name)" is used.
198 (or name
199 (and (string-match "(.+)" from)
200 (setq name (substring from (1+ (match-beginning 0))
201 (1- (match-end 0)))))
202 (and (string-match "()" from)
203 (setq name address))
eec82323
LMI
204 ;; XOVER might not support folded From headers.
205 (and (string-match "(.*" from)
206 (setq name (substring from (1+ (match-beginning 0))
207 (match-end 0)))))
16409b0b
GM
208 (list (if (string= name "") nil name) (or address from))))
209
aa8f8277
GM
210(declare-function message-fetch-field "message" (header &optional not-all))
211
eec82323
LMI
212(defun gnus-fetch-field (field)
213 "Return the value of the header FIELD of current article."
aa8f8277 214 (require 'message)
eec82323
LMI
215 (save-excursion
216 (save-restriction
01c52d31 217 (let ((inhibit-point-motion-hooks t))
eec82323
LMI
218 (nnheader-narrow-to-headers)
219 (message-fetch-field field)))))
220
23f87bed
MB
221(defun gnus-fetch-original-field (field)
222 "Fetch FIELD from the original version of the current article."
223 (with-current-buffer gnus-original-article-buffer
224 (gnus-fetch-field field)))
225
226
eec82323 227(defun gnus-goto-colon ()
2e051520 228 (move-beginning-of-line 1)
01c52d31 229 (let ((eol (point-at-eol)))
23f87bed
MB
230 (goto-char (or (text-property-any (point) eol 'gnus-position t)
231 (search-forward ":" eol t)
232 (point)))))
233
5ec7fe1b 234(declare-function gnus-find-method-for-group "gnus" (group &optional info))
aa8f8277 235(declare-function gnus-group-name-decode "gnus-group" (string charset))
5ec7fe1b
GM
236(declare-function gnus-group-name-charset "gnus-group" (method group))
237;; gnus-group requires gnus-int which requires message.
238(declare-function message-tokenize-header "message"
239 (header &optional separator))
240
23f87bed 241(defun gnus-decode-newsgroups (newsgroups group &optional method)
aa8f8277 242 (require 'gnus-group)
23f87bed
MB
243 (let ((method (or method (gnus-find-method-for-group group))))
244 (mapconcat (lambda (group)
245 (gnus-group-name-decode group (gnus-group-name-charset
246 method group)))
247 (message-tokenize-header newsgroups)
248 ",")))
eec82323
LMI
249
250(defun gnus-remove-text-with-property (prop)
251 "Delete all text in the current buffer with text property PROP."
01c52d31
MB
252 (let ((start (point-min))
253 end)
254 (unless (get-text-property start prop)
255 (setq start (next-single-property-change start prop)))
256 (while start
257 (setq end (text-property-any start (point-max) prop nil))
258 (delete-region start (or end (point-max)))
259 (setq start (when end
260 (next-single-property-change start prop))))))
eec82323 261
8b6f6573
LMI
262(defun gnus-find-text-property-region (start end prop)
263 "Return a list of text property regions that has property PROP."
264 (let (regions value)
265 (unless (get-text-property start prop)
266 (setq start (next-single-property-change start prop)))
267 (while start
268 (setq value (get-text-property start prop)
269 end (text-property-not-all start (point-max) prop value))
270 (if (not end)
271 (setq start nil)
272 (when value
0073e031
LMI
273 (push (list (set-marker (make-marker) start)
274 (set-marker (make-marker) end)
275 value)
276 regions))
8b6f6573
LMI
277 (setq start (next-single-property-change start prop))))
278 (nreverse regions)))
279
eec82323
LMI
280(defun gnus-newsgroup-directory-form (newsgroup)
281 "Make hierarchical directory name from NEWSGROUP name."
23f87bed
MB
282 (let* ((newsgroup (gnus-newsgroup-savable-name newsgroup))
283 (idx (string-match ":" newsgroup)))
284 (concat
285 (if idx (substring newsgroup 0 idx))
286 (if idx "/")
287 (nnheader-replace-chars-in-string
288 (if idx (substring newsgroup (1+ idx)) newsgroup)
289 ?. ?/))))
eec82323
LMI
290
291(defun gnus-newsgroup-savable-name (group)
292 ;; Replace any slashes in a group name (eg. an ange-ftp nndoc group)
293 ;; with dots.
294 (nnheader-replace-chars-in-string group ?/ ?.))
295
296(defun gnus-string> (s1 s2)
297 (not (or (string< s1 s2)
298 (string= s1 s2))))
299
b4fde39f
MB
300(defun gnus-string< (s1 s2)
301 "Return t if first arg string is less than second in lexicographic order.
302Case is significant if and only if `case-fold-search' is nil.
303Symbols are also allowed; their print names are used instead."
304 (if case-fold-search
305 (string-lessp (downcase (if (symbolp s1) (symbol-name s1) s1))
306 (downcase (if (symbolp s2) (symbol-name s2) s2)))
307 (string-lessp s1 s2)))
308
eec82323
LMI
309;;; Time functions.
310
eec82323
LMI
311(defun gnus-file-newer-than (file date)
312 (let ((fdate (nth 5 (file-attributes file))))
313 (or (> (car fdate) (car date))
314 (and (= (car fdate) (car date))
315 (> (nth 1 fdate) (nth 1 date))))))
316
fb9464ee
GM
317;; Every version of Emacs Gnus supports has built-in float-time.
318;; The featurep test silences an irritating compiler warning.
de0bdfe7 319(eval-and-compile
fb9464ee
GM
320 (if (or (featurep 'emacs)
321 (fboundp 'float-time))
de0bdfe7
KY
322 (defalias 'gnus-float-time 'float-time)
323 (defun gnus-float-time (&optional time)
324 "Convert time value TIME to a floating point number.
c506adde 325TIME defaults to the current time."
6f0d4bb6 326 (time-to-seconds (or time (current-time))))))
feefd9f3 327
eec82323
LMI
328;;; Keymap macros.
329
330(defmacro gnus-local-set-keys (&rest plist)
331 "Set the keys in PLIST in the current keymap."
332 `(gnus-define-keys-1 (current-local-map) ',plist))
333
334(defmacro gnus-define-keys (keymap &rest plist)
335 "Define all keys in PLIST in KEYMAP."
6b26f14f
KY
336 ;; Convert the key [?\S-\ ] to [(shift space)] for XEmacs.
337 (when (featurep 'xemacs)
338 (let ((bindings plist))
339 (while bindings
340 (when (equal (car bindings) [?\S-\ ])
341 (setcar bindings [(shift space)]))
342 (setq bindings (cddr bindings)))))
eec82323
LMI
343 `(gnus-define-keys-1 (quote ,keymap) (quote ,plist)))
344
345(defmacro gnus-define-keys-safe (keymap &rest plist)
346 "Define all keys in PLIST in KEYMAP without overwriting previous definitions."
347 `(gnus-define-keys-1 (quote ,keymap) (quote ,plist) t))
348
349(put 'gnus-define-keys 'lisp-indent-function 1)
350(put 'gnus-define-keys-safe 'lisp-indent-function 1)
351(put 'gnus-local-set-keys 'lisp-indent-function 1)
352
353(defmacro gnus-define-keymap (keymap &rest plist)
354 "Define all keys in PLIST in KEYMAP."
355 `(gnus-define-keys-1 ,keymap (quote ,plist)))
356
357(put 'gnus-define-keymap 'lisp-indent-function 1)
358
359(defun gnus-define-keys-1 (keymap plist &optional safe)
360 (when (null keymap)
361 (error "Can't set keys in a null keymap"))
362 (cond ((symbolp keymap)
363 (setq keymap (symbol-value keymap)))
364 ((keymapp keymap))
365 ((listp keymap)
366 (set (car keymap) nil)
367 (define-prefix-command (car keymap))
368 (define-key (symbol-value (caddr keymap)) (cadr keymap) (car keymap))
369 (setq keymap (symbol-value (car keymap)))))
370 (let (key)
371 (while plist
372 (when (symbolp (setq key (pop plist)))
373 (setq key (symbol-value key)))
374 (if (or (not safe)
375 (eq (lookup-key keymap key) 'undefined))
376 (define-key keymap key (pop plist))
377 (pop plist)))))
378
4d9db491
G
379(defun gnus-y-or-n-p (prompt)
380 (prog1
381 (y-or-n-p prompt)
382 (message "")))
383(defun gnus-yes-or-no-p (prompt)
384 (prog1
385 (yes-or-no-p prompt)
386 (message "")))
eec82323 387
23f87bed
MB
388;; By Frank Schmitt <ich@Frank-Schmitt.net>. Allows to have
389;; age-depending date representations. (e.g. just the time if it's
390;; from today, the day of the week if it's within the last 7 days and
391;; the full date if it's older)
392
393(defun gnus-seconds-today ()
394 "Return the number of seconds passed today."
395 (let ((now (decode-time (current-time))))
396 (+ (car now) (* (car (cdr now)) 60) (* (car (nthcdr 2 now)) 3600))))
397
398(defun gnus-seconds-month ()
399 "Return the number of seconds passed this month."
400 (let ((now (decode-time (current-time))))
401 (+ (car now) (* (car (cdr now)) 60) (* (car (nthcdr 2 now)) 3600)
402 (* (- (car (nthcdr 3 now)) 1) 3600 24))))
403
404(defun gnus-seconds-year ()
405 "Return the number of seconds passed this year."
406 (let ((now (decode-time (current-time)))
407 (days (format-time-string "%j" (current-time))))
408 (+ (car now) (* (car (cdr now)) 60) (* (car (nthcdr 2 now)) 3600)
409 (* (- (string-to-number days) 1) 3600 24))))
410
89a13959
RF
411(defmacro gnus-date-get-time (date)
412 "Convert DATE string to Emacs time.
413Cache the result as a text property stored in DATE."
414 ;; Either return the cached value...
415 `(let ((d ,date))
416 (if (equal "" d)
417 '(0 0)
418 (or (get-text-property 0 'gnus-time d)
419 ;; or compute the value...
420 (let ((time (safe-date-to-time d)))
421 ;; and store it back in the string.
422 (put-text-property 0 1 'gnus-time time d)
423 time)))))
424
eec82323 425(defun gnus-dd-mmm (messy-date)
6748645f 426 "Return a string like DD-MMM from a big messy string."
16409b0b 427 (condition-case ()
3d6e7a43 428 (format-time-string "%d-%b" (gnus-date-get-time messy-date))
16409b0b 429 (error " - ")))
eec82323 430
eec82323 431(defsubst gnus-time-iso8601 (time)
8b93df01 432 "Return a string of TIME in YYYYMMDDTHHMMSS format."
eec82323
LMI
433 (format-time-string "%Y%m%dT%H%M%S" time))
434
6748645f 435(defun gnus-date-iso8601 (date)
8b93df01 436 "Convert the DATE to YYYYMMDDTHHMMSS."
eec82323 437 (condition-case ()
6748645f 438 (gnus-time-iso8601 (gnus-date-get-time date))
eec82323
LMI
439 (error "")))
440
441(defun gnus-mode-string-quote (string)
442 "Quote all \"%\"'s in STRING."
23f87bed 443 (gnus-replace-in-string string "%" "%%"))
eec82323
LMI
444
445;; Make a hash table (default and minimum size is 256).
446;; Optional argument HASHSIZE specifies the table size.
447(defun gnus-make-hashtable (&optional hashsize)
448 (make-vector (if hashsize (max (gnus-create-hash-size hashsize) 256) 256) 0))
449
450;; Make a number that is suitable for hashing; bigger than MIN and
451;; equal to some 2^x. Many machines (such as sparcs) do not have a
452;; hardware modulo operation, so they implement it in software. On
453;; many sparcs over 50% of the time to intern is spent in the modulo.
454;; Yes, it's slower than actually computing the hash from the string!
455;; So we use powers of 2 so people can optimize the modulo to a mask.
456(defun gnus-create-hash-size (min)
457 (let ((i 1))
458 (while (< i min)
459 (setq i (* 2 i)))
460 i))
461
389e8572 462(defcustom gnus-verbose 6
eec82323
LMI
463 "*Integer that says how verbose Gnus should be.
464The higher the number, the more messages Gnus will flash to say what
465it's doing. At zero, Gnus will be totally mute; at five, Gnus will
466display most important messages; and at ten, Gnus will keep on
467jabbering all the time."
389e8572 468 :version "24.1"
eec82323
LMI
469 :group 'gnus-start
470 :type 'integer)
471
01c52d31
MB
472(defcustom gnus-add-timestamp-to-message nil
473 "Non-nil means add timestamps to messages that Gnus issues.
474If it is `log', add timestamps to only the messages that go into the
475\"*Messages*\" buffer (in XEmacs, it is the \" *Message-Log*\" buffer).
476If it is neither nil nor `log', add timestamps not only to log messages
477but also to the ones displayed in the echo area."
330f707b 478 :version "23.1" ;; No Gnus
01c52d31
MB
479 :group 'gnus-various
480 :type '(choice :format "%{%t%}:\n %[Value Menu%] %v"
481 (const :tag "Logged messages only" log)
482 (sexp :tag "All messages"
483 :match (lambda (widget value) value)
484 :value t)
485 (const :tag "No timestamp" nil)))
486
487(eval-when-compile
488 (defmacro gnus-message-with-timestamp-1 (format-string args)
b06823b6 489 (let ((timestamp '(format-time-string "%Y%m%dT%H%M%S.%3N> " time)))
01c52d31
MB
490 (if (featurep 'xemacs)
491 `(let (str time)
492 (if (or (and (null ,format-string) (null ,args))
493 (progn
494 (setq str (apply 'format ,format-string ,args))
495 (zerop (length str))))
496 (prog1
497 (and ,format-string str)
498 (clear-message nil))
499 (cond ((eq gnus-add-timestamp-to-message 'log)
500 (setq time (current-time))
501 (display-message 'no-log str)
b06823b6 502 (log-message 'message (concat ,timestamp str)))
01c52d31
MB
503 (gnus-add-timestamp-to-message
504 (setq time (current-time))
b06823b6 505 (display-message 'message (concat ,timestamp str)))
01c52d31
MB
506 (t
507 (display-message 'message str))))
508 str)
509 `(let (str time)
510 (cond ((eq gnus-add-timestamp-to-message 'log)
511 (setq str (let (message-log-max)
512 (apply 'message ,format-string ,args)))
513 (when (and message-log-max
514 (> message-log-max 0)
515 (/= (length str) 0))
516 (setq time (current-time))
517 (with-current-buffer (get-buffer-create "*Messages*")
518 (goto-char (point-max))
b06823b6 519 (insert ,timestamp str "\n")
01c52d31
MB
520 (forward-line (- message-log-max))
521 (delete-region (point-min) (point))
522 (goto-char (point-max))))
523 str)
524 (gnus-add-timestamp-to-message
525 (if (or (and (null ,format-string) (null ,args))
526 (progn
527 (setq str (apply 'format ,format-string ,args))
528 (zerop (length str))))
529 (prog1
530 (and ,format-string str)
531 (message nil))
532 (setq time (current-time))
b06823b6 533 (message "%s" (concat ,timestamp str))
01c52d31
MB
534 str))
535 (t
536 (apply 'message ,format-string ,args))))))))
537
4478e074
G
538(defvar gnus-action-message-log nil)
539
01c52d31
MB
540(defun gnus-message-with-timestamp (format-string &rest args)
541 "Display message with timestamp. Arguments are the same as `message'.
542The `gnus-add-timestamp-to-message' variable controls how to add
543timestamp to message."
544 (gnus-message-with-timestamp-1 format-string args))
545
eec82323 546(defun gnus-message (level &rest args)
23f87bed
MB
547 "If LEVEL is lower than `gnus-verbose' print ARGS using `message'.
548
549Guideline for numbers:
5501 - error messages, 3 - non-serious error messages, 5 - messages for things
551that take a long time, 7 - not very important messages on stuff, 9 - messages
552inside loops."
eec82323 553 (if (<= level gnus-verbose)
4478e074
G
554 (let ((message
555 (if gnus-add-timestamp-to-message
556 (apply 'gnus-message-with-timestamp args)
557 (apply 'message args))))
558 (when (and (consp gnus-action-message-log)
559 (<= level 3))
560 (push message gnus-action-message-log))
561 message)
eec82323
LMI
562 ;; We have to do this format thingy here even if the result isn't
563 ;; shown - the return value has to be the same as the return value
564 ;; from `message'.
565 (apply 'format args)))
566
4478e074
G
567(defun gnus-final-warning ()
568 (when (and (consp gnus-action-message-log)
569 (setq gnus-action-message-log
570 (delete nil gnus-action-message-log)))
571 (message "Warning: %s"
572 (mapconcat #'identity gnus-action-message-log "; "))))
573
eec82323 574(defun gnus-error (level &rest args)
6203370b
MB
575 "Beep an error if LEVEL is equal to or less than `gnus-verbose'.
576ARGS are passed to `message'."
eec82323
LMI
577 (when (<= (floor level) gnus-verbose)
578 (apply 'message args)
579 (ding)
580 (let (duration)
581 (when (and (floatp level)
582 (not (zerop (setq duration (* 10 (- level (floor level)))))))
583 (sit-for duration))))
584 nil)
585
586(defun gnus-split-references (references)
587 "Return a list of Message-IDs in REFERENCES."
588 (let ((beg 0)
521c4a23 589 (references (mail-header-remove-comments (or references "")))
eec82323 590 ids)
23f87bed 591 (while (string-match "<[^<]+[^< \t]" references beg)
eec82323
LMI
592 (push (substring references (match-beginning 0) (setq beg (match-end 0)))
593 ids))
594 (nreverse ids)))
595
01c52d31
MB
596(defun gnus-extract-references (references)
597 "Return a list of Message-IDs in REFERENCES (in In-Reply-To
598 format), trimmed to only contain the Message-IDs."
599 (let ((ids (gnus-split-references references))
600 refs)
601 (dolist (id ids)
602 (when (string-match "<[^<>]+>" id)
603 (push (match-string 0 id) refs)))
604 refs))
605
16409b0b 606(defsubst gnus-parent-id (references &optional n)
eec82323
LMI
607 "Return the last Message-ID in REFERENCES.
608If N, return the Nth ancestor instead."
23f87bed
MB
609 (when (and references
610 (not (zerop (length references))))
611 (if n
612 (let ((ids (inline (gnus-split-references references))))
613 (while (nthcdr n ids)
614 (setq ids (cdr ids)))
615 (car ids))
521c4a23
AS
616 (let ((references (mail-header-remove-comments references)))
617 (when (string-match "\\(<[^<]+>\\)[ \t]*\\'" references)
618 (match-string 1 references))))))
23f87bed 619
06e9c2d9 620(defsubst gnus-buffer-live-p (buffer)
eec82323 621 "Say whether BUFFER is alive or not."
06e9c2d9 622 (and buffer (buffer-live-p (get-buffer buffer))))
eec82323
LMI
623
624(defun gnus-horizontal-recenter ()
625 "Recenter the current buffer horizontally."
626 (if (< (current-column) (/ (window-width) 2))
23f87bed 627 (set-window-hscroll (gnus-get-buffer-window (current-buffer) t) 0)
eec82323 628 (let* ((orig (point))
23f87bed 629 (end (window-end (gnus-get-buffer-window (current-buffer) t)))
eec82323 630 (max 0))
6748645f
LMI
631 (when end
632 ;; Find the longest line currently displayed in the window.
633 (goto-char (window-start))
634 (while (and (not (eobp))
635 (< (point) end))
636 (end-of-line)
637 (setq max (max max (current-column)))
638 (forward-line 1))
639 (goto-char orig)
640 ;; Scroll horizontally to center (sort of) the point.
641 (if (> max (window-width))
642 (set-window-hscroll
23f87bed 643 (gnus-get-buffer-window (current-buffer) t)
6748645f
LMI
644 (min (- (current-column) (/ (window-width) 3))
645 (+ 2 (- max (window-width)))))
23f87bed 646 (set-window-hscroll (gnus-get-buffer-window (current-buffer) t) 0))
6748645f 647 max))))
eec82323 648
23f87bed 649(defun gnus-read-event-char (&optional prompt)
eec82323 650 "Get the next event."
23f87bed 651 (let ((event (read-event prompt)))
eec82323
LMI
652 ;; should be gnus-characterp, but this can't be called in XEmacs anyway
653 (cons (and (numberp event) event) event)))
654
eec82323
LMI
655(defun gnus-copy-file (file &optional to)
656 "Copy FILE to TO."
657 (interactive
658 (list (read-file-name "Copy file: " default-directory)
659 (read-file-name "Copy file to: " default-directory)))
660 (unless to
661 (setq to (read-file-name "Copy file to: " default-directory)))
662 (when (file-directory-p to)
663 (setq to (concat (file-name-as-directory to)
664 (file-name-nondirectory file))))
665 (copy-file file to))
666
eec82323
LMI
667(defvar gnus-work-buffer " *gnus work*")
668
5ec7fe1b
GM
669(declare-function gnus-get-buffer-create "gnus" (name))
670;; gnus.el requires mm-util.
671(declare-function mm-enable-multibyte "mm-util")
672
eec82323
LMI
673(defun gnus-set-work-buffer ()
674 "Put point in the empty Gnus work buffer."
675 (if (get-buffer gnus-work-buffer)
676 (progn
677 (set-buffer gnus-work-buffer)
678 (erase-buffer))
6748645f 679 (set-buffer (gnus-get-buffer-create gnus-work-buffer))
eec82323 680 (kill-all-local-variables)
16409b0b 681 (mm-enable-multibyte)))
eec82323
LMI
682
683(defmacro gnus-group-real-name (group)
684 "Find the real name of a foreign newsgroup."
685 `(let ((gname ,group))
686 (if (string-match "^[^:]+:" gname)
687 (substring gname (match-end 0))
688 gname)))
689
6c5d6b6c
MB
690(defmacro gnus-group-server (group)
691 "Find the server name of a foreign newsgroup.
692For example, (gnus-group-server \"nnimap+yxa:INBOX.foo\") would
693yield \"nnimap:yxa\"."
694 `(let ((gname ,group))
695 (if (string-match "^\\([^:+]+\\)\\(?:\\+\\([^:]*\\)\\)?:" gname)
696 (format "%s:%s" (match-string 1 gname) (or
697 (match-string 2 gname)
698 ""))
699 (format "%s:%s" (car gnus-select-method) (cadr gnus-select-method)))))
700
eec82323 701(defun gnus-make-sort-function (funs)
23f87bed 702 "Return a composite sort condition based on the functions in FUNS."
eec82323 703 (cond
16409b0b 704 ;; Just a simple function.
23f87bed 705 ((functionp funs) funs)
16409b0b 706 ;; No functions at all.
eec82323 707 ((null funs) funs)
16409b0b
GM
708 ;; A list of functions.
709 ((or (cdr funs)
710 (listp (car funs)))
23f87bed
MB
711 (gnus-byte-compile
712 `(lambda (t1 t2)
713 ,(gnus-make-sort-function-1 (reverse funs)))))
16409b0b 714 ;; A list containing just one function.
eec82323
LMI
715 (t
716 (car funs))))
717
718(defun gnus-make-sort-function-1 (funs)
23f87bed 719 "Return a composite sort condition based on the functions in FUNS."
16409b0b
GM
720 (let ((function (car funs))
721 (first 't1)
722 (last 't2))
723 (when (consp function)
724 (cond
725 ;; Reversed spec.
726 ((eq (car function) 'not)
727 (setq function (cadr function)
728 first 't2
729 last 't1))
23f87bed 730 ((functionp function)
16409b0b
GM
731 ;; Do nothing.
732 )
733 (t
734 (error "Invalid sort spec: %s" function))))
735 (if (cdr funs)
736 `(or (,function ,first ,last)
737 (and (not (,function ,last ,first))
738 ,(gnus-make-sort-function-1 (cdr funs))))
739 `(,function ,first ,last))))
eec82323
LMI
740
741(defun gnus-turn-off-edit-menu (type)
742 "Turn off edit menu in `gnus-TYPE-mode-map'."
743 (define-key (symbol-value (intern (format "gnus-%s-mode-map" type)))
744 [menu-bar edit] 'undefined))
745
23f87bed
MB
746(defmacro gnus-bind-print-variables (&rest forms)
747 "Bind print-* variables and evaluate FORMS.
748This macro is used with `prin1', `pp', etc. in order to ensure printed
749Lisp objects are loadable. Bind `print-quoted' and `print-readably'
750to t, and `print-escape-multibyte', `print-escape-newlines',
751`print-escape-nonascii', `print-length', `print-level' and
752`print-string-length' to nil."
753 `(let ((print-quoted t)
754 (print-readably t)
755 ;;print-circle
756 ;;print-continuous-numbering
757 print-escape-multibyte
758 print-escape-newlines
759 print-escape-nonascii
760 ;;print-gensym
761 print-length
762 print-level
763 print-string-length)
764 ,@forms))
765
eec82323
LMI
766(defun gnus-prin1 (form)
767 "Use `prin1' on FORM in the current buffer.
23f87bed
MB
768Bind `print-quoted' and `print-readably' to t, and `print-length' and
769`print-level' to nil. See also `gnus-bind-print-variables'."
770 (gnus-bind-print-variables (prin1 form (current-buffer))))
eec82323
LMI
771
772(defun gnus-prin1-to-string (form)
23f87bed
MB
773 "The same as `prin1'.
774Bind `print-quoted' and `print-readably' to t, and `print-length' and
775`print-level' to nil. See also `gnus-bind-print-variables'."
776 (gnus-bind-print-variables (prin1-to-string form)))
777
01c52d31 778(defun gnus-pp (form &optional stream)
23f87bed
MB
779 "Use `pp' on FORM in the current buffer.
780Bind `print-quoted' and `print-readably' to t, and `print-length' and
781`print-level' to nil. See also `gnus-bind-print-variables'."
01c52d31 782 (gnus-bind-print-variables (pp form (or stream (current-buffer)))))
23f87bed
MB
783
784(defun gnus-pp-to-string (form)
785 "The same as `pp-to-string'.
786Bind `print-quoted' and `print-readably' to t, and `print-length' and
787`print-level' to nil. See also `gnus-bind-print-variables'."
788 (gnus-bind-print-variables (pp-to-string form)))
eec82323
LMI
789
790(defun gnus-make-directory (directory)
791 "Make DIRECTORY (and all its parents) if it doesn't exist."
5eee36fa 792 (require 'nnmail)
16409b0b
GM
793 (let ((file-name-coding-system nnmail-pathname-coding-system))
794 (when (and directory
795 (not (file-exists-p directory)))
796 (make-directory directory t)))
eec82323
LMI
797 t)
798
799(defun gnus-write-buffer (file)
800 "Write the current buffer's contents to FILE."
04db63bc 801 (require 'nnmail)
16409b0b 802 (let ((file-name-coding-system nnmail-pathname-coding-system))
01c52d31
MB
803 ;; Make sure the directory exists.
804 (gnus-make-directory (file-name-directory file))
16409b0b
GM
805 ;; Write the buffer.
806 (write-region (point-min) (point-max) file nil 'quietly)))
eec82323 807
eec82323
LMI
808(defun gnus-delete-file (file)
809 "Delete FILE if it exists."
810 (when (file-exists-p file)
811 (delete-file file)))
812
7ba93e94
G
813(defun gnus-delete-duplicates (list)
814 "Remove duplicate entries from LIST."
815 (let ((result nil))
816 (while list
817 (unless (member (car list) result)
818 (push (car list) result))
819 (pop list))
820 (nreverse result)))
821
aa0a8561
MB
822(defun gnus-delete-directory (directory)
823 "Delete files in DIRECTORY. Subdirectories remain.
824If there's no subdirectory, delete DIRECTORY as well."
825 (when (file-directory-p directory)
826 (let ((files (directory-files
827 directory t "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"))
828 file dir)
829 (while files
830 (setq file (pop files))
831 (if (eq t (car (file-attributes file)))
832 ;; `file' is a subdirectory.
833 (setq dir t)
834 ;; `file' is a file or a symlink.
835 (delete-file file)))
836 (unless dir
837 (delete-directory directory)))))
838
eec82323
LMI
839(defun gnus-strip-whitespace (string)
840 "Return STRING stripped of all whitespace."
841 (while (string-match "[\r\n\t ]+" string)
842 (setq string (replace-match "" t t string)))
843 string)
844
5ec7fe1b
GM
845(declare-function gnus-put-text-property "gnus"
846 (start end property value &optional object))
847
16409b0b 848(defsubst gnus-put-text-property-excluding-newlines (beg end prop val)
eec82323
LMI
849 "The same as `put-text-property', but don't put this prop on any newlines in the region."
850 (save-match-data
851 (save-excursion
852 (save-restriction
853 (goto-char beg)
16409b0b 854 (while (re-search-forward gnus-emphasize-whitespace-regexp end 'move)
6748645f 855 (gnus-put-text-property beg (match-beginning 0) prop val)
eec82323 856 (setq beg (point)))
6748645f
LMI
857 (gnus-put-text-property beg (point) prop val)))))
858
5ec7fe1b
GM
859(declare-function gnus-overlay-put "gnus" (overlay prop value))
860(declare-function gnus-make-overlay "gnus"
861 (beg end &optional buffer front-advance rear-advance))
862
23f87bed
MB
863(defsubst gnus-put-overlay-excluding-newlines (beg end prop val)
864 "The same as `put-text-property', but don't put this prop on any newlines in the region."
865 (save-match-data
866 (save-excursion
867 (save-restriction
868 (goto-char beg)
869 (while (re-search-forward gnus-emphasize-whitespace-regexp end 'move)
870 (gnus-overlay-put
871 (gnus-make-overlay beg (match-beginning 0))
872 prop val)
873 (setq beg (point)))
874 (gnus-overlay-put (gnus-make-overlay beg (point)) prop val)))))
875
cc21c235
G
876(defun gnus-put-text-property-excluding-characters-with-faces (beg end prop val)
877 "The same as `put-text-property', except where `gnus-face' is set.
878If so, and PROP is `face', set the second element of its value to VAL.
879Otherwise, do nothing."
880 (while (< beg end)
881 ;; Property values are compared with `eq'.
882 (let ((stop (next-single-property-change beg 'face nil end)))
883 (if (get-text-property beg 'gnus-face)
884 (when (eq prop 'face)
19693cc1 885 (setcar (cdr (get-text-property beg 'face)) (or val 'default)))
1d43a35f 886 (inline
cc21c235
G
887 (gnus-put-text-property beg stop prop val)))
888 (setq beg stop))))
889
890(defun gnus-get-text-property-excluding-characters-with-faces (pos prop)
891 "The same as `get-text-property', except where `gnus-face' is set.
892If so, and PROP is `face', return the second element of its value.
893Otherwise, return the value."
894 (let ((val (get-text-property pos prop)))
895 (if (and (get-text-property pos 'gnus-face)
896 (eq prop 'face))
897 (cadr val)
898 (get-text-property pos prop))))
1d43a35f 899
23f87bed
MB
900(defmacro gnus-faces-at (position)
901 "Return a list of faces at POSITION."
902 (if (featurep 'xemacs)
903 `(let ((pos ,position))
904 (mapcar-extents 'extent-face
905 nil (current-buffer) pos pos nil 'face))
906 `(let ((pos ,position))
907 (delq nil (cons (get-text-property pos 'face)
908 (mapcar
909 (lambda (overlay)
910 (overlay-get overlay 'face))
911 (overlays-at pos)))))))
eec82323 912
770d9a1f
KY
913(if (fboundp 'invisible-p)
914 (defalias 'gnus-invisible-p 'invisible-p)
915 ;; for Emacs < 22.2, and XEmacs.
916 (defun gnus-invisible-p (pos)
917 "Return non-nil if the character after POS is currently invisible."
918 (let ((prop (get-char-property pos 'invisible)))
919 (if (eq buffer-invisibility-spec t)
920 prop
921 (or (memq prop buffer-invisibility-spec)
922 (assq prop buffer-invisibility-spec))))))
923
924;; Note: the optional 2nd argument has a different meaning between
925;; Emacs and XEmacs.
926;; (next-char-property-change POSITION &optional LIMIT)
927;; (next-extent-change POS &optional OBJECT)
928(defalias 'gnus-next-char-property-change
929 (if (fboundp 'next-extent-change)
930 'next-extent-change 'next-char-property-change))
931
932(defalias 'gnus-previous-char-property-change
933 (if (fboundp 'previous-extent-change)
934 'previous-extent-change 'previous-char-property-change))
935
eec82323 936;;; Protected and atomic operations. dmoore@ucsd.edu 21.11.1996
d346bf7e
SM
937;; The primary idea here is to try to protect internal datastructures
938;; from becoming corrupted when the user hits C-g, or if a hook or
939;; similar blows up. Often in Gnus multiple tables/lists need to be
940;; updated at the same time, or information can be lost.
eec82323
LMI
941
942(defvar gnus-atomic-be-safe t
943 "If t, certain operations will be protected from interruption by C-g.")
944
945(defmacro gnus-atomic-progn (&rest forms)
946 "Evaluate FORMS atomically, which means to protect the evaluation
947from being interrupted by the user. An error from the forms themselves
948will return without finishing the operation. Since interrupts from
949the user are disabled, it is recommended that only the most minimal
950operations are performed by FORMS. If you wish to assign many
951complicated values atomically, compute the results into temporary
952variables and then do only the assignment atomically."
953 `(let ((inhibit-quit gnus-atomic-be-safe))
954 ,@forms))
955
956(put 'gnus-atomic-progn 'lisp-indent-function 0)
957
958(defmacro gnus-atomic-progn-assign (protect &rest forms)
d346bf7e 959 "Evaluate FORMS, but ensure that the variables listed in PROTECT
eec82323
LMI
960are not changed if anything in FORMS signals an error or otherwise
961non-locally exits. The variables listed in PROTECT are updated atomically.
962It is safe to use gnus-atomic-progn-assign with long computations.
963
964Note that if any of the symbols in PROTECT were unbound, they will be
8f688cb0 965set to nil on a successful assignment. In case of an error or other
eec82323
LMI
966non-local exit, it will still be unbound."
967 (let* ((temp-sym-map (mapcar (lambda (x) (list (make-symbol
968 (concat (symbol-name x)
969 "-tmp"))
970 x))
971 protect))
972 (sym-temp-map (mapcar (lambda (x) (list (cadr x) (car x)))
973 temp-sym-map))
974 (temp-sym-let (mapcar (lambda (x) (list (car x)
975 `(and (boundp ',(cadr x))
976 ,(cadr x))))
977 temp-sym-map))
978 (sym-temp-let sym-temp-map)
979 (temp-sym-assign (apply 'append temp-sym-map))
980 (sym-temp-assign (apply 'append sym-temp-map))
981 (result (make-symbol "result-tmp")))
982 `(let (,@temp-sym-let
983 ,result)
984 (let ,sym-temp-let
985 (setq ,result (progn ,@forms))
986 (setq ,@temp-sym-assign))
987 (let ((inhibit-quit gnus-atomic-be-safe))
988 (setq ,@sym-temp-assign))
989 ,result)))
990
991(put 'gnus-atomic-progn-assign 'lisp-indent-function 1)
992;(put 'gnus-atomic-progn-assign 'edebug-form-spec '(sexp body))
993
994(defmacro gnus-atomic-setq (&rest pairs)
995 "Similar to setq, except that the real symbols are only assigned when
996there are no errors. And when the real symbols are assigned, they are
997done so atomically. If other variables might be changed via side-effect,
998see gnus-atomic-progn-assign. It is safe to use gnus-atomic-setq
999with potentially long computations."
1000 (let ((tpairs pairs)
1001 syms)
1002 (while tpairs
1003 (push (car tpairs) syms)
1004 (setq tpairs (cddr tpairs)))
1005 `(gnus-atomic-progn-assign ,syms
1006 (setq ,@pairs))))
1007
1008;(put 'gnus-atomic-setq 'edebug-form-spec '(body))
1009
1010
1011;;; Functions for saving to babyl/mail files.
1012
23f87bed 1013(eval-when-compile
62fe59e7
KY
1014 (if (featurep 'xemacs)
1015 ;; Don't load tm and apel XEmacs packages that provide some
1016 ;; Emacs emulating functions and variables.
1017 (let ((features features))
1018 (provide 'tm-view)
1019 (unless (fboundp 'set-alist) (defalias 'set-alist 'ignore))
1020 (require 'rmail)) ;; It requires tm-view that loads apel.
1021 (require 'rmail))
1022 (autoload 'rmail-update-summary "rmailsum"))
9efa445f 1023
9efa445f 1024(defvar mm-text-coding-system)
23f87bed 1025
88bfa2e4
GM
1026(declare-function mm-append-to-file "mm-util"
1027 (start end filename &optional codesys inhibit))
1028
eec82323 1029(defun gnus-output-to-rmail (filename &optional ask)
e38658c4
GM
1030 "Append the current article to an Rmail file named FILENAME.
1031In Emacs 22 this writes Babyl format; in Emacs 23 it writes mbox unless
1032FILENAME exists and is Babyl format."
eec82323 1033 (require 'rmail)
23f87bed 1034 (require 'mm-util)
04db63bc 1035 (require 'nnmail)
e38658c4 1036 ;; Some of this codes is borrowed from rmailout.el.
eec82323 1037 (setq filename (expand-file-name filename))
e38658c4
GM
1038 ;; FIXME should we really be messing with this defcustom?
1039 ;; It is not needed for the operation of this function.
1040 (if (boundp 'rmail-default-rmail-file)
1041 (setq rmail-default-rmail-file filename) ; 22
1042 (setq rmail-default-file filename)) ; 23
eec82323 1043 (let ((artbuf (current-buffer))
e38658c4
GM
1044 (tmpbuf (get-buffer-create " *Gnus-output*"))
1045 ;; Babyl rmail.el defines this, mbox does not.
1046 (babyl (fboundp 'rmail-insert-rmail-file-header)))
eec82323 1047 (save-excursion
e38658c4
GM
1048 ;; Note that we ignore the possibility of visiting a Babyl
1049 ;; format buffer in Emacs 23, since Rmail no longer supports that.
1050 (or (get-file-buffer filename)
1051 (progn
1052 ;; In case someone wants to write to a Babyl file from Emacs 23.
1053 (when (file-exists-p filename)
1054 (setq babyl (mail-file-babyl-p filename))
1055 t))
eec82323
LMI
1056 (if (or (not ask)
1057 (gnus-yes-or-no-p
1058 (concat "\"" filename "\" does not exist, create it? ")))
1059 (let ((file-buffer (create-file-buffer filename)))
20a673b2 1060 (with-current-buffer file-buffer
e38658c4
GM
1061 (if (fboundp 'rmail-insert-rmail-file-header)
1062 (rmail-insert-rmail-file-header))
16409b0b
GM
1063 (let ((require-final-newline nil)
1064 (coding-system-for-write mm-text-coding-system))
eec82323
LMI
1065 (gnus-write-buffer filename)))
1066 (kill-buffer file-buffer))
1067 (error "Output file does not exist")))
1068 (set-buffer tmpbuf)
1069 (erase-buffer)
1070 (insert-buffer-substring artbuf)
e38658c4
GM
1071 (if babyl
1072 (gnus-convert-article-to-rmail)
1073 ;; Non-Babyl case copied from gnus-output-to-mail.
1074 (goto-char (point-min))
1075 (if (looking-at "From ")
1076 (forward-line 1)
1077 (insert "From nobody " (current-time-string) "\n"))
1078 (let (case-fold-search)
1079 (while (re-search-forward "^From " nil t)
1080 (beginning-of-line)
1081 (insert ">"))))
eec82323
LMI
1082 ;; Decide whether to append to a file or to an Emacs buffer.
1083 (let ((outbuf (get-file-buffer filename)))
1084 (if (not outbuf)
e38658c4
GM
1085 (progn
1086 (unless babyl ; from gnus-output-to-mail
1087 (let ((buffer-read-only nil))
1088 (goto-char (point-max))
1089 (forward-char -2)
1090 (unless (looking-at "\n\n")
1091 (goto-char (point-max))
1092 (unless (bolp)
1093 (insert "\n"))
1094 (insert "\n"))))
1095 (let ((file-name-coding-system nnmail-pathname-coding-system))
1096 (mm-append-to-file (point-min) (point-max) filename)))
eec82323
LMI
1097 ;; File has been visited, in buffer OUTBUF.
1098 (set-buffer outbuf)
1099 (let ((buffer-read-only nil)
1100 (msg (and (boundp 'rmail-current-message)
1101 (symbol-value 'rmail-current-message))))
1102 ;; If MSG is non-nil, buffer is in RMAIL mode.
e38658c4 1103 ;; Compare this with rmail-output-to-rmail-buffer in Emacs 23.
eec82323 1104 (when msg
e38658c4
GM
1105 (unless babyl
1106 (rmail-swap-buffers-maybe)
1107 (rmail-maybe-set-message-counters))
1108 (widen)
1109 (narrow-to-region (point-max) (point-max)))
eec82323
LMI
1110 (insert-buffer-substring tmpbuf)
1111 (when msg
e38658c4
GM
1112 (when babyl
1113 (goto-char (point-min))
1114 (widen)
1115 (search-backward "\n\^_")
1116 (narrow-to-region (point) (point-max)))
23f87bed
MB
1117 (rmail-count-new-messages t)
1118 (when (rmail-summary-exists)
6748645f
LMI
1119 (rmail-select-summary
1120 (rmail-update-summary)))
6748645f
LMI
1121 (rmail-show-message msg))
1122 (save-buffer)))))
eec82323
LMI
1123 (kill-buffer tmpbuf)))
1124
1125(defun gnus-output-to-mail (filename &optional ask)
1126 "Append the current article to a mail file named FILENAME."
04db63bc 1127 (require 'nnmail)
eec82323
LMI
1128 (setq filename (expand-file-name filename))
1129 (let ((artbuf (current-buffer))
1130 (tmpbuf (get-buffer-create " *Gnus-output*")))
1131 (save-excursion
1132 ;; Create the file, if it doesn't exist.
1133 (when (and (not (get-file-buffer filename))
1134 (not (file-exists-p filename)))
1135 (if (or (not ask)
1136 (gnus-y-or-n-p
1137 (concat "\"" filename "\" does not exist, create it? ")))
1138 (let ((file-buffer (create-file-buffer filename)))
20a673b2 1139 (with-current-buffer file-buffer
16409b0b
GM
1140 (let ((require-final-newline nil)
1141 (coding-system-for-write mm-text-coding-system))
eec82323
LMI
1142 (gnus-write-buffer filename)))
1143 (kill-buffer file-buffer))
1144 (error "Output file does not exist")))
1145 (set-buffer tmpbuf)
1146 (erase-buffer)
1147 (insert-buffer-substring artbuf)
1148 (goto-char (point-min))
1149 (if (looking-at "From ")
1150 (forward-line 1)
1151 (insert "From nobody " (current-time-string) "\n"))
1152 (let (case-fold-search)
1153 (while (re-search-forward "^From " nil t)
1154 (beginning-of-line)
1155 (insert ">")))
1156 ;; Decide whether to append to a file or to an Emacs buffer.
1157 (let ((outbuf (get-file-buffer filename)))
1158 (if (not outbuf)
1159 (let ((buffer-read-only nil))
1160 (save-excursion
1161 (goto-char (point-max))
1162 (forward-char -2)
1163 (unless (looking-at "\n\n")
1164 (goto-char (point-max))
1165 (unless (bolp)
1166 (insert "\n"))
1167 (insert "\n"))
1168 (goto-char (point-max))
47e77e9f
SZ
1169 (let ((file-name-coding-system nnmail-pathname-coding-system))
1170 (mm-append-to-file (point-min) (point-max) filename))))
eec82323
LMI
1171 ;; File has been visited, in buffer OUTBUF.
1172 (set-buffer outbuf)
1173 (let ((buffer-read-only nil))
1174 (goto-char (point-max))
1175 (unless (eobp)
1176 (insert "\n"))
1177 (insert "\n")
1178 (insert-buffer-substring tmpbuf)))))
1179 (kill-buffer tmpbuf)))
1180
1181(defun gnus-convert-article-to-rmail ()
1182 "Convert article in current buffer to Rmail message format."
1183 (let ((buffer-read-only nil))
1184 ;; Convert article directly into Babyl format.
1185 (goto-char (point-min))
1186 (insert "\^L\n0, unseen,,\n*** EOOH ***\n")
1187 (while (search-forward "\n\^_" nil t) ;single char
1188 (replace-match "\n^_" t t)) ;2 chars: "^" and "_"
1189 (goto-char (point-max))
1190 (insert "\^_")))
1191
6748645f 1192(defun gnus-map-function (funs arg)
23f87bed 1193 "Apply the result of the first function in FUNS to the second, and so on.
6748645f 1194ARG is passed to the first function."
23f87bed
MB
1195 (while funs
1196 (setq arg (funcall (pop funs) arg)))
1197 arg)
6748645f
LMI
1198
1199(defun gnus-run-hooks (&rest funcs)
23f87bed
MB
1200 "Does the same as `run-hooks', but saves the current buffer."
1201 (save-current-buffer
1202 (apply 'run-hooks funcs)))
6748645f 1203
cbabe91f
TZ
1204(defun gnus-run-hook-with-args (hook &rest args)
1205 "Does the same as `run-hook-with-args', but saves the current buffer."
1206 (save-current-buffer
1207 (apply 'run-hook-with-args hook args)))
1208
b4e8a25b 1209(defun gnus-run-mode-hooks (&rest funcs)
cfcd5c91
MB
1210 "Run `run-mode-hooks' if it is available, otherwise `run-hooks'.
1211This function saves the current buffer."
b4e8a25b 1212 (if (fboundp 'run-mode-hooks)
cfcd5c91
MB
1213 (save-current-buffer (apply 'run-mode-hooks funcs))
1214 (save-current-buffer (apply 'run-hooks funcs))))
b4e8a25b 1215
6748645f
LMI
1216;;; Various
1217
16409b0b 1218(defvar gnus-group-buffer) ; Compiler directive
6748645f
LMI
1219(defun gnus-alive-p ()
1220 "Say whether Gnus is running or not."
1221 (and (boundp 'gnus-group-buffer)
1222 (get-buffer gnus-group-buffer)
20a673b2 1223 (with-current-buffer gnus-group-buffer
6748645f
LMI
1224 (eq major-mode 'gnus-group-mode))))
1225
61c47336
KY
1226(defun gnus-remove-if (predicate sequence &optional hash-table-p)
1227 "Return a copy of SEQUENCE with all items satisfying PREDICATE removed.
1228SEQUENCE should be a list, a vector, or a string. Returns always a list.
1229If HASH-TABLE-P is non-nil, regards SEQUENCE as a hash table."
6748645f 1230 (let (out)
61c47336
KY
1231 (if hash-table-p
1232 (mapatoms (lambda (symbol)
1233 (unless (funcall predicate symbol)
1234 (push symbol out)))
1235 sequence)
1236 (unless (listp sequence)
1237 (setq sequence (append sequence nil)))
1238 (while sequence
1239 (unless (funcall predicate (car sequence))
1240 (push (car sequence) out))
1241 (setq sequence (cdr sequence))))
1242 (nreverse out)))
1243
1244(defun gnus-remove-if-not (predicate sequence &optional hash-table-p)
1245 "Return a copy of SEQUENCE with all items not satisfying PREDICATE removed.
1246SEQUENCE should be a list, a vector, or a string. Returns always a list.
1247If HASH-TABLE-P is non-nil, regards SEQUENCE as a hash table."
1248 (let (out)
1249 (if hash-table-p
1250 (mapatoms (lambda (symbol)
1251 (when (funcall predicate symbol)
1252 (push symbol out)))
1253 sequence)
1254 (unless (listp sequence)
1255 (setq sequence (append sequence nil)))
1256 (while sequence
1257 (when (funcall predicate (car sequence))
1258 (push (car sequence) out))
1259 (setq sequence (cdr sequence))))
6748645f
LMI
1260 (nreverse out)))
1261
23f87bed
MB
1262(if (fboundp 'assq-delete-all)
1263 (defalias 'gnus-delete-alist 'assq-delete-all)
1264 (defun gnus-delete-alist (key alist)
1265 "Delete from ALIST all elements whose car is KEY.
1266Return the modified alist."
1267 (let (entry)
1268 (while (setq entry (assq key alist))
1269 (setq alist (delq entry alist)))
1270 alist)))
6748645f 1271
77154961
KY
1272(defun gnus-grep-in-list (word list)
1273 "Find if a WORD matches any regular expression in the given LIST."
1274 (when (and word list)
1275 (catch 'found
1276 (dolist (r list)
1277 (when (string-match r word)
1278 (throw 'found r))))))
1279
36d3245f 1280(defmacro gnus-alist-pull (key alist &optional assoc-p)
6748645f
LMI
1281 "Modify ALIST to be without KEY."
1282 (unless (symbolp alist)
1283 (error "Not a symbol: %s" alist))
16409b0b
GM
1284 (let ((fun (if assoc-p 'assoc 'assq)))
1285 `(setq ,alist (delq (,fun ,key ,alist) ,alist))))
6748645f
LMI
1286
1287(defun gnus-globalify-regexp (re)
e7f767c2 1288 "Return a regexp that matches a whole line, if RE matches a part of it."
6748645f
LMI
1289 (concat (unless (string-match "^\\^" re) "^.*")
1290 re
1291 (unless (string-match "\\$$" re) ".*$")))
1292
16409b0b
GM
1293(defun gnus-set-window-start (&optional point)
1294 "Set the window start to POINT, or (point) if nil."
23f87bed 1295 (let ((win (gnus-get-buffer-window (current-buffer) t)))
16409b0b
GM
1296 (when win
1297 (set-window-start win (or point (point))))))
1298
1299(defun gnus-annotation-in-region-p (b e)
1300 (if (= b e)
1301 (eq (cadr (memq 'gnus-undeletable (text-properties-at b))) t)
1302 (text-property-any b e 'gnus-undeletable t)))
1303
1304(defun gnus-or (&rest elems)
1305 "Return non-nil if any of the elements are non-nil."
1306 (catch 'found
1307 (while elems
1308 (when (pop elems)
1309 (throw 'found t)))))
1310
1311(defun gnus-and (&rest elems)
1312 "Return non-nil if all of the elements are non-nil."
1313 (catch 'found
1314 (while elems
1315 (unless (pop elems)
1316 (throw 'found nil)))
1317 t))
1318
5ec7fe1b
GM
1319;; gnus.el requires mm-util.
1320(declare-function mm-disable-multibyte "mm-util")
1321
16409b0b 1322(defun gnus-write-active-file (file hashtb &optional full-names)
01c52d31 1323 ;; `coding-system-for-write' should be `raw-text' or equivalent.
16409b0b
GM
1324 (let ((coding-system-for-write nnmail-active-file-coding-system))
1325 (with-temp-file file
01c52d31
MB
1326 ;; The buffer should be in the unibyte mode because group names
1327 ;; are ASCII text or encoded non-ASCII text (i.e., unibyte).
1328 (mm-disable-multibyte)
16409b0b
GM
1329 (mapatoms
1330 (lambda (sym)
1331 (when (and sym
1332 (boundp sym)
1333 (symbol-value sym))
1334 (insert (format "%S %d %d y\n"
1335 (if full-names
1336 sym
1337 (intern (gnus-group-real-name (symbol-name sym))))
1338 (or (cdr (symbol-value sym))
1339 (car (symbol-value sym)))
1340 (car (symbol-value sym))))))
1341 hashtb)
1342 (goto-char (point-max))
1343 (while (search-backward "\\." nil t)
1344 (delete-char 1)))))
1345
23f87bed
MB
1346;; Fixme: Why not use `with-output-to-temp-buffer'?
1347(defmacro gnus-with-output-to-file (file &rest body)
1348 (let ((buffer (make-symbol "output-buffer"))
1349 (size (make-symbol "output-buffer-size"))
1350 (leng (make-symbol "output-buffer-length"))
1351 (append (make-symbol "output-buffer-append")))
1352 `(let* ((,size 131072)
1353 (,buffer (make-string ,size 0))
1354 (,leng 0)
1355 (,append nil)
1356 (standard-output
1357 (lambda (c)
1358 (aset ,buffer ,leng c)
bf247b6e 1359
23f87bed
MB
1360 (if (= ,size (setq ,leng (1+ ,leng)))
1361 (progn (write-region ,buffer nil ,file ,append 'no-msg)
1362 (setq ,leng 0
1363 ,append t))))))
1364 ,@body
1365 (when (> ,leng 0)
1366 (let ((coding-system-for-write 'no-conversion))
1367 (write-region (substring ,buffer 0 ,leng) nil ,file
1368 ,append 'no-msg))))))
1369
1370(put 'gnus-with-output-to-file 'lisp-indent-function 1)
1371(put 'gnus-with-output-to-file 'edebug-form-spec '(form body))
1372
1373(if (fboundp 'union)
1374 (defalias 'gnus-union 'union)
1375 (defun gnus-union (l1 l2)
1376 "Set union of lists L1 and L2."
1377 (cond ((null l1) l2)
1378 ((null l2) l1)
1379 ((equal l1 l2) l1)
1380 (t
1381 (or (>= (length l1) (length l2))
1382 (setq l1 (prog1 l2 (setq l2 l1))))
1383 (while l2
1384 (or (member (car l2) l1)
1385 (push (car l2) l1))
1386 (pop l2))
1387 l1))))
1388
5ec7fe1b
GM
1389(declare-function gnus-add-text-properties "gnus"
1390 (start end properties &optional object))
1391
520aa572
SZ
1392(defun gnus-add-text-properties-when
1393 (property value start end properties &optional object)
1394 "Like `gnus-add-text-properties', only applied on where PROPERTY is VALUE."
1395 (let (point)
3d8c35d3 1396 (while (and start
23f87bed 1397 (< start end) ;; XEmacs will loop for every when start=end.
520aa572
SZ
1398 (setq point (text-property-not-all start end property value)))
1399 (gnus-add-text-properties start point properties object)
1400 (setq start (text-property-any point end property value)))
1401 (if start
1402 (gnus-add-text-properties start end properties object))))
1403
1404(defun gnus-remove-text-properties-when
1405 (property value start end properties &optional object)
1406 "Like `remove-text-properties', only applied on where PROPERTY is VALUE."
1407 (let (point)
3d8c35d3 1408 (while (and start
23f87bed 1409 (< start end)
520aa572
SZ
1410 (setq point (text-property-not-all start end property value)))
1411 (remove-text-properties start point properties object)
1412 (setq start (text-property-any point end property value)))
1413 (if start
4481aa98
SZ
1414 (remove-text-properties start end properties object))
1415 t))
520aa572 1416
01c52d31
MB
1417(defun gnus-string-remove-all-properties (string)
1418 (condition-case ()
1419 (let ((s string))
1420 (set-text-properties 0 (length string) nil string)
1421 s)
1422 (error string)))
1423
23f87bed
MB
1424;; This might use `compare-strings' to reduce consing in the
1425;; case-insensitive case, but it has to cope with null args.
1426;; (`string-equal' uses symbol print names.)
1427(defun gnus-string-equal (x y)
1428 "Like `string-equal', except it compares case-insensitively."
1429 (and (= (length x) (length y))
1430 (or (string-equal x y)
1431 (string-equal (downcase x) (downcase y)))))
1432
1433(defcustom gnus-use-byte-compile t
1434 "If non-nil, byte-compile crucial run-time code.
1435Setting it to nil has no effect after the first time `gnus-byte-compile'
1436is run."
1437 :type 'boolean
bf247b6e 1438 :version "22.1"
23f87bed
MB
1439 :group 'gnus-various)
1440
1441(defun gnus-byte-compile (form)
1442 "Byte-compile FORM if `gnus-use-byte-compile' is non-nil."
1443 (if gnus-use-byte-compile
1444 (progn
1445 (condition-case nil
1446 ;; Work around a bug in XEmacs 21.4
1447 (require 'byte-optimize)
1448 (error))
1449 (require 'bytecomp)
1450 (defalias 'gnus-byte-compile
1451 (lambda (form)
1452 (let ((byte-compile-warnings '(unresolved callargs redefine)))
1453 (byte-compile form))))
1454 (gnus-byte-compile form))
1455 form))
1456
1457(defun gnus-remassoc (key alist)
1458 "Delete by side effect any elements of LIST whose car is `equal' to KEY.
1459The modified LIST is returned. If the first member
1460of LIST has a car that is `equal' to KEY, there is no way to remove it
54506618 1461by side effect; therefore, write `(setq foo (gnus-remassoc key foo))' to be
23f87bed
MB
1462sure of changing the value of `foo'."
1463 (when alist
1464 (if (equal key (caar alist))
1465 (cdr alist)
1466 (setcdr alist (gnus-remassoc key (cdr alist)))
1467 alist)))
1468
1469(defun gnus-update-alist-soft (key value alist)
1470 (if value
1471 (cons (cons key value) (gnus-remassoc key alist))
1472 (gnus-remassoc key alist)))
1473
1474(defun gnus-create-info-command (node)
1475 "Create a command that will go to info NODE."
1476 `(lambda ()
1477 (interactive)
1478 ,(concat "Enter the info system at node " node)
1479 (Info-goto-node ,node)
1480 (setq gnus-info-buffer (current-buffer))
1481 (gnus-configure-windows 'info)))
1482
1483(defun gnus-not-ignore (&rest args)
1484 t)
1485
47b63dfa
SZ
1486(defvar gnus-directory-sep-char-regexp "/"
1487 "The regexp of directory separator character.
1488If you find some problem with the directory separator character, try
1489\"[/\\\\\]\" for some systems.")
1490
23f87bed
MB
1491(defun gnus-url-unhex (x)
1492 (if (> x ?9)
1493 (if (>= x ?a)
1494 (+ 10 (- x ?a))
1495 (+ 10 (- x ?A)))
1496 (- x ?0)))
1497
1498;; Fixme: Do it like QP.
1499(defun gnus-url-unhex-string (str &optional allow-newlines)
1500 "Remove %XX, embedded spaces, etc in a url.
1501If optional second argument ALLOW-NEWLINES is non-nil, then allow the
1502decoding of carriage returns and line feeds in the string, which is normally
1503forbidden in URL encoding."
1504 (let ((tmp "")
1505 (case-fold-search t))
1506 (while (string-match "%[0-9a-f][0-9a-f]" str)
1507 (let* ((start (match-beginning 0))
1508 (ch1 (gnus-url-unhex (elt str (+ start 1))))
1509 (code (+ (* 16 ch1)
1510 (gnus-url-unhex (elt str (+ start 2))))))
1511 (setq tmp (concat
1512 tmp (substring str 0 start)
1513 (cond
1514 (allow-newlines
1515 (char-to-string code))
1516 ((or (= code ?\n) (= code ?\r))
1517 " ")
1518 (t (char-to-string code))))
1519 str (substring str (match-end 0)))))
1520 (setq tmp (concat tmp str))
1521 tmp))
1522
1523(defun gnus-make-predicate (spec)
1524 "Transform SPEC into a function that can be called.
1525SPEC is a predicate specifier that contains stuff like `or', `and',
1526`not', lists and functions. The functions all take one parameter."
1527 `(lambda (elem) ,(gnus-make-predicate-1 spec)))
1528
1529(defun gnus-make-predicate-1 (spec)
1530 (cond
1531 ((symbolp spec)
1532 `(,spec elem))
1533 ((listp spec)
1534 (if (memq (car spec) '(or and not))
1535 `(,(car spec) ,@(mapcar 'gnus-make-predicate-1 (cdr spec)))
1536 (error "Invalid predicate specifier: %s" spec)))))
1537
229b59da
G
1538(defun gnus-completing-read (prompt collection &optional require-match
1539 initial-input history def)
870409d4
G
1540 "Call `gnus-completing-read-function'."
1541 (funcall gnus-completing-read-function
1542 (concat prompt (when def
1543 (concat " (default " def ")"))
1544 ": ")
1545 collection require-match initial-input history def))
1546
1547(defun gnus-emacs-completing-read (prompt collection &optional require-match
1548 initial-input history def)
1549 "Call standard `completing-read-function'."
229b59da 1550 (let ((completion-styles gnus-completion-styles))
71e691a5
G
1551 (completing-read prompt
1552 ;; Old XEmacs (at least 21.4) expect an alist for
1553 ;; collection.
1554 (mapcar 'list collection)
1555 nil require-match initial-input history def)))
870409d4 1556
50cb700c 1557(autoload 'ido-completing-read "ido")
870409d4
G
1558(defun gnus-ido-completing-read (prompt collection &optional require-match
1559 initial-input history def)
1560 "Call `ido-completing-read-function'."
3d319c8f
LMI
1561 (ido-completing-read prompt collection nil require-match
1562 initial-input history def))
870409d4 1563
50cb700c 1564
a1daed2b
GM
1565(declare-function iswitchb-read-buffer "iswitchb"
1566 (prompt &optional default require-match start matches-set))
1567(defvar iswitchb-temp-buflist)
1568
870409d4
G
1569(defun gnus-iswitchb-completing-read (prompt collection &optional require-match
1570 initial-input history def)
1571 "`iswitchb' based completing-read function."
7beb9868
GM
1572 ;; Make sure iswitchb is loaded before we let-bind its variables.
1573 ;; If it is loaded inside the let, variables can become unbound afterwards.
a1daed2b 1574 (require 'iswitchb)
870409d4
G
1575 (let ((iswitchb-make-buflist-hook
1576 (lambda ()
1577 (setq iswitchb-temp-buflist
1578 (let ((choices (append
1579 (when initial-input (list initial-input))
1580 (symbol-value history) collection))
1581 filtered-choices)
1582 (dolist (x choices)
1583 (setq filtered-choices (adjoin x filtered-choices)))
1584 (nreverse filtered-choices))))))
1585 (unwind-protect
1586 (progn
a1daed2b
GM
1587 (or iswitchb-mode
1588 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup))
870409d4 1589 (iswitchb-read-buffer prompt def require-match))
a1daed2b
GM
1590 (or iswitchb-mode
1591 (remove-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)))))
23f87bed
MB
1592
1593(defun gnus-graphic-display-p ()
73137971
KY
1594 (if (featurep 'xemacs)
1595 (device-on-window-system-p)
1596 (display-graphic-p)))
23f87bed
MB
1597
1598(put 'gnus-parse-without-error 'lisp-indent-function 0)
1599(put 'gnus-parse-without-error 'edebug-form-spec '(body))
1600
1601(defmacro gnus-parse-without-error (&rest body)
1602 "Allow continuing onto the next line even if an error occurs."
1603 `(while (not (eobp))
1604 (condition-case ()
1605 (progn
1606 ,@body
1607 (goto-char (point-max)))
1608 (error
1609 (gnus-error 4 "Invalid data on line %d"
1610 (count-lines (point-min) (point)))
1611 (forward-line 1)))))
1612
1613(defun gnus-cache-file-contents (file variable function)
1614 "Cache the contents of FILE in VARIABLE. The contents come from FUNCTION."
1615 (let ((time (nth 5 (file-attributes file)))
1616 contents value)
1617 (if (or (null (setq value (symbol-value variable)))
1618 (not (equal (car value) file))
1619 (not (equal (nth 1 value) time)))
1620 (progn
1621 (setq contents (funcall function file))
1622 (set variable (list file time contents))
1623 contents)
1624 (nth 2 value))))
1625
1626(defun gnus-multiple-choice (prompt choice &optional idx)
1627 "Ask user a multiple choice question.
1628CHOICE is a list of the choice char and help message at IDX."
1629 (let (tchar buf)
1630 (save-window-excursion
1631 (save-excursion
1632 (while (not tchar)
1633 (message "%s (%s): "
1634 prompt
1635 (concat
1636 (mapconcat (lambda (s) (char-to-string (car s)))
1637 choice ", ") ", ?"))
1638 (setq tchar (read-char))
1639 (when (not (assq tchar choice))
1640 (setq tchar nil)
1641 (setq buf (get-buffer-create "*Gnus Help*"))
1642 (pop-to-buffer buf)
1643 (fundamental-mode) ; for Emacs 20.4+
1644 (buffer-disable-undo)
1645 (erase-buffer)
1646 (insert prompt ":\n\n")
1647 (let ((max -1)
1648 (list choice)
1649 (alist choice)
1650 (idx (or idx 1))
1651 (i 0)
1652 n width pad format)
1653 ;; find the longest string to display
1654 (while list
1655 (setq n (length (nth idx (car list))))
1656 (unless (> max n)
1657 (setq max n))
1658 (setq list (cdr list)))
1659 (setq max (+ max 4)) ; %c, `:', SPACE, a SPACE at end
1660 (setq n (/ (1- (window-width)) max)) ; items per line
1661 (setq width (/ (1- (window-width)) n)) ; width of each item
1662 ;; insert `n' items, each in a field of width `width'
1663 (while alist
1664 (if (< i n)
1665 ()
1666 (setq i 0)
1667 (delete-char -1) ; the `\n' takes a char
1668 (insert "\n"))
1669 (setq pad (- width 3))
1670 (setq format (concat "%c: %-" (int-to-string pad) "s"))
1671 (insert (format format (caar alist) (nth idx (car alist))))
1672 (setq alist (cdr alist))
1673 (setq i (1+ i))))))))
1674 (if (buffer-live-p buf)
1675 (kill-buffer buf))
1676 tchar))
1677
a1daed2b 1678(if (featurep 'emacs)
5843126b 1679 (defalias 'gnus-select-frame-set-input-focus 'select-frame-set-input-focus)
a1daed2b
GM
1680 (if (fboundp 'select-frame-set-input-focus)
1681 (defalias 'gnus-select-frame-set-input-focus 'select-frame-set-input-focus)
1682 ;; XEmacs 21.4, SXEmacs
1683 (defun gnus-select-frame-set-input-focus (frame)
1684 "Select FRAME, raise it, and set input focus, if possible."
1685 (raise-frame frame)
1686 (select-frame frame)
1687 (focus-frame frame))))
23f87bed
MB
1688
1689(defun gnus-frame-or-window-display-name (object)
1690 "Given a frame or window, return the associated display name.
1691Return nil otherwise."
1692 (if (featurep 'xemacs)
1693 (device-connection (dfw-device object))
1694 (if (or (framep object)
1695 (and (windowp object)
1696 (setq object (window-frame object))))
1697 (let ((display (frame-parameter object 'display)))
1698 (if (and (stringp display)
1699 ;; Exclude invalid display names.
1700 (string-match "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'"
1701 display))
1702 display)))))
1703
9efa445f 1704(defvar tool-bar-mode)
531bedc3 1705
85fd8002
RS
1706(defun gnus-tool-bar-update (&rest ignore)
1707 "Update the tool bar."
1708 (when (and (boundp 'tool-bar-mode)
1709 tool-bar-mode)
1710 (let* ((args nil)
1711 (func (cond ((featurep 'xemacs)
1712 'ignore)
1713 ((fboundp 'tool-bar-update)
1714 'tool-bar-update)
1715 ((fboundp 'force-window-update)
1716 'force-window-update)
1717 ((fboundp 'redraw-frame)
1718 (setq args (list (selected-frame)))
1719 'redraw-frame)
1720 (t 'ignore))))
1721 (apply func args))))
1722
23f87bed
MB
1723;; Fixme: This has only one use (in gnus-agent), which isn't worthwhile.
1724(defmacro gnus-mapcar (function seq1 &rest seqs2_n)
1725 "Apply FUNCTION to each element of the sequences, and make a list of the results.
1726If there are several sequences, FUNCTION is called with that many arguments,
1727and mapping stops as soon as the shortest sequence runs out. With just one
1728sequence, this is like `mapcar'. With several, it is like the Common Lisp
1729`mapcar' function extended to arbitrary sequence types."
1730
1731 (if seqs2_n
1732 (let* ((seqs (cons seq1 seqs2_n))
1733 (cnt 0)
1734 (heads (mapcar (lambda (seq)
1735 (make-symbol (concat "head"
1736 (int-to-string
1737 (setq cnt (1+ cnt))))))
1738 seqs))
1739 (result (make-symbol "result"))
1740 (result-tail (make-symbol "result-tail")))
1741 `(let* ,(let* ((bindings (cons nil nil))
1742 (heads heads))
1743 (nconc bindings (list (list result '(cons nil nil))))
1744 (nconc bindings (list (list result-tail result)))
1745 (while heads
1746 (nconc bindings (list (list (pop heads) (pop seqs)))))
1747 (cdr bindings))
1748 (while (and ,@heads)
1749 (setcdr ,result-tail (cons (funcall ,function
1750 ,@(mapcar (lambda (h) (list 'car h))
1751 heads))
1752 nil))
1753 (setq ,result-tail (cdr ,result-tail)
1754 ,@(apply 'nconc (mapcar (lambda (h) (list h (list 'cdr h))) heads))))
1755 (cdr ,result)))
1756 `(mapcar ,function ,seq1)))
1757
1758(if (fboundp 'merge)
1759 (defalias 'gnus-merge 'merge)
1760 ;; Adapted from cl-seq.el
1761 (defun gnus-merge (type list1 list2 pred)
1762 "Destructively merge lists LIST1 and LIST2 to produce a new list.
1763Argument TYPE is for compatibility and ignored.
1764Ordering of the elements is preserved according to PRED, a `less-than'
1765predicate on the elements."
1766 (let ((res nil))
1767 (while (and list1 list2)
1768 (if (funcall pred (car list2) (car list1))
1769 (push (pop list2) res)
1770 (push (pop list1) res)))
1771 (nconc (nreverse res) list1 list2))))
1772
9efa445f
DN
1773(defvar xemacs-codename)
1774(defvar sxemacs-codename)
1775(defvar emacs-program-version)
23f87bed
MB
1776
1777(defun gnus-emacs-version ()
1778 "Stringified Emacs version."
4a2358e9
MB
1779 (let* ((lst (if (listp gnus-user-agent)
1780 gnus-user-agent
1781 '(gnus emacs type)))
1782 (system-v (cond ((memq 'config lst)
1783 system-configuration)
1784 ((memq 'type lst)
1785 (symbol-name system-type))
1786 (t nil)))
1787 codename emacsname)
1788 (cond ((featurep 'sxemacs)
1789 (setq emacsname "SXEmacs"
1790 codename sxemacs-codename))
1791 ((featurep 'xemacs)
1792 (setq emacsname "XEmacs"
1793 codename xemacs-codename))
1794 (t
1795 (setq emacsname "Emacs")))
23f87bed 1796 (cond
4a2358e9 1797 ((not (memq 'emacs lst))
23f87bed
MB
1798 nil)
1799 ((string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$" emacs-version)
4a2358e9 1800 ;; Emacs:
23f87bed
MB
1801 (concat "Emacs/" (match-string 1 emacs-version)
1802 (if system-v
1803 (concat " (" system-v ")")
1804 "")))
4a2358e9
MB
1805 ((or (featurep 'sxemacs) (featurep 'xemacs))
1806 ;; XEmacs or SXEmacs:
1807 (concat emacsname "/" emacs-program-version
01c52d31
MB
1808 (let (plst)
1809 (when (memq 'codename lst)
1810 (push codename plst))
1811 (when system-v
1812 (push system-v plst))
1813 (unless (featurep 'mule)
1814 (push "no MULE" plst))
1815 (when (> (length plst) 0)
1816 (concat
1817 " (" (mapconcat 'identity (reverse plst) ", ") ")")))))
23f87bed
MB
1818 (t emacs-version))))
1819
54506618
MB
1820(defun gnus-rename-file (old-path new-path &optional trim)
1821 "Rename OLD-PATH as NEW-PATH. If TRIM, recursively delete
1822empty directories from OLD-PATH."
1823 (when (file-exists-p old-path)
1824 (let* ((old-dir (file-name-directory old-path))
1825 (old-name (file-name-nondirectory old-path))
1826 (new-dir (file-name-directory new-path))
1827 (new-name (file-name-nondirectory new-path))
1828 temp)
1829 (gnus-make-directory new-dir)
1830 (rename-file old-path new-path t)
1831 (when trim
1832 (while (progn (setq temp (directory-files old-dir))
1833 (while (member (car temp) '("." ".."))
1834 (setq temp (cdr temp)))
1835 (= (length temp) 0))
1836 (delete-directory old-dir)
bf247b6e
KS
1837 (setq old-dir (file-name-as-directory
1838 (file-truename
54506618
MB
1839 (concat old-dir "..")))))))))
1840
01c52d31
MB
1841(defun gnus-set-file-modes (filename mode)
1842 "Wrapper for set-file-modes."
1843 (ignore-errors
1844 (set-file-modes filename mode)))
1845
4a43ee9b
MB
1846(if (fboundp 'set-process-query-on-exit-flag)
1847 (defalias 'gnus-set-process-query-on-exit-flag
1848 'set-process-query-on-exit-flag)
1849 (defalias 'gnus-set-process-query-on-exit-flag
1850 'process-kill-without-query))
54506618 1851
d346bf7e
SM
1852(defalias 'gnus-read-shell-command
1853 (if (fboundp 'read-shell-command) 'read-shell-command 'read-string))
1854
2b968687
MB
1855(defmacro gnus-put-display-table (range value display-table)
1856 "Set the value for char RANGE to VALUE in DISPLAY-TABLE. "
1857 (if (featurep 'xemacs)
1858 (progn
1859 `(if (fboundp 'put-display-table)
1860 (put-display-table ,range ,value ,display-table)
1861 (if (sequencep ,display-table)
1862 (aset ,display-table ,range ,value)
1863 (put-char-table ,range ,value ,display-table))))
1864 `(aset ,display-table ,range ,value)))
1865
1866(defmacro gnus-get-display-table (character display-table)
1867 "Find value for CHARACTER in DISPLAY-TABLE. "
1868 (if (featurep 'xemacs)
1869 `(if (fboundp 'get-display-table)
1870 (get-display-table ,character ,display-table)
1871 (if (sequencep ,display-table)
1872 (aref ,display-table ,character)
1873 (get-char-table ,character ,display-table)))
1874 `(aref ,display-table ,character)))
1875
a41c2e6d
G
1876(defun gnus-rescale-image (image size)
1877 "Rescale IMAGE to SIZE if possible.
1878SIZE is in format (WIDTH . HEIGHT). Return a new image.
1879Sizes are in pixels."
c486dd96
JD
1880 (if (or (not (fboundp 'imagemagick-types))
1881 (not (get-buffer-window (current-buffer))))
1882 image
a41c2e6d
G
1883 (let ((new-width (car size))
1884 (new-height (cdr size)))
c486dd96
JD
1885 (when (> (cdr (image-size image t)) new-height)
1886 (setq image (or (create-image (plist-get (cdr image) :data) 'imagemagick t
1887 :height new-height)
1888 image)))
1889 (when (> (car (image-size image t)) new-width)
1890 (setq image (or
1891 (create-image (plist-get (cdr image) :data) 'imagemagick t
1892 :width new-width)
1893 image)))
1894 image)))
a41c2e6d 1895
89b163db
G
1896(defun gnus-recursive-directory-files (dir)
1897 "Return all regular files below DIR."
1898 (let (files)
1899 (dolist (file (directory-files dir t))
1900 (when (and (not (member (file-name-nondirectory file) '("." "..")))
1901 (file-readable-p file))
1902 (cond
1903 ((file-regular-p file)
1904 (push file files))
1905 ((file-directory-p file)
1906 (setq files (append (gnus-recursive-directory-files file) files))))))
1907 files))
1908
99e65b2d
G
1909(defun gnus-list-memq-of-list (elements list)
1910 "Return non-nil if any of the members of ELEMENTS are in LIST."
1911 (let ((found nil))
1912 (dolist (elem elements)
1913 (setq found (or found
1914 (memq elem list))))
1915 found))
1916
389b76fa
G
1917(eval-and-compile
1918 (cond
1919 ((fboundp 'match-substitute-replacement)
1920 (defalias 'gnus-match-substitute-replacement 'match-substitute-replacement))
1921 (t
1922 (defun gnus-match-substitute-replacement (replacement &optional fixedcase literal string subexp)
1923 "Return REPLACEMENT as it will be inserted by `replace-match'.
1924In other words, all back-references in the form `\\&' and `\\N'
1925are substituted with actual strings matched by the last search.
1926Optional FIXEDCASE, LITERAL, STRING and SUBEXP have the same
1927meaning as for `replace-match'.
1928
1929This is the definition of match-substitute-replacement in subr.el from GNU Emacs."
1930 (let ((match (match-string 0 string)))
1931 (save-match-data
1932 (set-match-data (mapcar (lambda (x)
1933 (if (numberp x)
1934 (- x (match-beginning 0))
1935 x))
1936 (match-data t)))
1937 (replace-match replacement fixedcase literal match subexp)))))))
1938
87732ef3
KY
1939(if (fboundp 'string-match-p)
1940 (defalias 'gnus-string-match-p 'string-match-p)
1941 (defsubst gnus-string-match-p (regexp string &optional start)
1942 "\
1943Same as `string-match' except this function does not change the match data."
1944 (save-match-data
1945 (string-match regexp string start))))
1946
4fd78b62
KY
1947(if (fboundp 'string-prefix-p)
1948 (defalias 'gnus-string-prefix-p 'string-prefix-p)
1949 (defun gnus-string-prefix-p (str1 str2 &optional ignore-case)
1950 "Return non-nil if STR1 is a prefix of STR2.
1951If IGNORE-CASE is non-nil, the comparison is done without paying attention
1952to case differences."
845ce106
G
1953 (and (<= (length str1) (length str2))
1954 (let ((prefix (substring str2 0 (length str1))))
1955 (if ignore-case
1956 (string-equal (downcase str1) (downcase prefix))
1957 (string-equal str1 prefix))))))
4fd78b62 1958
5bb8ec77
TZ
1959;; Simple check: can be a macro but this way, although slow, it's really clear.
1960;; We don't use `bound-and-true-p' because it's not in XEmacs.
b7351677 1961(defun gnus-bound-and-true-p (sym)
37dcccdd
TZ
1962 (and (boundp sym) (symbol-value sym)))
1963
5e2b4ce1
KY
1964(if (fboundp 'timer--function)
1965 (defalias 'gnus-timer--function 'timer--function)
1966 (defun gnus-timer--function (timer)
1967 (elt timer 5)))
1968
eec82323
LMI
1969(provide 'gnus-util)
1970
1971;;; gnus-util.el ends here