Require timer.
[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     (unless (gnus-check-group group)
1034       (error "Can't open server for %s" group))
1035     ;; Fetch headers.
1036     (when (and (or (gnus-active group) (gnus-activate-group group))
1037                (setq articles (gnus-agent-fetch-headers group))
1038                (progn
1039                  ;; Parse them and see which articles we want to fetch.
1040                  (setq gnus-newsgroup-dependencies
1041                        (make-vector (length articles) 0))
1042                  ;; No need to call `gnus-get-newsgroup-headers-xover' with
1043                  ;; the entire .overview for group as we still have the just
1044                  ;; downloaded headers in `gnus-agent-overview-buffer'.
1045                  (let ((nntp-server-buffer gnus-agent-overview-buffer))
1046                    (setq gnus-newsgroup-headers
1047                          (gnus-get-newsgroup-headers-xover articles nil nil 
1048                                                            group)))
1049                  ;; `gnus-agent-overview-buffer' may be killed for
1050                  ;; timeout reason.  If so, recreate it.
1051                  (gnus-agent-create-buffer)))
1052       (setq category (gnus-group-category group))
1053       (setq predicate
1054             (gnus-get-predicate
1055              (or (gnus-group-find-parameter group 'agent-predicate t)
1056                  (cadr category))))
1057       ;; Do we want to download everything, or nothing?
1058       (if (or (eq (caaddr predicate) 'gnus-agent-true)
1059               (eq (caaddr predicate) 'gnus-agent-false))
1060           ;; Yes.
1061           (setq arts (symbol-value
1062                       (cadr (assoc (caaddr predicate)
1063                                    '((gnus-agent-true articles)
1064                                      (gnus-agent-false nil))))))
1065         ;; No, we need to decide what we want.
1066         (setq score-param
1067               (let ((score-method
1068                      (or
1069                       (gnus-group-find-parameter group 'agent-score t)
1070                       (caddr category))))
1071                 (when score-method
1072                   (require 'gnus-score)
1073                   (if (eq score-method 'file)
1074                       (let ((entries
1075                              (gnus-score-load-files
1076                               (gnus-all-score-files group)))
1077                             list score-file)
1078                         (while (setq list (car entries))
1079                           (push (car list) score-file)
1080                           (setq list (cdr list))
1081                           (while list
1082                             (when (member (caar list)
1083                                           gnus-agent-scoreable-headers)
1084                               (push (car list) score-file))
1085                             (setq list (cdr list)))
1086                           (setq score-param
1087                                 (append score-param (list (nreverse score-file)))
1088                                 score-file nil entries (cdr entries)))
1089                         (list score-param))
1090                     (if (stringp (car score-method))
1091                         score-method
1092                       (list (list score-method)))))))
1093         (when score-param
1094           (gnus-score-headers score-param))
1095         (setq arts nil)
1096         (while (setq gnus-headers (pop gnus-newsgroup-headers))
1097           (setq gnus-score
1098                 (or (cdr (assq (mail-header-number gnus-headers)
1099                                gnus-newsgroup-scored))
1100                     gnus-summary-default-score))
1101           (when (funcall predicate)
1102             (push (mail-header-number gnus-headers)
1103                   arts))))
1104       ;; Fetch the articles.
1105       (when arts
1106         (gnus-agent-fetch-articles group arts)))
1107     ;; Perhaps we have some additional articles to fetch.
1108     (setq arts (assq 'download (gnus-info-marks
1109                                 (setq info (gnus-get-info group)))))
1110     (when (cdr arts)
1111       (gnus-agent-fetch-articles
1112        group (gnus-uncompress-range (cdr arts)))
1113       (setq marks (delq arts (gnus-info-marks info)))
1114       (gnus-info-set-marks info marks)
1115       (gnus-dribble-enter
1116        (concat "(gnus-group-set-info '"
1117                (gnus-prin1-to-string info)
1118                ")")))))
1119
1120 ;;;
1121 ;;; Agent Category Mode
1122 ;;;
1123
1124 (defvar gnus-category-mode-hook nil
1125   "Hook run in `gnus-category-mode' buffers.")
1126
1127 (defvar gnus-category-line-format "     %(%20c%): %g\n"
1128   "Format of category lines.")
1129
1130 (defvar gnus-category-mode-line-format "Gnus: %%b"
1131   "The format specification for the category mode line.")
1132
1133 (defvar gnus-agent-short-article 100
1134   "Articles that have fewer lines than this are short.")
1135
1136 (defvar gnus-agent-long-article 200
1137   "Articles that have more lines than this are long.")
1138
1139 (defvar gnus-agent-low-score 0
1140   "Articles that have a score lower than this have a low score.")
1141
1142 (defvar gnus-agent-high-score 0
1143   "Articles that have a score higher than this have a high score.")
1144
1145
1146 ;;; Internal variables.
1147
1148 (defvar gnus-category-buffer "*Agent Category*")
1149
1150 (defvar gnus-category-line-format-alist
1151   `((?c gnus-tmp-name ?s)
1152     (?g gnus-tmp-groups ?d)))
1153
1154 (defvar gnus-category-mode-line-format-alist
1155   `((?u user-defined ?s)))
1156
1157 (defvar gnus-category-line-format-spec nil)
1158 (defvar gnus-category-mode-line-format-spec nil)
1159
1160 (defvar gnus-category-mode-map nil)
1161 (put 'gnus-category-mode 'mode-class 'special)
1162
1163 (unless gnus-category-mode-map
1164   (setq gnus-category-mode-map (make-sparse-keymap))
1165   (suppress-keymap gnus-category-mode-map)
1166
1167   (gnus-define-keys gnus-category-mode-map
1168     "q" gnus-category-exit
1169     "k" gnus-category-kill
1170     "c" gnus-category-copy
1171     "a" gnus-category-add
1172     "p" gnus-category-edit-predicate
1173     "g" gnus-category-edit-groups
1174     "s" gnus-category-edit-score
1175     "l" gnus-category-list
1176
1177     "\C-c\C-i" gnus-info-find-node
1178     "\C-c\C-b" gnus-bug))
1179
1180 (defvar gnus-category-menu-hook nil
1181   "*Hook run after the creation of the menu.")
1182
1183 (defun gnus-category-make-menu-bar ()
1184   (gnus-turn-off-edit-menu 'category)
1185   (unless (boundp 'gnus-category-menu)
1186     (easy-menu-define
1187      gnus-category-menu gnus-category-mode-map ""
1188      '("Categories"
1189        ["Add" gnus-category-add t]
1190        ["Kill" gnus-category-kill t]
1191        ["Copy" gnus-category-copy t]
1192        ["Edit predicate" gnus-category-edit-predicate t]
1193        ["Edit score" gnus-category-edit-score t]
1194        ["Edit groups" gnus-category-edit-groups t]
1195        ["Exit" gnus-category-exit t]))
1196
1197     (gnus-run-hooks 'gnus-category-menu-hook)))
1198
1199 (defun gnus-category-mode ()
1200   "Major mode for listing and editing agent categories.
1201
1202 All normal editing commands are switched off.
1203 \\<gnus-category-mode-map>
1204 For more in-depth information on this mode, read the manual
1205 (`\\[gnus-info-find-node]').
1206
1207 The following commands are available:
1208
1209 \\{gnus-category-mode-map}"
1210   (interactive)
1211   (when (gnus-visual-p 'category-menu 'menu)
1212     (gnus-category-make-menu-bar))
1213   (kill-all-local-variables)
1214   (gnus-simplify-mode-line)
1215   (setq major-mode 'gnus-category-mode)
1216   (setq mode-name "Category")
1217   (gnus-set-default-directory)
1218   (setq mode-line-process nil)
1219   (use-local-map gnus-category-mode-map)
1220   (buffer-disable-undo)
1221   (setq truncate-lines t)
1222   (setq buffer-read-only t)
1223   (gnus-run-hooks 'gnus-category-mode-hook))
1224
1225 (defalias 'gnus-category-position-point 'gnus-goto-colon)
1226
1227 (defun gnus-category-insert-line (category)
1228   (let* ((gnus-tmp-name (car category))
1229          (gnus-tmp-groups (length (cadddr category))))
1230     (beginning-of-line)
1231     (gnus-add-text-properties
1232      (point)
1233      (prog1 (1+ (point))
1234        ;; Insert the text.
1235        (eval gnus-category-line-format-spec))
1236      (list 'gnus-category gnus-tmp-name))))
1237
1238 (defun gnus-enter-category-buffer ()
1239   "Go to the Category buffer."
1240   (interactive)
1241   (gnus-category-setup-buffer)
1242   (gnus-configure-windows 'category)
1243   (gnus-category-prepare))
1244
1245 (defun gnus-category-setup-buffer ()
1246   (unless (get-buffer gnus-category-buffer)
1247     (save-excursion
1248       (set-buffer (gnus-get-buffer-create gnus-category-buffer))
1249       (gnus-category-mode))))
1250
1251 (defun gnus-category-prepare ()
1252   (gnus-set-format 'category-mode)
1253   (gnus-set-format 'category t)
1254   (let ((alist gnus-category-alist)
1255         (buffer-read-only nil))
1256     (erase-buffer)
1257     (while alist
1258       (gnus-category-insert-line (pop alist)))
1259     (goto-char (point-min))
1260     (gnus-category-position-point)))
1261
1262 (defun gnus-category-name ()
1263   (or (get-text-property (gnus-point-at-bol) 'gnus-category)
1264       (error "No category on the current line")))
1265
1266 (defun gnus-category-read ()
1267   "Read the category alist."
1268   (setq gnus-category-alist
1269         (or (gnus-agent-read-file
1270              (nnheader-concat gnus-agent-directory "lib/categories"))
1271             (list (list 'default 'short nil nil)))))
1272
1273 (defun gnus-category-write ()
1274   "Write the category alist."
1275   (setq gnus-category-predicate-cache nil
1276         gnus-category-group-cache nil)
1277   (gnus-make-directory (nnheader-concat gnus-agent-directory "lib"))
1278   (with-temp-file (nnheader-concat gnus-agent-directory "lib/categories")
1279     (prin1 gnus-category-alist (current-buffer))))
1280
1281 (defun gnus-category-edit-predicate (category)
1282   "Edit the predicate for CATEGORY."
1283   (interactive (list (gnus-category-name)))
1284   (let ((info (assq category gnus-category-alist)))
1285     (gnus-edit-form
1286      (cadr info) (format "Editing the predicate for category %s" category)
1287      `(lambda (predicate)
1288         (setcar (cdr (assq ',category gnus-category-alist)) predicate)
1289         (gnus-category-write)
1290         (gnus-category-list)))))
1291
1292 (defun gnus-category-edit-score (category)
1293   "Edit the score expression for CATEGORY."
1294   (interactive (list (gnus-category-name)))
1295   (let ((info (assq category gnus-category-alist)))
1296     (gnus-edit-form
1297      (caddr info)
1298      (format "Editing the score expression for category %s" category)
1299      `(lambda (groups)
1300         (setcar (cddr (assq ',category gnus-category-alist)) groups)
1301         (gnus-category-write)
1302         (gnus-category-list)))))
1303
1304 (defun gnus-category-edit-groups (category)
1305   "Edit the group list for CATEGORY."
1306   (interactive (list (gnus-category-name)))
1307   (let ((info (assq category gnus-category-alist)))
1308     (gnus-edit-form
1309      (cadddr info) (format "Editing the group list for category %s" category)
1310      `(lambda (groups)
1311         (setcar (nthcdr 3 (assq ',category gnus-category-alist)) groups)
1312         (gnus-category-write)
1313         (gnus-category-list)))))
1314
1315 (defun gnus-category-kill (category)
1316   "Kill the current category."
1317   (interactive (list (gnus-category-name)))
1318   (let ((info (assq category gnus-category-alist))
1319         (buffer-read-only nil))
1320     (gnus-delete-line)
1321     (setq gnus-category-alist (delq info gnus-category-alist))
1322     (gnus-category-write)))
1323
1324 (defun gnus-category-copy (category to)
1325   "Copy the current category."
1326   (interactive (list (gnus-category-name) (intern (read-string "New name: "))))
1327   (let ((info (assq category gnus-category-alist)))
1328     (push (list to (gnus-copy-sequence (cadr info))
1329                 (gnus-copy-sequence (caddr info)) nil)
1330           gnus-category-alist)
1331     (gnus-category-write)
1332     (gnus-category-list)))
1333
1334 (defun gnus-category-add (category)
1335   "Create a new category."
1336   (interactive "SCategory name: ")
1337   (when (assq category gnus-category-alist)
1338     (error "Category %s already exists" category))
1339   (push (list category 'false nil nil)
1340         gnus-category-alist)
1341   (gnus-category-write)
1342   (gnus-category-list))
1343
1344 (defun gnus-category-list ()
1345   "List all categories."
1346   (interactive)
1347   (gnus-category-prepare))
1348
1349 (defun gnus-category-exit ()
1350   "Return to the group buffer."
1351   (interactive)
1352   (kill-buffer (current-buffer))
1353   (gnus-configure-windows 'group t))
1354
1355 ;; To avoid having 8-bit characters in the source file.
1356 (defvar gnus-category-not (list '! 'not (intern (format "%c" 172))))
1357
1358 (defvar gnus-category-predicate-alist
1359   '((spam . gnus-agent-spam-p)
1360     (short . gnus-agent-short-p)
1361     (long . gnus-agent-long-p)
1362     (low . gnus-agent-low-scored-p)
1363     (high . gnus-agent-high-scored-p)
1364     (true . gnus-agent-true)
1365     (false . gnus-agent-false))
1366   "Mapping from short score predicate symbols to predicate functions.")
1367
1368 (defun gnus-agent-spam-p ()
1369   "Say whether an article is spam or not."
1370   (unless gnus-agent-spam-hashtb
1371     (setq gnus-agent-spam-hashtb (gnus-make-hashtable 1000)))
1372   (if (not (equal (mail-header-references gnus-headers) ""))
1373       nil
1374     (let ((string (gnus-simplify-subject (mail-header-subject gnus-headers))))
1375       (prog1
1376           (gnus-gethash string gnus-agent-spam-hashtb)
1377         (gnus-sethash string t gnus-agent-spam-hashtb)))))
1378
1379 (defun gnus-agent-short-p ()
1380   "Say whether an article is short or not."
1381   (< (mail-header-lines gnus-headers) gnus-agent-short-article))
1382
1383 (defun gnus-agent-long-p ()
1384   "Say whether an article is long or not."
1385   (> (mail-header-lines gnus-headers) gnus-agent-long-article))
1386
1387 (defun gnus-agent-low-scored-p ()
1388   "Say whether an article has a low score or not."
1389   (< gnus-score gnus-agent-low-score))
1390
1391 (defun gnus-agent-high-scored-p ()
1392   "Say whether an article has a high score or not."
1393   (> gnus-score gnus-agent-high-score))
1394
1395 (defun gnus-category-make-function (cat)
1396   "Make a function from category CAT."
1397   `(lambda () ,(gnus-category-make-function-1 cat)))
1398
1399 (defun gnus-agent-true ()
1400   "Return t."
1401   t)
1402
1403 (defun gnus-agent-false ()
1404   "Return nil."
1405   nil)
1406
1407 (defun gnus-category-make-function-1 (cat)
1408   "Make a function from category CAT."
1409   (cond
1410    ;; Functions are just returned as is.
1411    ((or (symbolp cat)
1412         (gnus-functionp cat))
1413     `(,(or (cdr (assq cat gnus-category-predicate-alist))
1414            cat)))
1415    ;; More complex category.
1416    ((consp cat)
1417     `(,(cond
1418         ((memq (car cat) '(& and))
1419          'and)
1420         ((memq (car cat) '(| or))
1421          'or)
1422         ((memq (car cat) gnus-category-not)
1423          'not))
1424       ,@(mapcar 'gnus-category-make-function-1 (cdr cat))))
1425    (t
1426     (error "Unknown category type: %s" cat))))
1427
1428 (defun gnus-get-predicate (predicate)
1429   "Return the predicate for CATEGORY."
1430   (or (cdr (assoc predicate gnus-category-predicate-cache))
1431       (cdar (push (cons predicate
1432                         (gnus-category-make-function predicate))
1433                   gnus-category-predicate-cache))))
1434
1435 (defun gnus-group-category (group)
1436   "Return the category GROUP belongs to."
1437   (unless gnus-category-group-cache
1438     (setq gnus-category-group-cache (gnus-make-hashtable 1000))
1439     (let ((cs gnus-category-alist)
1440           groups cat)
1441       (while (setq cat (pop cs))
1442         (setq groups (cadddr cat))
1443         (while groups
1444           (gnus-sethash (pop groups) cat gnus-category-group-cache)))))
1445   (or (gnus-gethash group gnus-category-group-cache)
1446       (assq 'default gnus-category-alist)))
1447
1448 (defun gnus-agent-expire ()
1449   "Expire all old articles."
1450   (interactive)
1451   (let ((methods gnus-agent-covered-methods)
1452         (day (- (time-to-days (current-time)) gnus-agent-expire-days))
1453         gnus-command-method sym group articles
1454         history overview file histories elem art nov-file low info
1455         unreads marked article orig lowest highest)
1456     (save-excursion
1457       (setq overview (gnus-get-buffer-create " *expire overview*"))
1458       (while (setq gnus-command-method (pop methods))
1459         (when (file-exists-p (gnus-agent-lib-file "active"))
1460           (with-temp-buffer
1461             (nnheader-insert-file-contents (gnus-agent-lib-file "active"))
1462             (gnus-active-to-gnus-format 
1463              gnus-command-method
1464              (setq orig (gnus-make-hashtable
1465                          (count-lines (point-min) (point-max))))))
1466           (let ((expiry-hashtb (gnus-make-hashtable 1023)))
1467             (gnus-agent-open-history)
1468             (set-buffer
1469              (setq gnus-agent-current-history
1470                    (setq history (gnus-agent-history-buffer))))
1471             (goto-char (point-min))
1472             (when (> (buffer-size) 1)
1473               (goto-char (point-min))
1474               (while (not (eobp))
1475                 (skip-chars-forward "^\t")
1476                 (if (> (read (current-buffer)) day)
1477                     ;; New article; we don't expire it.
1478                     (forward-line 1)
1479                   ;; Old article.  Schedule it for possible nuking.
1480                   (while (not (eolp))
1481                     (setq sym (let ((obarray expiry-hashtb) s)
1482                                 (setq s (read (current-buffer)))
1483                                 (if (stringp s) (intern s) s)))
1484                     (if (boundp sym)
1485                         (set sym (cons (cons (read (current-buffer)) (point))
1486                                        (symbol-value sym)))
1487                       (set sym (list (cons (read (current-buffer)) (point)))))
1488                     (skip-chars-forward " "))
1489                   (forward-line 1)))
1490               ;; We now have all articles that can possibly be expired.
1491               (mapatoms
1492                (lambda (sym)
1493                  (setq group (symbol-name sym)
1494                        articles (sort (symbol-value sym) 'car-less-than-car)
1495                        low (car (gnus-active group))
1496                        info (gnus-get-info group)
1497                        unreads (ignore-errors
1498                                  (gnus-list-of-unread-articles group))
1499                        marked (nconc
1500                                (gnus-uncompress-range
1501                                 (cdr (assq 'tick (gnus-info-marks info))))
1502                                (gnus-uncompress-range
1503                                 (cdr (assq 'dormant
1504                                            (gnus-info-marks info)))))
1505                        nov-file (gnus-agent-article-name ".overview" group)
1506                        lowest nil
1507                        highest nil)
1508                  (gnus-agent-load-alist group)
1509                  (gnus-message 5 "Expiring articles in %s" group)
1510                  (set-buffer overview)
1511                  (erase-buffer)
1512                  (when (file-exists-p nov-file)
1513                    (nnheader-insert-file-contents nov-file))
1514                  (goto-char (point-min))
1515                  (setq article 0)
1516                  (while (setq elem (pop articles))
1517                    (setq article (car elem))
1518                    (when (or (null low)
1519                              (< article low)
1520                              gnus-agent-expire-all
1521                              (and (not (memq article unreads))
1522                                   (not (memq article marked))))
1523                      ;; Find and nuke the NOV line.
1524                      (while (and (not (eobp))
1525                                  (or (not (numberp
1526                                            (setq art (read (current-buffer)))))
1527                                      (< art article)))
1528                        (if (and (numberp art) 
1529                                 (file-exists-p
1530                                  (gnus-agent-article-name
1531                                   (number-to-string art) group)))
1532                            (progn
1533                              (unless lowest
1534                                (setq lowest art))
1535                              (setq highest art)
1536                              (forward-line 1))
1537                          ;; Remove old NOV lines that have no articles.
1538                          (gnus-delete-line)))
1539                      (if (or (eobp)
1540                              (/= art article))
1541                          (beginning-of-line)
1542                        (gnus-delete-line))
1543                      ;; Nuke the article.
1544                      (when (file-exists-p
1545                             (setq file (gnus-agent-article-name
1546                                         (number-to-string article)
1547                                         group)))
1548                        (delete-file file))
1549                      ;; Schedule the history line for nuking.
1550                      (push (cdr elem) histories)))
1551                  (gnus-make-directory (file-name-directory nov-file))
1552                  (let ((coding-system-for-write
1553                         gnus-agent-file-coding-system))
1554                    (write-region (point-min) (point-max) nov-file nil 'silent))
1555                  ;; Delete the unwanted entries in the alist.
1556                  (setq gnus-agent-article-alist
1557                        (sort gnus-agent-article-alist 'car-less-than-car))
1558                  (let* ((alist gnus-agent-article-alist)
1559                         (prev (cons nil alist))
1560                         (first prev)
1561                         expired)
1562                    (while (and alist
1563                                (<= (caar alist) article))
1564                      (if (or (not (cdar alist))
1565                              (not (file-exists-p
1566                                    (gnus-agent-article-name
1567                                     (number-to-string
1568                                      (caar alist))
1569                                     group))))
1570                          (progn
1571                            (push (caar alist) expired)
1572                            (setcdr prev (setq alist (cdr alist))))
1573                        (setq prev alist
1574                              alist (cdr alist))))
1575                    (setq gnus-agent-article-alist (cdr first))
1576                    (gnus-agent-save-alist group)
1577                    ;; Mark all articles up to the first article
1578                    ;; in `gnus-article-alist' as read.
1579                    (when (and info (caar gnus-agent-article-alist))
1580                      (setcar (nthcdr 2 info)
1581                              (gnus-range-add
1582                               (nth 2 info)
1583                               (cons 1 (- (caar gnus-agent-article-alist) 1)))))
1584                    ;; Maybe everything has been expired from `gnus-article-alist'
1585                    ;; and so the above marking as read could not be conducted,
1586                    ;; or there are expired article within the range of the alist.
1587                    (when (and info
1588                               expired
1589                               (or (not (caar gnus-agent-article-alist))
1590                                   (> (car expired)
1591                                      (caar gnus-agent-article-alist))))
1592                      (setcar (nthcdr 2 info)
1593                              (gnus-add-to-range
1594                               (nth 2 info)
1595                               (nreverse expired))))
1596                    (gnus-dribble-enter
1597                     (concat "(gnus-group-set-info '"
1598                             (gnus-prin1-to-string info)
1599                             ")")))
1600                  (when lowest
1601                    (if (gnus-gethash group orig)
1602                        (setcar (gnus-gethash group orig) lowest)
1603                      (gnus-sethash group (cons lowest highest) orig))))
1604                expiry-hashtb)
1605               (set-buffer history)
1606               (setq histories (nreverse (sort histories '<)))
1607               (while histories
1608                 (goto-char (pop histories))
1609                 (gnus-delete-line))
1610               (gnus-agent-save-history)
1611               (gnus-agent-close-history)
1612               (gnus-write-active-file
1613                (gnus-agent-lib-file "active") orig))
1614             (gnus-message 4 "Expiry...done")))))))
1615
1616 ;;;###autoload
1617 (defun gnus-agent-batch ()
1618   (interactive)
1619   (let ((init-file-user "")
1620         (gnus-always-read-dribble-file t))
1621     (gnus))
1622   (gnus-group-send-drafts)
1623   (gnus-agent-fetch-session))
1624
1625 (provide 'gnus-agent)
1626
1627 ;;; gnus-agent.el ends here