group variables.
[gnus] / lisp / gnus-agent.el
1 ;;; gnus-agent.el --- unplugged support for Gnus
2 ;; Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
10 ;; any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
21
22 ;;; Commentary:
23
24 ;;; Code:
25
26 (require 'gnus)
27 (require 'gnus-cache)
28 (require 'nnvirtual)
29 (require 'gnus-sum)
30 (eval-when-compile
31   (require 'timer)
32   (require 'cl)
33   (require 'gnus-score))
34
35 (defcustom gnus-agent-directory (nnheader-concat gnus-directory "agent/")
36   "Where the Gnus agent will store its files."
37   :group 'gnus-agent
38   :type 'directory)
39
40 (defcustom gnus-agent-plugged-hook nil
41   "Hook run when plugging into the network."
42   :group 'gnus-agent
43   :type 'hook)
44
45 (defcustom gnus-agent-unplugged-hook nil
46   "Hook run when unplugging from the network."
47   :group 'gnus-agent
48   :type 'hook)
49
50 (defcustom gnus-agent-handle-level gnus-level-subscribed
51   "Groups on levels higher than this variable will be ignored by the Agent."
52   :group 'gnus-agent
53   :type 'integer)
54
55 (defcustom gnus-agent-expire-days 7
56   "Read articles older than this will be expired."
57   :group 'gnus-agent
58   :type 'integer)
59
60 (defcustom gnus-agent-expire-all nil
61   "If non-nil, also expire unread, ticked and dormant articles.
62 If nil, only read articles will be expired."
63   :group 'gnus-agent
64   :type 'boolean)
65
66 (defcustom gnus-agent-group-mode-hook nil
67   "Hook run in Agent group minor modes."
68   :group 'gnus-agent
69   :type 'hook)
70
71 (defcustom gnus-agent-summary-mode-hook nil
72   "Hook run in Agent summary minor modes."
73   :group 'gnus-agent
74   :type 'hook)
75
76 (defcustom gnus-agent-server-mode-hook nil
77   "Hook run in Agent summary minor modes."
78   :group 'gnus-agent
79   :type 'hook)
80
81 (defcustom gnus-agent-confirmation-function 'y-or-n-p
82   "Function to confirm when error happens."
83   :group 'gnus-agent
84   :type 'function)
85
86 ;;; Internal variables
87
88 (defvar gnus-agent-history-buffers nil)
89 (defvar gnus-agent-buffer-alist nil)
90 (defvar gnus-agent-article-alist nil)
91 (defvar gnus-agent-group-alist nil)
92 (defvar gnus-agent-covered-methods nil)
93 (defvar gnus-category-alist nil)
94 (defvar gnus-agent-current-history nil)
95 (defvar gnus-agent-overview-buffer nil)
96 (defvar gnus-category-predicate-cache nil)
97 (defvar gnus-category-group-cache nil)
98 (defvar gnus-agent-spam-hashtb nil)
99 (defvar gnus-agent-file-name nil)
100 (defvar gnus-agent-send-mail-function nil)
101 (defvar gnus-agent-file-coding-system 'raw-text)
102
103 (defconst gnus-agent-scoreable-headers
104   '("subject" "from" "date" "message-id" "references" "chars" "lines" "xref")
105   "Headers that are considered when scoring articles for download via the Agent.")
106
107 ;; Dynamic variables
108 (defvar gnus-headers)
109 (defvar gnus-score)
110
111 ;;;
112 ;;; Setup
113 ;;;
114
115 (defun gnus-open-agent ()
116   (setq gnus-agent t)
117   (gnus-agent-read-servers)
118   (gnus-category-read)
119   (gnus-agent-create-buffer)
120   (add-hook 'gnus-group-mode-hook 'gnus-agent-mode)
121   (add-hook 'gnus-summary-mode-hook 'gnus-agent-mode)
122   (add-hook 'gnus-server-mode-hook 'gnus-agent-mode))
123
124 (defun gnus-agent-create-buffer ()
125   (if (gnus-buffer-live-p gnus-agent-overview-buffer)
126       t
127     (setq gnus-agent-overview-buffer
128           (gnus-get-buffer-create " *Gnus agent overview*"))
129     (with-current-buffer gnus-agent-overview-buffer
130       (mm-enable-multibyte))
131     nil))
132
133 (gnus-add-shutdown 'gnus-close-agent 'gnus)
134
135 (defun gnus-close-agent ()
136   (setq gnus-agent-covered-methods nil
137         gnus-category-predicate-cache nil
138         gnus-category-group-cache nil
139         gnus-agent-spam-hashtb nil)
140   (gnus-kill-buffer gnus-agent-overview-buffer))
141
142 ;;;
143 ;;; Utility functions
144 ;;;
145
146 (defun gnus-agent-read-file (file)
147   "Load FILE and do a `read' there."
148   (with-temp-buffer
149     (ignore-errors
150       (nnheader-insert-file-contents file)
151       (goto-char (point-min))
152       (read (current-buffer)))))
153
154 (defsubst gnus-agent-method ()
155   (concat (symbol-name (car gnus-command-method)) "/"
156           (if (equal (cadr gnus-command-method) "")
157               "unnamed"
158             (cadr gnus-command-method))))
159
160 (defsubst gnus-agent-directory ()
161   "Path of the Gnus agent directory."
162   (nnheader-concat gnus-agent-directory
163                    (nnheader-translate-file-chars (gnus-agent-method)) "/"))
164
165 (defun gnus-agent-lib-file (file)
166   "The full path of the Gnus agent library FILE."
167   (concat (gnus-agent-directory) "agent.lib/" file))
168
169 ;;; Fetching setup functions.
170
171 (defun gnus-agent-start-fetch ()
172   "Initialize data structures for efficient fetching."
173   (gnus-agent-open-history)
174   (setq gnus-agent-current-history (gnus-agent-history-buffer))
175   (gnus-agent-create-buffer))
176
177 (defun gnus-agent-stop-fetch ()
178   "Save all data structures and clean up."
179   (gnus-agent-save-history)
180   (gnus-agent-close-history)
181   (setq gnus-agent-spam-hashtb nil)
182   (save-excursion
183     (set-buffer nntp-server-buffer)
184     (widen)))
185
186 (defmacro gnus-agent-with-fetch (&rest forms)
187   "Do FORMS safely."
188   `(unwind-protect
189        (progn
190          (gnus-agent-start-fetch)
191          ,@forms)
192      (gnus-agent-stop-fetch)))
193
194 (put 'gnus-agent-with-fetch 'lisp-indent-function 0)
195 (put 'gnus-agent-with-fetch 'edebug-form-spec '(body))
196
197 ;;;
198 ;;; Mode infestation
199 ;;;
200
201 (defvar gnus-agent-mode-hook nil
202   "Hook run when installing agent mode.")
203
204 (defvar gnus-agent-mode nil)
205 (defvar gnus-agent-mode-status '(gnus-agent-mode " Plugged"))
206
207 (defun gnus-agent-mode ()
208   "Minor mode for providing a agent support in Gnus buffers."
209   (let* ((buffer (progn (string-match "^gnus-\\(.*\\)-mode$"
210                                       (symbol-name major-mode))
211                         (match-string 1 (symbol-name major-mode))))
212          (mode (intern (format "gnus-agent-%s-mode" buffer))))
213     (set (make-local-variable 'gnus-agent-mode) t)
214     (set mode nil)
215     (set (make-local-variable mode) t)
216     ;; Set up the menu.
217     (when (gnus-visual-p 'agent-menu 'menu)
218       (funcall (intern (format "gnus-agent-%s-make-menu-bar" buffer))))
219     (unless (assq 'gnus-agent-mode minor-mode-alist)
220       (push gnus-agent-mode-status minor-mode-alist))
221     (unless (assq mode minor-mode-map-alist)
222       (push (cons mode (symbol-value (intern (format "gnus-agent-%s-mode-map"
223                                                      buffer))))
224             minor-mode-map-alist))
225     (when (eq major-mode 'gnus-group-mode)
226       (gnus-agent-toggle-plugged gnus-plugged))
227     (gnus-run-hooks 'gnus-agent-mode-hook
228                     (intern (format "gnus-agent-%s-mode-hook" buffer)))))
229
230 (defvar gnus-agent-group-mode-map (make-sparse-keymap))
231 (gnus-define-keys gnus-agent-group-mode-map
232   "Ju" gnus-agent-fetch-groups
233   "Jc" gnus-enter-category-buffer
234   "Jj" gnus-agent-toggle-plugged
235   "Js" gnus-agent-fetch-session
236   "JY" gnus-agent-synchronize
237   "JS" gnus-group-send-drafts
238   "Ja" gnus-agent-add-group
239   "Jr" gnus-agent-remove-group)
240
241 (defun gnus-agent-group-make-menu-bar ()
242   (unless (boundp 'gnus-agent-group-menu)
243     (easy-menu-define
244      gnus-agent-group-menu gnus-agent-group-mode-map ""
245      '("Agent"
246        ["Toggle plugged" gnus-agent-toggle-plugged t]
247        ["List categories" gnus-enter-category-buffer t]
248        ["Send drafts" gnus-group-send-drafts gnus-plugged]
249        ("Fetch"
250         ["All" gnus-agent-fetch-session gnus-plugged]
251         ["Group" gnus-agent-fetch-group gnus-plugged])))))
252
253 (defvar gnus-agent-summary-mode-map (make-sparse-keymap))
254 (gnus-define-keys gnus-agent-summary-mode-map
255   "Jj" gnus-agent-toggle-plugged
256   "J#" gnus-agent-mark-article
257   "J\M-#" gnus-agent-unmark-article
258   "@" gnus-agent-toggle-mark
259   "Jc" gnus-agent-catchup)
260
261 (defun gnus-agent-summary-make-menu-bar ()
262   (unless (boundp 'gnus-agent-summary-menu)
263     (easy-menu-define
264      gnus-agent-summary-menu gnus-agent-summary-mode-map ""
265      '("Agent"
266        ["Toggle plugged" gnus-agent-toggle-plugged t]
267        ["Mark as downloadable" gnus-agent-mark-article t]
268        ["Unmark as downloadable" gnus-agent-unmark-article t]
269        ["Toggle mark" gnus-agent-toggle-mark t]
270        ["Catchup undownloaded" gnus-agent-catchup t]))))
271
272 (defvar gnus-agent-server-mode-map (make-sparse-keymap))
273 (gnus-define-keys gnus-agent-server-mode-map
274   "Jj" gnus-agent-toggle-plugged
275   "Ja" gnus-agent-add-server
276   "Jr" gnus-agent-remove-server)
277
278 (defun gnus-agent-server-make-menu-bar ()
279   (unless (boundp 'gnus-agent-server-menu)
280     (easy-menu-define
281      gnus-agent-server-menu gnus-agent-server-mode-map ""
282      '("Agent"
283        ["Toggle plugged" gnus-agent-toggle-plugged t]
284        ["Add" gnus-agent-add-server t]
285        ["Remove" gnus-agent-remove-server t]))))
286
287 (defun gnus-agent-toggle-plugged (plugged)
288   "Toggle whether Gnus is unplugged or not."
289   (interactive (list (not gnus-plugged)))
290   (if plugged
291       (progn
292         (setq gnus-plugged plugged)
293         (gnus-run-hooks 'gnus-agent-plugged-hook)
294         (setcar (cdr gnus-agent-mode-status) " Plugged"))
295     (gnus-agent-close-connections)
296     (setq gnus-plugged plugged)
297     (gnus-run-hooks 'gnus-agent-unplugged-hook)
298     (setcar (cdr gnus-agent-mode-status) " Unplugged"))
299   (set-buffer-modified-p t))
300
301 (defun gnus-agent-close-connections ()
302   "Close all methods covered by the Gnus agent."
303   (let ((methods gnus-agent-covered-methods))
304     (while methods
305       (gnus-close-server (pop methods)))))
306
307 ;;;###autoload
308 (defun gnus-unplugged ()
309   "Start Gnus unplugged."
310   (interactive)
311   (setq gnus-plugged nil)
312   (gnus))
313
314 ;;;###autoload
315 (defun gnus-plugged ()
316   "Start Gnus plugged."
317   (interactive)
318   (setq gnus-plugged t)
319   (gnus))
320
321 ;;;###autoload
322 (defun gnus-agentize ()
323   "Allow Gnus to be an offline newsreader.
324 The normal usage of this command is to put the following as the
325 last form in your `.gnus.el' file:
326
327 \(gnus-agentize)
328
329 This will modify the `gnus-before-startup-hook', `gnus-post-method',
330 and `message-send-mail-function' variables, and install the Gnus
331 agent minor mode in all Gnus buffers."
332   (interactive)
333   (gnus-open-agent)
334   (add-hook 'gnus-setup-news-hook 'gnus-agent-queue-setup)
335   (unless gnus-agent-send-mail-function
336     (setq gnus-agent-send-mail-function message-send-mail-function
337           message-send-mail-function 'gnus-agent-send-mail))
338   (unless gnus-agent-covered-methods
339     (setq gnus-agent-covered-methods (list gnus-select-method))))
340
341 (defun gnus-agent-queue-setup ()
342   "Make sure the queue group exists."
343   (unless (gnus-gethash "nndraft:queue" gnus-newsrc-hashtb)
344     (gnus-request-create-group "queue" '(nndraft ""))
345     (let ((gnus-level-default-subscribed 1))
346       (gnus-subscribe-group "nndraft:queue" nil '(nndraft "")))
347     (gnus-group-set-parameter
348      "nndraft:queue" 'gnus-dummy '((gnus-draft-mode)))))
349
350 (defun gnus-agent-send-mail ()
351   (if gnus-plugged
352       (funcall gnus-agent-send-mail-function)
353     (goto-char (point-min))
354     (re-search-forward
355      (concat "^" (regexp-quote mail-header-separator) "\n"))
356     (replace-match "\n")
357     (gnus-agent-insert-meta-information 'mail)
358     (gnus-request-accept-article "nndraft:queue" nil t t)))
359
360 (defun gnus-agent-insert-meta-information (type &optional method)
361   "Insert meta-information into the message that says how it's to be posted.
362 TYPE can be either `mail' or `news'.  If the latter METHOD can
363 be a select method."
364   (save-excursion
365     (message-remove-header gnus-agent-meta-information-header)
366     (goto-char (point-min))
367     (insert gnus-agent-meta-information-header ": "
368             (symbol-name type) " " (format "%S" method)
369             "\n")
370     (forward-char -1)
371     (while (search-backward "\n" nil t)
372       (replace-match "\\n" t t))))
373
374 ;;;
375 ;;; Group mode commands
376 ;;;
377
378 (defun gnus-agent-fetch-groups (n)
379   "Put all new articles in the current groups into the Agent."
380   (interactive "P")
381   (unless gnus-plugged
382     (error "Groups can't be fetched when Gnus is unplugged"))
383   (gnus-group-iterate n 'gnus-agent-fetch-group))
384
385 (defun gnus-agent-fetch-group (group)
386   "Put all new articles in GROUP into the Agent."
387   (interactive (list (gnus-group-group-name)))
388   (unless gnus-plugged
389     (error "Groups can't be fetched when Gnus is unplugged"))
390   (unless group
391     (error "No group on the current line"))
392   (let ((gnus-command-method (gnus-find-method-for-group group)))
393     (gnus-agent-with-fetch
394       (gnus-agent-fetch-group-1 group gnus-command-method)
395       (gnus-message 5 "Fetching %s...done" group))))
396
397 (defun gnus-agent-add-group (category arg)
398   "Add the current group to an agent category."
399   (interactive
400    (list
401     (intern
402      (completing-read
403       "Add to category: "
404       (mapcar (lambda (cat) (list (symbol-name (car cat))))
405               gnus-category-alist)
406       nil t))
407     current-prefix-arg))
408   (let ((cat (assq category gnus-category-alist))
409         c groups)
410     (gnus-group-iterate arg
411       (lambda (group)
412         (when (cadddr (setq c (gnus-group-category group)))
413           (setf (cadddr c) (delete group (cadddr c))))
414         (push group groups)))
415     (setf (cadddr cat) (nconc (cadddr cat) groups))
416     (gnus-category-write)))
417
418 (defun gnus-agent-remove-group (arg)
419   "Remove the current group from its agent category, if any."
420   (interactive "P")
421   (let (c)
422     (gnus-group-iterate arg
423       (lambda (group)
424         (when (cadddr (setq c (gnus-group-category group)))
425           (setf (cadddr c) (delete group (cadddr c))))))
426     (gnus-category-write)))
427
428 (defun gnus-agent-synchronize ()
429   "Synchronize local, unplugged, data with backend.
430 Currently sends flag setting requests, if any."
431   (interactive)
432   (save-excursion
433     (dolist (gnus-command-method gnus-agent-covered-methods)
434       (when (file-exists-p (gnus-agent-lib-file "flags"))
435         (set-buffer (get-buffer-create " *Gnus Agent flag synchronize*"))
436         (erase-buffer)
437         (nnheader-insert-file-contents (gnus-agent-lib-file "flags"))
438         (if (null (gnus-check-server gnus-command-method))
439             (message "Couldn't open server %s" (nth 1 gnus-command-method))
440           (while (not (eobp))
441             (if (null (eval (read (current-buffer))))
442                 (progn (forward-line)
443                        (kill-line -1))
444               (write-file (gnus-agent-lib-file "flags"))
445               (error "Couldn't set flags from file %s"
446                      (gnus-agent-lib-file "flags"))))
447           (write-file (gnus-agent-lib-file "flags")))
448         (kill-buffer nil)))))
449
450 ;;;
451 ;;; Server mode commands
452 ;;;
453
454 (defun gnus-agent-add-server (server)
455   "Enroll SERVER in the agent program."
456   (interactive (list (gnus-server-server-name)))
457   (unless server
458     (error "No server on the current line"))
459   (let ((method (gnus-server-get-method nil (gnus-server-server-name))))
460     (when (member method gnus-agent-covered-methods)
461       (error "Server already in the agent program"))
462     (push method gnus-agent-covered-methods)
463     (gnus-agent-write-servers)
464     (message "Entered %s into the Agent" server)))
465
466 (defun gnus-agent-remove-server (server)
467   "Remove SERVER from the agent program."
468   (interactive (list (gnus-server-server-name)))
469   (unless server
470     (error "No server on the current line"))
471   (let ((method (gnus-server-get-method nil (gnus-server-server-name))))
472     (unless (member method gnus-agent-covered-methods)
473       (error "Server not in the agent program"))
474     (setq gnus-agent-covered-methods
475           (delete method gnus-agent-covered-methods))
476     (gnus-agent-write-servers)
477     (message "Removed %s from the agent" server)))
478
479 (defun gnus-agent-read-servers ()
480   "Read the alist of covered servers."
481   (setq gnus-agent-covered-methods
482         (gnus-agent-read-file
483          (nnheader-concat gnus-agent-directory "lib/servers"))))
484
485 (defun gnus-agent-write-servers ()
486   "Write the alist of covered servers."
487   (gnus-make-directory (nnheader-concat gnus-agent-directory "lib"))
488   (let ((coding-system-for-write nnheader-file-coding-system)
489         (file-name-coding-system nnmail-pathname-coding-system))
490     (with-temp-file (nnheader-concat gnus-agent-directory "lib/servers")
491       (prin1 gnus-agent-covered-methods (current-buffer)))))
492
493 ;;;
494 ;;; Summary commands
495 ;;;
496
497 (defun gnus-agent-mark-article (n &optional unmark)
498   "Mark the next N articles as downloadable.
499 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
500 the mark instead.  The difference between N and the actual number of
501 articles marked is returned."
502   (interactive "p")
503   (let ((backward (< n 0))
504         (n (abs n)))
505     (while (and
506             (> n 0)
507             (progn
508               (gnus-summary-set-agent-mark
509                (gnus-summary-article-number) unmark)
510               (zerop (gnus-summary-next-subject (if backward -1 1) nil t))))
511       (setq n (1- n)))
512     (when (/= 0 n)
513       (gnus-message 7 "No more articles"))
514     (gnus-summary-recenter)
515     (gnus-summary-position-point)
516     n))
517
518 (defun gnus-agent-unmark-article (n)
519   "Remove the downloadable mark from the next N articles.
520 If N is negative, unmark backward instead.  The difference between N and
521 the actual number of articles unmarked is returned."
522   (interactive "p")
523   (gnus-agent-mark-article n t))
524
525 (defun gnus-agent-toggle-mark (n)
526   "Toggle the downloadable mark from the next N articles.
527 If N is negative, toggle backward instead.  The difference between N and
528 the actual number of articles toggled is returned."
529   (interactive "p")
530   (gnus-agent-mark-article n 'toggle))
531
532 (defun gnus-summary-set-agent-mark (article &optional unmark)
533   "Mark ARTICLE as downloadable."
534   (let ((unmark (if (and (not (null unmark)) (not (eq t unmark)))
535                     (memq article gnus-newsgroup-downloadable)
536                   unmark)))
537     (if unmark
538         (progn
539           (setq gnus-newsgroup-downloadable
540                 (delq article gnus-newsgroup-downloadable))
541           (push article gnus-newsgroup-undownloaded))
542       (setq gnus-newsgroup-undownloaded
543             (delq article gnus-newsgroup-undownloaded))
544       (push article gnus-newsgroup-downloadable))
545     (gnus-summary-update-mark
546      (if unmark gnus-undownloaded-mark gnus-downloadable-mark)
547      'unread)))
548
549 (defun gnus-agent-get-undownloaded-list ()
550   "Mark all unfetched articles as read."
551   (let ((gnus-command-method (gnus-find-method-for-group gnus-newsgroup-name)))
552     (when (and (not gnus-plugged)
553                (gnus-agent-method-p gnus-command-method))
554       (gnus-agent-load-alist gnus-newsgroup-name)
555       ;; First mark all undownloaded articles as undownloaded.
556       (let ((articles (append gnus-newsgroup-unreads
557                               gnus-newsgroup-marked
558                               gnus-newsgroup-dormant))
559             article)
560         (while (setq article (pop articles))
561           (unless (or (cdr (assq article gnus-agent-article-alist))
562                       (memq article gnus-newsgroup-downloadable)
563                       (memq article gnus-newsgroup-cached))
564             (push article gnus-newsgroup-undownloaded))))
565       ;; Then mark downloaded downloadable as not-downloadable,
566       ;; if you get my drift.
567       (let ((articles gnus-newsgroup-downloadable)
568             article)
569         (while (setq article (pop articles))
570           (when (cdr (assq article gnus-agent-article-alist))
571             (setq gnus-newsgroup-downloadable
572                   (delq article gnus-newsgroup-downloadable))))))))
573
574 (defun gnus-agent-catchup ()
575   "Mark all undownloaded articles as read."
576   (interactive)
577   (save-excursion
578     (while gnus-newsgroup-undownloaded
579       (gnus-summary-mark-article
580        (pop gnus-newsgroup-undownloaded) gnus-catchup-mark)))
581   (gnus-summary-position-point))
582
583 ;;;
584 ;;; Internal functions
585 ;;;
586
587 (defun gnus-agent-save-active (method)
588   (gnus-agent-save-active-1 method 'gnus-active-to-gnus-format))
589
590 (defun gnus-agent-save-active-1 (method function)
591   (when (gnus-agent-method-p method)
592     (let* ((gnus-command-method method)
593            (new (gnus-make-hashtable (count-lines (point-min) (point-max))))
594            (file (gnus-agent-lib-file "active")))
595       (funcall function nil new)
596       (gnus-agent-write-active file new)
597       (erase-buffer)
598       (nnheader-insert-file-contents file))))
599
600 (defun gnus-agent-write-active (file new)
601   (let ((orig (gnus-make-hashtable (count-lines (point-min) (point-max))))
602         (file (gnus-agent-lib-file "active"))
603         elem osym)
604     (when (file-exists-p file)
605       (with-temp-buffer
606         (nnheader-insert-file-contents file)
607         (gnus-active-to-gnus-format nil orig))
608       (mapatoms
609        (lambda (sym)
610          (when (and sym (boundp sym))
611            (if (and (boundp (setq osym (intern (symbol-name sym) orig)))
612                     (setq elem (symbol-value osym)))
613                (setcdr elem (cdr (symbol-value sym)))
614              (set (intern (symbol-name sym) orig) (symbol-value sym)))))
615        new))
616     (gnus-make-directory (file-name-directory file))
617     (let ((coding-system-for-write gnus-agent-file-coding-system))
618       ;; The hashtable contains real names of groups,  no more prefix
619       ;; removing, so set `full' to `t'.
620       (gnus-write-active-file file orig t))))
621
622 (defun gnus-agent-save-groups (method)
623   (gnus-agent-save-active-1 method 'gnus-groups-to-gnus-format))
624
625 (defun gnus-agent-save-group-info (method group active)
626   (when (gnus-agent-method-p method)
627     (let* ((gnus-command-method method)
628            (coding-system-for-write nnheader-file-coding-system)
629            (file-name-coding-system nnmail-pathname-coding-system)
630            (file (gnus-agent-lib-file "active"))
631            oactive)
632       (gnus-make-directory (file-name-directory file))
633       (with-temp-file file
634         ;; Emacs got problem to match non-ASCII group in multibyte buffer.
635         (mm-disable-multibyte) 
636         (when (file-exists-p file)
637           (nnheader-insert-file-contents file))
638         (goto-char (point-min))
639         (when (re-search-forward
640                (concat "^" (regexp-quote group) " ") nil t)
641           (save-excursion
642             (save-restriction
643               (narrow-to-region (match-beginning 0)
644                                 (progn
645                                   (forward-line 1)
646                                   (point)))
647               (setq oactive (car (nnmail-parse-active)))))
648           (gnus-delete-line))
649         (insert (format "%S %d %d y\n" (intern group)
650                         (cdr active)
651                         (or (car oactive) (car active))))
652         (goto-char (point-max))
653         (while (search-backward "\\." nil t)
654           (delete-char 1))))))
655
656 (defun gnus-agent-group-path (group)
657   "Translate GROUP into a path."
658   (if nnmail-use-long-file-names
659       (gnus-group-real-name group)
660     (nnheader-translate-file-chars
661      (nnheader-replace-chars-in-string
662       (nnheader-replace-duplicate-chars-in-string
663        (nnheader-replace-chars-in-string 
664         (gnus-group-real-name group)
665         ?/ ?_)
666        ?. ?_)
667       ?. ?/))))
668
669 \f
670
671 (defun gnus-agent-method-p (method)
672   "Say whether METHOD is covered by the agent."
673   (member method gnus-agent-covered-methods))
674
675 (defun gnus-agent-get-function (method)
676   (if (and (not gnus-plugged)
677            (gnus-agent-method-p method))
678       (progn
679         (require 'nnagent)
680         'nnagent)
681     (car method)))
682
683 ;;; History functions
684
685 (defun gnus-agent-history-buffer ()
686   (cdr (assoc (gnus-agent-method) gnus-agent-history-buffers)))
687
688 (defun gnus-agent-open-history ()
689   (save-excursion
690     (push (cons (gnus-agent-method)
691                 (set-buffer (gnus-get-buffer-create
692                              (format " *Gnus agent %s history*"
693                                      (gnus-agent-method)))))
694           gnus-agent-history-buffers)
695     (mm-disable-multibyte) ;; everything is binary
696     (erase-buffer)
697     (insert "\n")
698     (let ((file (gnus-agent-lib-file "history")))
699       (when (file-exists-p file)
700         (nnheader-insert-file-contents file))
701       (set (make-local-variable 'gnus-agent-file-name) file))))
702
703 (defun gnus-agent-save-history ()
704   (save-excursion
705     (set-buffer gnus-agent-current-history)
706     (gnus-make-directory (file-name-directory gnus-agent-file-name))
707     (let ((coding-system-for-write gnus-agent-file-coding-system))
708       (write-region (1+ (point-min)) (point-max)
709                     gnus-agent-file-name nil 'silent))))
710
711 (defun gnus-agent-close-history ()
712   (when (gnus-buffer-live-p gnus-agent-current-history)
713     (kill-buffer gnus-agent-current-history)
714     (setq gnus-agent-history-buffers
715           (delq (assoc (gnus-agent-method) gnus-agent-history-buffers)
716                 gnus-agent-history-buffers))))
717
718 (defun gnus-agent-enter-history (id group-arts date)
719   (save-excursion
720     (set-buffer gnus-agent-current-history)
721     (goto-char (point-max))
722     (let ((p (point)))
723       (insert id "\t" (number-to-string date) "\t")
724       (while group-arts
725         (insert (format "%S" (intern (caar group-arts)))
726                 " " (number-to-string (cdr (pop group-arts)))
727                 " "))
728       (insert "\n")
729       (while (search-backward "\\." p t)
730         (delete-char 1)))))
731
732 (defun gnus-agent-article-in-history-p (id)
733   (save-excursion
734     (set-buffer (gnus-agent-history-buffer))
735     (goto-char (point-min))
736     (search-forward (concat "\n" id "\t") nil t)))
737
738 (defun gnus-agent-history-path (id)
739   (save-excursion
740     (set-buffer (gnus-agent-history-buffer))
741     (goto-char (point-min))
742     (when (search-forward (concat "\n" id "\t") nil t)
743       (let ((method (gnus-agent-method)))
744         (let (paths group)
745           (while (not (numberp (setq group (read (current-buffer)))))
746             (push (concat method "/" group) paths))
747           (nreverse paths))))))
748
749 ;;;
750 ;;; Fetching
751 ;;;
752
753 (defun gnus-agent-fetch-articles (group articles)
754   "Fetch ARTICLES from GROUP and put them into the Agent."
755   (when articles
756     ;; Prune off articles that we have already fetched.
757     (while (and articles
758                 (cdr (assq (car articles) gnus-agent-article-alist)))
759       (pop articles))
760     (let ((arts articles))
761       (while (cdr arts)
762         (if (cdr (assq (cadr arts) gnus-agent-article-alist))
763             (setcdr arts (cddr arts))
764           (setq arts (cdr arts)))))
765     (when articles
766       (let ((dir (concat
767                   (gnus-agent-directory)
768                   (gnus-agent-group-path group) "/"))
769             (date (time-to-days (current-time)))
770             (case-fold-search t)
771             pos crosses id elem)
772         (gnus-make-directory dir)
773         (gnus-message 7 "Fetching articles for %s..." group)
774         ;; Fetch the articles from the backend.
775         (if (gnus-check-backend-function 'retrieve-articles group)
776             (setq pos (gnus-retrieve-articles articles group))
777           (with-temp-buffer
778             (let (article)
779               (while (setq article (pop articles))
780                 (when (or 
781                        (gnus-backlog-request-article group article 
782                                                      nntp-server-buffer)
783                        (gnus-request-article article group))
784                   (goto-char (point-max))
785                   (push (cons article (point)) pos)
786                   (insert-buffer-substring nntp-server-buffer)))
787               (copy-to-buffer nntp-server-buffer (point-min) (point-max))
788               (setq pos (nreverse pos)))))
789         ;; Then save these articles into the Agent.
790         (save-excursion
791           (set-buffer nntp-server-buffer)
792           (while pos
793             (narrow-to-region (cdar pos) (or (cdadr pos) (point-max)))
794             (goto-char (point-min))
795             (when (search-forward "\n\n" nil t)
796               (when (search-backward "\nXrefs: " nil t)
797                 ;; Handle crossposting.
798                 (skip-chars-forward "^ ")
799                 (skip-chars-forward " ")
800                 (setq crosses nil)
801                 (while (looking-at "\\([^: \n]+\\):\\([0-9]+\\) +")
802                   (push (cons (buffer-substring (match-beginning 1)
803                                                 (match-end 1))
804                               (buffer-substring (match-beginning 2)
805                                                 (match-end 2)))
806                         crosses)
807                   (goto-char (match-end 0)))
808                 (gnus-agent-crosspost crosses (caar pos))))
809             (goto-char (point-min))
810             (if (not (re-search-forward "^Message-ID: *<\\([^>\n]+\\)>" nil t))
811                 (setq id "No-Message-ID-in-article")
812               (setq id (buffer-substring (match-beginning 1) (match-end 1))))
813             (let ((coding-system-for-write
814                    gnus-agent-file-coding-system))
815               (write-region (point-min) (point-max)
816                             (concat dir (number-to-string (caar pos)))
817                             nil 'silent))
818             (when (setq elem (assq (caar pos) gnus-agent-article-alist))
819               (setcdr elem t))
820             (gnus-agent-enter-history
821              id (or crosses (list (cons group (caar pos)))) date)
822             (widen)
823             (pop pos)))
824         (gnus-agent-save-alist group)))))
825
826 (defun gnus-agent-crosspost (crosses article)
827   (let (gnus-agent-article-alist group alist beg end)
828     (save-excursion
829       (set-buffer gnus-agent-overview-buffer)
830       (when (nnheader-find-nov-line article)
831         (forward-word 1)
832         (setq beg (point))
833         (setq end (progn (forward-line 1) (point)))))
834     (while crosses
835       (setq group (caar crosses))
836       (unless (setq alist (assoc group gnus-agent-group-alist))
837         (push (setq alist (list group (gnus-agent-load-alist (caar crosses))))
838               gnus-agent-group-alist))
839       (setcdr alist (cons (cons (cdar crosses) t) (cdr alist)))
840       (save-excursion
841         (set-buffer (gnus-get-buffer-create (format " *Gnus agent overview %s*"
842                                                     group)))
843         (when (= (point-max) (point-min))
844           (push (cons group (current-buffer)) gnus-agent-buffer-alist)
845           (ignore-errors
846             (nnheader-insert-file-contents
847              (gnus-agent-article-name ".overview" group))))
848         (nnheader-find-nov-line (string-to-number (cdar crosses)))
849         (insert (string-to-number (cdar crosses)))
850         (insert-buffer-substring gnus-agent-overview-buffer beg end))
851       (pop crosses))))
852
853 (defun gnus-agent-flush-cache ()
854   (save-excursion
855     (while gnus-agent-buffer-alist
856       (set-buffer (cdar gnus-agent-buffer-alist))
857       (let ((coding-system-for-write
858              gnus-agent-file-coding-system))
859         (write-region (point-min) (point-max)
860                       (gnus-agent-article-name ".overview"
861                                                (caar gnus-agent-buffer-alist))
862                       nil 'silent))
863       (pop gnus-agent-buffer-alist))
864     (while gnus-agent-group-alist
865       (with-temp-file (caar gnus-agent-group-alist)
866         (princ (cdar gnus-agent-group-alist))
867         (insert "\n"))
868       (pop gnus-agent-group-alist))))
869
870 (defun gnus-agent-fetch-headers (group &optional force)
871   (let ((articles (gnus-list-of-unread-articles group))
872         (gnus-decode-encoded-word-function 'identity)
873         (file (gnus-agent-article-name ".overview" group)))
874     ;; Add article with marks to list of article headers we want to fetch.
875     (dolist (arts (gnus-info-marks (gnus-get-info group)))
876       (setq articles (union (gnus-uncompress-sequence (cdr arts))
877                             articles)))
878     (setq articles (sort articles '<))
879     ;; Remove known articles.
880     (when (gnus-agent-load-alist group)
881       (setq articles (gnus-sorted-intersection
882                       articles
883                       (gnus-uncompress-range
884                        (cons (1+ (caar (last gnus-agent-article-alist)))
885                              (cdr (gnus-active group)))))))
886     ;; Fetch them.
887     (gnus-make-directory (nnheader-translate-file-chars
888                           (file-name-directory file) t))
889     (when articles
890       (gnus-message 7 "Fetching headers for %s..." group)
891       (save-excursion
892         (set-buffer nntp-server-buffer)
893         (unless (eq 'nov (gnus-retrieve-headers articles group))
894           (nnvirtual-convert-headers))
895         ;; Save these headers for later processing.
896         (copy-to-buffer gnus-agent-overview-buffer (point-min) (point-max))
897         (when (file-exists-p file)
898           (gnus-agent-braid-nov group articles file))
899         (let ((coding-system-for-write
900                gnus-agent-file-coding-system))
901           (write-region (point-min) (point-max) file nil 'silent))
902         (gnus-agent-save-alist group articles nil)
903         (gnus-agent-enter-history
904          "last-header-fetched-for-session"
905          (list (cons group (nth (- (length  articles) 1) articles)))
906          (time-to-days (current-time)))
907         articles))))
908
909 (defsubst gnus-agent-copy-nov-line (article)
910   (let (b e)
911     (set-buffer gnus-agent-overview-buffer)
912     (setq b (point))
913     (if (eq article (read (current-buffer)))
914         (setq e (progn (forward-line 1) (point)))
915       (progn
916         (beginning-of-line)
917         (setq e b)))
918     (set-buffer nntp-server-buffer)
919     (insert-buffer-substring gnus-agent-overview-buffer b e)))
920
921 (defun gnus-agent-braid-nov (group articles file)
922   (set-buffer gnus-agent-overview-buffer)
923   (goto-char (point-min))
924   (set-buffer nntp-server-buffer)
925   (erase-buffer)
926   (nnheader-insert-file-contents file)
927   (goto-char (point-max))
928   (if (or (= (point-min) (point-max))
929           (progn
930             (forward-line -1)
931             (< (read (current-buffer)) (car articles))))
932       ;; We have only headers that are after the older headers,
933       ;; so we just append them.
934       (progn
935         (goto-char (point-max))
936         (insert-buffer-substring gnus-agent-overview-buffer))
937     ;; We do it the hard way.
938     (nnheader-find-nov-line (car articles))
939     (gnus-agent-copy-nov-line (car articles))
940     (pop articles)
941     (while (and articles
942                 (not (eobp)))
943       (while (and (not (eobp))
944                   (< (read (current-buffer)) (car articles)))
945         (forward-line 1))
946       (beginning-of-line)
947       (unless (eobp)
948         (gnus-agent-copy-nov-line (car articles))
949         (setq articles (cdr articles))))
950     (when articles
951       (let (b e)
952         (set-buffer gnus-agent-overview-buffer)
953         (setq b (point)
954               e (point-max))
955         (set-buffer nntp-server-buffer)
956         (insert-buffer-substring gnus-agent-overview-buffer b e)))))
957
958 (defun gnus-agent-load-alist (group &optional dir)
959   "Load the article-state alist for GROUP."
960   (setq gnus-agent-article-alist
961         (gnus-agent-read-file
962          (if dir
963              (concat dir ".agentview")
964            (gnus-agent-article-name ".agentview" group)))))
965
966 (defun gnus-agent-save-alist (group &optional articles state dir)
967   "Save the article-state alist for GROUP."
968   (let ((file-name-coding-system nnmail-pathname-coding-system))
969       (with-temp-file (if dir
970                           (concat dir ".agentview")
971                         (gnus-agent-article-name ".agentview" group))
972         (princ (setq gnus-agent-article-alist
973                      (nconc gnus-agent-article-alist
974                             (mapcar (lambda (article) (cons article state))
975                                     articles)))
976                (current-buffer))
977         (insert "\n"))))
978
979 (defun gnus-agent-article-name (article group)
980   (concat (gnus-agent-directory) (gnus-agent-group-path group) "/"
981           (if (stringp article) article (string-to-number article))))
982
983 (defun gnus-agent-batch-confirmation (msg)
984   "Show error message and return t."
985   (gnus-message 1 msg)
986   t)
987
988 ;;;###autoload
989 (defun gnus-agent-batch-fetch ()
990   "Start Gnus and fetch session."
991   (interactive)
992   (gnus)
993   (let ((gnus-agent-confirmation-function 'gnus-agent-batch-confirmation))
994     (gnus-agent-fetch-session))
995   (gnus-group-exit))
996
997 (defun gnus-agent-fetch-session ()
998   "Fetch all articles and headers that are eligible for fetching."
999   (interactive)
1000   (unless gnus-agent-covered-methods
1001     (error "No servers are covered by the Gnus agent"))
1002   (unless gnus-plugged
1003     (error "Can't fetch articles while Gnus is unplugged"))
1004   (let ((methods gnus-agent-covered-methods)
1005         groups group gnus-command-method)
1006     (save-excursion
1007       (while methods
1008         (condition-case err
1009             (progn
1010               (setq gnus-command-method (car methods))
1011               (when (or (gnus-server-opened gnus-command-method)
1012                         (gnus-open-server gnus-command-method))
1013                 (setq groups (gnus-groups-from-server (car methods)))
1014                 (gnus-agent-with-fetch
1015                   (while (setq group (pop groups))
1016                     (when (<= (gnus-group-level group) gnus-agent-handle-level)
1017                       (gnus-agent-fetch-group-1 group gnus-command-method))))))
1018           (error 
1019            (unless (funcall gnus-agent-confirmation-function
1020                             (format "Error (%s).  Continue? " err))
1021              (error "Cannot fetch articles into the Gnus agent."))))
1022         (pop methods))
1023       (gnus-message 6 "Finished fetching articles into the Gnus agent"))))
1024
1025 (defun gnus-agent-fetch-group-1 (group method)
1026   "Fetch GROUP."
1027   (let ((gnus-command-method method)
1028         (gnus-newsgroup-name group)
1029         gnus-newsgroup-dependencies gnus-newsgroup-headers
1030         gnus-newsgroup-scored gnus-headers gnus-score
1031         gnus-use-cache articles arts
1032         category predicate info marks score-param
1033         (gnus-summary-expunge-below gnus-summary-expunge-below)
1034         (gnus-summary-mark-below gnus-summary-mark-below)
1035         (gnus-orphan-score gnus-orphan-score)
1036         ;; Maybe some other gnus-summary local variables should also
1037         ;; be put here.
1038         )
1039     (unless (gnus-check-group group)
1040       (error "Can't open server for %s" group))
1041     ;; Fetch headers.
1042     (when (and (or (gnus-active group) (gnus-activate-group group))
1043                (setq articles (gnus-agent-fetch-headers group))
1044                (progn
1045                  ;; Parse them and see which articles we want to fetch.
1046                  (setq gnus-newsgroup-dependencies
1047                        (make-vector (length articles) 0))
1048                  ;; No need to call `gnus-get-newsgroup-headers-xover' with
1049                  ;; the entire .overview for group as we still have the just
1050                  ;; downloaded headers in `gnus-agent-overview-buffer'.
1051                  (let ((nntp-server-buffer gnus-agent-overview-buffer))
1052                    (setq gnus-newsgroup-headers
1053                          (gnus-get-newsgroup-headers-xover articles nil nil 
1054                                                            group)))
1055                  ;; `gnus-agent-overview-buffer' may be killed for
1056                  ;; timeout reason.  If so, recreate it.
1057                  (gnus-agent-create-buffer)))
1058       (setq category (gnus-group-category group))
1059       (setq predicate
1060             (gnus-get-predicate
1061              (or (gnus-group-find-parameter group 'agent-predicate t)
1062                  (cadr category))))
1063       ;; Do we want to download everything, or nothing?
1064       (if (or (eq (caaddr predicate) 'gnus-agent-true)
1065               (eq (caaddr predicate) 'gnus-agent-false))
1066           ;; Yes.
1067           (setq arts (symbol-value
1068                       (cadr (assoc (caaddr predicate)
1069                                    '((gnus-agent-true articles)
1070                                      (gnus-agent-false nil))))))
1071         ;; No, we need to decide what we want.
1072         (setq score-param
1073               (let ((score-method
1074                      (or
1075                       (gnus-group-find-parameter group 'agent-score t)
1076                       (caddr category))))
1077                 (when score-method
1078                   (require 'gnus-score)
1079                   (if (eq score-method 'file)
1080                       (let ((entries
1081                              (gnus-score-load-files
1082                               (gnus-all-score-files group)))
1083                             list score-file)
1084                         (while (setq list (car entries))
1085                           (push (car list) score-file)
1086                           (setq list (cdr list))
1087                           (while list
1088                             (when (member (caar list)
1089                                           gnus-agent-scoreable-headers)
1090                               (push (car list) score-file))
1091                             (setq list (cdr list)))
1092                           (setq score-param
1093                                 (append score-param (list (nreverse score-file)))
1094                                 score-file nil entries (cdr entries)))
1095                         (list score-param))
1096                     (if (stringp (car score-method))
1097                         score-method
1098                       (list (list score-method)))))))
1099         (when score-param
1100           (gnus-score-headers score-param))
1101         (setq arts nil)
1102         (while (setq gnus-headers (pop gnus-newsgroup-headers))
1103           (setq gnus-score
1104                 (or (cdr (assq (mail-header-number gnus-headers)
1105                                gnus-newsgroup-scored))
1106                     gnus-summary-default-score))
1107           (when (funcall predicate)
1108             (push (mail-header-number gnus-headers)
1109                   arts))))
1110       ;; Fetch the articles.
1111       (when arts
1112         (gnus-agent-fetch-articles group arts)))
1113     ;; Perhaps we have some additional articles to fetch.
1114     (setq arts (assq 'download (gnus-info-marks
1115                                 (setq info (gnus-get-info group)))))
1116     (when (cdr arts)
1117       (gnus-agent-fetch-articles
1118        group (gnus-uncompress-range (cdr arts)))
1119       (setq marks (delq arts (gnus-info-marks info)))
1120       (gnus-info-set-marks info marks)
1121       (gnus-dribble-enter
1122        (concat "(gnus-group-set-info '"
1123                (gnus-prin1-to-string info)
1124                ")")))))
1125
1126 ;;;
1127 ;;; Agent Category Mode
1128 ;;;
1129
1130 (defvar gnus-category-mode-hook nil
1131   "Hook run in `gnus-category-mode' buffers.")
1132
1133 (defvar gnus-category-line-format "     %(%20c%): %g\n"
1134   "Format of category lines.")
1135
1136 (defvar gnus-category-mode-line-format "Gnus: %%b"
1137   "The format specification for the category mode line.")
1138
1139 (defvar gnus-agent-short-article 100
1140   "Articles that have fewer lines than this are short.")
1141
1142 (defvar gnus-agent-long-article 200
1143   "Articles that have more lines than this are long.")
1144
1145 (defvar gnus-agent-low-score 0
1146   "Articles that have a score lower than this have a low score.")
1147
1148 (defvar gnus-agent-high-score 0
1149   "Articles that have a score higher than this have a high score.")
1150
1151
1152 ;;; Internal variables.
1153
1154 (defvar gnus-category-buffer "*Agent Category*")
1155
1156 (defvar gnus-category-line-format-alist
1157   `((?c gnus-tmp-name ?s)
1158     (?g gnus-tmp-groups ?d)))
1159
1160 (defvar gnus-category-mode-line-format-alist
1161   `((?u user-defined ?s)))
1162
1163 (defvar gnus-category-line-format-spec nil)
1164 (defvar gnus-category-mode-line-format-spec nil)
1165
1166 (defvar gnus-category-mode-map nil)
1167 (put 'gnus-category-mode 'mode-class 'special)
1168
1169 (unless gnus-category-mode-map
1170   (setq gnus-category-mode-map (make-sparse-keymap))
1171   (suppress-keymap gnus-category-mode-map)
1172
1173   (gnus-define-keys gnus-category-mode-map
1174     "q" gnus-category-exit
1175     "k" gnus-category-kill
1176     "c" gnus-category-copy
1177     "a" gnus-category-add
1178     "p" gnus-category-edit-predicate
1179     "g" gnus-category-edit-groups
1180     "s" gnus-category-edit-score
1181     "l" gnus-category-list
1182
1183     "\C-c\C-i" gnus-info-find-node
1184     "\C-c\C-b" gnus-bug))
1185
1186 (defvar gnus-category-menu-hook nil
1187   "*Hook run after the creation of the menu.")
1188
1189 (defun gnus-category-make-menu-bar ()
1190   (gnus-turn-off-edit-menu 'category)
1191   (unless (boundp 'gnus-category-menu)
1192     (easy-menu-define
1193      gnus-category-menu gnus-category-mode-map ""
1194      '("Categories"
1195        ["Add" gnus-category-add t]
1196        ["Kill" gnus-category-kill t]
1197        ["Copy" gnus-category-copy t]
1198        ["Edit predicate" gnus-category-edit-predicate t]
1199        ["Edit score" gnus-category-edit-score t]
1200        ["Edit groups" gnus-category-edit-groups t]
1201        ["Exit" gnus-category-exit t]))
1202
1203     (gnus-run-hooks 'gnus-category-menu-hook)))
1204
1205 (defun gnus-category-mode ()
1206   "Major mode for listing and editing agent categories.
1207
1208 All normal editing commands are switched off.
1209 \\<gnus-category-mode-map>
1210 For more in-depth information on this mode, read the manual
1211 (`\\[gnus-info-find-node]').
1212
1213 The following commands are available:
1214
1215 \\{gnus-category-mode-map}"
1216   (interactive)
1217   (when (gnus-visual-p 'category-menu 'menu)
1218     (gnus-category-make-menu-bar))
1219   (kill-all-local-variables)
1220   (gnus-simplify-mode-line)
1221   (setq major-mode 'gnus-category-mode)
1222   (setq mode-name "Category")
1223   (gnus-set-default-directory)
1224   (setq mode-line-process nil)
1225   (use-local-map gnus-category-mode-map)
1226   (buffer-disable-undo)
1227   (setq truncate-lines t)
1228   (setq buffer-read-only t)
1229   (gnus-run-hooks 'gnus-category-mode-hook))
1230
1231 (defalias 'gnus-category-position-point 'gnus-goto-colon)
1232
1233 (defun gnus-category-insert-line (category)
1234   (let* ((gnus-tmp-name (car category))
1235          (gnus-tmp-groups (length (cadddr category))))
1236     (beginning-of-line)
1237     (gnus-add-text-properties
1238      (point)
1239      (prog1 (1+ (point))
1240        ;; Insert the text.
1241        (eval gnus-category-line-format-spec))
1242      (list 'gnus-category gnus-tmp-name))))
1243
1244 (defun gnus-enter-category-buffer ()
1245   "Go to the Category buffer."
1246   (interactive)
1247   (gnus-category-setup-buffer)
1248   (gnus-configure-windows 'category)
1249   (gnus-category-prepare))
1250
1251 (defun gnus-category-setup-buffer ()
1252   (unless (get-buffer gnus-category-buffer)
1253     (save-excursion
1254       (set-buffer (gnus-get-buffer-create gnus-category-buffer))
1255       (gnus-category-mode))))
1256
1257 (defun gnus-category-prepare ()
1258   (gnus-set-format 'category-mode)
1259   (gnus-set-format 'category t)
1260   (let ((alist gnus-category-alist)
1261         (buffer-read-only nil))
1262     (erase-buffer)
1263     (while alist
1264       (gnus-category-insert-line (pop alist)))
1265     (goto-char (point-min))
1266     (gnus-category-position-point)))
1267
1268 (defun gnus-category-name ()
1269   (or (get-text-property (gnus-point-at-bol) 'gnus-category)
1270       (error "No category on the current line")))
1271
1272 (defun gnus-category-read ()
1273   "Read the category alist."
1274   (setq gnus-category-alist
1275         (or (gnus-agent-read-file
1276              (nnheader-concat gnus-agent-directory "lib/categories"))
1277             (list (list 'default 'short nil nil)))))
1278
1279 (defun gnus-category-write ()
1280   "Write the category alist."
1281   (setq gnus-category-predicate-cache nil
1282         gnus-category-group-cache nil)
1283   (gnus-make-directory (nnheader-concat gnus-agent-directory "lib"))
1284   (with-temp-file (nnheader-concat gnus-agent-directory "lib/categories")
1285     (prin1 gnus-category-alist (current-buffer))))
1286
1287 (defun gnus-category-edit-predicate (category)
1288   "Edit the predicate for CATEGORY."
1289   (interactive (list (gnus-category-name)))
1290   (let ((info (assq category gnus-category-alist)))
1291     (gnus-edit-form
1292      (cadr info) (format "Editing the predicate for category %s" category)
1293      `(lambda (predicate)
1294         (setcar (cdr (assq ',category gnus-category-alist)) predicate)
1295         (gnus-category-write)
1296         (gnus-category-list)))))
1297
1298 (defun gnus-category-edit-score (category)
1299   "Edit the score expression for CATEGORY."
1300   (interactive (list (gnus-category-name)))
1301   (let ((info (assq category gnus-category-alist)))
1302     (gnus-edit-form
1303      (caddr info)
1304      (format "Editing the score expression for category %s" category)
1305      `(lambda (groups)
1306         (setcar (cddr (assq ',category gnus-category-alist)) groups)
1307         (gnus-category-write)
1308         (gnus-category-list)))))
1309
1310 (defun gnus-category-edit-groups (category)
1311   "Edit the group list for CATEGORY."
1312   (interactive (list (gnus-category-name)))
1313   (let ((info (assq category gnus-category-alist)))
1314     (gnus-edit-form
1315      (cadddr info) (format "Editing the group list for category %s" category)
1316      `(lambda (groups)
1317         (setcar (nthcdr 3 (assq ',category gnus-category-alist)) groups)
1318         (gnus-category-write)
1319         (gnus-category-list)))))
1320
1321 (defun gnus-category-kill (category)
1322   "Kill the current category."
1323   (interactive (list (gnus-category-name)))
1324   (let ((info (assq category gnus-category-alist))
1325         (buffer-read-only nil))
1326     (gnus-delete-line)
1327     (setq gnus-category-alist (delq info gnus-category-alist))
1328     (gnus-category-write)))
1329
1330 (defun gnus-category-copy (category to)
1331   "Copy the current category."
1332   (interactive (list (gnus-category-name) (intern (read-string "New name: "))))
1333   (let ((info (assq category gnus-category-alist)))
1334     (push (list to (gnus-copy-sequence (cadr info))
1335                 (gnus-copy-sequence (caddr info)) nil)
1336           gnus-category-alist)
1337     (gnus-category-write)
1338     (gnus-category-list)))
1339
1340 (defun gnus-category-add (category)
1341   "Create a new category."
1342   (interactive "SCategory name: ")
1343   (when (assq category gnus-category-alist)
1344     (error "Category %s already exists" category))
1345   (push (list category 'false nil nil)
1346         gnus-category-alist)
1347   (gnus-category-write)
1348   (gnus-category-list))
1349
1350 (defun gnus-category-list ()
1351   "List all categories."
1352   (interactive)
1353   (gnus-category-prepare))
1354
1355 (defun gnus-category-exit ()
1356   "Return to the group buffer."
1357   (interactive)
1358   (kill-buffer (current-buffer))
1359   (gnus-configure-windows 'group t))
1360
1361 ;; To avoid having 8-bit characters in the source file.
1362 (defvar gnus-category-not (list '! 'not (intern (format "%c" 172))))
1363
1364 (defvar gnus-category-predicate-alist
1365   '((spam . gnus-agent-spam-p)
1366     (short . gnus-agent-short-p)
1367     (long . gnus-agent-long-p)
1368     (low . gnus-agent-low-scored-p)
1369     (high . gnus-agent-high-scored-p)
1370     (true . gnus-agent-true)
1371     (false . gnus-agent-false))
1372   "Mapping from short score predicate symbols to predicate functions.")
1373
1374 (defun gnus-agent-spam-p ()
1375   "Say whether an article is spam or not."
1376   (unless gnus-agent-spam-hashtb
1377     (setq gnus-agent-spam-hashtb (gnus-make-hashtable 1000)))
1378   (if (not (equal (mail-header-references gnus-headers) ""))
1379       nil
1380     (let ((string (gnus-simplify-subject (mail-header-subject gnus-headers))))
1381       (prog1
1382           (gnus-gethash string gnus-agent-spam-hashtb)
1383         (gnus-sethash string t gnus-agent-spam-hashtb)))))
1384
1385 (defun gnus-agent-short-p ()
1386   "Say whether an article is short or not."
1387   (< (mail-header-lines gnus-headers) gnus-agent-short-article))
1388
1389 (defun gnus-agent-long-p ()
1390   "Say whether an article is long or not."
1391   (> (mail-header-lines gnus-headers) gnus-agent-long-article))
1392
1393 (defun gnus-agent-low-scored-p ()
1394   "Say whether an article has a low score or not."
1395   (< gnus-score gnus-agent-low-score))
1396
1397 (defun gnus-agent-high-scored-p ()
1398   "Say whether an article has a high score or not."
1399   (> gnus-score gnus-agent-high-score))
1400
1401 (defun gnus-category-make-function (cat)
1402   "Make a function from category CAT."
1403   `(lambda () ,(gnus-category-make-function-1 cat)))
1404
1405 (defun gnus-agent-true ()
1406   "Return t."
1407   t)
1408
1409 (defun gnus-agent-false ()
1410   "Return nil."
1411   nil)
1412
1413 (defun gnus-category-make-function-1 (cat)
1414   "Make a function from category CAT."
1415   (cond
1416    ;; Functions are just returned as is.
1417    ((or (symbolp cat)
1418         (gnus-functionp cat))
1419     `(,(or (cdr (assq cat gnus-category-predicate-alist))
1420            cat)))
1421    ;; More complex category.
1422    ((consp cat)
1423     `(,(cond
1424         ((memq (car cat) '(& and))
1425          'and)
1426         ((memq (car cat) '(| or))
1427          'or)
1428         ((memq (car cat) gnus-category-not)
1429          'not))
1430       ,@(mapcar 'gnus-category-make-function-1 (cdr cat))))
1431    (t
1432     (error "Unknown category type: %s" cat))))
1433
1434 (defun gnus-get-predicate (predicate)
1435   "Return the predicate for CATEGORY."
1436   (or (cdr (assoc predicate gnus-category-predicate-cache))
1437       (cdar (push (cons predicate
1438                         (gnus-category-make-function predicate))
1439                   gnus-category-predicate-cache))))
1440
1441 (defun gnus-group-category (group)
1442   "Return the category GROUP belongs to."
1443   (unless gnus-category-group-cache
1444     (setq gnus-category-group-cache (gnus-make-hashtable 1000))
1445     (let ((cs gnus-category-alist)
1446           groups cat)
1447       (while (setq cat (pop cs))
1448         (setq groups (cadddr cat))
1449         (while groups
1450           (gnus-sethash (pop groups) cat gnus-category-group-cache)))))
1451   (or (gnus-gethash group gnus-category-group-cache)
1452       (assq 'default gnus-category-alist)))
1453
1454 (defun gnus-agent-expire ()
1455   "Expire all old articles."
1456   (interactive)
1457   (let ((methods gnus-agent-covered-methods)
1458         (day (- (time-to-days (current-time)) gnus-agent-expire-days))
1459         gnus-command-method sym group articles
1460         history overview file histories elem art nov-file low info
1461         unreads marked article orig lowest highest)
1462     (save-excursion
1463       (setq overview (gnus-get-buffer-create " *expire overview*"))
1464       (while (setq gnus-command-method (pop methods))
1465         (when (file-exists-p (gnus-agent-lib-file "active"))
1466           (with-temp-buffer
1467             (nnheader-insert-file-contents (gnus-agent-lib-file "active"))
1468             (gnus-active-to-gnus-format 
1469              gnus-command-method
1470              (setq orig (gnus-make-hashtable
1471                          (count-lines (point-min) (point-max))))))
1472           (let ((expiry-hashtb (gnus-make-hashtable 1023)))
1473             (gnus-agent-open-history)
1474             (set-buffer
1475              (setq gnus-agent-current-history
1476                    (setq history (gnus-agent-history-buffer))))
1477             (goto-char (point-min))
1478             (when (> (buffer-size) 1)
1479               (goto-char (point-min))
1480               (while (not (eobp))
1481                 (skip-chars-forward "^\t")
1482                 (if (> (read (current-buffer)) day)
1483                     ;; New article; we don't expire it.
1484                     (forward-line 1)
1485                   ;; Old article.  Schedule it for possible nuking.
1486                   (while (not (eolp))
1487                     (setq sym (let ((obarray expiry-hashtb) s)
1488                                 (setq s (read (current-buffer)))
1489                                 (if (stringp s) (intern s) s)))
1490                     (if (boundp sym)
1491                         (set sym (cons (cons (read (current-buffer)) (point))
1492                                        (symbol-value sym)))
1493                       (set sym (list (cons (read (current-buffer)) (point)))))
1494                     (skip-chars-forward " "))
1495                   (forward-line 1)))
1496               ;; We now have all articles that can possibly be expired.
1497               (mapatoms
1498                (lambda (sym)
1499                  (setq group (symbol-name sym)
1500                        articles (sort (symbol-value sym) 'car-less-than-car)
1501                        low (car (gnus-active group))
1502                        info (gnus-get-info group)
1503                        unreads (ignore-errors
1504                                  (gnus-list-of-unread-articles group))
1505                        marked (nconc
1506                                (gnus-uncompress-range
1507                                 (cdr (assq 'tick (gnus-info-marks info))))
1508                                (gnus-uncompress-range
1509                                 (cdr (assq 'dormant
1510                                            (gnus-info-marks info)))))
1511                        nov-file (gnus-agent-article-name ".overview" group)
1512                        lowest nil
1513                        highest nil)
1514                  (gnus-agent-load-alist group)
1515                  (gnus-message 5 "Expiring articles in %s" group)
1516                  (set-buffer overview)
1517                  (erase-buffer)
1518                  (when (file-exists-p nov-file)
1519                    (nnheader-insert-file-contents nov-file))
1520                  (goto-char (point-min))
1521                  (setq article 0)
1522                  (while (setq elem (pop articles))
1523                    (setq article (car elem))
1524                    (when (or (null low)
1525                              (< article low)
1526                              gnus-agent-expire-all
1527                              (and (not (memq article unreads))
1528                                   (not (memq article marked))))
1529                      ;; Find and nuke the NOV line.
1530                      (while (and (not (eobp))
1531                                  (or (not (numberp
1532                                            (setq art (read (current-buffer)))))
1533                                      (< art article)))
1534                        (if (and (numberp art) 
1535                                 (file-exists-p
1536                                  (gnus-agent-article-name
1537                                   (number-to-string art) group)))
1538                            (progn
1539                              (unless lowest
1540                                (setq lowest art))
1541                              (setq highest art)
1542                              (forward-line 1))
1543                          ;; Remove old NOV lines that have no articles.
1544                          (gnus-delete-line)))
1545                      (if (or (eobp)
1546                              (/= art article))
1547                          (beginning-of-line)
1548                        (gnus-delete-line))
1549                      ;; Nuke the article.
1550                      (when (file-exists-p
1551                             (setq file (gnus-agent-article-name
1552                                         (number-to-string article)
1553                                         group)))
1554                        (delete-file file))
1555                      ;; Schedule the history line for nuking.
1556                      (push (cdr elem) histories)))
1557                  (gnus-make-directory (file-name-directory nov-file))
1558                  (let ((coding-system-for-write
1559                         gnus-agent-file-coding-system))
1560                    (write-region (point-min) (point-max) nov-file nil 'silent))
1561                  ;; Delete the unwanted entries in the alist.
1562                  (setq gnus-agent-article-alist
1563                        (sort gnus-agent-article-alist 'car-less-than-car))
1564                  (let* ((alist gnus-agent-article-alist)
1565                         (prev (cons nil alist))
1566                         (first prev)
1567                         expired)
1568                    (while (and alist
1569                                (<= (caar alist) article))
1570                      (if (or (not (cdar alist))
1571                              (not (file-exists-p
1572                                    (gnus-agent-article-name
1573                                     (number-to-string
1574                                      (caar alist))
1575                                     group))))
1576                          (progn
1577                            (push (caar alist) expired)
1578                            (setcdr prev (setq alist (cdr alist))))
1579                        (setq prev alist
1580                              alist (cdr alist))))
1581                    (setq gnus-agent-article-alist (cdr first))
1582                    (gnus-agent-save-alist group)
1583                    ;; Mark all articles up to the first article
1584                    ;; in `gnus-article-alist' as read.
1585                    (when (and info (caar gnus-agent-article-alist))
1586                      (setcar (nthcdr 2 info)
1587                              (gnus-range-add
1588                               (nth 2 info)
1589                               (cons 1 (- (caar gnus-agent-article-alist) 1)))))
1590                    ;; Maybe everything has been expired from `gnus-article-alist'
1591                    ;; and so the above marking as read could not be conducted,
1592                    ;; or there are expired article within the range of the alist.
1593                    (when (and info
1594                               expired
1595                               (or (not (caar gnus-agent-article-alist))
1596                                   (> (car expired)
1597                                      (caar gnus-agent-article-alist))))
1598                      (setcar (nthcdr 2 info)
1599                              (gnus-add-to-range
1600                               (nth 2 info)
1601                               (nreverse expired))))
1602                    (gnus-dribble-enter
1603                     (concat "(gnus-group-set-info '"
1604                             (gnus-prin1-to-string info)
1605                             ")")))
1606                  (when lowest
1607                    (if (gnus-gethash group orig)
1608                        (setcar (gnus-gethash group orig) lowest)
1609                      (gnus-sethash group (cons lowest highest) orig))))
1610                expiry-hashtb)
1611               (set-buffer history)
1612               (setq histories (nreverse (sort histories '<)))
1613               (while histories
1614                 (goto-char (pop histories))
1615                 (gnus-delete-line))
1616               (gnus-agent-save-history)
1617               (gnus-agent-close-history)
1618               (gnus-write-active-file
1619                (gnus-agent-lib-file "active") orig))
1620             (gnus-message 4 "Expiry...done")))))))
1621
1622 ;;;###autoload
1623 (defun gnus-agent-batch ()
1624   (interactive)
1625   (let ((init-file-user "")
1626         (gnus-always-read-dribble-file t))
1627     (gnus))
1628   (gnus-group-send-drafts)
1629   (gnus-agent-fetch-session))
1630
1631 (provide 'gnus-agent)
1632
1633 ;;; gnus-agent.el ends here