*** empty log message ***
[gnus] / lisp / gnus-score.el
1 ;;; gnus-score.el --- scoring code for Gnus
2 ;; Copyright (C) 1995 Free Software Foundation, Inc.
3
4 ;; Author: Per Abrahamsen <amanda@iesd.auc.dk>
5 ;;      Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
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
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (require 'gnus)
29
30 (defvar gnus-score-expiry-days 7
31   "*Number of days before unused score file entries are expired.")
32
33 (defvar gnus-orphan-score nil
34   "*All orphans get this score added. Set in the score file.")
35
36 (defvar gnus-default-adaptive-score-alist  
37   '((gnus-kill-file-mark)
38     (gnus-unread-mark)
39     (gnus-read-mark (from  3) (subject  30))
40     (gnus-catchup-mark (subject -10))
41     (gnus-killed-mark (from -1) (subject -20))
42     (gnus-del-mark (from -2) (subject -15)))
43 "*Alist of marks and scores.")
44
45 (defvar gnus-score-mimic-keymap nil
46   "*Have the score entry functions pretend that they are a keymap.")
47
48 (defvar gnus-score-exact-adapt-limit 10
49   "*Number that says how long a match has to be before using substring matching.
50 When doing adaptive scoring, one normally uses fuzzy or substring
51 matching. However, if the header one matches is short, the possibility
52 for false positives is great, so if the length of the match is less
53 than this variable, exact matching will be used.
54
55 If this variable is nil, exact matching will always be used.")
56
57 \f
58
59 ;; Internal variables.
60
61 (defvar gnus-score-help-winconf nil)
62 (defvar gnus-adaptive-score-alist gnus-default-adaptive-score-alist)
63 (defvar gnus-score-trace nil)
64 (defvar gnus-score-edit-buffer nil)
65
66 (defvar gnus-score-alist nil
67   "Alist containing score information.
68 The keys can be symbols or strings.  The following symbols are defined. 
69
70 touched: If this alist has been modified.
71 mark:    Automatically mark articles below this.
72 expunge: Automatically expunge articles below this.
73 files:   List of other score files to load when loading this one.
74 eval:    Sexp to be evaluated when the score file is loaded.
75
76 String entries have the form (HEADER (MATCH TYPE SCORE DATE) ...) 
77 where HEADER is the header being scored, MATCH is the string we are
78 looking for, TYPE is a flag indicating whether it should use regexp or
79 substring matching, SCORE is the score to add and DATE is the date
80 of the last successful match.")
81
82 (defvar gnus-score-cache nil)
83 (defvar gnus-scores-articles nil)
84 (defvar gnus-scores-exclude-files nil)
85 (defvar gnus-header-index nil)
86 (defvar gnus-score-index nil)
87
88 (eval-and-compile
89   (autoload 'gnus-uu-ctl-map "gnus-uu" nil nil 'keymap)
90   (autoload 'appt-select-lowest-window "appt.el"))
91
92 ;;; Summary mode score maps.
93
94 (defvar gnus-summary-score-map nil)
95
96 (define-prefix-command 'gnus-summary-score-map)
97 (define-key gnus-summary-mode-map "V" 'gnus-summary-score-map)
98 (define-key gnus-summary-score-map "s" 'gnus-summary-set-score)
99 (define-key gnus-summary-score-map "a" 'gnus-summary-score-entry)
100 (define-key gnus-summary-score-map "S" 'gnus-summary-current-score)
101 (define-key gnus-summary-score-map "c" 'gnus-score-change-score-file)
102 (define-key gnus-summary-score-map "m" 'gnus-score-set-mark-below)
103 (define-key gnus-summary-score-map "x" 'gnus-score-set-expunge-below)
104 (define-key gnus-summary-score-map "e" 'gnus-score-edit-alist)
105 (define-key gnus-summary-score-map "f" 'gnus-score-edit-file)
106 (define-key gnus-summary-score-map "t" 'gnus-score-find-trace)
107 (define-key gnus-summary-score-map "C" 'gnus-score-customize)
108
109
110
111 ;; Summary score file commands
112
113 ;; Much modification of the kill (ahem, score) code and lots of the
114 ;; functions are written by Per Abrahamsen <amanda@iesd.auc.dk>.
115
116 (defun gnus-summary-lower-score (&optional score)
117   "Make a score entry based on the current article.
118 The user will be prompted for header to score on, match type,
119 permanence, and the string to be used.  The numerical prefix will be
120 used as score."
121   (interactive "P")
122   (gnus-summary-increase-score (- (gnus-score-default score))))
123
124 (defun gnus-summary-increase-score (&optional score)
125   "Make a score entry based on the current article.
126 The user will be prompted for header to score on, match type,
127 permanence, and the string to be used.  The numerical prefix will be
128 used as score."
129   (interactive "P")
130   (gnus-set-global-variables)
131   (let* ((nscore (gnus-score-default score))
132          (prefix (if (< nscore 0) ?L ?I))
133          (increase (> nscore 0))
134          (char-to-header 
135           '((?a "from" nil nil string)
136             (?s "subject" nil nil string)
137             (?b "body" "" nil body-string)
138             (?h "head" "" nil body-string)
139             (?i "message-id" nil t string)
140             (?t "references" "message-id" t string)
141             (?x "xref" nil nil string)
142             (?l "lines" nil nil number)
143             (?d "date" nil nil date)
144             (?f "followup" nil nil string)))
145          (char-to-type
146           '((?s s "substring" string)
147             (?e e "exact string" string)
148             (?f f "fuzzy string" string)
149             (?r r "regexp string" string)
150             (?s s "substring" body-string)
151             (?r s "regexp string" body-string)
152             (?b before "before date" date)
153             (?a at "at date" date) 
154             (?n now "this date" date)
155             (?< < "less than number" number)
156             (?> > "greater than number" number) 
157             (?= = "equal to number" number)))
158          (char-to-perm
159           (list (list ?t (current-time-string) "temporary") 
160                 '(?p perm "permanent") '(?i now "immediate")))
161          (mimic gnus-score-mimic-keymap)
162          hchar entry temporary tchar pchar end type)
163     ;; First we read the header to score.
164     (while (not hchar)
165       (if mimic
166           (progn 
167             (sit-for 1)
168             (message "%c-" prefix))
169         (message "%s header (%s?): " (if increase "Increase" "Lower")
170                  (mapconcat (lambda (s) (char-to-string (car s)))
171                             char-to-header "")))
172       (setq hchar (read-char))
173       (if (not (or (= hchar ??) (= hchar ?\C-h)))
174           ()
175         (setq hchar nil)
176         (gnus-score-insert-help "Match on header" char-to-header 1)))
177
178     (and (get-buffer "*Score Help*")
179          (progn
180            (kill-buffer "*Score Help*")
181            (and gnus-score-help-winconf
182                 (set-window-configuration gnus-score-help-winconf))))
183
184     (or (setq entry (assq (downcase hchar) char-to-header))
185         (progn
186           (ding)
187           (setq end t)
188           (if mimic (message "%c %c" prefix hchar) (message ""))))
189     (if (or end (/= (downcase hchar) hchar))
190         (progn
191           ;; This was a majuscle, so we end reading and set the defaults.
192           (if mimic (message "%c %c" prefix hchar) (message ""))
193           (setq type nil
194                 temporary (current-time-string)))
195
196       ;; We continue reading - the type.
197       (while (not tchar)
198         (if mimic
199             (progn
200               (sit-for 1)
201               (message "%c %c-" prefix hchar))
202           (message "%s header '%s' with match type (%s?): "
203                    (if increase "Increase" "Lower")
204                    (nth 1 entry)
205                    (mapconcat (lambda (s) 
206                                 (if (eq (nth 4 entry) 
207                                         (nth 3 s))
208                                     (char-to-string (car s))
209                                   ""))
210                               char-to-type "")))
211         (setq tchar (read-char))
212         (if (not (or (= tchar ??) (= tchar ?\C-h)))
213             ()
214           (setq tchar nil)
215           (gnus-score-insert-help "Match type" char-to-type 2)))
216
217       (and (get-buffer "*Score Help*")
218            (progn
219              (and gnus-score-help-winconf
220                   (set-window-configuration gnus-score-help-winconf))
221              (kill-buffer "*Score Help*")))
222       
223       (or (setq type (nth 1 (assq (downcase tchar) char-to-type)))
224           (progn
225             (ding)
226             (if mimic (message "%c %c" prefix hchar) (message ""))
227             (setq end t)))
228       (if (or end (/= (downcase tchar) tchar))
229           (progn
230             ;; It was a majuscle, so we end reading and the the default.
231             (if mimic (message "%c %c %c" prefix hchar tchar)
232               (message ""))
233             (setq temporary (current-time-string)))
234
235         ;; We continue reading.
236         (while (not pchar)
237           (if mimic
238               (progn
239                 (sit-for 1)
240                 (message "%c %c %c-" prefix hchar tchar))
241             (message "%s permanence (%s?): " (if increase "Increase" "Lower")
242                      (mapconcat (lambda (s) (char-to-string (car s)))
243                                 char-to-perm "")))
244           (setq pchar (read-char))
245           (if (not (or (= pchar ??) (= pchar ?\C-h)))
246               ()
247             (setq pchar nil)
248             (gnus-score-insert-help "Match permanence" char-to-perm 2)))
249
250         (and (get-buffer "*Score Help*")
251              (progn
252                (and gnus-score-help-winconf
253                     (set-window-configuration gnus-score-help-winconf))
254                (kill-buffer "*Score Help*")))
255
256         (if mimic (message "%c %c %c" prefix hchar tchar pchar)
257           (message ""))
258         (if (setq temporary (nth 1 (assq pchar char-to-perm)))
259             ()
260           (ding)
261           (setq end t)
262           (if mimic 
263               (message "%c %c %c %c" prefix hchar tchar pchar)
264             (message "")))))
265
266     ;; We have all the data, so we enter this score.
267     (if end
268         ()
269       (gnus-summary-score-entry
270        (nth 1 entry)                    ; Header
271        (if (string= (nth 2 entry) "") ""
272          (gnus-summary-header (or (nth 2 entry) (nth 1 entry)))) ; Match
273        type                             ; Type
274        (if (eq 's score) nil score)     ; Score
275        (if (eq 'perm temporary)         ; Temp
276            nil
277          temporary)
278        (not (nth 3 entry)))             ; Prompt
279       )))
280   
281 (defun gnus-score-insert-help (string alist idx)
282   (setq gnus-score-help-winconf (current-window-configuration))
283   (save-excursion
284     (set-buffer (get-buffer-create "*Score Help*"))
285     (buffer-disable-undo (current-buffer))
286     (delete-windows-on (current-buffer))
287     (erase-buffer)
288     (insert string ":\n\n")
289     (let ((max -1)
290           (list alist)
291           (i 0)
292           n width pad format)
293       ;; find the longest string to display
294       (while list
295         (setq n (length (nth idx (car list))))
296         (or (> max n)
297             (setq max n))
298         (setq list (cdr list)))
299       (setq max (+ max 4))              ; %c, `:', SPACE, a SPACE at end
300       (setq n (/ (window-width) max))   ; items per line
301       (setq width (/ (window-width) n)) ; width of each item
302       ;; insert `n' items, each in a field of width `width' 
303       (while alist
304         (if (< i n)
305             ()
306           (setq i 0)
307           (delete-char -1)              ; the `\n' takes a char
308           (insert "\n"))
309         (setq pad (- width 3))
310         (setq format (concat "%c: %-" (int-to-string pad) "s"))
311         (insert (format format (car (car alist)) (nth idx (car alist))))
312         (setq alist (cdr alist))
313         (setq i (1+ i))))
314     ;; display ourselves in a small window at the bottom
315     (appt-select-lowest-window)
316     (split-window)
317     (pop-to-buffer "*Score Help*")
318     (shrink-window-if-larger-than-buffer)
319     (select-window (get-buffer-window gnus-summary-buffer))))
320   
321 (defun gnus-summary-header (header &optional no-err)
322   ;; Return HEADER for current articles, or error.
323   (let ((article (gnus-summary-article-number))
324         headers)
325     (if article
326         (if (and (setq headers (gnus-get-header-by-number article))
327                  (vectorp headers))
328             (aref headers (nth 1 (assoc header gnus-header-index)))
329           (if no-err
330               nil
331             (error "Pseudo-articles can't be scored")))
332       (if no-err
333           (error "No article on current line")
334         nil))))
335
336 (defun gnus-summary-score-entry 
337   (header match type score date &optional prompt silent)
338   "Enter score file entry.
339 HEADER is the header being scored.
340 MATCH is the string we are looking for.
341 TYPE is the match type: substring, regexp, exact, fuzzy.
342 SCORE is the score to add.
343 DATE is the expire date, or nil for no expire, or 'now for immediate expire.
344 If optional argument `PROMPT' is non-nil, allow user to edit match.
345 If optional argument `SILENT' is nil, show effect of score entry."
346   (interactive
347    (list (completing-read "Header: "
348                           gnus-header-index
349                           (lambda (x) (fboundp (nth 2 x)))
350                           t)
351          (read-string "Match: ")
352          (if (y-or-n-p "Use regexp match? ") 'r 's)
353          (and current-prefix-arg
354               (prefix-numeric-value current-prefix-arg))
355          (cond ((not (y-or-n-p "Add to score file? "))
356                 'now)
357                ((y-or-n-p "Expire kill? ")
358                 (current-time-string))
359                (t nil))))
360   ;; Regexp is the default type.
361   (if (eq type t) (setq type 'r))
362   ;; Simplify matches...
363   (cond ((or (eq type 'r) (eq type 's) (eq type nil))
364          (setq match (if match (gnus-simplify-subject-re match) "")))
365         ((eq type 'f)
366          (setq match (gnus-simplify-subject-fuzzy match))))
367   (let ((score (gnus-score-default score))
368         (header (downcase header)))
369     (and prompt (setq match (read-string 
370                              (format "Match %s on %s, %s: " 
371                                      (cond ((eq date 'now)
372                                             "now")
373                                            ((stringp date)
374                                             "temp")
375                                            (t "permanent"))
376                                      header
377                                      (if (< score 0) "lower" "raise"))
378                              (if (numberp match)
379                                  (int-to-string match)
380                                match))))
381     (and (>= (nth 1 (assoc header gnus-header-index)) 0)
382          (eq (nth 2 (assoc header gnus-header-index)) 'gnus-score-string)
383          (not silent)
384          (gnus-summary-score-effect header match type score))
385
386     ;; If this is an integer comparison, we transform from string to int. 
387     (and (eq (nth 2 (assoc header gnus-header-index)) 'gnus-score-integer)
388          (setq match (string-to-int match)))
389
390     (if (eq date 'now)
391         ()
392       (and (= score gnus-score-interactive-default-score)
393            (setq score nil))
394       (let ((new (cond 
395                   (type
396                    (list match score (and date (gnus-day-number date)) type))
397                   (date
398                    (list match score (gnus-day-number date)))
399                   (score
400                    (list match score))
401                   (t
402                    (list match))))
403             (old (gnus-score-get header))
404             elem)
405         ;; We see whether we can collapse some score entries.
406         ;; This isn't quite correct, because there may be more elements
407         ;; later on with the same key that have matching elems... Hm.
408         (if (and old
409                  (setq elem (assoc match old))
410                  (eq (nth 3 elem) (nth 3 new))
411                  (or (and (numberp (nth 2 elem)) (numberp (nth 2 new)))
412                      (and (not (nth 2 elem)) (not (nth 2 new)))))
413             ;; Yup, we just add this new score to the old elem.
414             (setcar (cdr elem) (+ (or (nth 1 elem) 
415                                       gnus-score-interactive-default-score)
416                                   (or (nth 1 new)
417                                       gnus-score-interactive-default-score)))
418           ;; Nope, we have to add a new elem.
419           (gnus-score-set header (if old (cons new old) (list new)))))
420       (gnus-score-set 'touched '(t)))))
421
422 (defun gnus-summary-score-effect (header match type score)
423   "Simulate the effect of a score file entry.
424 HEADER is the header being scored.
425 MATCH is the string we are looking for.
426 TYPE is a flag indicating if it is a regexp or substring.
427 SCORE is the score to add."
428   (interactive (list (completing-read "Header: "
429                                       gnus-header-index
430                                       (lambda (x) (fboundp (nth 2 x)))
431                                       t)
432                      (read-string "Match: ")
433                      (y-or-n-p "Use regexp match? ")
434                      (prefix-numeric-value current-prefix-arg)))
435   (save-excursion
436     (or (and (stringp match) (> (length match) 0))
437         (error "No match"))
438     (goto-char (point-min))
439     (let ((regexp (cond ((eq type 'f)
440                          (gnus-simplify-subject-fuzzy match))
441                         (type match)
442                         (t (concat "\\`.*" (regexp-quote match) ".*\\'")))))
443       (while (not (eobp))
444         (let ((content (gnus-summary-header header 'noerr))
445               (case-fold-search t))
446           (and content
447                (if (if (eq type 'f)
448                        (string-equal (gnus-simplify-subject-fuzzy content)
449                                      regexp)
450                      (string-match regexp content))
451                    (gnus-summary-raise-score score))))
452         (beginning-of-line 2)))))
453
454 (defun gnus-summary-score-crossposting (score date)
455   ;; Enter score file entry for current crossposting.
456   ;; SCORE is the score to add.
457   ;; DATE is the expire date.
458   (let ((xref (gnus-summary-header "xref"))
459         (start 0)
460         group)
461     (or xref (error "This article is not crossposted"))
462     (while (string-match " \\([^ \t]+\\):" xref start)
463       (setq start (match-end 0))
464       (if (not (string= 
465                 (setq group 
466                       (substring xref (match-beginning 1) (match-end 1)))
467                 gnus-newsgroup-name))
468           (gnus-summary-score-entry
469            "xref" (concat " " group ":") nil score date t)))))
470
471 \f
472 ;;;
473 ;;; Gnus Score Files
474 ;;;
475
476 ;; All score code written by Per Abrahamsen <abraham@iesd.auc.dk>.
477
478 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
479 (defun gnus-score-set-mark-below (score)
480   "Automatically mark articles with score below SCORE as read."
481   (interactive 
482    (list (or (and current-prefix-arg (prefix-numeric-value current-prefix-arg))
483              (string-to-int (read-string "Mark below: ")))))
484   (setq score (or score gnus-summary-default-score 0))
485   (gnus-score-set 'mark (list score))
486   (gnus-score-set 'touched '(t))
487   (setq gnus-summary-mark-below score)
488   (gnus-summary-update-lines))
489
490 (defun gnus-score-set-expunge-below (score)
491   "Automatically expunge articles with score below SCORE."
492   (interactive 
493    (list (or (and current-prefix-arg (prefix-numeric-value current-prefix-arg))
494              (string-to-int (read-string "Expunge below: ")))))
495   (setq score (or score gnus-summary-default-score 0))
496   (gnus-score-set 'expunge (list score))
497   (gnus-score-set 'touched '(t)))
498
499 (defun gnus-score-set (symbol value &optional alist)
500   ;; Set SYMBOL to VALUE in ALIST.
501   (let* ((alist 
502           (or alist 
503               gnus-score-alist
504               (progn
505                 (gnus-score-load (gnus-score-file-name gnus-newsgroup-name))
506                 gnus-score-alist)))
507          (entry (assoc symbol alist)))
508     (cond ((gnus-score-get 'read-only alist)
509            ;; This is a read-only score file, so we do nothing.
510            )
511           (entry
512            (setcdr entry value))
513           ((null alist)
514            (error "Empty alist"))
515           (t
516            (setcdr alist
517                    (cons (cons symbol value) (cdr alist)))))))
518
519 (defun gnus-score-get (symbol &optional alist)
520   ;; Get SYMBOL's definition in ALIST.
521   (cdr (assoc symbol 
522               (or alist 
523                   gnus-score-alist
524                   (progn
525                     (gnus-score-load 
526                      (gnus-score-file-name gnus-newsgroup-name))
527                     gnus-score-alist)))))
528
529 (defun gnus-score-change-score-file (file)
530   "Change current score alist."
531   (interactive 
532    (list (read-file-name "Edit score file: " gnus-kill-files-directory)))
533   (gnus-score-load-file file)
534   (gnus-set-mode-line 'summary))
535
536 (defun gnus-score-edit-alist (file)
537   "Edit the current score alist."
538   (interactive (list gnus-current-score-file))
539   (let ((winconf (current-window-configuration)))
540     (and (buffer-name gnus-summary-buffer) (gnus-score-save))
541     (setq gnus-score-edit-buffer (find-file-noselect file))
542     (gnus-configure-windows 'edit-score)
543     (gnus-score-mode)
544     (make-local-variable 'gnus-prev-winconf)
545     (setq gnus-prev-winconf winconf))
546   (gnus-message 
547    4 (substitute-command-keys 
548       "\\<gnus-score-mode-map>\\[gnus-score-edit-done] to save edits")))
549   
550 (defun gnus-score-edit-file (file)
551   "Edit a score file."
552   (interactive 
553    (list (read-file-name "Edit score file: " gnus-kill-files-directory)))
554   (and (buffer-name gnus-summary-buffer) (gnus-score-save))
555   (let ((winconf (current-window-configuration)))
556     (setq gnus-score-edit-buffer (find-file-noselect file))
557     (gnus-configure-windows 'edit-score)
558     (gnus-score-mode)
559     (make-local-variable 'gnus-prev-winconf)
560     (setq gnus-prev-winconf winconf))
561   (gnus-message 
562    4 (substitute-command-keys 
563       "\\<gnus-score-mode-map>\\[gnus-score-edit-done] to save edits")))
564   
565 (defun gnus-score-load-file (file)
566   ;; Load score file FILE.  Returns a list a retrieved score-alists.
567   (setq gnus-kill-files-directory (or gnus-kill-files-directory "~/News/"))
568   (let* ((file (expand-file-name 
569                 (or (and (string-match
570                           (concat "^" (expand-file-name
571                                        gnus-kill-files-directory)) 
572                           (expand-file-name file))
573                          file)
574                     (concat gnus-kill-files-directory file))))
575          (cached (assoc file gnus-score-cache))
576          (global (member file gnus-internal-global-score-files))
577          lists alist)
578     (if cached
579         ;; The score file was already loaded.
580         (setq alist (cdr cached))
581       ;; We load the score file.
582       (setq gnus-score-alist nil)
583       (setq alist (gnus-score-load-score-alist file))
584       ;; We add '(touched) to the alist to signify that it hasn't been
585       ;; touched (yet). 
586       (or (assq 'touched alist) (setq alist (cons (list 'touched nil) alist)))
587       ;; If it is a global score file, we make it read-only.
588       (and global
589            (not (assq 'read-only alist))
590            (setq alist (cons (list 'read-only t) alist)))
591       ;; Update cache.
592       (setq gnus-score-cache
593             (cons (cons file alist) gnus-score-cache)))
594     ;; If there are actual scores in the alist, we add it to the
595     ;; return value of this function.
596     (if (memq t (mapcar (lambda (e) (stringp (car e))) alist))
597         (setq lists (list alist)))
598     ;; Treat the other possible atoms in the score alist.
599     (let ((mark (car (gnus-score-get 'mark alist)))
600           (expunge (car (gnus-score-get 'expunge alist)))
601           (mark-and-expunge (car (gnus-score-get 'mark-and-expunge alist)))
602           (files (gnus-score-get 'files alist))
603           (exclude-files (gnus-score-get 'exclude-files alist))
604           (orphan (car (gnus-score-get 'orphan alist)))
605           (adapt (gnus-score-get 'adapt alist))
606           (local (gnus-score-get 'local alist))
607           (eval (car (gnus-score-get 'eval alist))))
608       ;; We do not respect eval and files atoms from global score
609       ;; files. 
610       (and files (not global)
611            (setq lists (apply 'append lists
612                               (mapcar (lambda (file)
613                                         (gnus-score-load-file file)) 
614                                       files))))
615       (and eval (not global) (eval eval))
616       (setq gnus-scores-exclude-files exclude-files)
617       (if (not local)
618           ()
619         (save-excursion
620           (set-buffer gnus-summary-buffer)
621           (while local
622             (and (consp (car local))
623                  (symbolp (car (car local)))
624                  (progn
625                    (make-local-variable (car (car local)))
626                    (set (car (car local)) (nth 1 (car local)))))
627             (setq local (cdr local)))))
628       (if orphan (setq gnus-orphan-score orphan))
629       (setq gnus-adaptive-score-alist
630             (cond ((equal adapt '(t))
631                    (setq gnus-newsgroup-adaptive t)
632                    gnus-default-adaptive-score-alist)
633                   ((equal adapt '(ignore))
634                    (setq gnus-newsgroup-adaptive nil))
635                   ((consp adapt)
636                    (setq gnus-newsgroup-adaptive t)
637                    adapt)
638                   (t
639                    ;;(setq gnus-newsgroup-adaptive gnus-use-adaptive-scoring)
640                    gnus-default-adaptive-score-alist)))
641       (setq gnus-summary-mark-below 
642             (or mark mark-and-expunge gnus-summary-mark-below))
643       (setq gnus-summary-expunge-below 
644             (or expunge mark-and-expunge gnus-summary-expunge-below)))
645     (setq gnus-current-score-file file)
646     (setq gnus-score-alist alist)
647     lists))
648
649 (defun gnus-score-load (file)
650   ;; Load score FILE.
651   (let ((cache (assoc file gnus-score-cache)))
652     (if cache
653         (setq gnus-score-alist (cdr cache))
654       (setq gnus-score-alist nil)
655       (gnus-score-load-score-alist file)
656       (or gnus-score-alist
657           (setq gnus-score-alist (copy-alist '((touched nil)))))
658       (setq gnus-score-cache
659             (cons (cons file gnus-score-alist) gnus-score-cache)))))
660
661 (defun gnus-score-remove-from-cache (file)
662   (setq gnus-score-cache 
663         (delq (assoc file gnus-score-cache) gnus-score-cache)))
664
665 (defun gnus-score-load-score-alist (file)
666   (let (alist)
667     (if (file-readable-p file)
668         (progn
669           (save-excursion
670             (gnus-set-work-buffer)
671             (insert-file-contents file)
672             (goto-char (point-min))
673             ;; Only do the loading if the score file isn't empty.
674             (if (save-excursion (re-search-forward "[()0-9a-zA-Z]" nil t))
675                 (setq alist
676                       (condition-case ()
677                           (read (current-buffer))
678                         (error 
679                          (progn
680                            (gnus-message 3 "Problem with score file %s" file)
681                            (ding) 
682                            (sit-for 2)
683                            nil))))))
684           (if (eq (car alist) 'setq)
685               (setq gnus-score-alist (gnus-score-transform-old-to-new alist))
686             (setq gnus-score-alist alist))
687           (setq gnus-score-alist
688                 (gnus-score-check-syntax gnus-score-alist file)))
689       (setq gnus-score-alist nil))))
690
691 (defun gnus-score-check-syntax (alist file)
692   (cond 
693    ((null alist)
694     nil)
695    ((not (consp alist))
696     (gnus-message 1 "Score file is not a list: %s" file)
697     (ding)
698     nil)
699    (t
700     (let ((a alist)
701           err)
702       (while (and a (not err))
703         (cond ((not (listp (car a)))
704                (gnus-message 3 "Illegal score element %s in %s" (car a) file)
705                (setq err t))
706               ((and (stringp (car (car a)))
707                     (not (listp (nth 1 (car a)))))
708                (gnus-message 3 "Illegal header match %s in %s" (nth 1 (car a)) file)
709                (setq err t))
710               (t
711                (setq a (cdr a)))))
712       (if err
713           (progn
714             (ding)
715             nil)
716         alist)))))    
717
718 (defun gnus-score-transform-old-to-new (alist)
719   (let* ((alist (nth 2 alist))
720          out entry)
721     (if (eq (car alist) 'quote)
722         (setq alist (nth 1 alist)))
723     (while alist
724       (setq entry (car alist))
725       (if (stringp (car entry))
726           (let ((scor (cdr entry)))
727             (setq out (cons entry out))
728             (while scor
729               (setcar scor
730                       (list (car (car scor)) (nth 2 (car scor))
731                             (and (nth 3 (car scor))
732                                  (gnus-day-number (nth 3 (car scor))))
733                             (if (nth 1 (car scor)) 'r 's)))
734               (setq scor (cdr scor))))
735         (setq out (cons (if (not (listp (cdr entry))) 
736                             (list (car entry) (cdr entry))
737                           entry)
738                         out)))
739       (setq alist (cdr alist)))
740     (cons (list 'touched t) (nreverse out))))
741   
742 (defun gnus-score-save ()
743   ;; Save all score information.
744   (let ((cache gnus-score-cache))
745     (save-excursion
746       (setq gnus-score-alist nil)
747       (set-buffer (get-buffer-create "*Score*"))
748       (buffer-disable-undo (current-buffer))
749       (let (entry score file)
750         (while cache
751           (setq entry (car cache)
752                 cache (cdr cache)
753                 file (car entry)
754                 score (cdr entry))
755           (if (or (not (equal (gnus-score-get 'touched score) '(t)))
756                   (gnus-score-get 'read-only score)
757                   (and (file-exists-p file)
758                        (not (file-writable-p file))))
759               ()
760             (setq score (setcdr entry (delq (assq 'touched score) score)))
761             (erase-buffer)
762             (let (emacs-lisp-mode-hook)
763               (if (string-match (concat gnus-adaptive-file-suffix "$") file)
764                   ;; This is an adaptive score file, so we do not run
765                   ;; it through `pp'.  These files can get huge, and
766                   ;; are not meant to be edited by human hands.
767                   (insert (format "%S" score))
768                 ;; This is a normal score file, so we print it very
769                 ;; prettily. 
770                 (pp score (current-buffer))))
771             (if (not (gnus-make-directory (file-name-directory file)))
772                 ()
773               ;; If the score file is empty, we delete it.
774               (if (zerop (buffer-size))
775                   (delete-file file)
776                 ;; There are scores, so we write the file. 
777                 (and (file-writable-p file)
778                      (write-region (point-min) (point-max) 
779                                    file nil 'silent)))))))
780       (kill-buffer (current-buffer)))))
781   
782 (defun gnus-score-headers (score-files &optional trace)
783   ;; Score `gnus-newsgroup-headers'.
784   (let (scores)
785     ;; PLM: probably this is not the best place to clear orphan-score
786     (setq gnus-orphan-score nil)
787     (setq gnus-scores-articles nil)
788     ;; Load the score files.
789     (while score-files
790       (if (stringp (car score-files))
791           ;; It is a string, which means that it's a score file name,
792           ;; so we load the score file and add the score alist to
793           ;; the list of alists.
794           (setq scores (nconc (gnus-score-load-file (car score-files)) scores))
795         ;; It is an alist, so we just add it to the list directly.
796         (setq scores (nconc (car score-files) scores)))
797       (setq score-files (cdr score-files)))
798     ;; Prune the score files that are to be excluded, if any.
799     (if (not gnus-scores-exclude-files)
800         ()
801       (let ((s scores)
802             c)
803         (while s
804           (and (setq c (rassq (car s) gnus-score-cache))
805                (member (car c) gnus-scores-exclude-files)
806                (setq scores (delq (car s) scores)))
807           (setq s (cdr s)))))
808     (if (not (and gnus-summary-default-score
809                   scores
810                   (> (length gnus-newsgroup-headers)
811                      (length gnus-newsgroup-scored))))
812         ()
813       (let* ((entries gnus-header-index)
814              (now (gnus-day-number (current-time-string)))
815              (expire (- now gnus-score-expiry-days))
816              (headers gnus-newsgroup-headers)
817              (current-score-file gnus-current-score-file)
818              entry header)
819         (gnus-message 5 "Scoring...")
820         ;; Create articles, an alist of the form `(HEADER . SCORE)'.
821         (while headers
822           (setq header (car headers)
823                 headers (cdr headers))
824           ;; WARNING: The assq makes the function O(N*S) while it could
825           ;; be written as O(N+S), where N is (length gnus-newsgroup-headers)
826           ;; and S is (length gnus-newsgroup-scored).
827           (or (assq (mail-header-number header) gnus-newsgroup-scored)
828               (setq gnus-scores-articles ;Total of 2 * N cons-cells used.
829                     (cons (cons header (or gnus-summary-default-score 0))
830                           gnus-scores-articles))))
831
832         (save-excursion
833           (set-buffer (get-buffer-create "*Headers*"))
834           (buffer-disable-undo (current-buffer))
835
836           ;; Set the global variant of this variable.
837           (setq gnus-current-score-file current-score-file)
838           ;; score orphans
839           (if gnus-orphan-score 
840               (progn
841                 (setq gnus-score-index 
842                       (nth 1 (assoc "references" gnus-header-index)))
843                 (gnus-score-orphans gnus-orphan-score)))
844           ;; Run each header through the score process.
845           (while entries
846             (setq entry (car entries)
847                   header (nth 0 entry)
848                   entries (cdr entries))
849             (setq gnus-score-index (nth 1 (assoc header gnus-header-index)))
850             (if (< 0 (apply 'max (mapcar
851                                   (lambda (score)
852                                     (length (gnus-score-get header score)))
853                                   scores)))
854                 (funcall (nth 2 entry) scores header now expire trace)))
855           ;; Remove the buffer.
856           (kill-buffer (current-buffer)))
857
858         ;; Add articles to `gnus-newsgroup-scored'.
859         (while gnus-scores-articles
860           (or (= gnus-summary-default-score (cdr (car gnus-scores-articles)))
861               (setq gnus-newsgroup-scored
862                     (cons (cons (mail-header-number 
863                                  (car (car gnus-scores-articles)))
864                                 (cdr (car gnus-scores-articles)))
865                           gnus-newsgroup-scored)))
866           (setq gnus-scores-articles (cdr gnus-scores-articles)))
867
868         (gnus-message 5 "Scoring...done")))))
869
870
871 (defun gnus-get-new-thread-ids (articles)
872   (let ((index (nth 1 (assoc "message-id" gnus-header-index)))
873         (refind gnus-score-index)
874         id-list art this tref)
875     (while articles
876       (setq art (car articles)
877             this (aref (car art) index)
878             tref (aref (car art) refind)
879             articles (cdr articles))
880       (if (string-equal tref "")        ;no references line
881           (setq id-list (cons this id-list))))
882     id-list))
883
884 ;; Orphan functions written by plm@atcmp.nl (Peter Mutsaers).
885 (defun gnus-score-orphans (score)
886   (let ((new-thread-ids (gnus-get-new-thread-ids gnus-scores-articles))
887         alike articles art arts this last this-id)
888     
889     (setq gnus-scores-articles (sort gnus-scores-articles 'gnus-score-string<)
890           articles gnus-scores-articles)
891
892     ;;more or less the same as in gnus-score-string
893     (erase-buffer)
894     (while articles
895       (setq art (car articles)
896             this (aref (car art) gnus-score-index)
897             articles (cdr articles))
898       ;;completely skip if this is empty (not a child, so not an orphan)
899       (if (not (string= this ""))
900           (if (equal last this)
901               ;; O(N*H) cons-cells used here, where H is the number of
902               ;; headers.
903               (setq alike (cons art alike))
904             (if last
905                 (progn
906                   ;; Insert the line, with a text property on the
907                   ;; terminating newline refering to the articles with
908                   ;; this line.
909                   (insert last ?\n)
910                   (put-text-property (1- (point)) (point) 'articles alike)))
911             (setq alike (list art)
912                   last this))))
913     (and last                           ; Bwadr, duplicate code.
914          (progn
915            (insert last ?\n)                    
916            (put-text-property (1- (point)) (point) 'articles alike)))
917
918     ;; PLM: now delete those lines that contain an entry from new-thread-ids
919     (while new-thread-ids
920       (setq this-id (car new-thread-ids)
921             new-thread-ids (cdr new-thread-ids))
922       (goto-char (point-min))
923       (while (search-forward this-id nil t)
924         ;; found a match. remove this line
925         (beginning-of-line)
926         (kill-line 1)))
927
928     ;; now for each line: update its articles with score by moving to
929     ;; every end-of-line in the buffer and read the articles property
930     (goto-char (point-min))
931     (while (eq 0 (progn
932                    (end-of-line)
933                    (setq arts (get-text-property (point) 'articles))
934                    (while arts
935                      (setq art (car arts)
936                            arts (cdr arts))
937                      (setcdr art (+ score (cdr art))))
938                    (forward-line))))))
939              
940
941 (defun gnus-score-integer (scores header now expire &optional trace)
942   (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
943         entries alist)
944
945     ;; Find matches.
946     (while scores
947       (setq alist (car scores)
948             scores (cdr scores)
949             entries (assoc header alist))
950       (while (cdr entries)              ;First entry is the header index.
951         (let* ((rest (cdr entries))             
952                (kill (car rest))
953                (match (nth 0 kill))
954                (type (or (nth 3 kill) '>))
955                (score (or (nth 1 kill) gnus-score-interactive-default-score))
956                (date (nth 2 kill))
957                (found nil)
958                (match-func (if (or (eq type '>) (eq type '<) (eq type '<=)
959                                    (eq type '>=) (eq type '=))
960                                type
961                              (error "Illegal match type: %s" type)))
962                (articles gnus-scores-articles))
963           ;; Instead of doing all the clever stuff that
964           ;; `gnus-score-string' does to minimize searches and stuff,
965           ;; I will assume that people generally will put so few
966           ;; matches on numbers that any cleverness will take more
967           ;; time than one would gain.
968           (while articles
969             (and (funcall match-func 
970                           (or (aref (car (car articles)) gnus-score-index) 0)
971                           match)
972                  (progn
973                    (and trace (setq gnus-score-trace 
974                                     (cons (cons (car (car articles)) kill)
975                                           gnus-score-trace)))
976                    (setq found t)
977                    (setcdr (car articles) (+ score (cdr (car articles))))))
978             (setq articles (cdr articles)))
979           ;; Update expire date
980           (cond ((null date))           ;Permanent entry.
981                 (found                  ;Match, update date.
982                  (gnus-score-set 'touched '(t) alist)
983                  (setcar (nthcdr 2 kill) now))
984                 ((< date expire)        ;Old entry, remove.
985                  (gnus-score-set 'touched '(t) alist)
986                  (setcdr entries (cdr rest))
987                  (setq rest entries)))
988           (setq entries rest))))))
989
990 (defun gnus-score-date (scores header now expire &optional trace)
991   (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
992         entries alist)
993
994     ;; Find matches.
995     (while scores
996       (setq alist (car scores)
997             scores (cdr scores)
998             entries (assoc header alist))
999       (while (cdr entries)              ;First entry is the header index.
1000         (let* ((rest (cdr entries))             
1001                (kill (car rest))
1002                (match (timezone-make-date-sortable (nth 0 kill)))
1003                (type (or (nth 3 kill) 'before))
1004                (score (or (nth 1 kill) gnus-score-interactive-default-score))
1005                (date (nth 2 kill))
1006                (found nil)
1007                (match-func 
1008                 (cond ((eq type 'after) 'string<)
1009                       ((eq type 'before) 'gnus-string>)
1010                       ((eq type 'at) 'string=)
1011                       (t (error "Illegal match type: %s" type))))
1012                (articles gnus-scores-articles)
1013                l)
1014           ;; Instead of doing all the clever stuff that
1015           ;; `gnus-score-string' does to minimize searches and stuff,
1016           ;; I will assume that people generally will put so few
1017           ;; matches on numbers that any cleverness will take more
1018           ;; time than one would gain.
1019           (while articles
1020             (and
1021              (setq l (aref (car (car articles)) gnus-score-index))
1022              (funcall match-func match (timezone-make-date-sortable l))
1023              (progn
1024                (and trace (setq gnus-score-trace 
1025                                 (cons (cons (car (car articles)) kill)
1026                                       gnus-score-trace)))
1027                (setq found t)
1028                (setcdr (car articles) (+ score (cdr (car articles))))))
1029             (setq articles (cdr articles)))
1030           ;; Update expire date
1031           (cond ((null date))           ;Permanent entry.
1032                 (found                  ;Match, update date.
1033                  (gnus-score-set 'touched '(t) alist)
1034                  (setcar (nthcdr 2 kill) now))
1035                 ((< date expire)        ;Old entry, remove.
1036                  (gnus-score-set 'touched '(t) alist)
1037                  (setcdr entries (cdr rest))
1038                  (setq rest entries)))
1039           (setq entries rest))))))
1040
1041 (defun gnus-score-body (scores header now expire &optional trace)
1042   (save-excursion
1043     (set-buffer nntp-server-buffer)
1044     (save-restriction
1045       (let* ((buffer-read-only nil)
1046              (articles gnus-scores-articles)
1047              (last (mail-header-number (car (car gnus-scores-articles))))
1048              (all-scores scores)
1049              (request-func (cond ((string= "head" (downcase header))
1050                                   'gnus-request-head)
1051                                  ((string= "body" (downcase header))
1052                                   'gnus-request-body)
1053                                  (t 'gnus-request-article)))
1054              entries alist ofunc article)
1055         ;; Not all backends support partial fetching.  In that case,
1056         ;; we just fetch the entire article.
1057         (or (gnus-check-backend-function 
1058              (and (string-match "^gnus-" (symbol-name request-func))
1059                   (intern (substring (symbol-name request-func)
1060                                      (match-end 0))))
1061              gnus-newsgroup-name)
1062             (progn
1063               (setq ofunc request-func)
1064               (setq request-func 'gnus-request-article)))
1065         (while articles
1066           (setq article (mail-header-number (car (car articles))))
1067           (gnus-message 7 "Scoring on article %s of %s..." article last)
1068           (if (not (funcall request-func article gnus-newsgroup-name))
1069               ()
1070             (widen)
1071             (goto-char (point-min))
1072             ;; If just parts of the article is to be searched, but the
1073             ;; backend didn't support partial fetching, we just narrow
1074             ;; to the relevant parts.
1075             (if ofunc
1076                 (if (eq ofunc 'gnus-request-head)
1077                     (narrow-to-region
1078                      (point)
1079                      (or (search-forward "\n\n" nil t) (point-max)))
1080                   (narrow-to-region
1081                    (or (search-forward "\n\n" nil t) (point))
1082                    (point-max))))
1083             (setq scores all-scores)
1084             ;; Find matches.
1085             (while scores
1086               (setq alist (car scores)
1087                     scores (cdr scores)
1088                     entries (assoc header alist))
1089               (while (cdr entries)      ;First entry is the header index.
1090                 (let* ((rest (cdr entries))             
1091                        (kill (car rest))
1092                        (match (nth 0 kill))
1093                        (type (or (nth 3 kill) 's))
1094                        (score (or (nth 1 kill) 
1095                                   gnus-score-interactive-default-score))
1096                        (date (nth 2 kill))
1097                        (found nil)
1098                        (case-fold-search 
1099                         (not (or (eq type 'R) (eq type 'S)
1100                                  (eq type 'Regexp) (eq type 'String))))
1101                        (search-func 
1102                         (cond ((or (eq type 'r) (eq type 'R)
1103                                    (eq type 'regexp) (eq type 'Regexp))
1104                                're-search-forward)
1105                               ((or (eq type 's) (eq type 'S)
1106                                    (eq type 'string) (eq type 'String))
1107                                'search-forward)
1108                               (t
1109                                (error "Illegal match type: %s" type)))))
1110                   (goto-char (point-min))
1111                   (if (funcall search-func match nil t)
1112                       ;; Found a match, update scores.
1113                       (progn
1114                         (setcdr (car articles) (+ score (cdr (car articles))))
1115                         (setq found t)
1116                         (and trace (setq gnus-score-trace 
1117                                          (cons (cons (car (car articles)) kill)
1118                                                gnus-score-trace)))))
1119                   ;; Update expire date
1120                   (cond ((null date))   ;Permanent entry.
1121                         (found          ;Match, update date.
1122                          (gnus-score-set 'touched '(t) alist)
1123                          (setcar (nthcdr 2 kill) now))
1124                         ((< date expire) ;Old entry, remove.
1125                          (gnus-score-set 'touched '(t) alist)
1126                          (setcdr entries (cdr rest))
1127                          (setq rest entries)))
1128                   (setq entries rest)))))
1129           (setq articles (cdr articles)))))))
1130
1131
1132
1133 (defun gnus-score-followup (scores header now expire &optional trace)
1134   ;; Insert the unique article headers in the buffer.
1135   (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
1136         (current-score-file gnus-current-score-file)
1137         (all-scores scores)
1138         ;; gnus-score-index is used as a free variable.
1139         alike last this art entries alist articles)
1140
1141     ;; Change score file to the adaptive score file.  All entries that
1142     ;; this function makes will be put into this file.
1143     (gnus-score-load-file (gnus-score-file-name 
1144                            gnus-newsgroup-name gnus-adaptive-file-suffix))
1145
1146     (setq gnus-scores-articles (sort gnus-scores-articles 'gnus-score-string<)
1147           articles gnus-scores-articles)
1148
1149     (erase-buffer)
1150     (while articles
1151       (setq art (car articles)
1152             this (aref (car art) gnus-score-index)
1153             articles (cdr articles))
1154       (if (equal last this)
1155           (setq alike (cons art alike))
1156         (if last
1157             (progn
1158               (insert last ?\n)
1159               (put-text-property (1- (point)) (point) 'articles alike)))
1160         (setq alike (list art)
1161               last this)))
1162     (and last                           ; Bwadr, duplicate code.
1163          (progn
1164            (insert last ?\n)                    
1165            (put-text-property (1- (point)) (point) 'articles alike)))
1166   
1167     ;; Find matches.
1168     (while scores
1169       (setq alist (car scores)
1170             scores (cdr scores)
1171             entries (assoc header alist))
1172       (while (cdr entries)              ;First entry is the header index.
1173         (let* ((rest (cdr entries))             
1174                (kill (car rest))
1175                (match (nth 0 kill))
1176                (type (or (nth 3 kill) 's))
1177                (score (or (nth 1 kill) gnus-score-interactive-default-score))
1178                (date (nth 2 kill))
1179                (found nil)
1180                (mt (aref (symbol-name type) 0))
1181                (case-fold-search 
1182                 (not (or (= mt ?R) (= mt ?S) (= mt ?E) (= mt ?F))))
1183                (dmt (downcase mt))
1184                (search-func 
1185                 (cond ((= dmt ?r) 're-search-forward)
1186                       ((or (= dmt ?e) (= dmt ?s) (= dmt ?f)) 'search-forward)
1187                       (t (error "Illegal match type: %s" type))))
1188                arts art)
1189           (goto-char (point-min))
1190           (if (= dmt ?e)
1191               (while (funcall search-func match nil t)
1192                 (and (= (progn (beginning-of-line) (point))
1193                         (match-beginning 0))
1194                      (= (progn (end-of-line) (point))
1195                         (match-end 0))
1196                      (progn
1197                        (setq found (setq arts (get-text-property 
1198                                                (point) 'articles)))
1199                        ;; Found a match, update scores.
1200                        (while arts
1201                          (setq art (car arts)
1202                                arts (cdr arts))
1203                          (gnus-score-add-followups 
1204                           (car art) score all-scores)))))
1205             (while (funcall search-func match nil t)
1206               (end-of-line)
1207               (setq found (setq arts (get-text-property (point) 'articles)))
1208               ;; Found a match, update scores.
1209               (while arts
1210                 (setq art (car arts)
1211                       arts (cdr arts))
1212                 (gnus-score-add-followups (car art) score all-scores))))
1213           ;; Update expire date
1214           (cond ((null date))           ;Permanent entry.
1215                 (found                  ;Match, update date.
1216                  (gnus-score-set 'touched '(t) alist)
1217                  (setcar (nthcdr 2 kill) now))
1218                 ((< date expire)        ;Old entry, remove.
1219                  (gnus-score-set 'touched '(t) alist)
1220                  (setcdr entries (cdr rest))
1221                  (setq rest entries)))
1222           (setq entries rest))))
1223     ;; We change the score file back to the previous one.
1224     (gnus-score-load-file current-score-file)))
1225
1226 (defun gnus-score-add-followups (header score scores)
1227   (save-excursion
1228     (set-buffer gnus-summary-buffer)
1229     (let* ((id (mail-header-id header))
1230            (scores (car scores))
1231            entry dont)
1232       ;; Don't enter a score if there already is one.
1233       (while scores
1234         (setq entry (car scores))
1235         (and (equal "references" (car entry))
1236              (or (null (nth 3 (car (cdr entry))))
1237                  (eq 's (nth 3 (car (cdr entry)))))
1238              (progn
1239                (if (assoc id entry)
1240                    (setq dont t))))
1241         (setq scores (cdr scores)))
1242       (or dont
1243           (gnus-summary-score-entry 
1244            "references" id 's score (current-time-string) nil t)))))
1245
1246
1247 (defun gnus-score-string (score-list header now expire &optional trace)
1248   ;; Score ARTICLES according to HEADER in SCORE-LIST.
1249   ;; Update matches entries to NOW and remove unmatched entried older
1250   ;; than EXPIRE.
1251   
1252   ;; Insert the unique article headers in the buffer.
1253   (let ((gnus-score-index (nth 1 (assoc header gnus-header-index)))
1254         ;; gnus-score-index is used as a free variable.
1255         alike last this art entries alist articles scores fuzzy)
1256
1257     ;; Sorting the articles costs os O(N*log N) but will allow us to
1258     ;; only match with each unique header.  Thus the actual matching
1259     ;; will be O(M*U) where M is the number of strings to match with,
1260     ;; and U is the number of unique headers.  It is assumed (but
1261     ;; untested) this will be a net win because of the large constant
1262     ;; factor involved with string matching.
1263     (setq gnus-scores-articles (sort gnus-scores-articles 'gnus-score-string<)
1264           articles gnus-scores-articles)
1265
1266     (erase-buffer)
1267     (while articles
1268       (setq art (car articles)
1269             this (aref (car art) gnus-score-index)
1270             articles (cdr articles))
1271       (if (equal last this)
1272           ;; O(N*H) cons-cells used here, where H is the number of
1273           ;; headers.
1274           (setq alike (cons art alike))
1275         (if last
1276             (progn
1277               ;; Insert the line, with a text property on the
1278               ;; terminating newline refering to the articles with
1279               ;; this line.
1280               (insert last ?\n)
1281               (put-text-property (1- (point)) (point) 'articles alike)))
1282         (setq alike (list art)
1283               last this)))
1284     (and last                           ; Bwadr, duplicate code.
1285          (progn
1286            (insert last ?\n)                    
1287            (put-text-property (1- (point)) (point) 'articles alike)))
1288   
1289     ;; Find ordinary matches.
1290     (setq scores score-list) 
1291     (while scores
1292       (setq alist (car scores)
1293             scores (cdr scores)
1294             entries (assoc header alist))
1295       (while (cdr entries)              ;First entry is the header index.
1296         (let* ((rest (cdr entries))             
1297                (kill (car rest))
1298                (match (nth 0 kill))
1299                (type (or (nth 3 kill) 's))
1300                (score (or (nth 1 kill) gnus-score-interactive-default-score))
1301                (date (nth 2 kill))
1302                (found nil)
1303                (mt (aref (symbol-name type) 0))
1304                (case-fold-search 
1305                 (not (or (= mt ?R) (= mt ?S) (= mt ?E) (= mt ?F))))
1306                (dmt (downcase mt))
1307                (search-func 
1308                 (cond ((= dmt ?r) 're-search-forward)
1309                       ((or (= dmt ?e) (= dmt ?s) (= dmt ?f)) 'search-forward)
1310                       (t (error "Illegal match type: %s" type))))
1311                arts art)
1312           (if (= dmt ?f)
1313               (setq fuzzy t)
1314             (goto-char (point-min))
1315             (if (= dmt ?e)
1316                 (while (and (not (eobp)) 
1317                             (funcall search-func match nil t))
1318                   (and (= (progn (beginning-of-line) (point))
1319                           (match-beginning 0))
1320                        (= (progn (end-of-line) (point))
1321                           (match-end 0))
1322                        (progn
1323                          (setq found (setq arts (get-text-property 
1324                                                  (point) 'articles)))
1325                          ;; Found a match, update scores.
1326                          (if trace
1327                              (while arts
1328                                (setq art (car arts)
1329                                      arts (cdr arts))
1330                                (setcdr art (+ score (cdr art)))
1331                                (setq gnus-score-trace 
1332                                      (cons (cons (mail-header-number
1333                                                   (car art)) kill)
1334                                            gnus-score-trace)))
1335                            (while arts
1336                              (setq art (car arts)
1337                                    arts (cdr arts))
1338                              (setcdr art (+ score (cdr art)))))))
1339                   (forward-line 1))
1340               (and (string= match "") (setq match "\n"))
1341               (while (and (not (eobp))
1342                           (funcall search-func match nil t))
1343                 (goto-char (match-beginning 0))
1344                 (end-of-line)
1345                 (setq found (setq arts (get-text-property (point) 'articles)))
1346                 ;; Found a match, update scores.
1347                 (if trace
1348                     (while arts
1349                       (setq art (car arts)
1350                             arts (cdr arts))
1351                       (setcdr art (+ score (cdr art)))
1352                       (setq gnus-score-trace 
1353                             (cons (cons (mail-header-number (car art)) kill)
1354                                   gnus-score-trace)))
1355                   (while arts
1356                     (setq art (car arts)
1357                           arts (cdr arts))
1358                     (setcdr art (+ score (cdr art)))))
1359                 (forward-line 1)))
1360             ;; Update expire date
1361             (cond ((null date))         ;Permanent entry.
1362                   (found                ;Match, update date.
1363                    (gnus-score-set 'touched '(t) alist)
1364                    (setcar (nthcdr 2 kill) now))
1365                   ((< date expire)      ;Old entry, remove.
1366                    (gnus-score-set 'touched '(t) alist)
1367                    (setcdr entries (cdr rest))
1368                    (setq rest entries))))
1369           (setq entries rest))))
1370   
1371     ;; Find fuzzy matches.
1372     (setq scores (and fuzzy score-list))
1373     (if fuzzy (gnus-simplify-buffer-fuzzy))
1374     (while scores
1375       (setq alist (car scores)
1376             scores (cdr scores)
1377             entries (assoc header alist))
1378       (while (cdr entries)              ;First entry is the header index.
1379         (let* ((rest (cdr entries))             
1380                (kill (car rest))
1381                (match (nth 0 kill))
1382                (type (or (nth 3 kill) 's))
1383                (score (or (nth 1 kill) gnus-score-interactive-default-score))
1384                (date (nth 2 kill))
1385                (found nil)
1386                (mt (aref (symbol-name type) 0))
1387                (case-fold-search 
1388                 (not (or (= mt ?R) (= mt ?S) (= mt ?E) (= mt ?F))))
1389                (dmt (downcase mt))
1390                (search-func 
1391                 (cond ((= dmt ?r) 're-search-forward)
1392                       ((or (= dmt ?e) (= dmt ?s) (= dmt ?f)) 'search-forward)
1393                       (t (error "Illegal match type: %s" type))))
1394                arts art)
1395           (if (/= dmt ?f)
1396               ()
1397             (goto-char (point-min))
1398             (while (and (not (eobp)) 
1399                         (funcall search-func match nil t))
1400               (and (= (progn (beginning-of-line) (point))
1401                       (match-beginning 0))
1402                    (= (progn (end-of-line) (point))
1403                       (match-end 0))
1404                    (progn
1405                      (setq found (setq arts (get-text-property 
1406                                              (point) 'articles)))
1407                      ;; Found a match, update scores.
1408                      (if trace
1409                          (while arts
1410                            (setq art (car arts)
1411                                  arts (cdr arts))
1412                            (setcdr art (+ score (cdr art)))
1413                            (setq gnus-score-trace 
1414                                  (cons (cons (mail-header-number
1415                                               (car art)) kill)
1416                                        gnus-score-trace)))
1417                        (while arts
1418                          (setq art (car arts)
1419                                arts (cdr arts))
1420                          (setcdr art (+ score (cdr art)))))))
1421               (forward-line 1))
1422             ;; Update expire date
1423             (cond ((null date))         ;Permanent entry.
1424                   (found                ;Match, update date.
1425                    (gnus-score-set 'touched '(t) alist)
1426                    (setcar (nthcdr 2 kill) now))
1427                   ((< date expire)      ;Old entry, remove.
1428                    (gnus-score-set 'touched '(t) alist)
1429                    (setcdr entries (cdr rest))
1430                    (setq rest entries))))
1431           (setq entries rest))))))
1432
1433 (defun gnus-score-string< (a1 a2)
1434   ;; Compare headers in articles A2 and A2.
1435   ;; The header index used is the free variable `gnus-score-index'.
1436   (string-lessp (aref (car a1) gnus-score-index)
1437                 (aref (car a2) gnus-score-index)))
1438
1439 (defun gnus-score-build-cons (article)
1440   ;; Build a `gnus-newsgroup-scored' type cons from ARTICLE.
1441   (cons (mail-header-number (car article)) (cdr article)))
1442
1443 (defconst gnus-header-index
1444   ;; Name to index alist.
1445   '(("number" 0 gnus-score-integer)
1446     ("subject" 1 gnus-score-string)
1447     ("from" 2 gnus-score-string)
1448     ("date" 3 gnus-score-date)
1449     ("message-id" 4 gnus-score-string) 
1450     ("references" 5 gnus-score-string) 
1451     ("chars" 6 gnus-score-integer) 
1452     ("lines" 7 gnus-score-integer) 
1453     ("xref" 8 gnus-score-string)
1454     ("head" -1 gnus-score-body)
1455     ("body" -1 gnus-score-body)
1456     ("all" -1 gnus-score-body)
1457     ("followup" 2 gnus-score-followup)))
1458
1459 (defun gnus-current-score-file-nondirectory (&optional score-file)
1460   (let ((score-file (or score-file gnus-current-score-file)))
1461     (if score-file 
1462         (gnus-short-group-name (file-name-nondirectory score-file))
1463       "none")))
1464
1465 (defun gnus-score-adaptive ()
1466   (save-excursion
1467     (let* ((malist (gnus-copy-sequence gnus-adaptive-score-alist))
1468            (alist malist)
1469            (date (current-time-string)) 
1470            elem headers match)
1471       ;; First we transform the adaptive rule alist into something
1472       ;; that's faster to process.
1473       (while malist
1474         (setq elem (car malist))
1475         (if (symbolp (car elem))
1476             (setcar elem (symbol-value (car elem))))
1477         (setq elem (cdr elem))
1478         (while elem
1479           (setcdr (car elem) 
1480                   (cons (symbol-name (car (car elem))) (cdr (car elem))))
1481           (setcar (car elem) 
1482                   (intern 
1483                    (concat "gnus-header-" 
1484                            (downcase (symbol-name (car (car elem)))))))
1485           (setq elem (cdr elem)))
1486         (setq malist (cdr malist)))
1487       ;; We change the score file to the adaptive score file.
1488       (gnus-score-load-file (gnus-score-file-name 
1489                              gnus-newsgroup-name gnus-adaptive-file-suffix))
1490       ;; The we score away.
1491       (goto-char (point-min))
1492       (while (not (eobp))
1493         (setq elem (cdr (assq (gnus-summary-article-mark) alist)))
1494         (if (or (not elem)
1495                 (get-text-property (point) 'gnus-pseudo))
1496             ()
1497           (setq headers (gnus-get-header-by-number 
1498                          (gnus-summary-article-number)))
1499           (while (and elem headers)
1500             (setq match (funcall (car (car elem)) headers))
1501             (gnus-summary-score-entry 
1502              (nth 1 (car elem)) match
1503              (cond
1504               ((numberp match)
1505                '=)
1506               ((equal (nth 1 (car elem)) "date")
1507                'a)
1508               (t
1509                ;; Whether we use substring or exact matches are controlled
1510                ;; here.  
1511                (if (or (not gnus-score-exact-adapt-limit)
1512                        (< (length match) gnus-score-exact-adapt-limit))
1513                    'e 
1514                  (if (equal (nth 1 (car elem)) "subject")
1515                      'f 's))))
1516              (nth 2 (car elem)) date nil t)
1517             (setq elem (cdr elem))))
1518         (forward-line 1)))))
1519
1520 (defun gnus-score-remove-lines-adaptive (marks)
1521   (save-excursion
1522     (let* ((malist (gnus-copy-sequence gnus-adaptive-score-alist))
1523            (alist malist)
1524            (date (current-time-string)) 
1525            (cur-score gnus-current-score-file)
1526            elem headers match)
1527       ;; First we transform the adaptive rule alist into something
1528       ;; that's faster to process.
1529       (while malist
1530         (setq elem (car malist))
1531         (if (symbolp (car elem))
1532             (setcar elem (symbol-value (car elem))))
1533         (setq elem (cdr elem))
1534         (while elem
1535           (setcdr (car elem) 
1536                   (cons (symbol-name (car (car elem))) (cdr (car elem))))
1537           (setcar (car elem) 
1538                   (intern 
1539                    (concat "gnus-header-" 
1540                            (downcase (symbol-name (car (car elem)))))))
1541           (setq elem (cdr elem)))
1542         (setq malist (cdr malist)))
1543       ;; The we score away.
1544       (goto-char (point-min))
1545       ;; We change the score file to the adaptive score file.
1546       (gnus-score-load-file (gnus-score-file-name 
1547                              gnus-newsgroup-name gnus-adaptive-file-suffix))
1548       (while (re-search-forward marks nil t)
1549         (beginning-of-line)
1550         (setq elem (cdr (assq (gnus-summary-article-mark) alist)))
1551         (if (or (not elem)
1552                 (get-text-property (gnus-point-at-bol) 'gnus-pseudo))
1553             ()
1554           (setq headers (gnus-get-header-by-number 
1555                          (gnus-summary-article-number)))
1556           (while elem
1557             (setq match (funcall (car (car elem)) headers))
1558             (gnus-summary-score-entry 
1559              (nth 1 (car elem)) match
1560              (if (or (not gnus-score-exact-adapt-limit)
1561                      (< (length match) gnus-score-exact-adapt-limit))
1562                  'e 's) 
1563              (nth 2 (car elem)) date nil t)
1564             (setq elem (cdr elem))))
1565         (delete-region (point) (progn (forward-line 1) (point))))
1566       ;; Switch back to the old score file.
1567       (gnus-score-load-file cur-score))))
1568
1569 ;;;
1570 ;;; Score mode.
1571 ;;;
1572
1573 (defvar gnus-score-mode-map nil)
1574 (defvar gnus-score-mode-hook nil)
1575
1576 (if gnus-score-mode-map
1577     ()
1578   (setq gnus-score-mode-map (copy-keymap emacs-lisp-mode-map))
1579   (define-key gnus-score-mode-map "\C-c\C-c" 'gnus-score-edit-done)
1580   (define-key gnus-score-mode-map "\C-c\C-d" 'gnus-score-edit-insert-date))
1581
1582 (defun gnus-score-mode ()
1583   "Mode for editing score files.
1584 This mode is an extended emacs-lisp mode.
1585
1586 \\{gnus-score-mode-map}"
1587   (interactive)
1588   (kill-all-local-variables)
1589   (use-local-map gnus-score-mode-map)
1590   (set-syntax-table emacs-lisp-mode-syntax-table)
1591   (setq major-mode 'gnus-score-mode)
1592   (setq mode-name "Score")
1593   (lisp-mode-variables nil)
1594   (run-hooks 'emacs-lisp-mode-hook 'gnus-score-mode-hook))
1595
1596 (defun gnus-score-edit-insert-date ()
1597   "Insert date in numerical format."
1598   (interactive)
1599   (insert (int-to-string (gnus-day-number (current-time-string)))))
1600
1601 (defun gnus-score-edit-done ()
1602   "Save the score file and return to the summary buffer."
1603   (interactive)
1604   (let ((bufnam (buffer-file-name (current-buffer)))
1605         (winconf gnus-prev-winconf))
1606     (gnus-make-directory (file-name-directory (buffer-file-name)))
1607     (save-buffer)
1608     (kill-buffer (current-buffer))
1609     (gnus-score-remove-from-cache bufnam)
1610     (gnus-score-load-file bufnam)
1611     (and winconf (set-window-configuration winconf))))
1612
1613 (defun gnus-score-find-trace ()
1614   "Find all score rules applied to this article."
1615   (interactive)
1616   (let ((gnus-newsgroup-headers
1617          (list (gnus-get-header-by-number (gnus-summary-article-number))))
1618         (gnus-newsgroup-scored nil)
1619         (buf (current-buffer))
1620         trace)
1621     (setq gnus-score-trace nil)
1622     (gnus-possibly-score-headers 'trace)
1623     (or (setq trace gnus-score-trace)
1624         (error "No score rules apply to the current article."))
1625     (pop-to-buffer "*Gnus Scores*")
1626     (gnus-add-current-to-buffer-list)
1627     (erase-buffer)
1628     (while trace
1629       (insert (format "%S\n" (cdr (car trace))))
1630       (setq trace (cdr trace)))
1631     (goto-char (point-min))
1632     (pop-to-buffer buf)))
1633   
1634
1635 (provide 'gnus-score)
1636
1637 ;;; gnus-score.el ends here