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