1 ;;; gnus-spec.el --- format spec functions for Gnus
2 ;; Copyright (C) 1996,97,98 Free Software Foundation, Inc.
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
28 (eval-when-compile (require 'cl))
32 ;;; Internal variables.
34 (defvar gnus-summary-mark-positions nil)
35 (defvar gnus-group-mark-positions nil)
36 (defvar gnus-group-indentation "")
38 ;; Format specs. The chunks below are the machine-generated forms
39 ;; that are to be evaled as the result of the default format strings.
40 ;; We write them in here to get them byte-compiled. That way the
41 ;; default actions will be quite fast, while still retaining the full
42 ;; flexibility of the user-defined format specs.
44 ;; First we have lots of dummy defvars to let the compiler know these
45 ;; are really dynamic variables.
47 (defvar gnus-tmp-unread)
48 (defvar gnus-tmp-replied)
49 (defvar gnus-tmp-score-char)
50 (defvar gnus-tmp-indentation)
51 (defvar gnus-tmp-opening-bracket)
52 (defvar gnus-tmp-lines)
53 (defvar gnus-tmp-name)
54 (defvar gnus-tmp-closing-bracket)
55 (defvar gnus-tmp-subject-or-nil)
56 (defvar gnus-tmp-subject)
57 (defvar gnus-tmp-marked)
58 (defvar gnus-tmp-marked-mark)
59 (defvar gnus-tmp-subscribed)
60 (defvar gnus-tmp-process-marked)
61 (defvar gnus-tmp-number-of-unread)
62 (defvar gnus-tmp-group-name)
63 (defvar gnus-tmp-group)
64 (defvar gnus-tmp-article-number)
65 (defvar gnus-tmp-unread-and-unselected)
66 (defvar gnus-tmp-news-method)
67 (defvar gnus-tmp-news-server)
68 (defvar gnus-tmp-article-number)
69 (defvar gnus-mouse-face)
70 (defvar gnus-mouse-face-prop)
72 (defun gnus-summary-line-format-spec ()
73 (insert gnus-tmp-unread gnus-tmp-replied
74 gnus-tmp-score-char gnus-tmp-indentation)
75 (gnus-put-text-property
79 gnus-tmp-opening-bracket
82 (if (> (length gnus-tmp-name) 20)
83 (substring gnus-tmp-name 0 20)
85 gnus-tmp-closing-bracket)
87 gnus-mouse-face-prop gnus-mouse-face)
88 (insert " " gnus-tmp-subject-or-nil "\n"))
90 (defvar gnus-summary-line-format-spec
91 (gnus-byte-code 'gnus-summary-line-format-spec))
93 (defun gnus-summary-dummy-line-format-spec ()
95 (gnus-put-text-property
100 gnus-mouse-face-prop gnus-mouse-face)
101 (insert " " gnus-tmp-subject "\n"))
103 (defvar gnus-summary-dummy-line-format-spec
104 (gnus-byte-code 'gnus-summary-dummy-line-format-spec))
106 (defun gnus-group-line-format-spec ()
107 (insert gnus-tmp-marked-mark gnus-tmp-subscribed
108 gnus-tmp-process-marked
109 gnus-group-indentation
110 (format "%5s: " gnus-tmp-number-of-unread))
111 (gnus-put-text-property
114 (insert gnus-tmp-group "\n")
116 gnus-mouse-face-prop gnus-mouse-face))
117 (defvar gnus-group-line-format-spec
118 (gnus-byte-code 'gnus-group-line-format-spec))
120 (defvar gnus-format-specs
121 `((version . ,emacs-version)
122 (group "%M\%S\%p\%P\%5y: %(%g%)%l\n" ,gnus-group-line-format-spec)
123 (summary-dummy "* %(: :%) %S\n"
124 ,gnus-summary-dummy-line-format-spec)
125 (summary "%U\%R\%z\%I\%(%[%4L: %-20,20n%]%) %s\n"
126 ,gnus-summary-line-format-spec))
127 "Alist of format specs.")
129 (defvar gnus-article-mode-line-format-spec nil)
130 (defvar gnus-summary-mode-line-format-spec nil)
131 (defvar gnus-group-mode-line-format-spec nil)
133 ;;; Phew. All that gruft is over, fortunately.
136 (defun gnus-update-format (var)
137 "Update the format specification near point."
142 ;; Find the end of the current word.
143 (re-search-forward "[ \t\n]" nil t)
145 (when (re-search-backward "\\(gnus-[-a-z]+-line-format\\)" nil t)
147 (let* ((type (intern (progn (string-match "gnus-\\([-a-z]+\\)-line" var)
148 (match-string 1 var))))
149 (entry (assq type gnus-format-specs))
152 (setq gnus-format-specs (delq entry gnus-format-specs)))
154 (intern (format "%s-spec" var))
155 (gnus-parse-format (setq value (symbol-value (intern var)))
156 (symbol-value (intern (format "%s-alist" var)))
157 (not (string-match "mode" var))))
158 (setq spec (symbol-value (intern (format "%s-spec" var))))
159 (push (list type value spec) gnus-format-specs)
161 (pop-to-buffer "*Gnus Format*")
163 (lisp-interaction-mode)
164 (insert (pp-to-string spec))))
166 (defun gnus-update-format-specifications (&optional force &rest types)
167 "Update all (necessary) format specifications."
168 ;; Make the indentation array.
169 ;; See whether all the stored info needs to be flushed.
171 (not (equal emacs-version
172 (cdr (assq 'version gnus-format-specs)))))
173 (setq gnus-format-specs nil))
175 ;; Go through all the formats and see whether they need updating.
176 (let (new-format entry type val)
177 (while (setq type (pop types))
178 ;; Jump to the proper buffer to find out the value of
179 ;; the variable, if possible. (It may be buffer-local.)
181 (let ((buffer (intern (format "gnus-%s-buffer" type)))
183 (when (and (boundp buffer)
184 (setq val (symbol-value buffer))
186 (buffer-name (get-buffer val)))
187 (set-buffer (get-buffer val)))
188 (setq new-format (symbol-value
189 (intern (format "gnus-%s-line-format" type)))))
190 (setq entry (cdr (assq type gnus-format-specs)))
192 (equal (car entry) new-format))
193 ;; Use the old format.
194 (set (intern (format "gnus-%s-line-format-spec" type))
196 ;; This is a new format.
198 (if (not (stringp new-format))
199 ;; This is a function call or something.
201 ;; This is a "real" format.
205 (intern (format "gnus-%s-line-format-alist"
206 (if (eq type 'article-mode)
207 'summary-mode type))))
208 (not (string-match "mode$" (symbol-name type))))))
209 ;; Enter the new format spec into the list.
212 (setcar (cdr entry) val)
213 (setcar entry new-format))
214 (push (list type new-format val) gnus-format-specs))
215 (set (intern (format "gnus-%s-line-format-spec" type)) val)))))
217 (unless (assq 'version gnus-format-specs)
218 (push (cons 'version emacs-version) gnus-format-specs)))
220 (defvar gnus-mouse-face-0 'highlight)
221 (defvar gnus-mouse-face-1 'highlight)
222 (defvar gnus-mouse-face-2 'highlight)
223 (defvar gnus-mouse-face-3 'highlight)
224 (defvar gnus-mouse-face-4 'highlight)
226 (defun gnus-mouse-face-function (form type)
227 `(gnus-put-text-property
228 (point) (progn ,@form (point))
232 `(quote ,(symbol-value (intern (format "gnus-mouse-face-%d" type)))))))
234 (defvar gnus-face-0 'bold)
235 (defvar gnus-face-1 'italic)
236 (defvar gnus-face-2 'bold-italic)
237 (defvar gnus-face-3 'bold)
238 (defvar gnus-face-4 'bold)
240 (defun gnus-face-face-function (form type)
241 `(gnus-put-text-property
242 (point) (progn ,@form (point))
243 'face ',(symbol-value (intern (format "gnus-face-%d" type)))))
245 (defun gnus-tilde-max-form (el max-width)
246 "Return a form that limits EL to MAX-WIDTH."
247 (let ((max (abs max-width)))
249 `(if (> (length ,el) ,max)
251 `(substring ,el (- (length el) ,max))
252 `(substring ,el 0 ,max))
254 `(let ((val (eval ,el)))
255 (if (> (length val) ,max)
257 `(substring val (- (length val) ,max))
258 `(substring val 0 ,max))
261 (defun gnus-tilde-cut-form (el cut-width)
262 "Return a form that cuts CUT-WIDTH off of EL."
263 (let ((cut (abs cut-width)))
265 `(if (> (length ,el) ,cut)
267 `(substring ,el 0 (- (length el) ,cut))
268 `(substring ,el ,cut))
270 `(let ((val (eval ,el)))
271 (if (> (length val) ,cut)
273 `(substring val 0 (- (length val) ,cut))
274 `(substring val ,cut))
277 (defun gnus-tilde-ignore-form (el ignore-value)
278 "Return a form that is blank when EL is IGNORE-VALUE."
280 `(if (equal ,el ,ignore-value)
282 `(let ((val (eval ,el)))
283 (if (equal val ,ignore-value)
286 (defun gnus-parse-format (format spec-alist &optional insert)
287 ;; This function parses the FORMAT string with the help of the
288 ;; SPEC-ALIST and returns a list that can be eval'ed to return the
289 ;; string. If the FORMAT string contains the specifiers %( and %)
290 ;; the text between them will have the mouse-face text property.
292 "\\`\\(.*\\)%[0-9]?[{(]\\(.*\\)%[0-9]?[})]\\(.*\n?\\)\\'"
294 (gnus-parse-complex-format format spec-alist)
295 ;; This is a simple format.
296 (gnus-parse-simple-format format spec-alist insert)))
298 (defun gnus-parse-complex-format (format spec-alist)
300 (gnus-set-work-buffer)
302 (goto-char (point-min))
303 (while (re-search-forward "\"" nil t)
304 (replace-match "\\\"" nil t))
305 (goto-char (point-min))
307 (while (re-search-forward "%\\([0-9]+\\)?\\([{}()]\\)" nil t)
308 (let ((number (if (match-beginning 1)
309 (match-string 1) "0"))
310 (delim (aref (match-string 2) 0)))
311 (if (or (= delim ?\() (= delim ?\{))
312 (replace-match (concat "\"(" (if (= delim ?\() "mouse" "face")
314 (replace-match "\")\""))))
315 (goto-char (point-max))
317 (goto-char (point-min))
318 (let ((form (read (current-buffer))))
319 (cons 'progn (gnus-complex-form-to-spec form spec-alist)))))
321 (defun gnus-complex-form-to-spec (form spec-alist)
326 (gnus-parse-simple-format sform spec-alist t)
327 (funcall (intern (format "gnus-%s-face-function" (car sform)))
328 (gnus-complex-form-to-spec (cddr sform) spec-alist)
332 (defun gnus-parse-simple-format (format spec-alist &optional insert)
333 ;; This function parses the FORMAT string with the help of the
334 ;; SPEC-ALIST and returns a list that can be eval'ed to return a
337 spec flist fstring elem result dontinsert user-defined
338 type value pad-width spec-beg cut-width ignore-value
339 tilde-form tilde elem-type)
341 (gnus-set-work-buffer)
343 (goto-char (point-min))
344 (while (re-search-forward "%" nil t)
345 (setq user-defined nil
352 (setq spec-beg (1- (point)))
354 ;; Parse this spec fully.
357 ((looking-at "\\([-.0-9]+\\)\\(,[-0-9]+\\)?")
358 (setq pad-width (string-to-number (match-string 1)))
359 (when (match-beginning 2)
360 (setq max-width (string-to-number (buffer-substring
361 (1+ (match-beginning 2))
363 (goto-char (match-end 0)))
366 (setq tilde (read (current-buffer))
370 ((memq type '(pad pad-left))
371 (setq pad-width value))
372 ((eq type 'pad-right)
373 (setq pad-width (- value)))
374 ((memq type '(max-right max))
375 (setq max-width value))
377 (setq max-width (- value)))
378 ((memq type '(cut cut-left))
379 (setq cut-width value))
380 ((eq type 'cut-right)
381 (setq cut-width (- value)))
384 (if (stringp value) value (format "%s" value))))
386 (setq tilde-form value))
388 (error "Unknown tilde type: %s" tilde)))
392 ;; User-defined spec -- find the spec name.
393 (when (= (setq spec (following-char)) ?u)
395 (setq user-defined (following-char)))
397 (delete-region spec-beg (point))
399 ;; Now we have all the relevant data on this spec, so
400 ;; we start doing stuff.
403 ;; "%%" just results in a "%".
408 (setq elem (list tilde-form ?s)))
409 ;; Treat user defined format specifiers specially.
413 (list (intern (format "gnus-user-format-function-%c"
417 ;; Find the specification from `spec-alist'.
418 ((setq elem (cdr (assq spec spec-alist))))
420 (setq elem '("*" ?s))))
421 (setq elem-type (cadr elem))
422 ;; Insert the new format elements.
424 (insert (number-to-string pad-width)))
425 ;; Create the form to be evaled.
426 (if (or max-width cut-width ignore-value)
429 (let ((el (car elem)))
430 (cond ((= (cadr elem) ?c)
431 (setq el (list 'char-to-string el)))
433 (setq el (list 'int-to-string el))))
435 (setq el (gnus-tilde-ignore-form el ignore-value)))
437 (setq el (gnus-tilde-cut-form el cut-width)))
439 (setq el (gnus-tilde-max-form el max-width)))
442 (push (car elem) flist))))
443 (setq fstring (buffer-string)))
445 ;; Do some postprocessing to increase efficiency.
450 ((string= fstring "")
452 ;; Not a format string.
453 ((not (string-match "%" fstring))
455 ;; A format string with just a single string spec.
456 ((string= fstring "%s")
458 ;; A single character.
459 ((string= fstring "%c")
462 ((string= fstring "%d")
465 (list `(princ ,(car flist)))
466 (list `(int-to-string ,(car flist)))))
467 ;; Just lots of chars and strings.
468 ((string-match "\\`\\(%[cs]\\)+\\'" fstring)
470 ;; A single string spec at the beginning of the spec.
471 ((string-match "\\`%[sc][^%]+\\'" fstring)
472 (list (car flist) (substring fstring 2)))
473 ;; A single string spec in the middle of the spec.
474 ((string-match "\\`\\([^%]+\\)%[sc]\\([^%]+\\)\\'" fstring)
475 (list (match-string 1 fstring) (car flist) (match-string 2 fstring)))
476 ;; A single string spec in the end of the spec.
477 ((string-match "\\`\\([^%]+\\)%[sc]\\'" fstring)
478 (list (match-string 1 fstring) (car flist)))
479 ;; A more complex spec.
481 (list (cons 'format (cons fstring (nreverse flist)))))))
487 (cons 'insert result)))
488 (cond ((stringp result)
491 (cons 'concat result))
494 (defun gnus-eval-format (format &optional alist props)
495 "Eval the format variable FORMAT, using ALIST.
496 If PROPS, insert the result."
497 (let ((form (gnus-parse-format format alist props)))
499 (gnus-add-text-properties (point) (progn (eval form) (point)) props)
502 (defun gnus-compile ()
503 "Byte-compile the user-defined format specs."
506 (let ((entries gnus-format-specs)
507 (byte-compile-warnings '(unresolved callargs redefine))
510 (gnus-message 7 "Compiling format specs...")
513 (setq entry (pop entries))
514 (if (eq (car entry) 'version)
515 (setq gnus-format-specs (delq entry gnus-format-specs))
516 (let ((form (caddr entry)))
517 (when (and (listp form)
518 ;; Under GNU Emacs, it's (byte-code ...)
519 (not (eq 'byte-code (car form)))
520 ;; Under XEmacs, it's (funcall #<compiled-function ...>)
521 (not (and (eq 'funcall (car form))
522 (compiled-function-p (cadr form)))))
523 (fset 'gnus-tmp-func `(lambda () ,form))
524 (byte-compile 'gnus-tmp-func)
525 (setcar (cddr entry) (gnus-byte-code 'gnus-tmp-func))))))
527 (push (cons 'version emacs-version) gnus-format-specs)
528 ;; Mark the .newsrc.eld file as "dirty".
529 (gnus-dribble-enter " ")
530 (gnus-message 7 "Compiling user specs...done"))))
532 (defun gnus-set-format (type &optional insertable)
533 (set (intern (format "gnus-%s-line-format-spec" type))
535 (symbol-value (intern (format "gnus-%s-line-format" type)))
536 (symbol-value (intern (format "gnus-%s-line-format-alist" type)))
542 ;;; gnus-spec.el ends here