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