9236041a2a1f8d0f124a00cc024cb836ac612afb
[gnus] / lisp / gnus-agent.el
1 ;;; gnus-agent.el --- unplugged support for Gnus
2
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 3, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (require 'gnus)
29 (require 'gnus-cache)
30 (require 'nnmail)
31 (require 'nnvirtual)
32 (require 'gnus-sum)
33 (require 'gnus-score)
34 (require 'gnus-srvr)
35 (require 'gnus-util)
36 (eval-when-compile
37   (if (featurep 'xemacs)
38       (require 'itimer)
39     (require 'timer))
40   (require 'cl))
41
42 (eval-and-compile
43   (autoload 'gnus-server-update-server "gnus-srvr")
44   (autoload 'gnus-agent-customize-category "gnus-cus")
45 )
46
47 (defcustom gnus-agent-directory (nnheader-concat gnus-directory "agent/")
48   "Where the Gnus agent will store its files."
49   :group 'gnus-agent
50   :type 'directory)
51
52 (defcustom gnus-agent-plugged-hook nil
53   "Hook run when plugging into the network."
54   :group 'gnus-agent
55   :type 'hook)
56
57 (defcustom gnus-agent-unplugged-hook nil
58   "Hook run when unplugging from the network."
59   :group 'gnus-agent
60   :type 'hook)
61
62 (defcustom gnus-agent-fetched-hook nil
63   "Hook run when finished fetching articles."
64   :version "22.1"
65   :group 'gnus-agent
66   :type 'hook)
67
68 (defcustom gnus-agent-handle-level gnus-level-subscribed
69   "Groups on levels higher than this variable will be ignored by the Agent."
70   :group 'gnus-agent
71   :type 'integer)
72
73 (defcustom gnus-agent-expire-days 7
74   "Read articles older than this will be expired.
75 If you wish to disable Agent expiring, see `gnus-agent-enable-expiration'."
76   :group 'gnus-agent
77   :type '(number :tag "days"))
78
79 (defcustom gnus-agent-expire-all nil
80   "If non-nil, also expire unread, ticked and dormant articles.
81 If nil, only read articles will be expired."
82   :group 'gnus-agent
83   :type 'boolean)
84
85 (defcustom gnus-agent-group-mode-hook nil
86   "Hook run in Agent group minor modes."
87   :group 'gnus-agent
88   :type 'hook)
89
90 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
91 (when (featurep 'xemacs)
92   (add-hook 'gnus-agent-group-mode-hook 'gnus-xmas-agent-group-menu-add))
93
94 (defcustom gnus-agent-summary-mode-hook nil
95   "Hook run in Agent summary minor modes."
96   :group 'gnus-agent
97   :type 'hook)
98
99 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
100 (when (featurep 'xemacs)
101   (add-hook 'gnus-agent-summary-mode-hook 'gnus-xmas-agent-summary-menu-add))
102
103 (defcustom gnus-agent-server-mode-hook nil
104   "Hook run in Agent summary minor modes."
105   :group 'gnus-agent
106   :type 'hook)
107
108 ;; Extracted from gnus-xmas-redefine in order to preserve user settings
109 (when (featurep 'xemacs)
110   (add-hook 'gnus-agent-server-mode-hook 'gnus-xmas-agent-server-menu-add))
111
112 (defcustom gnus-agent-confirmation-function 'y-or-n-p
113   "Function to confirm when error happens."
114   :version "21.1"
115   :group 'gnus-agent
116   :type 'function)
117
118 (defcustom gnus-agent-synchronize-flags nil
119   "Indicate if flags are synchronized when you plug in.
120 If this is `ask' the hook will query the user."
121   ;; If the default switches to something else than nil, then the function
122   ;; should be fixed not be exceedingly slow.  See 2005-09-20 ChangeLog entry.
123   :version "21.1"
124   :type '(choice (const :tag "Always" t)
125                  (const :tag "Never" nil)
126                  (const :tag "Ask" ask))
127   :group 'gnus-agent)
128
129 (defcustom gnus-agent-go-online 'ask
130   "Indicate if offline servers go online when you plug in.
131 If this is `ask' the hook will query the user."
132   :version "21.3"
133   :type '(choice (const :tag "Always" t)
134                  (const :tag "Never" nil)
135                  (const :tag "Ask" ask))
136   :group 'gnus-agent)
137
138 (defcustom gnus-agent-mark-unread-after-downloaded t
139   "Indicate whether to mark articles unread after downloaded."
140   :version "21.1"
141   :type 'boolean
142   :group 'gnus-agent)
143
144 (defcustom gnus-agent-download-marks '(download)
145   "Marks for downloading."
146   :version "21.1"
147   :type '(repeat (symbol :tag "Mark"))
148   :group 'gnus-agent)
149
150 (defcustom gnus-agent-consider-all-articles nil
151   "When non-nil, the agent will let the agent predicate decide
152 whether articles need to be downloaded or not, for all articles.  When
153 nil, the default, the agent will only let the predicate decide
154 whether unread articles are downloaded or not.  If you enable this,
155 groups with large active ranges may open slower and you may also want
156 to look into the agent expiry settings to block the expiration of
157 read articles as they would just be downloaded again."
158   :version "22.1"
159   :type 'boolean
160   :group 'gnus-agent)
161
162 (defcustom gnus-agent-max-fetch-size 10000000 ;; 10 Mb
163   "Chunk size for `gnus-agent-fetch-session'.
164 The function will split its article fetches into chunks smaller than
165 this limit."
166   :version "22.1"
167   :group 'gnus-agent
168   :type 'integer)
169
170 (defcustom gnus-agent-enable-expiration 'ENABLE
171   "The default expiration state for each group.
172 When set to ENABLE, the default, `gnus-agent-expire' will expire old
173 contents from a group's local storage.  This value may be overridden
174 to disable expiration in specific categories, topics, and groups.  Of
175 course, you could change gnus-agent-enable-expiration to DISABLE then
176 enable expiration per categories, topics, and groups."
177   :version "22.1"
178   :group 'gnus-agent
179   :type '(radio (const :format "Enable " ENABLE)
180                 (const :format "Disable " DISABLE)))
181
182 (defcustom gnus-agent-expire-unagentized-dirs t
183   "*Whether expiration should expire in unagentized directories.
184 Have gnus-agent-expire scan the directories under
185 \(gnus-agent-directory) for groups that are no longer agentized.
186 When found, offer to remove them."
187   :version "22.1"
188   :type 'boolean
189   :group 'gnus-agent)
190
191 (defcustom gnus-agent-auto-agentize-methods '(nntp nnimap)
192   "Initially, all servers from these methods are agentized.
193 The user may remove or add servers using the Server buffer.
194 See Info node `(gnus)Server Buffer'."
195   :version "22.1"
196   :type '(repeat symbol)
197   :group 'gnus-agent)
198
199 (defcustom gnus-agent-queue-mail t
200   "Whether and when outgoing mail should be queued by the agent.
201 When `always', always queue outgoing mail.  When nil, never
202 queue.  Otherwise, queue if and only if unplugged."
203   :version "22.1"
204   :group 'gnus-agent
205   :type '(radio (const :format "Always" always)
206                 (const :format "Never" nil)
207                 (const :format "When unplugged" t)))
208
209 (defcustom gnus-agent-prompt-send-queue nil
210   "If non-nil, `gnus-group-send-queue' will prompt if called when
211 unplugged."
212   :version "22.1"
213   :group 'gnus-agent
214   :type 'boolean)
215
216 (defcustom gnus-agent-article-alist-save-format 1
217   "Indicates whether to use compression(2), versus no
218 compression(1), when writing agentview files.  The compressed
219 files do save space but load times are 6-7 times higher.  A group
220 must be opened then closed for the agentview to be updated using
221 the new format."
222   ;; Wouldn't symbols instead numbers be nicer?  --rsteib
223   :version "22.1"
224   :group 'gnus-agent
225   :type '(radio (const :format "Compressed" 2)
226                 (const :format "Uncompressed" 1)))
227
228 ;;; Internal variables
229
230 (defvar gnus-agent-history-buffers nil)
231 (defvar gnus-agent-buffer-alist nil)
232 (defvar gnus-agent-article-alist nil
233   "An assoc list identifying the articles whose headers have been fetched.
234 If successfully fetched, these headers will be stored in the group's overview
235 file.  The key of each assoc pair is the article ID, the value of each assoc
236 pair is a flag indicating whether the identified article has been downloaded
237 \(gnus-agent-fetch-articles sets the value to the day of the download).
238 NOTES:
239 1) The last element of this list can not be expired as some
240    routines (for example, get-agent-fetch-headers) use the last
241    value to track which articles have had their headers retrieved.
242 2) The function `gnus-agent-regenerate' may destructively modify the value.")
243 (defvar gnus-agent-group-alist nil)
244 (defvar gnus-category-alist nil)
245 (defvar gnus-agent-current-history nil)
246 (defvar gnus-agent-overview-buffer nil)
247 (defvar gnus-category-predicate-cache nil)
248 (defvar gnus-category-group-cache nil)
249 (defvar gnus-agent-spam-hashtb nil)
250 (defvar gnus-agent-file-name nil)
251 (defvar gnus-agent-send-mail-function nil)
252 (defvar gnus-agent-file-coding-system 'raw-text)
253 (defvar gnus-agent-file-loading-cache nil)
254 (defvar gnus-agent-total-fetched-hashtb nil)
255 (defvar gnus-agent-inhibit-update-total-fetched-for nil)
256 (defvar gnus-agent-need-update-total-fetched-for nil)
257
258 ;; Dynamic variables
259 (defvar gnus-headers)
260 (defvar gnus-score)
261
262 ;; Added to support XEmacs
263 (eval-and-compile
264   (unless (fboundp 'directory-files-and-attributes)
265     (defun directory-files-and-attributes (directory
266                                            &optional full match nosort)
267       (let (result)
268         (dolist (file (directory-files directory full match nosort))
269           (push (cons file (file-attributes file)) result))
270         (nreverse result)))))
271
272 ;;;
273 ;;; Setup
274 ;;;
275
276 (defun gnus-open-agent ()
277   (setq gnus-agent t)
278   (gnus-agent-read-servers)
279   (gnus-category-read)
280   (gnus-agent-create-buffer)
281   (add-hook 'gnus-group-mode-hook 'gnus-agent-mode)
282   (add-hook 'gnus-summary-mode-hook 'gnus-agent-mode)
283   (add-hook 'gnus-server-mode-hook 'gnus-agent-mode))
284
285 (defun gnus-agent-create-buffer ()
286   (if (gnus-buffer-live-p gnus-agent-overview-buffer)
287       t
288     (setq gnus-agent-overview-buffer
289           (gnus-get-buffer-create " *Gnus agent overview*"))
290     (with-current-buffer gnus-agent-overview-buffer
291       (mm-enable-multibyte))
292     nil))
293
294 (gnus-add-shutdown 'gnus-close-agent 'gnus)
295
296 (defun gnus-close-agent ()
297   (setq gnus-category-predicate-cache nil
298         gnus-category-group-cache nil
299         gnus-agent-spam-hashtb nil)
300   (gnus-kill-buffer gnus-agent-overview-buffer))
301
302 ;;;
303 ;;; Utility functions
304 ;;;
305
306 (defmacro gnus-agent-with-refreshed-group (group &rest body)
307   "Performs the body then updates the group's line in the group
308 buffer.  Automatically blocks multiple updates due to recursion."
309 `(prog1 (let ((gnus-agent-inhibit-update-total-fetched-for t)) ,@body)
310      (when (and gnus-agent-need-update-total-fetched-for
311                 (not gnus-agent-inhibit-update-total-fetched-for))
312         (save-excursion
313           (set-buffer gnus-group-buffer)
314           (setq gnus-agent-need-update-total-fetched-for nil)
315           (gnus-group-update-group ,group t)))))
316
317 (defun gnus-agent-read-file (file)
318   "Load FILE and do a `read' there."
319   (with-temp-buffer
320     (ignore-errors
321       (nnheader-insert-file-contents file)
322       (goto-char (point-min))
323       (read (current-buffer)))))
324
325 (defsubst gnus-agent-method ()
326   (concat (symbol-name (car gnus-command-method)) "/"
327           (if (equal (cadr gnus-command-method) "")
328               "unnamed"
329             (cadr gnus-command-method))))
330
331 (defsubst gnus-agent-directory ()
332   "The name of the Gnus agent directory."
333   (nnheader-concat gnus-agent-directory
334                    (nnheader-translate-file-chars (gnus-agent-method)) "/"))
335
336 (defun gnus-agent-lib-file (file)
337   "The full name of the Gnus agent library FILE."
338   (expand-file-name file
339                     (file-name-as-directory
340                      (expand-file-name "agent.lib" (gnus-agent-directory)))))
341
342 (defun gnus-agent-cat-set-property (category property value)
343   (if value
344       (setcdr (or (assq property category)
345               (let ((cell (cons property nil)))
346                     (setcdr category (cons cell (cdr category)))
347                     cell)) value)
348     (let ((category category))
349       (while (cond ((eq property (caadr category))
350                     (setcdr category (cddr category))
351                     nil)
352                    (t
353                     (setq category (cdr category)))))))
354   category)
355
356 (eval-when-compile
357   (defmacro gnus-agent-cat-defaccessor (name prop-name)
358     "Define accessor and setter methods for manipulating a list of the form
359 \(NAME (PROPERTY1 VALUE1) ... (PROPERTY_N VALUE_N)).
360 Given the call (gnus-agent-cat-defaccessor func PROPERTY1), the list may be
361 manipulated as follows:
362   (func LIST): Returns VALUE1
363   (setf (func LIST) NEW_VALUE1): Replaces VALUE1 with NEW_VALUE1."
364     `(progn (defmacro ,name (category)
365               (list (quote cdr) (list (quote assq)
366                                       (quote (quote ,prop-name)) category)))
367
368             (define-setf-method ,name (category)
369               (let* ((--category--temp-- (make-symbol "--category--"))
370                      (--value--temp-- (make-symbol "--value--")))
371                 (list (list --category--temp--) ; temporary-variables
372                       (list category)           ; value-forms
373                       (list --value--temp--)    ; store-variables
374                       (let* ((category --category--temp--) ; store-form
375                              (value --value--temp--))
376                         (list (quote gnus-agent-cat-set-property)
377                               category
378                               (quote (quote ,prop-name))
379                               value))
380                       (list (quote ,name) --category--temp--) ; access-form
381                       )))))
382   )
383
384 (defmacro gnus-agent-cat-name (category)
385   `(car ,category))
386
387 (gnus-agent-cat-defaccessor
388  gnus-agent-cat-days-until-old             agent-days-until-old)
389 (gnus-agent-cat-defaccessor
390  gnus-agent-cat-enable-expiration          agent-enable-expiration)
391 (gnus-agent-cat-defaccessor
392  gnus-agent-cat-groups                     agent-groups)
393 (gnus-agent-cat-defaccessor
394  gnus-agent-cat-high-score                 agent-high-score)
395 (gnus-agent-cat-defaccessor
396  gnus-agent-cat-length-when-long           agent-long-article)
397 (gnus-agent-cat-defaccessor
398  gnus-agent-cat-length-when-short          agent-short-article)
399 (gnus-agent-cat-defaccessor
400  gnus-agent-cat-low-score                  agent-low-score)
401 (gnus-agent-cat-defaccessor
402  gnus-agent-cat-predicate                  agent-predicate)
403 (gnus-agent-cat-defaccessor
404  gnus-agent-cat-score-file                 agent-score)
405 (gnus-agent-cat-defaccessor
406  gnus-agent-cat-enable-undownloaded-faces  agent-enable-undownloaded-faces)
407
408
409 ;; This form is equivalent to defsetf except that it calls make-symbol
410 ;; whereas defsetf calls gensym (Using gensym creates a run-time
411 ;; dependency on the CL library).
412
413 (eval-and-compile
414   (define-setf-method gnus-agent-cat-groups (category)
415     (let* ((--category--temp-- (make-symbol "--category--"))
416            (--groups--temp-- (make-symbol "--groups--")))
417       (list (list --category--temp--)
418             (list category)
419             (list --groups--temp--)
420             (let* ((category --category--temp--)
421                    (groups --groups--temp--))
422               (list (quote gnus-agent-set-cat-groups) category groups))
423             (list (quote gnus-agent-cat-groups) --category--temp--))))
424   )
425
426 (defun gnus-agent-set-cat-groups (category groups)
427   (unless (eq groups 'ignore)
428     (let ((new-g groups)
429           (old-g (gnus-agent-cat-groups category)))
430       (cond ((eq new-g old-g)
431              ;; gnus-agent-add-group is fiddling with the group
432              ;; list. Still, Im done.
433              nil
434              )
435             ((eq new-g (cdr old-g))
436              ;; gnus-agent-add-group is fiddling with the group list
437              (setcdr (or (assq 'agent-groups category)
438                          (let ((cell (cons 'agent-groups nil)))
439                            (setcdr category (cons cell (cdr category)))
440                            cell)) new-g))
441             (t
442              (let ((groups groups))
443                (while groups
444                  (let* ((group        (pop groups))
445                         (old-category (gnus-group-category group)))
446                    (if (eq category old-category)
447                        nil
448                      (setf (gnus-agent-cat-groups old-category)
449                            (delete group (gnus-agent-cat-groups
450                                           old-category))))))
451                ;; Purge cache as preceeding loop invalidated it.
452                (setq gnus-category-group-cache nil))
453
454              (setcdr (or (assq 'agent-groups category)
455                          (let ((cell (cons 'agent-groups nil)))
456                            (setcdr category (cons cell (cdr category)))
457                            cell)) groups))))))
458
459 (defsubst gnus-agent-cat-make (name &optional default-agent-predicate)
460   (list name `(agent-predicate . ,(or default-agent-predicate 'false))))
461
462 (defun gnus-agent-read-group ()
463   "Read a group name in the minibuffer, with completion."
464   (let ((def (or (gnus-group-group-name) gnus-newsgroup-name)))
465     (when def
466       (setq def (gnus-group-decoded-name def)))
467     (gnus-group-completing-read (if def
468                                     (concat "Group Name (" def "): ")
469                                   "Group Name: ")
470                                 nil nil t nil nil def)))
471
472 ;;; Fetching setup functions.
473
474 (defun gnus-agent-start-fetch ()
475   "Initialize data structures for efficient fetching."
476   (gnus-agent-create-buffer))
477
478 (defun gnus-agent-stop-fetch ()
479   "Save all data structures and clean up."
480   (setq gnus-agent-spam-hashtb nil)
481   (save-excursion
482     (set-buffer nntp-server-buffer)
483     (widen)))
484
485 (defmacro gnus-agent-with-fetch (&rest forms)
486   "Do FORMS safely."
487   `(unwind-protect
488        (let ((gnus-agent-fetching t))
489          (gnus-agent-start-fetch)
490          ,@forms)
491      (gnus-agent-stop-fetch)))
492
493 (put 'gnus-agent-with-fetch 'lisp-indent-function 0)
494 (put 'gnus-agent-with-fetch 'edebug-form-spec '(body))
495
496 (defmacro gnus-agent-append-to-list (tail value)
497   `(setq ,tail (setcdr ,tail (cons ,value nil))))
498
499 (defmacro gnus-agent-message (level &rest args)
500   `(if (<= ,level gnus-verbose)
501        (message ,@args)))
502
503 ;;;
504 ;;; Mode infestation
505 ;;;
506
507 (defvar gnus-agent-mode-hook nil
508   "Hook run when installing agent mode.")
509
510 (defvar gnus-agent-mode nil)
511 (defvar gnus-agent-mode-status '(gnus-agent-mode " Plugged"))
512
513 (defun gnus-agent-mode ()
514   "Minor mode for providing a agent support in Gnus buffers."
515   (let* ((buffer (progn (string-match "^gnus-\\(.*\\)-mode$"
516                                       (symbol-name major-mode))
517                         (match-string 1 (symbol-name major-mode))))
518          (mode (intern (format "gnus-agent-%s-mode" buffer))))
519     (set (make-local-variable 'gnus-agent-mode) t)
520     (set mode nil)
521     (set (make-local-variable mode) t)
522     ;; Set up the menu.
523     (when (gnus-visual-p 'agent-menu 'menu)
524       (funcall (intern (format "gnus-agent-%s-make-menu-bar" buffer))))
525     (unless (assq 'gnus-agent-mode minor-mode-alist)
526       (push gnus-agent-mode-status minor-mode-alist))
527     (unless (assq mode minor-mode-map-alist)
528       (push (cons mode (symbol-value (intern (format "gnus-agent-%s-mode-map"
529                                                      buffer))))
530             minor-mode-map-alist))
531     (when (eq major-mode 'gnus-group-mode)
532       (let ((init-plugged gnus-plugged)
533             (gnus-agent-go-online nil))
534         ;; g-a-t-p does nothing when gnus-plugged isn't changed.
535         ;; Therefore, make certain that the current value does not
536         ;; match the desired initial value.
537         (setq gnus-plugged :unknown)
538         (gnus-agent-toggle-plugged init-plugged)))
539     (gnus-run-hooks 'gnus-agent-mode-hook
540                     (intern (format "gnus-agent-%s-mode-hook" buffer)))))
541
542 (defvar gnus-agent-group-mode-map (make-sparse-keymap))
543 (gnus-define-keys gnus-agent-group-mode-map
544   "Ju" gnus-agent-fetch-groups
545   "Jc" gnus-enter-category-buffer
546   "Jj" gnus-agent-toggle-plugged
547   "Js" gnus-agent-fetch-session
548   "JY" gnus-agent-synchronize-flags
549   "JS" gnus-group-send-queue
550   "Ja" gnus-agent-add-group
551   "Jr" gnus-agent-remove-group
552   "Jo" gnus-agent-toggle-group-plugged)
553
554 (defun gnus-agent-group-make-menu-bar ()
555   (unless (boundp 'gnus-agent-group-menu)
556     (easy-menu-define
557      gnus-agent-group-menu gnus-agent-group-mode-map ""
558      '("Agent"
559        ["Toggle plugged" gnus-agent-toggle-plugged t]
560        ["Toggle group plugged" gnus-agent-toggle-group-plugged t]
561        ["List categories" gnus-enter-category-buffer t]
562        ["Add (current) group to category" gnus-agent-add-group t]
563        ["Remove (current) group from category" gnus-agent-remove-group t]
564        ["Send queue" gnus-group-send-queue gnus-plugged]
565        ("Fetch"
566         ["All" gnus-agent-fetch-session gnus-plugged]
567         ["Group" gnus-agent-fetch-group gnus-plugged])
568        ["Synchronize flags" gnus-agent-synchronize-flags t]
569        ))))
570
571 (defvar gnus-agent-summary-mode-map (make-sparse-keymap))
572 (gnus-define-keys gnus-agent-summary-mode-map
573   "Jj" gnus-agent-toggle-plugged
574   "Ju" gnus-agent-summary-fetch-group
575   "JS" gnus-agent-fetch-group
576   "Js" gnus-agent-summary-fetch-series
577   "J#" gnus-agent-mark-article
578   "J\M-#" gnus-agent-unmark-article
579   "@" gnus-agent-toggle-mark
580   "Jc" gnus-agent-catchup)
581
582 (defun gnus-agent-summary-make-menu-bar ()
583   (unless (boundp 'gnus-agent-summary-menu)
584     (easy-menu-define
585      gnus-agent-summary-menu gnus-agent-summary-mode-map ""
586      '("Agent"
587        ["Toggle plugged" gnus-agent-toggle-plugged t]
588        ["Mark as downloadable" gnus-agent-mark-article t]
589        ["Unmark as downloadable" gnus-agent-unmark-article t]
590        ["Toggle mark" gnus-agent-toggle-mark t]
591        ["Fetch downloadable" gnus-agent-summary-fetch-group t]
592        ["Catchup undownloaded" gnus-agent-catchup t]))))
593
594 (defvar gnus-agent-server-mode-map (make-sparse-keymap))
595 (gnus-define-keys gnus-agent-server-mode-map
596   "Jj" gnus-agent-toggle-plugged
597   "Ja" gnus-agent-add-server
598   "Jr" gnus-agent-remove-server)
599
600 (defun gnus-agent-server-make-menu-bar ()
601   (unless (boundp 'gnus-agent-server-menu)
602     (easy-menu-define
603      gnus-agent-server-menu gnus-agent-server-mode-map ""
604      '("Agent"
605        ["Toggle plugged" gnus-agent-toggle-plugged t]
606        ["Add" gnus-agent-add-server t]
607        ["Remove" gnus-agent-remove-server t]))))
608
609 (defun gnus-agent-make-mode-line-string (string mouse-button mouse-func)
610   (if (and (fboundp 'propertize)
611            (fboundp 'make-mode-line-mouse-map))
612       (propertize string 'local-map
613                   (make-mode-line-mouse-map mouse-button mouse-func)
614                   'mouse-face
615                   (cond ((and (featurep 'xemacs)
616                               ;; XEmacs' `facep' only checks for a face
617                               ;; object, not for a face name, so it's useless
618                               ;; to check with `facep'.
619                               (find-face 'modeline))
620                          'modeline)
621                         ((facep 'mode-line-highlight) ;; Emacs 22
622                          'mode-line-highlight)
623                         ((facep 'mode-line) ;; Emacs 21
624                          'mode-line)) )
625     string))
626
627 (defun gnus-agent-toggle-plugged (set-to)
628   "Toggle whether Gnus is unplugged or not."
629   (interactive (list (not gnus-plugged)))
630   (cond ((eq set-to gnus-plugged)
631          nil)
632         (set-to
633          (setq gnus-plugged set-to)
634          (gnus-run-hooks 'gnus-agent-plugged-hook)
635          (setcar (cdr gnus-agent-mode-status)
636                  (gnus-agent-make-mode-line-string " Plugged"
637                                                    'mouse-2
638                                                    'gnus-agent-toggle-plugged))
639          (gnus-agent-go-online gnus-agent-go-online)
640          (gnus-agent-possibly-synchronize-flags))
641         (t
642          (gnus-agent-close-connections)
643          (setq gnus-plugged set-to)
644          (gnus-run-hooks 'gnus-agent-unplugged-hook)
645          (setcar (cdr gnus-agent-mode-status)
646                  (gnus-agent-make-mode-line-string " Unplugged"
647                                                    'mouse-2
648                                                    'gnus-agent-toggle-plugged))))
649   (set-buffer-modified-p t))
650
651 (defmacro gnus-agent-while-plugged (&rest body)
652   `(let ((original-gnus-plugged gnus-plugged))
653     (unwind-protect
654         (progn (gnus-agent-toggle-plugged t)
655                ,@body)
656       (gnus-agent-toggle-plugged original-gnus-plugged))))
657
658 (put 'gnus-agent-while-plugged 'lisp-indent-function 0)
659 (put 'gnus-agent-while-plugged 'edebug-form-spec '(body))
660
661 (defun gnus-agent-close-connections ()
662   "Close all methods covered by the Gnus agent."
663   (let ((methods (gnus-agent-covered-methods)))
664     (while methods
665       (gnus-close-server (pop methods)))))
666
667 ;;;###autoload
668 (defun gnus-unplugged ()
669   "Start Gnus unplugged."
670   (interactive)
671   (setq gnus-plugged nil)
672   (gnus))
673
674 ;;;###autoload
675 (defun gnus-plugged ()
676   "Start Gnus plugged."
677   (interactive)
678   (setq gnus-plugged t)
679   (gnus))
680
681 ;;;###autoload
682 (defun gnus-slave-unplugged (&optional arg)
683   "Read news as a slave unplugged."
684   (interactive "P")
685   (setq gnus-plugged nil)
686   (gnus arg nil 'slave))
687
688 ;;;###autoload
689 (defun gnus-agentize ()
690   "Allow Gnus to be an offline newsreader.
691
692 The gnus-agentize function is now called internally by gnus when
693 gnus-agent is set.  If you wish to avoid calling gnus-agentize,
694 customize gnus-agent to nil.
695
696 This will modify the `gnus-setup-news-hook', and
697 `message-send-mail-real-function' variables, and install the Gnus agent
698 minor mode in all Gnus buffers."
699   (interactive)
700   (gnus-open-agent)
701   (add-hook 'gnus-setup-news-hook 'gnus-agent-queue-setup)
702   (unless gnus-agent-send-mail-function
703     (setq gnus-agent-send-mail-function
704           (or message-send-mail-real-function
705               (function (lambda () (funcall message-send-mail-function))))
706           message-send-mail-real-function 'gnus-agent-send-mail))
707
708   ;; If the servers file doesn't exist, auto-agentize some servers and
709   ;; save the servers file so this auto-agentizing isn't invoked
710   ;; again.
711   (unless (file-exists-p (nnheader-concat gnus-agent-directory "lib/servers"))
712     (gnus-message 3 "First time agent user, agentizing remote groups...")
713     (mapc
714      (lambda (server-or-method)
715        (let ((method (gnus-server-to-method server-or-method)))
716          (when (memq (car method)
717                      gnus-agent-auto-agentize-methods)
718            (push (gnus-method-to-server method)
719                  gnus-agent-covered-methods)
720            (setq gnus-agent-method-p-cache nil))))
721      (cons gnus-select-method gnus-secondary-select-methods))
722     (gnus-agent-write-servers)))
723
724 (defun gnus-agent-queue-setup (&optional group-name)
725   "Make sure the queue group exists.
726 Optional arg GROUP-NAME allows to specify another group."
727   (unless (gnus-gethash (format "nndraft:%s" (or group-name "queue"))
728                         gnus-newsrc-hashtb)
729     (gnus-request-create-group (or group-name "queue") '(nndraft ""))
730     (let ((gnus-level-default-subscribed 1))
731       (gnus-subscribe-group (format "nndraft:%s" (or group-name "queue"))
732                             nil '(nndraft "")))
733     (gnus-group-set-parameter
734      (format "nndraft:%s" (or group-name "queue"))
735      'gnus-dummy '((gnus-draft-mode)))))
736
737 (defun gnus-agent-send-mail ()
738   (if (or (not gnus-agent-queue-mail)
739           (and gnus-plugged (not (eq gnus-agent-queue-mail 'always))))
740       (funcall gnus-agent-send-mail-function)
741     (goto-char (point-min))
742     (re-search-forward
743      (concat "^" (regexp-quote mail-header-separator) "\n"))
744     (replace-match "\n")
745     (gnus-agent-insert-meta-information 'mail)
746     (gnus-request-accept-article "nndraft:queue" nil t t)))
747
748 (defun gnus-agent-insert-meta-information (type &optional method)
749   "Insert meta-information into the message that says how it's to be posted.
750 TYPE can be either `mail' or `news'.  If the latter, then METHOD can
751 be a select method."
752   (save-excursion
753     (message-remove-header gnus-agent-meta-information-header)
754     (goto-char (point-min))
755     (insert gnus-agent-meta-information-header ": "
756             (symbol-name type) " " (format "%S" method)
757             "\n")
758     (forward-char -1)
759     (while (search-backward "\n" nil t)
760       (replace-match "\\n" t t))))
761
762 (defun gnus-agent-restore-gcc ()
763   "Restore GCC field from saved header."
764   (save-excursion
765     (goto-char (point-min))
766     (while (re-search-forward
767             (concat "^" (regexp-quote gnus-agent-gcc-header) ":") nil t)
768       (replace-match "Gcc:" 'fixedcase))))
769
770 (defun gnus-agent-any-covered-gcc ()
771   (save-restriction
772     (message-narrow-to-headers)
773     (let* ((gcc (mail-fetch-field "gcc" nil t))
774            (methods (and gcc
775                          (mapcar 'gnus-inews-group-method
776                                  (message-unquote-tokens
777                                   (message-tokenize-header
778                                    gcc " ,")))))
779            covered)
780       (while (and (not covered) methods)
781         (setq covered (gnus-agent-method-p (car methods))
782               methods (cdr methods)))
783       covered)))
784
785 ;;;###autoload
786 (defun gnus-agent-possibly-save-gcc ()
787   "Save GCC if Gnus is unplugged."
788   (when (and (not gnus-plugged) (gnus-agent-any-covered-gcc))
789     (save-excursion
790       (goto-char (point-min))
791       (let ((case-fold-search t))
792         (while (re-search-forward "^gcc:" nil t)
793           (replace-match (concat gnus-agent-gcc-header ":") 'fixedcase))))))
794
795 (defun gnus-agent-possibly-do-gcc ()
796   "Do GCC if Gnus is plugged."
797   (when (or gnus-plugged (not (gnus-agent-any-covered-gcc)))
798     (gnus-inews-do-gcc)))
799
800 ;;;
801 ;;; Group mode commands
802 ;;;
803
804 (defun gnus-agent-fetch-groups (n)
805   "Put all new articles in the current groups into the Agent."
806   (interactive "P")
807   (unless gnus-plugged
808     (error "Groups can't be fetched when Gnus is unplugged"))
809   (gnus-group-iterate n 'gnus-agent-fetch-group))
810
811 (defun gnus-agent-fetch-group (&optional group)
812   "Put all new articles in GROUP into the Agent."
813   (interactive (list (gnus-group-group-name)))
814   (setq group (or group gnus-newsgroup-name))
815   (unless group
816     (error "No group on the current line"))
817
818   (gnus-agent-while-plugged
819     (let ((gnus-command-method (gnus-find-method-for-group group)))
820       (gnus-agent-with-fetch
821         (gnus-agent-fetch-group-1 group gnus-command-method)
822         (gnus-message 5 "Fetching %s...done" group)))))
823
824 (defun gnus-agent-add-group (category arg)
825   "Add the current group to an agent category."
826   (interactive
827    (list
828     (intern
829      (completing-read
830       "Add to category: "
831       (mapcar (lambda (cat) (list (symbol-name (car cat))))
832               gnus-category-alist)
833       nil t))
834     current-prefix-arg))
835   (let ((cat (assq category gnus-category-alist))
836         c groups)
837     (gnus-group-iterate arg
838       (lambda (group)
839         (when (gnus-agent-cat-groups (setq c (gnus-group-category group)))
840           (setf (gnus-agent-cat-groups c)
841                 (delete group (gnus-agent-cat-groups c))))
842         (push group groups)))
843     (setf (gnus-agent-cat-groups cat)
844           (nconc (gnus-agent-cat-groups cat) groups))
845     (gnus-category-write)))
846
847 (defun gnus-agent-remove-group (arg)
848   "Remove the current group from its agent category, if any."
849   (interactive "P")
850   (let (c)
851     (gnus-group-iterate arg
852       (lambda (group)
853         (when (gnus-agent-cat-groups (setq c (gnus-group-category group)))
854           (setf (gnus-agent-cat-groups c)
855                 (delete group (gnus-agent-cat-groups c))))))
856     (gnus-category-write)))
857
858 (defun gnus-agent-synchronize-flags ()
859   "Synchronize unplugged flags with servers."
860   (interactive)
861   (save-excursion
862     (dolist (gnus-command-method (gnus-agent-covered-methods))
863       (when (file-exists-p (gnus-agent-lib-file "flags"))
864         (gnus-agent-synchronize-flags-server gnus-command-method)))))
865
866 (defun gnus-agent-possibly-synchronize-flags ()
867   "Synchronize flags according to `gnus-agent-synchronize-flags'."
868   (interactive)
869   (save-excursion
870     (dolist (gnus-command-method (gnus-agent-covered-methods))
871       (when (and (file-exists-p (gnus-agent-lib-file "flags"))
872                  (eq (gnus-server-status gnus-command-method) 'ok))
873         (gnus-agent-possibly-synchronize-flags-server gnus-command-method)))))
874
875 (defun gnus-agent-synchronize-flags-server (method)
876   "Synchronize flags set when unplugged for server."
877   (let ((gnus-command-method method)
878         (gnus-agent nil))
879     (when (file-exists-p (gnus-agent-lib-file "flags"))
880       (set-buffer (get-buffer-create " *Gnus Agent flag synchronize*"))
881       (erase-buffer)
882       (nnheader-insert-file-contents (gnus-agent-lib-file "flags"))
883       (cond ((null gnus-plugged)
884              (gnus-message
885               1 "You must be plugged to synchronize flags with server %s"
886               (nth 1 gnus-command-method)))
887             ((null (gnus-check-server gnus-command-method))
888              (gnus-message
889               1 "Couldn't open server %s" (nth 1 gnus-command-method)))
890             (t
891              (condition-case err
892                  (while t
893                    (let ((bgn (point)))
894                      (eval (read (current-buffer)))
895                      (delete-region bgn (point))))
896                (end-of-file
897                 (delete-file (gnus-agent-lib-file "flags")))
898                (error
899                 (let ((file (gnus-agent-lib-file "flags")))
900                   (write-region (point-min) (point-max)
901                                 (gnus-agent-lib-file "flags") nil 'silent)
902                   (error "Couldn't set flags from file %s due to %s"
903                          file (error-message-string err)))))))
904       (kill-buffer nil))))
905
906 (defun gnus-agent-possibly-synchronize-flags-server (method)
907   "Synchronize flags for server according to `gnus-agent-synchronize-flags'."
908   (when (or (and gnus-agent-synchronize-flags
909                  (not (eq gnus-agent-synchronize-flags 'ask)))
910             (and (eq gnus-agent-synchronize-flags 'ask)
911                  (gnus-y-or-n-p (format "Synchronize flags on server `%s'? "
912                                         (cadr method)))))
913     (gnus-agent-synchronize-flags-server method)))
914
915 ;;;###autoload
916 (defun gnus-agent-rename-group (old-group new-group)
917   "Rename fully-qualified OLD-GROUP as NEW-GROUP.
918 Always updates the agent, even when disabled, as the old agent
919 files would corrupt gnus when the agent was next enabled.
920 Depends upon the caller to determine whether group renaming is
921 supported."
922   (let* ((old-command-method (gnus-find-method-for-group old-group))
923          (old-path           (directory-file-name
924                               (let (gnus-command-method old-command-method)
925                                 (gnus-agent-group-pathname old-group))))
926          (new-command-method (gnus-find-method-for-group new-group))
927          (new-path           (directory-file-name
928                               (let (gnus-command-method new-command-method)
929                                 (gnus-agent-group-pathname new-group))))
930          (file-name-coding-system nnmail-pathname-coding-system))
931     (gnus-rename-file old-path new-path t)
932
933     (let* ((old-real-group (gnus-group-real-name old-group))
934            (new-real-group (gnus-group-real-name new-group))
935            (old-active (gnus-agent-get-group-info old-command-method old-real-group)))
936       (gnus-agent-save-group-info old-command-method old-real-group nil)
937       (gnus-agent-save-group-info new-command-method new-real-group old-active)
938
939       (let ((old-local (gnus-agent-get-local old-group
940                                              old-real-group old-command-method)))
941         (gnus-agent-set-local old-group
942                               nil nil
943                               old-real-group old-command-method)
944         (gnus-agent-set-local new-group
945                               (car old-local) (cdr old-local)
946                               new-real-group new-command-method)))))
947
948 ;;;###autoload
949 (defun gnus-agent-delete-group (group)
950   "Delete fully-qualified GROUP.
951 Always updates the agent, even when disabled, as the old agent
952 files would corrupt gnus when the agent was next enabled.
953 Depends upon the caller to determine whether group deletion is
954 supported."
955   (let* ((command-method (gnus-find-method-for-group group))
956          (path           (directory-file-name
957                           (let (gnus-command-method command-method)
958                             (gnus-agent-group-pathname group))))
959          (file-name-coding-system nnmail-pathname-coding-system))
960     (gnus-delete-directory path)
961
962     (let* ((real-group (gnus-group-real-name group)))
963       (gnus-agent-save-group-info command-method real-group nil)
964
965       (let ((local (gnus-agent-get-local group
966                                          real-group command-method)))
967         (gnus-agent-set-local group
968                               nil nil
969                               real-group command-method)))))
970
971 ;;;
972 ;;; Server mode commands
973 ;;;
974
975 (defun gnus-agent-add-server ()
976   "Enroll SERVER in the agent program."
977   (interactive)
978   (let* ((server       (gnus-server-server-name))
979          (named-server (gnus-server-named-server))
980          (method       (and server
981                             (gnus-server-get-method nil server))))
982     (unless server
983       (error "No server on the current line"))
984
985     (when (gnus-agent-method-p method)
986       (error "Server already in the agent program"))
987
988     (push named-server gnus-agent-covered-methods)
989
990     (setq gnus-agent-method-p-cache nil)
991     (gnus-server-update-server server)
992     (gnus-agent-write-servers)
993     (gnus-message 1 "Entered %s into the Agent" server)))
994
995 (defun gnus-agent-remove-server ()
996   "Remove SERVER from the agent program."
997   (interactive)
998   (let* ((server       (gnus-server-server-name))
999          (named-server (gnus-server-named-server)))
1000     (unless server
1001       (error "No server on the current line"))
1002
1003     (unless (member named-server gnus-agent-covered-methods)
1004       (error "Server not in the agent program"))
1005
1006     (setq gnus-agent-covered-methods
1007           (delete named-server gnus-agent-covered-methods)
1008           gnus-agent-method-p-cache nil)
1009
1010     (gnus-server-update-server server)
1011     (gnus-agent-write-servers)
1012     (gnus-message 1 "Removed %s from the agent" server)))
1013
1014 (defun gnus-agent-read-servers ()
1015   "Read the alist of covered servers."
1016   (setq gnus-agent-covered-methods
1017         (gnus-agent-read-file
1018          (nnheader-concat gnus-agent-directory "lib/servers"))
1019         gnus-agent-method-p-cache nil)
1020
1021   ;; I am called so early in start-up that I can not validate server
1022   ;; names.  When that is the case, I skip the validation.  That is
1023   ;; alright as the gnus startup code calls the validate methods
1024   ;; directly.
1025   (if gnus-server-alist
1026       (gnus-agent-read-servers-validate)))
1027
1028 (defun gnus-agent-read-servers-validate ()
1029   (mapcar (lambda (server-or-method)
1030             (let* ((server (if (stringp server-or-method)
1031                                server-or-method
1032                              (gnus-method-to-server server-or-method)))
1033                    (method (gnus-server-to-method server)))
1034               (if method
1035                   (unless (member server gnus-agent-covered-methods)
1036                     (push server gnus-agent-covered-methods)
1037                     (setq gnus-agent-method-p-cache nil))
1038                 (gnus-message 1 "Ignoring disappeared server `%s'" server))))
1039           (prog1 gnus-agent-covered-methods
1040             (setq gnus-agent-covered-methods nil))))
1041
1042 (defun gnus-agent-read-servers-validate-native (native-method)
1043   (setq gnus-agent-covered-methods
1044         (mapcar (lambda (method)
1045                   (if (or (not method)
1046                           (equal method native-method))
1047                       "native"
1048                     method)) gnus-agent-covered-methods)))
1049
1050 (defun gnus-agent-write-servers ()
1051   "Write the alist of covered servers."
1052   (gnus-make-directory (nnheader-concat gnus-agent-directory "lib"))
1053   (let ((coding-system-for-write nnheader-file-coding-system)
1054         (file-name-coding-system nnmail-pathname-coding-system))
1055     (with-temp-file (nnheader-concat gnus-agent-directory "lib/servers")
1056       (prin1 gnus-agent-covered-methods
1057              (current-buffer)))))
1058
1059 ;;;
1060 ;;; Summary commands
1061 ;;;
1062
1063 (defun gnus-agent-mark-article (n &optional unmark)
1064   "Mark the next N articles as downloadable.
1065 If N is negative, mark backward instead.  If UNMARK is non-nil, remove
1066 the mark instead.  The difference between N and the actual number of
1067 articles marked is returned."
1068   (interactive "p")
1069   (let ((backward (< n 0))
1070         (n (abs n)))
1071     (while (and
1072             (> n 0)
1073             (progn
1074               (gnus-summary-set-agent-mark
1075                (gnus-summary-article-number) unmark)
1076               (zerop (gnus-summary-next-subject (if backward -1 1) nil t))))
1077       (setq n (1- n)))
1078     (when (/= 0 n)
1079       (gnus-message 7 "No more articles"))
1080     (gnus-summary-recenter)
1081     (gnus-summary-position-point)
1082     n))
1083
1084 (defun gnus-agent-unmark-article (n)
1085   "Remove the downloadable mark from the next N articles.
1086 If N is negative, unmark backward instead.  The difference between N and
1087 the actual number of articles unmarked is returned."
1088   (interactive "p")
1089   (gnus-agent-mark-article n t))
1090
1091 (defun gnus-agent-toggle-mark (n)
1092   "Toggle the downloadable mark from the next N articles.
1093 If N is negative, toggle backward instead.  The difference between N and
1094 the actual number of articles toggled is returned."
1095   (interactive "p")
1096   (gnus-agent-mark-article n 'toggle))
1097
1098 (defun gnus-summary-set-agent-mark (article &optional unmark)
1099   "Mark ARTICLE as downloadable.  If UNMARK is nil, article is marked.
1100 When UNMARK is t, the article is unmarked.  For any other value, the
1101 article's mark is toggled."
1102   (let ((unmark (cond ((eq nil unmark)
1103                        nil)
1104                       ((eq t unmark)
1105                        t)
1106                       (t
1107                        (memq article gnus-newsgroup-downloadable)))))
1108     (when (gnus-summary-goto-subject article nil t)
1109       (gnus-summary-update-mark
1110        (if unmark
1111            (progn
1112              (setq gnus-newsgroup-downloadable
1113                    (delq article gnus-newsgroup-downloadable))
1114              (gnus-article-mark article))
1115          (setq gnus-newsgroup-downloadable
1116                (gnus-add-to-sorted-list gnus-newsgroup-downloadable article))
1117          gnus-downloadable-mark)
1118        'unread))))
1119
1120 ;;;###autoload
1121 (defun gnus-agent-get-undownloaded-list ()
1122   "Construct list of articles that have not been downloaded."
1123   (let ((gnus-command-method (gnus-find-method-for-group gnus-newsgroup-name)))
1124     (when (set (make-local-variable 'gnus-newsgroup-agentized)
1125                (gnus-agent-method-p gnus-command-method))
1126       (let* ((alist (gnus-agent-load-alist gnus-newsgroup-name))
1127              (headers (sort (mapcar (lambda (h)
1128                                       (mail-header-number h))
1129                                     gnus-newsgroup-headers) '<))
1130              (cached (and gnus-use-cache gnus-newsgroup-cached))
1131              (undownloaded (list nil))
1132              (tail-undownloaded undownloaded)
1133              (unfetched (list nil))
1134              (tail-unfetched unfetched))
1135         (while (and alist headers)
1136           (let ((a (caar alist))
1137                 (h (car headers)))
1138             (cond ((< a h)
1139                    ;; Ignore IDs in the alist that are not being
1140                    ;; displayed in the summary.
1141                    (setq alist (cdr alist)))
1142                   ((> a h)
1143                    ;; Headers that are not in the alist should be
1144                    ;; fictious (see nnagent-retrieve-headers); they
1145                    ;; imply that this article isn't in the agent.
1146                    (gnus-agent-append-to-list tail-undownloaded h)
1147                    (gnus-agent-append-to-list tail-unfetched    h)
1148                    (setq headers (cdr headers)))
1149                   ((cdar alist)
1150                    (setq alist (cdr alist))
1151                    (setq headers (cdr headers))
1152                    nil                  ; ignore already downloaded
1153                    )
1154                   (t
1155                    (setq alist (cdr alist))
1156                    (setq headers (cdr headers))
1157
1158                    ;; This article isn't in the agent.  Check to see
1159                    ;; if it is in the cache.  If it is, it's been
1160                    ;; downloaded.
1161                    (while (and cached (< (car cached) a))
1162                      (setq cached (cdr cached)))
1163                    (unless (equal a (car cached))
1164                      (gnus-agent-append-to-list tail-undownloaded a))))))
1165
1166         (while headers
1167           (let ((num (pop headers)))
1168             (gnus-agent-append-to-list tail-undownloaded num)
1169             (gnus-agent-append-to-list tail-unfetched    num)))
1170
1171         (setq gnus-newsgroup-undownloaded (cdr undownloaded)
1172               gnus-newsgroup-unfetched    (cdr unfetched))))))
1173
1174 (defun gnus-agent-catchup ()
1175   "Mark as read all unhandled articles.
1176 An article is unhandled if it is neither cached, nor downloaded, nor
1177 downloadable."
1178   (interactive)
1179   (save-excursion
1180     (let ((articles gnus-newsgroup-undownloaded))
1181       (when (or gnus-newsgroup-downloadable
1182                 gnus-newsgroup-cached)
1183         (setq articles (gnus-sorted-ndifference
1184                         (gnus-sorted-ndifference
1185                          (gnus-copy-sequence articles)
1186                          gnus-newsgroup-downloadable)
1187                         gnus-newsgroup-cached)))
1188
1189       (while articles
1190         (gnus-summary-mark-article
1191          (pop articles) gnus-catchup-mark)))
1192     (gnus-summary-position-point)))
1193
1194 (defun gnus-agent-summary-fetch-series ()
1195   (interactive)
1196   (when gnus-newsgroup-processable
1197     (setq gnus-newsgroup-downloadable
1198           (let* ((dl gnus-newsgroup-downloadable)
1199                  (processable (sort (gnus-copy-sequence gnus-newsgroup-processable) '<))
1200                  (gnus-newsgroup-downloadable processable))
1201             (gnus-agent-summary-fetch-group)
1202
1203             ;; For each article that I processed that is no longer
1204             ;; undownloaded, remove its processable mark.
1205
1206             (mapc #'gnus-summary-remove-process-mark
1207                   (gnus-sorted-ndifference gnus-newsgroup-processable gnus-newsgroup-undownloaded))
1208
1209             ;; The preceeding call to (gnus-agent-summary-fetch-group)
1210             ;; updated the temporary gnus-newsgroup-downloadable to
1211             ;; remove each article successfully fetched.  Now, I
1212             ;; update the real gnus-newsgroup-downloadable to only
1213             ;; include undownloaded articles.
1214             (gnus-sorted-ndifference dl (gnus-sorted-ndifference processable gnus-newsgroup-undownloaded))))))
1215
1216 (defun gnus-agent-summary-fetch-group (&optional all)
1217   "Fetch the downloadable articles in the group.
1218 Optional arg ALL, if non-nil, means to fetch all articles."
1219   (interactive "P")
1220   (let ((articles
1221          (if all gnus-newsgroup-articles
1222            gnus-newsgroup-downloadable))
1223         (gnus-command-method (gnus-find-method-for-group gnus-newsgroup-name))
1224         fetched-articles)
1225     (gnus-agent-while-plugged
1226       (unless articles
1227         (error "No articles to download"))
1228       (gnus-agent-with-fetch
1229         (setq gnus-newsgroup-undownloaded
1230               (gnus-sorted-ndifference
1231                gnus-newsgroup-undownloaded
1232                (setq fetched-articles
1233                      (gnus-agent-fetch-articles
1234                       gnus-newsgroup-name articles)))))
1235       (save-excursion
1236         (dolist (article articles)
1237           (let ((was-marked-downloadable
1238                  (memq article gnus-newsgroup-downloadable)))
1239             (cond (gnus-agent-mark-unread-after-downloaded
1240                    (setq gnus-newsgroup-downloadable
1241                          (delq article gnus-newsgroup-downloadable))
1242
1243                    (gnus-summary-mark-article article gnus-unread-mark))
1244                   (was-marked-downloadable
1245                    (gnus-summary-set-agent-mark article t)))
1246             (when (gnus-summary-goto-subject article nil t)
1247               (gnus-summary-update-download-mark article))))))
1248     fetched-articles))
1249
1250 (defun gnus-agent-fetch-selected-article ()
1251   "Fetch the current article as it is selected.
1252 This can be added to `gnus-select-article-hook' or
1253 `gnus-mark-article-hook'."
1254   (let ((gnus-command-method gnus-current-select-method))
1255     (when (and gnus-plugged (gnus-agent-method-p gnus-command-method))
1256       (when (gnus-agent-fetch-articles
1257              gnus-newsgroup-name
1258              (list gnus-current-article))
1259         (setq gnus-newsgroup-undownloaded
1260               (delq gnus-current-article gnus-newsgroup-undownloaded))
1261         (gnus-summary-update-download-mark gnus-current-article)))))
1262
1263 ;;;
1264 ;;; Internal functions
1265 ;;;
1266
1267 (defun gnus-agent-synchronize-group-flags (group actions server)
1268 "Update a plugged group by performing the indicated actions."
1269   (let* ((gnus-command-method (gnus-server-to-method server))
1270          (info
1271           ;; This initializer is required as gnus-request-set-mark
1272           ;; calls gnus-group-real-name to strip off the host name
1273           ;; before calling the backend.  Now that the backend is
1274           ;; trying to call gnus-request-set-mark, I have to
1275           ;; reconstruct the original group name.
1276           (or (gnus-get-info group)
1277               (gnus-get-info
1278                (setq group (gnus-group-full-name
1279                             group gnus-command-method))))))
1280     (gnus-request-set-mark group actions)
1281
1282     (when info
1283       (dolist (action actions)
1284         (let ((range (nth 0 action))
1285               (what  (nth 1 action))
1286               (marks (nth 2 action)))
1287           (dolist (mark marks)
1288             (cond ((eq mark 'read)
1289                    (gnus-info-set-read
1290                     info
1291                     (funcall (if (eq what 'add)
1292                                  'gnus-range-add
1293                                'gnus-remove-from-range)
1294                              (gnus-info-read info)
1295                              range))
1296                    (gnus-get-unread-articles-in-group
1297                     info
1298                     (gnus-active (gnus-info-group info))))
1299                   ((memq mark '(tick))
1300                    (let ((info-marks (assoc mark (gnus-info-marks info))))
1301                      (unless info-marks
1302                        (gnus-info-set-marks info (cons (setq info-marks (list mark)) (gnus-info-marks info))))
1303                      (setcdr info-marks (funcall (if (eq what 'add)
1304                                   'gnus-range-add
1305                                 'gnus-remove-from-range)
1306                               (cdr info-marks)
1307                               range))))))))
1308
1309       ;;Marks can be synchronized at any time by simply toggling from
1310       ;;unplugged to plugged.  If that is what is happening right now, make
1311       ;;sure that the group buffer is up to date.
1312           (when (gnus-buffer-live-p gnus-group-buffer)
1313             (gnus-group-update-group group t)))
1314     nil))
1315
1316 (defun gnus-agent-save-active (method)
1317   (when (gnus-agent-method-p method)
1318     (let* ((gnus-command-method method)
1319            (new (gnus-make-hashtable (count-lines (point-min) (point-max))))
1320            (file (gnus-agent-lib-file "active")))
1321       (gnus-active-to-gnus-format nil new)
1322       (gnus-agent-write-active file new)
1323       (erase-buffer)
1324       (let ((nnheader-file-coding-system gnus-agent-file-coding-system))
1325         (nnheader-insert-file-contents file)))))
1326
1327 (defun gnus-agent-write-active (file new)
1328     (gnus-make-directory (file-name-directory file))
1329     (let ((nnmail-active-file-coding-system gnus-agent-file-coding-system))
1330       ;; The hashtable contains real names of groups.  However, do NOT
1331       ;; add the foreign server prefix as gnus-active-to-gnus-format
1332       ;; will add it while reading the file.
1333       (gnus-write-active-file file new nil)))
1334
1335 ;;;###autoload
1336 (defun gnus-agent-possibly-alter-active (group active &optional info)
1337   "Possibly expand a group's active range to include articles
1338 downloaded into the agent."
1339   (let* ((gnus-command-method (or gnus-command-method
1340                                   (gnus-find-method-for-group group))))
1341     (when (gnus-agent-method-p gnus-command-method)
1342       (let* ((local (gnus-agent-get-local group))
1343              (active-min (or (car active) 0))
1344              (active-max (or (cdr active) 0))
1345              (agent-min (or (car local) active-min))
1346              (agent-max (or (cdr local) active-max)))
1347
1348         (when (< agent-min active-min)
1349           (setcar active agent-min))
1350
1351         (when (> agent-max active-max)
1352           (setcdr active agent-max))
1353
1354         (when (and info (< agent-max (- active-min 100)))
1355           ;; I'm expanding the active range by such a large amount
1356           ;; that there is a gap of more than 100 articles between the
1357           ;; last article known to the agent and the first article
1358           ;; currently available on the server.  This gap contains
1359           ;; articles that have been lost, mark them as read so that
1360           ;; gnus doesn't waste resources trying to fetch them.
1361
1362           ;; NOTE: I don't do this for smaller gaps (< 100) as I don't
1363           ;; want to modify the local file everytime someone restarts
1364           ;; gnus.  The small gap will cause a tiny performance hit
1365           ;; when gnus tries, and fails, to retrieve the articles.
1366           ;; Still that should be smaller than opening a buffer,
1367           ;; printing this list to the buffer, and then writing it to a
1368           ;; file.
1369
1370           (let ((read (gnus-info-read info)))
1371             (gnus-info-set-read
1372              info
1373              (gnus-range-add
1374               read
1375               (list (cons (1+ agent-max)
1376                           (1- active-min))))))
1377
1378           ;; Lie about the agent's local range for this group to
1379           ;; disable the set read each time this server is opened.
1380           ;; NOTE: Opening this group will restore the valid local
1381           ;; range but it will also expand the local range to
1382           ;; incompass the new active range.
1383           (gnus-agent-set-local group agent-min (1- active-min)))))))
1384
1385 (defun gnus-agent-save-group-info (method group active)
1386   "Update a single group's active range in the agent's copy of the server's active file."
1387   (when (gnus-agent-method-p method)
1388     (let* ((gnus-command-method (or method gnus-command-method))
1389            (coding-system-for-write nnheader-file-coding-system)
1390            (file-name-coding-system nnmail-pathname-coding-system)
1391            (file (gnus-agent-lib-file "active"))
1392            oactive-min oactive-max)
1393       (gnus-make-directory (file-name-directory file))
1394       (with-temp-file file
1395         ;; Emacs got problem to match non-ASCII group in multibyte buffer.
1396         (mm-disable-multibyte)
1397         (when (file-exists-p file)
1398           (nnheader-insert-file-contents file)
1399
1400           (goto-char (point-min))
1401           (when (re-search-forward
1402                  (concat "^" (regexp-quote group) " ") nil t)
1403             (save-excursion
1404               (setq oactive-max (read (current-buffer)) ;; max
1405                     oactive-min (read (current-buffer)))) ;; min
1406             (gnus-delete-line)))
1407         (when active
1408           (insert (format "%S %d %d y\n" (intern group)
1409                           (max (or oactive-max (cdr active)) (cdr active))
1410                           (min (or oactive-min (car active)) (car active))))
1411           (goto-char (point-max))
1412           (while (search-backward "\\." nil t)
1413             (delete-char 1)))))))
1414
1415 (defun gnus-agent-get-group-info (method group)
1416   "Get a single group's active range in the agent's copy of the server's active file."
1417   (when (gnus-agent-method-p method)
1418     (let* ((gnus-command-method (or method gnus-command-method))
1419            (coding-system-for-write nnheader-file-coding-system)
1420            (file-name-coding-system nnmail-pathname-coding-system)
1421            (file (gnus-agent-lib-file "active"))
1422            oactive-min oactive-max)
1423       (gnus-make-directory (file-name-directory file))
1424       (with-temp-buffer
1425         ;; Emacs got problem to match non-ASCII group in multibyte buffer.
1426         (mm-disable-multibyte)
1427         (when (file-exists-p file)
1428           (nnheader-insert-file-contents file)
1429
1430           (goto-char (point-min))
1431           (when (re-search-forward
1432                  (concat "^" (regexp-quote group) " ") nil t)
1433             (save-excursion
1434               (setq oactive-max (read (current-buffer)) ;; max
1435                     oactive-min (read (current-buffer))) ;; min
1436               (cons oactive-min oactive-max))))))))
1437
1438 (defvar gnus-agent-decoded-group-names nil
1439   "Alist of non-ASCII group names and decoded ones.")
1440
1441 (defun gnus-agent-decoded-group-name (group)
1442   "Return a decoded group name of GROUP."
1443   (or (cdr (assoc group gnus-agent-decoded-group-names))
1444       (if (string-match "[^\000-\177]" group)
1445           (let ((decoded (gnus-group-decoded-name group)))
1446             (push (cons group decoded) gnus-agent-decoded-group-names)
1447             decoded)
1448         group)))
1449
1450 (defun gnus-agent-group-path (group)
1451   "Translate GROUP into a file name."
1452
1453   ;; NOTE: This is what nnmail-group-pathname does as of Apr 2003.
1454   ;; The two methods must be kept synchronized, which is why
1455   ;; gnus-agent-group-pathname was added.
1456
1457   (setq group
1458         (nnheader-translate-file-chars
1459          (nnheader-replace-duplicate-chars-in-string
1460           (nnheader-replace-chars-in-string
1461            (gnus-group-real-name (gnus-agent-decoded-group-name group))
1462            ?/ ?_)
1463           ?. ?_)))
1464   (if (or nnmail-use-long-file-names
1465           (file-directory-p (expand-file-name group (gnus-agent-directory))))
1466       group
1467     (nnheader-replace-chars-in-string group ?. ?/)))
1468
1469 (defun gnus-agent-group-pathname (group)
1470   "Translate GROUP into a file name."
1471   ;; nnagent uses nnmail-group-pathname to read articles while
1472   ;; unplugged.  The agent must, therefore, use the same directory
1473   ;; while plugged.
1474   (nnmail-group-pathname
1475    (gnus-group-real-name (gnus-agent-decoded-group-name group))
1476    (if gnus-command-method
1477        (gnus-agent-directory)
1478      (let ((gnus-command-method (gnus-find-method-for-group group)))
1479        (gnus-agent-directory)))))
1480
1481 (defun gnus-agent-get-function (method)
1482   (if (gnus-online method)
1483       (car method)
1484     (require 'nnagent)
1485     'nnagent))
1486
1487 (defun gnus-agent-covered-methods ()
1488   "Return the subset of methods that are covered by the agent."
1489   (delq nil (mapcar #'gnus-server-to-method gnus-agent-covered-methods)))
1490
1491 ;;; History functions
1492
1493 (defun gnus-agent-history-buffer ()
1494   (cdr (assoc (gnus-agent-method) gnus-agent-history-buffers)))
1495
1496 (defun gnus-agent-open-history ()
1497   (save-excursion
1498     (push (cons (gnus-agent-method)
1499                 (set-buffer (gnus-get-buffer-create
1500                              (format " *Gnus agent %s history*"
1501                                      (gnus-agent-method)))))
1502           gnus-agent-history-buffers)
1503     (mm-disable-multibyte) ;; everything is binary
1504     (erase-buffer)
1505     (insert "\n")
1506     (let ((file (gnus-agent-lib-file "history")))
1507       (when (file-exists-p file)
1508         (nnheader-insert-file-contents file))
1509       (set (make-local-variable 'gnus-agent-file-name) file))))
1510
1511 (defun gnus-agent-close-history ()
1512   (when (gnus-buffer-live-p gnus-agent-current-history)
1513     (kill-buffer gnus-agent-current-history)
1514     (setq gnus-agent-history-buffers
1515           (delq (assoc (gnus-agent-method) gnus-agent-history-buffers)
1516                 gnus-agent-history-buffers))))
1517
1518 ;;;
1519 ;;; Fetching
1520 ;;;
1521
1522 (defun gnus-agent-fetch-articles (group articles)
1523   "Fetch ARTICLES from GROUP and put them into the Agent."
1524   (when articles
1525     (gnus-agent-load-alist group)
1526     (let* ((alist   gnus-agent-article-alist)
1527            (headers (if (< (length articles) 2) nil gnus-newsgroup-headers))
1528            (selected-sets (list nil))
1529            (current-set-size 0)
1530            article
1531            header-number)
1532       ;; Check each article
1533       (while (setq article (pop articles))
1534         ;; Skip alist entries preceeding this article
1535         (while (> article (or (caar alist) (1+ article)))
1536           (setq alist (cdr alist)))
1537
1538         ;; Prune off articles that we have already fetched.
1539         (unless (and (eq article (caar alist))
1540                      (cdar alist))
1541           ;; Skip headers preceeding this article
1542           (while (> article
1543                     (setq header-number
1544                           (let* ((header (car headers)))
1545                             (if header
1546                                 (mail-header-number header)
1547                               (1+ article)))))
1548             (setq headers (cdr headers)))
1549
1550           ;; Add this article to the current set
1551           (setcar selected-sets (cons article (car selected-sets)))
1552
1553           ;; Update the set size, when the set is too large start a
1554           ;; new one.  I do this after adding the article as I want at
1555           ;; least one article in each set.
1556           (when (< gnus-agent-max-fetch-size
1557                    (setq current-set-size
1558                          (+ current-set-size
1559                             (if (= header-number article)
1560                                 (let ((char-size (mail-header-chars
1561                                                   (car headers))))
1562                                   (if (<= char-size 0)
1563                                       ;; The char size was missing/invalid,
1564                                       ;; assume a worst-case situation of
1565                                       ;; 65 char/line.  If the line count
1566                                       ;; is missing, arbitrarily assume a
1567                                       ;; size of 1000 characters.
1568                                     (max (* 65 (mail-header-lines
1569                                                 (car headers)))
1570                                          1000)
1571                                     char-size))
1572                               0))))
1573             (setcar selected-sets (nreverse (car selected-sets)))
1574             (setq selected-sets (cons nil selected-sets)
1575                   current-set-size 0))))
1576
1577       (when (or (cdr selected-sets) (car selected-sets))
1578         (let* ((fetched-articles (list nil))
1579                (tail-fetched-articles fetched-articles)
1580                (dir (gnus-agent-group-pathname group))
1581                (date (time-to-days (current-time)))
1582                (case-fold-search t)
1583                pos crosses id
1584                (file-name-coding-system nnmail-pathname-coding-system))
1585
1586           (setcar selected-sets (nreverse (car selected-sets)))
1587           (setq selected-sets (nreverse selected-sets))
1588
1589           (gnus-make-directory dir)
1590           (gnus-message 7 "Fetching articles for %s..." group)
1591
1592           (unwind-protect
1593               (while (setq articles (pop selected-sets))
1594                 ;; Fetch the articles from the backend.
1595                 (if (gnus-check-backend-function 'retrieve-articles group)
1596                     (setq pos (gnus-retrieve-articles articles group))
1597                   (with-temp-buffer
1598                     (let (article)
1599                       (while (setq article (pop articles))
1600                         (gnus-message 10 "Fetching article %s for %s..."
1601                                       article group)
1602                         (when (or
1603                                (gnus-backlog-request-article group article
1604                                                              nntp-server-buffer)
1605                                (gnus-request-article article group))
1606                           (goto-char (point-max))
1607                           (push (cons article (point)) pos)
1608                           (insert-buffer-substring nntp-server-buffer)))
1609                       (copy-to-buffer
1610                        nntp-server-buffer (point-min) (point-max))
1611                       (setq pos (nreverse pos)))))
1612                 ;; Then save these articles into the Agent.
1613                 (save-excursion
1614                   (set-buffer nntp-server-buffer)
1615                   (while pos
1616                     (narrow-to-region (cdar pos) (or (cdadr pos) (point-max)))
1617                     (goto-char (point-min))
1618                     (unless (eobp) ;; Don't save empty articles.
1619                       (when (search-forward "\n\n" nil t)
1620                         (when (search-backward "\nXrefs: " nil t)
1621                           ;; Handle cross posting.
1622                           (goto-char (match-end 0)) ; move to end of header name
1623                           (skip-chars-forward "^ ") ; skip server name
1624                           (skip-chars-forward " ")
1625                           (setq crosses nil)
1626                           (while (looking-at "\\([^: \n]+\\):\\([0-9]+\\) *")
1627                             (push (cons (buffer-substring (match-beginning 1)
1628                                                           (match-end 1))
1629                                         (string-to-number
1630                                          (buffer-substring (match-beginning 2)
1631                                                            (match-end 2))))
1632                                   crosses)
1633                             (goto-char (match-end 0)))
1634                           (gnus-agent-crosspost crosses (caar pos) date)))
1635                       (goto-char (point-min))
1636                       (if (not (re-search-forward
1637                                 "^Message-ID: *<\\([^>\n]+\\)>" nil t))
1638                           (setq id "No-Message-ID-in-article")
1639                         (setq id (buffer-substring
1640                                   (match-beginning 1) (match-end 1))))
1641                       (let ((coding-system-for-write
1642                              gnus-agent-file-coding-system))
1643                         (write-region (point-min) (point-max)
1644                                       (concat dir (number-to-string (caar pos)))
1645                                       nil 'silent))
1646
1647                       (gnus-agent-append-to-list
1648                        tail-fetched-articles (caar pos)))
1649                     (widen)
1650                     (setq pos (cdr pos)))))
1651
1652             (gnus-agent-save-alist group (cdr fetched-articles) date)
1653             (gnus-agent-update-files-total-fetched-for group (cdr fetched-articles))
1654
1655             (gnus-message 7 ""))
1656           (cdr fetched-articles))))))
1657
1658 (defun gnus-agent-unfetch-articles (group articles)
1659   "Delete ARTICLES that were fetched from GROUP into the agent."
1660   (when articles
1661     (gnus-agent-with-refreshed-group
1662      group
1663      (gnus-agent-load-alist group)
1664      (let* ((alist (cons nil gnus-agent-article-alist))
1665             (articles (sort articles #'<))
1666             (next-possibility alist)
1667             (delete-this (pop articles)))
1668        (while (and (cdr next-possibility) delete-this)
1669          (let ((have-this (caar (cdr next-possibility))))
1670            (cond
1671             ((< delete-this have-this)
1672              (setq delete-this (pop articles)))
1673             ((= delete-this have-this)
1674              (let ((timestamp (cdar (cdr next-possibility))))
1675                (when timestamp
1676                  (let* ((file-name (concat (gnus-agent-group-pathname group)
1677                                            (number-to-string have-this)))
1678                         (size-file
1679                          (float (or (and gnus-agent-total-fetched-hashtb
1680                                          (nth 7 (file-attributes file-name)))
1681                                     0)))
1682                         (file-name-coding-system
1683                          nnmail-pathname-coding-system))
1684                    (delete-file file-name)
1685                    (gnus-agent-update-files-total-fetched-for
1686                     group (- size-file)))))
1687
1688              (setcdr next-possibility (cddr next-possibility)))
1689             (t
1690              (setq next-possibility (cdr next-possibility))))))
1691        (setq gnus-agent-article-alist (cdr alist))
1692        (gnus-agent-save-alist group)))))
1693
1694 (defun gnus-agent-crosspost (crosses article &optional date)
1695   (setq date (or date t))
1696
1697   (let (gnus-agent-article-alist group alist beg end)
1698     (save-excursion
1699       (set-buffer gnus-agent-overview-buffer)
1700       (when (nnheader-find-nov-line article)
1701         (forward-word 1)
1702         (setq beg (point))
1703         (setq end (progn (forward-line 1) (point)))))
1704     (while crosses
1705       (setq group (caar crosses))
1706       (unless (setq alist (assoc group gnus-agent-group-alist))
1707         (push (setq alist (list group (gnus-agent-load-alist (caar crosses))))
1708               gnus-agent-group-alist))
1709       (setcdr alist (cons (cons (cdar crosses) date) (cdr alist)))
1710       (save-excursion
1711         (set-buffer (gnus-get-buffer-create (format " *Gnus agent overview %s*"
1712                                                     group)))
1713         (when (= (point-max) (point-min))
1714           (push (cons group (current-buffer)) gnus-agent-buffer-alist)
1715           (ignore-errors
1716            (let ((file-name-coding-system nnmail-pathname-coding-system))
1717              (nnheader-insert-file-contents
1718               (gnus-agent-article-name ".overview" group)))))
1719         (nnheader-find-nov-line (string-to-number (cdar crosses)))
1720         (insert (string-to-number (cdar crosses)))
1721         (insert-buffer-substring gnus-agent-overview-buffer beg end)
1722         (gnus-agent-check-overview-buffer))
1723       (setq crosses (cdr crosses)))))
1724
1725 (defun gnus-agent-backup-overview-buffer ()
1726   (when gnus-newsgroup-name
1727     (let ((root (gnus-agent-article-name ".overview" gnus-newsgroup-name))
1728           (cnt 0)
1729           name
1730           (file-name-coding-system nnmail-pathname-coding-system))
1731       (while (file-exists-p
1732               (setq name (concat root "~"
1733                                  (int-to-string (setq cnt (1+ cnt))) "~"))))
1734       (write-region (point-min) (point-max) name nil 'no-msg)
1735       (gnus-message 1 "Created backup copy of overview in %s." name)))
1736   t)
1737
1738 (defun gnus-agent-check-overview-buffer (&optional buffer)
1739   "Check the overview file given for sanity.
1740 In particular, checks that the file is sorted by article number
1741 and that there are no duplicates."
1742   (let ((prev-num -1)
1743         (backed-up nil))
1744     (save-excursion
1745       (when buffer
1746         (set-buffer buffer))
1747       (save-restriction
1748         (widen)
1749         (goto-char (point-min))
1750
1751         (while (< (point) (point-max))
1752           (let ((p (point))
1753                 (cur (condition-case nil
1754                          (read (current-buffer))
1755                        (error nil))))
1756             (cond
1757              ((or (not (integerp cur))
1758                   (not (eq (char-after) ?\t)))
1759               (or backed-up
1760                   (setq backed-up (gnus-agent-backup-overview-buffer)))
1761               (gnus-message 1
1762                             "Overview buffer contains garbage '%s'."
1763                             (buffer-substring
1764                              p (point-at-eol))))
1765              ((= cur prev-num)
1766               (or backed-up
1767                   (setq backed-up (gnus-agent-backup-overview-buffer)))
1768               (gnus-message 1
1769                             "Duplicate overview line for %d" cur)
1770               (delete-region p (progn (forward-line 1) (point))))
1771              ((< cur prev-num)
1772               (or backed-up
1773                   (setq backed-up (gnus-agent-backup-overview-buffer)))
1774               (gnus-message 1 "Overview buffer not sorted!")
1775               (sort-numeric-fields 1 (point-min) (point-max))
1776               (goto-char (point-min))
1777               (setq prev-num -1))
1778              (t
1779               (setq prev-num cur)))
1780             (forward-line 1)))))))
1781
1782 (defun gnus-agent-flush-server (&optional server-or-method)
1783   "Flush all agent index files for every subscribed group within
1784   the given SERVER-OR-METHOD.  When called with nil, the current
1785   value of gnus-command-method identifies the server."
1786   (let* ((gnus-command-method (if server-or-method
1787                                   (gnus-server-to-method server-or-method)
1788                                 gnus-command-method))
1789          (alist gnus-newsrc-alist))
1790     (while alist
1791       (let ((entry (pop alist)))
1792         (when (gnus-methods-equal-p gnus-command-method (gnus-info-method entry))
1793           (gnus-agent-flush-group (gnus-info-group entry))))))) 
1794
1795 (defun gnus-agent-flush-group (group)
1796   "Flush the agent's index files such that the GROUP no longer
1797 appears to have any local content.  The actual content, the
1798 article files, may then be deleted using gnus-agent-expire-group.
1799 If flushing was a mistake, the gnus-agent-regenerate-group method
1800 provides an undo mechanism by reconstructing the index files from
1801 the article files."
1802   (interactive (list (gnus-agent-read-group)))
1803
1804   (let* ((gnus-command-method (or gnus-command-method
1805                                   (gnus-find-method-for-group group)))
1806          (overview (gnus-agent-article-name ".overview" group))
1807          (agentview (gnus-agent-article-name ".agentview" group))
1808          (file-name-coding-system nnmail-pathname-coding-system))
1809
1810     (if (file-exists-p overview)
1811         (delete-file overview))
1812     (if (file-exists-p agentview)
1813         (delete-file agentview))
1814
1815     (gnus-agent-update-view-total-fetched-for group nil gnus-command-method)
1816     (gnus-agent-update-view-total-fetched-for group t   gnus-command-method)
1817
1818     ;(gnus-agent-set-local group nil nil)
1819     ;(gnus-agent-save-local t)
1820     (gnus-agent-save-group-info nil group nil)))
1821
1822 (defun gnus-agent-flush-cache ()
1823   "Flush the agent's index files such that the group no longer
1824 appears to have any local content.  The actual content, the
1825 article files, is then deleted using gnus-agent-expire-group. The
1826 gnus-agent-regenerate-group method provides an undo mechanism by
1827 reconstructing the index files from the article files."
1828   (interactive)
1829   (save-excursion
1830     (let ((file-name-coding-system nnmail-pathname-coding-system))
1831       (while gnus-agent-buffer-alist
1832         (set-buffer (cdar gnus-agent-buffer-alist))
1833         (let ((coding-system-for-write gnus-agent-file-coding-system))
1834           (write-region (point-min) (point-max)
1835                         (gnus-agent-article-name ".overview"
1836                                                  (caar gnus-agent-buffer-alist))
1837                         nil 'silent))
1838         (setq gnus-agent-buffer-alist (cdr gnus-agent-buffer-alist)))
1839       (while gnus-agent-group-alist
1840         (with-temp-file (gnus-agent-article-name
1841                          ".agentview" (caar gnus-agent-group-alist))
1842           (princ (cdar gnus-agent-group-alist))
1843           (insert "\n")
1844           (princ 1 (current-buffer))
1845           (insert "\n"))
1846         (setq gnus-agent-group-alist (cdr gnus-agent-group-alist))))))
1847
1848 ;;;###autoload
1849 (defun gnus-agent-find-parameter (group symbol)
1850   "Search for GROUPs SYMBOL in the group's parameters, the group's
1851 topic parameters, the group's category, or the customizable
1852 variables.  Returns the first non-nil value found."
1853   (or (gnus-group-find-parameter group symbol t)
1854       (gnus-group-parameter-value (cdr (gnus-group-category group)) symbol t)
1855       (symbol-value
1856        (cdr
1857         (assq symbol
1858               '((agent-short-article . gnus-agent-short-article)
1859                 (agent-long-article . gnus-agent-long-article)
1860                 (agent-low-score . gnus-agent-low-score)
1861                 (agent-high-score . gnus-agent-high-score)
1862                 (agent-days-until-old . gnus-agent-expire-days)
1863                 (agent-enable-expiration
1864                  . gnus-agent-enable-expiration)
1865                 (agent-predicate . gnus-agent-predicate)))))))
1866
1867 (defun gnus-agent-fetch-headers (group &optional force)
1868   "Fetch interesting headers into the agent.  The group's overview
1869 file will be updated to include the headers while a list of available
1870 article numbers will be returned."
1871   (let* ((fetch-all (and gnus-agent-consider-all-articles
1872                          ;; Do not fetch all headers if the predicate
1873                          ;; implies that we only consider unread articles.
1874                          (not (gnus-predicate-implies-unread
1875                                (gnus-agent-find-parameter group
1876                                                           'agent-predicate)))))
1877          (articles (if fetch-all
1878                        (if gnus-newsgroup-maximum-articles
1879                            (let ((active (gnus-active group)))
1880                              (gnus-uncompress-range
1881                               (cons (max (car active)
1882                                          (- (cdr active)
1883                                             gnus-newsgroup-maximum-articles
1884                                             -1))
1885                                     (cdr active))))
1886                          (gnus-uncompress-range (gnus-active group)))
1887                      (gnus-list-of-unread-articles group)))
1888          (gnus-decode-encoded-word-function 'identity)
1889          (gnus-decode-encoded-address-function 'identity)
1890          (file (gnus-agent-article-name ".overview" group))
1891          (file-name-coding-system nnmail-pathname-coding-system))
1892
1893     (unless fetch-all
1894       ;; Add articles with marks to the list of article headers we want to
1895       ;; fetch.  Don't fetch articles solely on the basis of a recent or seen
1896       ;; mark, but do fetch recent or seen articles if they have other, more
1897       ;; interesting marks.  (We have to fetch articles with boring marks
1898       ;; because otherwise the agent will remove their marks.)
1899       (dolist (arts (gnus-info-marks (gnus-get-info group)))
1900         (unless (memq (car arts) '(seen recent killed cache))
1901           (setq articles (gnus-range-add articles (cdr arts)))))
1902       (setq articles (sort (gnus-uncompress-sequence articles) '<)))
1903
1904     ;; At this point, I have the list of articles to consider for
1905     ;; fetching.  This is the list that I'll return to my caller. Some
1906     ;; of these articles may have already been fetched.  That's OK as
1907     ;; the fetch article code will filter those out.  Internally, I'll
1908     ;; filter this list to just those articles whose headers need to
1909     ;; be fetched.
1910     (let ((articles articles))
1911       ;; Remove known articles.
1912       (when (and (or gnus-agent-cache
1913                      (not gnus-plugged))
1914                  (gnus-agent-load-alist group))
1915         ;; Remove articles marked as downloaded.
1916         (if fetch-all
1917             ;; I want to fetch all headers in the active range.
1918             ;; Therefore, exclude only those headers that are in the
1919             ;; article alist.
1920             ;; NOTE: This is probably NOT what I want to do after
1921             ;; agent expiration in this group.
1922             (setq articles (gnus-agent-uncached-articles articles group))
1923
1924           ;; I want to only fetch those headers that have never been
1925           ;; fetched.  Therefore, exclude all headers that are, or
1926           ;; WERE, in the article alist.
1927           (let ((low (1+ (caar (last gnus-agent-article-alist))))
1928                 (high (cdr (gnus-active group))))
1929             ;; Low can be greater than High when the same group is
1930             ;; fetched twice in the same session {The first fetch will
1931             ;; fill the article alist such that (last
1932             ;; gnus-agent-article-alist) equals (cdr (gnus-active
1933             ;; group))}.  The addition of one(the 1+ above) then
1934             ;; forces Low to be greater than High.  When this happens,
1935             ;; gnus-list-range-intersection returns nil which
1936             ;; indicates that no headers need to be fetched. -- Kevin
1937             (setq articles (gnus-list-range-intersection
1938                             articles (list (cons low high)))))))
1939
1940       (gnus-message
1941        10 "gnus-agent-fetch-headers: undownloaded articles are '%s'"
1942        (gnus-compress-sequence articles t))
1943
1944       (save-excursion
1945         (set-buffer nntp-server-buffer)
1946
1947         (if articles
1948             (progn
1949               (gnus-message 7 "Fetching headers for %s..." group)
1950
1951               ;; Fetch them.
1952               (gnus-make-directory (nnheader-translate-file-chars
1953                                     (file-name-directory file) t))
1954
1955               (unless (eq 'nov (gnus-retrieve-headers articles group))
1956                 (nnvirtual-convert-headers))
1957               (gnus-agent-check-overview-buffer)
1958               ;; Move these headers to the overview buffer so that
1959               ;; gnus-agent-braid-nov can merge them with the contents
1960               ;; of FILE.
1961               (copy-to-buffer
1962                gnus-agent-overview-buffer (point-min) (point-max))
1963               ;; NOTE: Call g-a-brand-nov even when the file does not
1964               ;; exist.  As a minimum, it will validate the article
1965               ;; numbers already in the buffer.
1966               (gnus-agent-braid-nov group articles file)
1967               (let ((coding-system-for-write
1968                      gnus-agent-file-coding-system))
1969                 (gnus-agent-check-overview-buffer)
1970                 (write-region (point-min) (point-max) file nil 'silent))
1971               (gnus-agent-update-view-total-fetched-for group t)
1972               (gnus-agent-save-alist group articles nil)
1973               articles)
1974           (ignore-errors
1975             (erase-buffer)
1976             (nnheader-insert-file-contents file)))))
1977     articles))
1978
1979 (defsubst gnus-agent-read-article-number ()
1980   "Reads the article number at point.  Returns nil when a valid article number can not be read."
1981
1982   ;; It is unfortunate but the read function quietly overflows
1983   ;; integer.  As a result, I have to use string operations to test
1984   ;; for overflow BEFORE calling read.
1985   (when (looking-at "[0-9]+\t")
1986     (let ((len (- (match-end 0) (match-beginning 0))))
1987       (cond ((< len 9)
1988              (read (current-buffer)))
1989             ((= len 9)
1990              ;; Many 9 digit base-10 numbers can be represented in a 27-bit int
1991              ;; Back convert from int to string to ensure that this is one of them.
1992              (let* ((str1 (buffer-substring (match-beginning 0) (1- (match-end 0))))
1993                     (num (read (current-buffer)))
1994                     (str2 (int-to-string num)))
1995                (when (equal str1 str2)
1996                  num)))))))
1997
1998 (defsubst gnus-agent-copy-nov-line (article)
1999   "Copy the indicated ARTICLE from the overview buffer to the nntp server buffer."
2000   (let (art b e)
2001     (set-buffer gnus-agent-overview-buffer)
2002     (while (and (not (eobp))
2003                 (or (not (setq art (gnus-agent-read-article-number)))
2004                     (< art article)))
2005       (forward-line 1))
2006     (beginning-of-line)
2007     (if (or (eobp)
2008             (not (eq article art)))
2009         (set-buffer nntp-server-buffer)
2010       (setq b (point))
2011       (setq e (progn (forward-line 1) (point)))
2012       (set-buffer nntp-server-buffer)
2013       (insert-buffer-substring gnus-agent-overview-buffer b e))))
2014
2015 (defun gnus-agent-braid-nov (group articles file)
2016   "Merge agent overview data with given file.
2017 Takes unvalidated headers for ARTICLES from
2018 `gnus-agent-overview-buffer' and validated headers from the given
2019 FILE and places the combined valid headers into
2020 `nntp-server-buffer'.  This function can be used, when file
2021 doesn't exist, to valid the overview buffer."
2022   (let (start last)
2023     (set-buffer gnus-agent-overview-buffer)
2024     (goto-char (point-min))
2025     (set-buffer nntp-server-buffer)
2026     (erase-buffer)
2027     (when (file-exists-p file)
2028       (nnheader-insert-file-contents file))
2029     (goto-char (point-max))
2030     (forward-line -1)
2031
2032     (unless (or (= (point-min) (point-max))
2033                 (< (setq last (read (current-buffer))) (car articles)))
2034       ;; Old and new overlap -- We do it the hard way.
2035       (when (nnheader-find-nov-line (car articles))
2036         ;; Replacing existing NOV entry
2037         (delete-region (point) (progn (forward-line 1) (point))))
2038       (gnus-agent-copy-nov-line (pop articles))
2039
2040       (ignore-errors
2041         (while articles
2042           (while (let ((art (read (current-buffer))))
2043                    (cond ((< art (car articles))
2044                           (forward-line 1)
2045                           t)
2046                          ((= art (car articles))
2047                           (beginning-of-line)
2048                           (delete-region
2049                            (point) (progn (forward-line 1) (point)))
2050                           nil)
2051                          (t
2052                           (beginning-of-line)
2053                           nil))))
2054
2055           (gnus-agent-copy-nov-line (pop articles)))))
2056
2057     (goto-char (point-max))
2058
2059     ;; Append the remaining lines
2060     (when articles
2061       (when last
2062         (set-buffer gnus-agent-overview-buffer)
2063         (setq start (point))
2064         (set-buffer nntp-server-buffer))
2065
2066       (let ((p (point)))
2067         (insert-buffer-substring gnus-agent-overview-buffer start)
2068         (goto-char p))
2069
2070       (setq last (or last -134217728))
2071       (while (catch 'problems
2072                (let (sort art)
2073                  (while (not (eobp))
2074                    (setq art (gnus-agent-read-article-number))
2075                    (cond ((not art)
2076                           ;; Bad art num - delete this line
2077                           (beginning-of-line)
2078                           (delete-region (point) (progn (forward-line 1) (point))))
2079                          ((< art last)
2080                           ;; Art num out of order - enable sort
2081                           (setq sort t)
2082                           (forward-line 1))
2083                          ((= art last)
2084                           ;; Bad repeat of art number - delete this line
2085                           (beginning-of-line)
2086                           (delete-region (point) (progn (forward-line 1) (point))))
2087                          (t
2088                           ;; Good art num
2089                           (setq last art)
2090                           (forward-line 1))))
2091                  (when sort
2092                    ;; something is seriously wrong as we simply shouldn't see out-of-order data.
2093                    ;; First, we'll fix the sort.
2094                    (sort-numeric-fields 1 (point-min) (point-max))
2095
2096                    ;; but now we have to consider that we may have duplicate rows...
2097                    ;; so reset to beginning of file
2098                    (goto-char (point-min))
2099                    (setq last -134217728)
2100
2101                    ;; and throw a code that restarts this scan
2102                    (throw 'problems t))
2103                  nil))))))
2104
2105 ;; Keeps the compiler from warning about the free variable in
2106 ;; gnus-agent-read-agentview.
2107 (eval-when-compile
2108   (defvar gnus-agent-read-agentview))
2109
2110 (defun gnus-agent-load-alist (group)
2111   "Load the article-state alist for GROUP."
2112   ;; Bind free variable that's used in `gnus-agent-read-agentview'.
2113   (let ((gnus-agent-read-agentview group)
2114         (file-name-coding-system nnmail-pathname-coding-system))
2115     (setq gnus-agent-article-alist
2116           (gnus-cache-file-contents
2117            (gnus-agent-article-name ".agentview" group)
2118            'gnus-agent-file-loading-cache
2119            'gnus-agent-read-agentview))))
2120
2121 (defun gnus-agent-read-agentview (file)
2122   "Load FILE and do a `read' there."
2123   (with-temp-buffer
2124     (condition-case nil
2125         (progn
2126           (nnheader-insert-file-contents file)
2127           (goto-char (point-min))
2128           (let ((alist (read (current-buffer)))
2129                 (version (condition-case nil (read (current-buffer))
2130                            (end-of-file 0)))
2131                 changed-version)
2132
2133             (cond
2134              ((= version 0)
2135               (let ((inhibit-quit t)
2136                     entry)
2137                 (gnus-agent-open-history)
2138                 (set-buffer (gnus-agent-history-buffer))
2139                 (goto-char (point-min))
2140                 (while (not (eobp))
2141                   (if (and (looking-at
2142                             "[^\t\n]+\t\\([0-9]+\\)\t\\([^ \n]+\\) \\([0-9]+\\)")
2143                            (string= (match-string 2)
2144                                     gnus-agent-read-agentview)
2145                            (setq entry (assoc (string-to-number (match-string 3)) alist)))
2146                       (setcdr entry (string-to-number (match-string 1))))
2147                   (forward-line 1))
2148                 (gnus-agent-close-history)
2149                 (setq changed-version t)))
2150              ((= version 1)
2151               (setq changed-version (not (= 1 gnus-agent-article-alist-save-format))))
2152              ((= version 2)
2153               (let (uncomp)
2154                 (mapcar
2155                  (lambda (comp-list)
2156                    (let ((state (car comp-list))
2157                          (sequence (inline
2158                                      (gnus-uncompress-range
2159                                       (cdr comp-list)))))
2160                      (mapcar (lambda (article-id)
2161                                (setq uncomp (cons (cons article-id state) uncomp)))
2162                              sequence)))
2163                  alist)
2164                 (setq alist (sort uncomp 'car-less-than-car)))
2165               (setq changed-version (not (= 2 gnus-agent-article-alist-save-format)))))
2166             (when changed-version
2167               (let ((gnus-agent-article-alist alist))
2168                 (gnus-agent-save-alist gnus-agent-read-agentview)))
2169             alist))
2170       ((end-of-file file-error)
2171        ;; The agentview file is missing. 
2172        (condition-case nil
2173            ;; If the agent directory exists, attempt to perform a brute-force
2174            ;; reconstruction of its contents.
2175            (let* (alist
2176                   (file-name-coding-system nnmail-pathname-coding-system)
2177                   (file-attributes (directory-files-and-attributes 
2178                                     (gnus-agent-article-name ""
2179                                                              gnus-agent-read-agentview) nil "^[0-9]+$" t)))
2180              (while file-attributes
2181                (let ((fa (pop file-attributes)))
2182                  (unless (nth 1 fa)
2183                    (push (cons (string-to-number (nth 0 fa)) (time-to-days (nth 5 fa))) alist))))
2184              alist)
2185          (file-error nil))))))
2186
2187 (defun gnus-agent-save-alist (group &optional articles state)
2188   "Save the article-state alist for GROUP."
2189   (let* ((file-name-coding-system nnmail-pathname-coding-system)
2190          (prev (cons nil gnus-agent-article-alist))
2191          (all prev)
2192          print-level print-length item article)
2193     (while (setq article (pop articles))
2194       (while (and (cdr prev)
2195                   (< (caadr prev) article))
2196         (setq prev (cdr prev)))
2197       (cond
2198        ((not (cdr prev))
2199         (setcdr prev (list (cons article state))))
2200        ((> (caadr prev) article)
2201         (setcdr prev (cons (cons article state) (cdr prev))))
2202        ((= (caadr prev) article)
2203         (setcdr (cadr prev) state)))
2204       (setq prev (cdr prev)))
2205     (setq gnus-agent-article-alist (cdr all))
2206
2207     (gnus-agent-set-local group
2208                           (caar gnus-agent-article-alist)
2209                           (caar (last gnus-agent-article-alist)))
2210
2211     (gnus-make-directory (gnus-agent-article-name "" group))
2212     (with-temp-file (gnus-agent-article-name ".agentview" group)
2213       (cond ((eq gnus-agent-article-alist-save-format 1)
2214              (princ gnus-agent-article-alist (current-buffer)))
2215             ((eq gnus-agent-article-alist-save-format 2)
2216              (let ((compressed nil))
2217                (mapcar (lambda (pair)
2218                          (let* ((article-id (car pair))
2219                                 (day-of-download (cdr pair))
2220                                 (comp-list (assq day-of-download compressed)))
2221                            (if comp-list
2222                                (setcdr comp-list
2223                                        (cons article-id (cdr comp-list)))
2224                              (setq compressed
2225                                    (cons (list day-of-download article-id)
2226                                          compressed)))
2227                            nil)) gnus-agent-article-alist)
2228                (mapcar (lambda (comp-list)
2229                          (setcdr comp-list
2230                                  (gnus-compress-sequence
2231                                   (nreverse (cdr comp-list)))))
2232                        compressed)
2233                (princ compressed (current-buffer)))))
2234       (insert "\n")
2235       (princ gnus-agent-article-alist-save-format (current-buffer))
2236       (insert "\n"))
2237
2238     (gnus-agent-update-view-total-fetched-for group nil)))
2239
2240 (defvar gnus-agent-article-local nil)
2241 (defvar gnus-agent-file-loading-local nil)
2242
2243 (defun gnus-agent-load-local (&optional method)
2244   "Load the METHOD'S local file.  The local file contains min/max
2245 article counts for each of the method's subscribed groups."
2246   (let ((gnus-command-method (or method gnus-command-method)))
2247     (setq gnus-agent-article-local
2248           (gnus-cache-file-contents
2249            (gnus-agent-lib-file "local")
2250            'gnus-agent-file-loading-local
2251            'gnus-agent-read-and-cache-local))))
2252
2253 (defun gnus-agent-read-and-cache-local (file)
2254   "Load and read FILE then bind its contents to
2255 gnus-agent-article-local.  If that variable had `dirty' (also known as
2256 modified) original contents, they are first saved to their own file."
2257
2258   (if (and gnus-agent-article-local
2259            (symbol-value (intern "+dirty" gnus-agent-article-local)))
2260       (gnus-agent-save-local))
2261   (gnus-agent-read-local file))
2262
2263 (defun gnus-agent-read-local (file)
2264   "Load FILE and do a `read' there."
2265   (let ((my-obarray (gnus-make-hashtable (count-lines (point-min)
2266                                                       (point-max))))
2267         (line 1))
2268     (with-temp-buffer
2269       (condition-case nil
2270           (let ((nnheader-file-coding-system gnus-agent-file-coding-system))
2271             (nnheader-insert-file-contents file))
2272         (file-error))
2273
2274       (goto-char (point-min))
2275       ;; Skip any comments at the beginning of the file (the only place where they may appear)
2276       (while (= (following-char) ?\;)
2277         (forward-line 1)
2278         (setq line (1+ line)))
2279
2280       (while (not (eobp))
2281         (condition-case err
2282             (let (group
2283                   min
2284                   max
2285                   (cur (current-buffer))
2286                   (obarray my-obarray))
2287               (setq group (read cur)
2288                     min (read cur)
2289                     max (read cur))
2290
2291               (when (stringp group)
2292                 (setq group (intern group my-obarray)))
2293
2294               ;; NOTE: The '+ 0' ensure that min and max are both numerics.
2295               (set group (cons (+ 0 min) (+ 0 max))))
2296           (error
2297            (gnus-message 3 "Warning - invalid agent local: %s on line %d: %s"
2298                          file line (error-message-string err))))
2299         (forward-line 1)
2300         (setq line (1+ line))))
2301
2302     (set (intern "+dirty" my-obarray) nil)
2303     (set (intern "+method" my-obarray) gnus-command-method)
2304     my-obarray))
2305
2306 (defun gnus-agent-save-local (&optional force)
2307   "Save gnus-agent-article-local under it method's agent.lib directory."
2308   (let ((my-obarray gnus-agent-article-local))
2309     (when (and my-obarray
2310                (or force (symbol-value (intern "+dirty" my-obarray))))
2311       (let* ((gnus-command-method (symbol-value (intern "+method" my-obarray)))
2312              ;; NOTE: gnus-command-method is used within gnus-agent-lib-file.
2313              (dest (gnus-agent-lib-file "local")))
2314         (gnus-make-directory (gnus-agent-lib-file ""))
2315
2316         (let ((coding-system-for-write gnus-agent-file-coding-system)
2317               (file-name-coding-system nnmail-pathname-coding-system))
2318           (with-temp-file dest
2319             (let ((gnus-command-method (symbol-value (intern "+method" my-obarray)))
2320                   print-level print-length item article
2321                   (standard-output (current-buffer)))
2322               (mapatoms (lambda (symbol)
2323                           (cond ((not (boundp symbol))
2324                                  nil)
2325                                 ((member (symbol-name symbol) '("+dirty" "+method"))
2326                                  nil)
2327                                 (t
2328                                  (let ((range (symbol-value symbol)))
2329                                    (when range
2330                                      (prin1 symbol)
2331                                      (princ " ")
2332                                      (princ (car range))
2333                                      (princ " ")
2334                                      (princ (cdr range))
2335                                      (princ "\n"))))))
2336                         my-obarray))))))))
2337
2338 (defun gnus-agent-get-local (group &optional gmane method)
2339   (let* ((gmane (or gmane (gnus-group-real-name group)))
2340          (gnus-command-method (or method (gnus-find-method-for-group group)))
2341          (local (gnus-agent-load-local))
2342          (symb (intern gmane local))
2343          (minmax (and (boundp symb) (symbol-value symb))))
2344     (unless minmax
2345       ;; Bind these so that gnus-agent-load-alist doesn't change the
2346       ;; current alist (i.e. gnus-agent-article-alist)
2347       (let* ((gnus-agent-article-alist gnus-agent-article-alist)
2348              (gnus-agent-file-loading-cache gnus-agent-file-loading-cache)
2349              (alist (gnus-agent-load-alist group)))
2350         (when alist
2351           (setq minmax
2352                 (cons (caar alist)
2353                       (caar (last alist))))
2354           (gnus-agent-set-local group (car minmax) (cdr minmax)
2355                                 gmane gnus-command-method local))))
2356     minmax))
2357
2358 (defun gnus-agent-set-local (group min max &optional gmane method local)
2359   (let* ((gmane (or gmane (gnus-group-real-name group)))
2360          (gnus-command-method (or method (gnus-find-method-for-group group)))
2361          (local (or local (gnus-agent-load-local)))
2362          (symb (intern gmane local))
2363          (minmax (and (boundp symb) (symbol-value symb))))
2364
2365     (if (cond ((and minmax
2366                     (or (not (eq min (car minmax)))
2367                         (not (eq max (cdr minmax))))
2368                     min
2369                     max)
2370                (setcar minmax min)
2371                (setcdr minmax max)
2372                t)
2373               (minmax
2374                nil)
2375               ((and min max)
2376                (set symb (cons min max))
2377                t)
2378               (t
2379                (unintern symb local)))
2380         (set (intern "+dirty" local) t))))
2381
2382 (defun gnus-agent-article-name (article group)
2383   (expand-file-name article
2384                     (file-name-as-directory
2385                      (gnus-agent-group-pathname group))))
2386
2387 (defun gnus-agent-batch-confirmation (msg)
2388   "Show error message and return t."
2389   (gnus-message 1 msg)
2390   t)
2391
2392 ;;;###autoload
2393 (defun gnus-agent-batch-fetch ()
2394   "Start Gnus and fetch session."
2395   (interactive)
2396   (gnus)
2397   (let ((gnus-agent-confirmation-function 'gnus-agent-batch-confirmation))
2398     (gnus-agent-fetch-session))
2399   (gnus-group-exit))
2400
2401 (defun gnus-agent-fetch-session ()
2402   "Fetch all articles and headers that are eligible for fetching."
2403   (interactive)
2404   (unless gnus-agent-covered-methods
2405     (error "No servers are covered by the Gnus agent"))
2406   (unless gnus-plugged
2407     (error "Can't fetch articles while Gnus is unplugged"))
2408   (let ((methods (gnus-agent-covered-methods))
2409         groups group gnus-command-method)
2410     (save-excursion
2411       (while methods
2412         (setq gnus-command-method (car methods))
2413         (when (and (or (gnus-server-opened gnus-command-method)
2414                        (gnus-open-server gnus-command-method))
2415                    (gnus-online gnus-command-method))
2416           (setq groups (gnus-groups-from-server (car methods)))
2417           (gnus-agent-with-fetch
2418             (while (setq group (pop groups))
2419               (when (<= (gnus-group-level group)
2420                         gnus-agent-handle-level)
2421                 (if (or debug-on-error debug-on-quit)
2422                     (gnus-agent-fetch-group-1
2423                      group gnus-command-method)
2424                   (condition-case err
2425                       (gnus-agent-fetch-group-1
2426                        group gnus-command-method)
2427                     (error
2428                      (unless (funcall gnus-agent-confirmation-function
2429                                       (format "Error %s while fetching session.  Should gnus continue? "
2430                                               (error-message-string err)))
2431                        (error "Cannot fetch articles into the Gnus agent")))
2432                     (quit
2433                      (gnus-agent-regenerate-group group)
2434                      (unless (funcall gnus-agent-confirmation-function
2435                                       (format
2436                                        "%s while fetching session.  Should gnus continue? "
2437                                        (error-message-string err)))
2438                        (signal 'quit
2439                                "Cannot fetch articles into the Gnus agent")))))))))
2440         (setq methods (cdr methods)))
2441       (gnus-run-hooks 'gnus-agent-fetched-hook)
2442       (gnus-message 6 "Finished fetching articles into the Gnus agent"))))
2443
2444 (defun gnus-agent-fetch-group-1 (group method)
2445   "Fetch GROUP."
2446   (let ((gnus-command-method method)
2447         (gnus-newsgroup-name group)
2448         (gnus-newsgroup-dependencies gnus-newsgroup-dependencies)
2449         (gnus-newsgroup-headers gnus-newsgroup-headers)
2450         (gnus-newsgroup-scored gnus-newsgroup-scored)
2451         (gnus-use-cache gnus-use-cache)
2452         (gnus-summary-expunge-below gnus-summary-expunge-below)
2453         (gnus-summary-mark-below gnus-summary-mark-below)
2454         (gnus-orphan-score gnus-orphan-score)
2455         ;; Maybe some other gnus-summary local variables should also
2456         ;; be put here.
2457
2458         gnus-headers
2459         gnus-score
2460         articles arts
2461         category predicate info marks score-param
2462         )
2463     (unless (gnus-check-group group)
2464       (error "Can't open server for %s" group))
2465
2466     ;; Fetch headers.
2467     (when (or gnus-newsgroup-active
2468               (gnus-active group)
2469               (gnus-activate-group group))
2470       (let ((marked-articles gnus-newsgroup-downloadable))
2471         ;; Identify the articles marked for download
2472         (unless gnus-newsgroup-active
2473           ;; The variable gnus-newsgroup-active was selected as I need
2474           ;; a gnus-summary local variable that is NOT bound to any
2475           ;; value (its global value should default to nil).
2476           (dolist (mark gnus-agent-download-marks)
2477             (let ((arts (cdr (assq mark (gnus-info-marks
2478                                          (setq info (gnus-get-info group)))))))
2479               (when arts
2480                 (setq marked-articles (nconc (gnus-uncompress-range arts)
2481                                              marked-articles))
2482                 ))))
2483         (setq marked-articles (sort marked-articles '<))
2484
2485         ;; Fetch any new articles from the server
2486         (setq articles (gnus-agent-fetch-headers group))
2487
2488         ;; Merge new articles with marked
2489         (setq articles (sort (append marked-articles articles) '<))
2490
2491         (when articles
2492           ;; Parse them and see which articles we want to fetch.
2493           (setq gnus-newsgroup-dependencies
2494                 (or gnus-newsgroup-dependencies
2495                     (make-vector (length articles) 0)))
2496           (setq gnus-newsgroup-headers
2497                 (or gnus-newsgroup-headers
2498                     (gnus-get-newsgroup-headers-xover articles nil nil
2499                                                       group)))
2500           ;; `gnus-agent-overview-buffer' may be killed for
2501           ;; timeout reason.  If so, recreate it.
2502           (gnus-agent-create-buffer)
2503
2504           ;; Figure out how to select articles in this group
2505           (setq category (gnus-group-category group))
2506
2507           (setq predicate
2508                 (gnus-get-predicate
2509                  (gnus-agent-find-parameter group 'agent-predicate)))
2510
2511           ;; If the selection predicate requires scoring, score each header
2512           (unless (memq predicate '(gnus-agent-true gnus-agent-false))
2513             (let ((score-param
2514                    (gnus-agent-find-parameter group 'agent-score-file)))
2515               ;; Translate score-param into real one
2516               (cond
2517                ((not score-param))
2518                ((eq score-param 'file)
2519                 (setq score-param (gnus-all-score-files group)))
2520                ((stringp (car score-param)))
2521                (t
2522                 (setq score-param (list (list score-param)))))
2523               (when score-param
2524                 (gnus-score-headers score-param))))
2525
2526           (unless (and (eq predicate 'gnus-agent-false)
2527                        (not marked-articles))
2528             (let ((arts (list nil)))
2529               (let ((arts-tail arts)
2530                     (alist (gnus-agent-load-alist group))
2531                     (marked-articles marked-articles)
2532                     (gnus-newsgroup-headers gnus-newsgroup-headers))
2533                 (while (setq gnus-headers (pop gnus-newsgroup-headers))
2534                   (let ((num (mail-header-number gnus-headers)))
2535                     ;; Determine if this article is already in the cache
2536                     (while (and alist
2537                                 (> num (caar alist)))
2538                       (setq alist (cdr alist)))
2539
2540                     (unless (and (eq num (caar alist))
2541                                  (cdar alist))
2542
2543                       ;; Determine if this article was marked for download.
2544                       (while (and marked-articles
2545                                   (> num (car marked-articles)))
2546                         (setq marked-articles
2547                               (cdr marked-articles)))
2548
2549                       ;; When this article is marked, or selected by the
2550                       ;; predicate, add it to the download list
2551                       (when (or (eq num (car marked-articles))
2552                                 (let ((gnus-score
2553                                        (or (cdr
2554                                             (assq num gnus-newsgroup-scored))
2555                                            gnus-summary-default-score))
2556                                       (gnus-agent-long-article
2557                                        (gnus-agent-find-parameter
2558                                         group 'agent-long-article))
2559                                       (gnus-agent-short-article
2560                                        (gnus-agent-find-parameter
2561                                         group 'agent-short-article))
2562                                       (gnus-agent-low-score
2563                                        (gnus-agent-find-parameter
2564                                         group 'agent-low-score))
2565                                       (gnus-agent-high-score
2566                                        (gnus-agent-find-parameter
2567                                         group 'agent-high-score))
2568                                       (gnus-agent-expire-days
2569                                        (gnus-agent-find-parameter
2570                                         group 'agent-days-until-old)))
2571                                   (funcall predicate)))
2572                         (gnus-agent-append-to-list arts-tail num))))))
2573
2574               (let (fetched-articles)
2575                 ;; Fetch all selected articles
2576                 (setq gnus-newsgroup-undownloaded
2577                       (gnus-sorted-ndifference
2578                        gnus-newsgroup-undownloaded
2579                        (setq fetched-articles
2580                              (if (cdr arts)
2581                                  (gnus-agent-fetch-articles group (cdr arts))
2582                                nil))))
2583
2584                 (let ((unfetched-articles
2585                        (gnus-sorted-ndifference (cdr arts) fetched-articles)))
2586                   (if gnus-newsgroup-active
2587                       ;; Update the summary buffer
2588                       (progn
2589                         (dolist (article marked-articles)
2590                           (gnus-summary-set-agent-mark article t))
2591                         (dolist (article fetched-articles)
2592                           (when gnus-agent-mark-unread-after-downloaded
2593                             (setq gnus-newsgroup-downloadable
2594                                   (delq article gnus-newsgroup-downloadable))
2595                             (gnus-summary-mark-article
2596                              article gnus-unread-mark))
2597                           (when (gnus-summary-goto-subject article nil t)
2598                             (gnus-summary-update-download-mark article)))
2599                         (dolist (article unfetched-articles)
2600                           (gnus-summary-mark-article
2601                            article gnus-canceled-mark)))
2602
2603                     ;; Update the group buffer.
2604
2605                     ;; When some, or all, of the marked articles came
2606                     ;; from the download mark.  Remove that mark.  I
2607                     ;; didn't do this earlier as I only want to remove
2608                     ;; the marks after the fetch is completed.
2609
2610                     (dolist (mark gnus-agent-download-marks)
2611                       (when (eq mark 'download)
2612                         (let ((marked-arts
2613                                (assq mark (gnus-info-marks
2614                                            (setq info (gnus-get-info group))))))
2615                           (when (cdr marked-arts)
2616                             (setq marks
2617                                   (delq marked-arts (gnus-info-marks info)))
2618                             (gnus-info-set-marks info marks)))))
2619                     (let ((read (gnus-info-read
2620                                  (or info (setq info (gnus-get-info group))))))
2621                       (gnus-info-set-read
2622                        info (gnus-add-to-range read unfetched-articles)))
2623
2624                     (gnus-group-update-group group t)
2625                     (sit-for 0)
2626
2627                     (gnus-dribble-enter
2628                      (concat "(gnus-group-set-info '"
2629                              (gnus-prin1-to-string info)
2630                              ")"))))))))))))
2631
2632 ;;;
2633 ;;; Agent Category Mode
2634 ;;;
2635
2636 (defvar gnus-category-mode-hook nil
2637   "Hook run in `gnus-category-mode' buffers.")
2638
2639 (defvar gnus-category-line-format "     %(%20c%): %g\n"
2640   "Format of category lines.
2641
2642 Valid specifiers include:
2643 %c  Topic name (string)
2644 %g  The number of groups in the topic (integer)
2645
2646 General format specifiers can also be used.  See Info node
2647 `(gnus)Formatting Variables'.")
2648
2649 (defvar gnus-category-mode-line-format "Gnus: %%b"
2650   "The format specification for the category mode line.")
2651
2652 (defvar gnus-agent-predicate 'false
2653   "The selection predicate used when no other source is available.")
2654
2655 (defvar gnus-agent-short-article 100
2656   "Articles that have fewer lines than this are short.")
2657
2658 (defvar gnus-agent-long-article 200
2659   "Articles that have more lines than this are long.")
2660
2661 (defvar gnus-agent-low-score 0
2662   "Articles that have a score lower than this have a low score.")
2663
2664 (defvar gnus-agent-high-score 0
2665   "Articles that have a score higher than this have a high score.")
2666
2667
2668 ;;; Internal variables.
2669
2670 (defvar gnus-category-buffer "*Agent Category*")
2671
2672 (defvar gnus-category-line-format-alist
2673   `((?c gnus-tmp-name ?s)
2674     (?g gnus-tmp-groups ?d)))
2675
2676 (defvar gnus-category-mode-line-format-alist
2677   `((?u user-defined ?s)))
2678
2679 (defvar gnus-category-line-format-spec nil)
2680 (defvar gnus-category-mode-line-format-spec nil)
2681
2682 (defvar gnus-category-mode-map nil)
2683 (put 'gnus-category-mode 'mode-class 'special)
2684
2685 (unless gnus-category-mode-map
2686   (setq gnus-category-mode-map (make-sparse-keymap))
2687   (suppress-keymap gnus-category-mode-map)
2688
2689   (gnus-define-keys gnus-category-mode-map
2690     "q" gnus-category-exit
2691     "k" gnus-category-kill
2692     "c" gnus-category-copy
2693     "a" gnus-category-add
2694     "e" gnus-agent-customize-category
2695     "p" gnus-category-edit-predicate
2696     "g" gnus-category-edit-groups
2697     "s" gnus-category-edit-score
2698     "l" gnus-category-list
2699
2700     "\C-c\C-i" gnus-info-find-node
2701     "\C-c\C-b" gnus-bug))
2702
2703 (defvar gnus-category-menu-hook nil
2704   "*Hook run after the creation of the menu.")
2705
2706 (defun gnus-category-make-menu-bar ()
2707   (gnus-turn-off-edit-menu 'category)
2708   (unless (boundp 'gnus-category-menu)
2709     (easy-menu-define
2710      gnus-category-menu gnus-category-mode-map ""
2711      '("Categories"
2712        ["Add" gnus-category-add t]
2713        ["Kill" gnus-category-kill t]
2714        ["Copy" gnus-category-copy t]
2715        ["Edit category" gnus-agent-customize-category t]
2716        ["Edit predicate" gnus-category-edit-predicate t]
2717        ["Edit score" gnus-category-edit-score t]
2718        ["Edit groups" gnus-category-edit-groups t]
2719        ["Exit" gnus-category-exit t]))
2720
2721     (gnus-run-hooks 'gnus-category-menu-hook)))
2722
2723 (defun gnus-category-mode ()
2724   "Major mode for listing and editing agent categories.
2725
2726 All normal editing commands are switched off.
2727 \\<gnus-category-mode-map>
2728 For more in-depth information on this mode, read the manual
2729 \(`\\[gnus-info-find-node]').
2730
2731 The following commands are available:
2732
2733 \\{gnus-category-mode-map}"
2734   (interactive)
2735   (when (gnus-visual-p 'category-menu 'menu)
2736     (gnus-category-make-menu-bar))
2737   (kill-all-local-variables)
2738   (gnus-simplify-mode-line)
2739   (setq major-mode 'gnus-category-mode)
2740   (setq mode-name "Category")
2741   (gnus-set-default-directory)
2742   (setq mode-line-process nil)
2743   (use-local-map gnus-category-mode-map)
2744   (buffer-disable-undo)
2745   (setq truncate-lines t)
2746   (setq buffer-read-only t)
2747   (gnus-run-mode-hooks 'gnus-category-mode-hook))
2748
2749 (defalias 'gnus-category-position-point 'gnus-goto-colon)
2750
2751 (defun gnus-category-insert-line (category)
2752   (let* ((gnus-tmp-name (format "%s" (car category)))
2753          (gnus-tmp-groups (length (gnus-agent-cat-groups category))))
2754     (beginning-of-line)
2755     (gnus-add-text-properties
2756      (point)
2757      (prog1 (1+ (point))
2758        ;; Insert the text.
2759        (eval gnus-category-line-format-spec))
2760      (list 'gnus-category gnus-tmp-name))))
2761
2762 (defun gnus-enter-category-buffer ()
2763   "Go to the Category buffer."
2764   (interactive)
2765   (gnus-category-setup-buffer)
2766   (gnus-configure-windows 'category)
2767   (gnus-category-prepare))
2768
2769 (defun gnus-category-setup-buffer ()
2770   (unless (get-buffer gnus-category-buffer)
2771     (save-excursion
2772       (set-buffer (gnus-get-buffer-create gnus-category-buffer))
2773       (gnus-category-mode))))
2774
2775 (defun gnus-category-prepare ()
2776   (gnus-set-format 'category-mode)
2777   (gnus-set-format 'category t)
2778   (let ((alist gnus-category-alist)
2779         (buffer-read-only nil))
2780     (erase-buffer)
2781     (while alist
2782       (gnus-category-insert-line (pop alist)))
2783     (goto-char (point-min))
2784     (gnus-category-position-point)))
2785
2786 (defun gnus-category-name ()
2787   (or (intern (get-text-property (point-at-bol) 'gnus-category))
2788       (error "No category on the current line")))
2789
2790 (defun gnus-category-read ()
2791   "Read the category alist."
2792   (setq gnus-category-alist
2793         (or
2794          (with-temp-buffer
2795            (ignore-errors
2796             (nnheader-insert-file-contents (nnheader-concat gnus-agent-directory "lib/categories"))
2797             (goto-char (point-min))
2798             ;; This code isn't temp, it will be needed so long as
2799             ;; anyone may be migrating from an older version.
2800
2801             ;; Once we're certain that people will not revert to an
2802             ;; earlier version, we can take out the old-list code in
2803             ;; gnus-category-write.
2804             (let* ((old-list (read (current-buffer)))
2805                    (new-list (ignore-errors (read (current-buffer)))))
2806               (if new-list
2807                   new-list
2808                 ;; Convert from a positional list to an alist.
2809                 (mapcar
2810                  (lambda (c)
2811                    (setcdr c
2812                            (delq nil
2813                                  (gnus-mapcar
2814                                   (lambda (valu symb)
2815                                     (if valu
2816                                         (cons symb valu)))
2817                                   (cdr c)
2818                                   '(agent-predicate agent-score-file agent-groups))))
2819                    c)
2820                  old-list)))))
2821          (list (gnus-agent-cat-make 'default 'short)))))
2822
2823 (defun gnus-category-write ()
2824   "Write the category alist."
2825   (setq gnus-category-predicate-cache nil
2826         gnus-category-group-cache nil)
2827   (gnus-make-directory (nnheader-concat gnus-agent-directory "lib"))
2828   (with-temp-file (nnheader-concat gnus-agent-directory "lib/categories")
2829     ;; This prin1 is temporary.  It exists so that people can revert
2830     ;; to an earlier version of gnus-agent.
2831     (prin1 (mapcar (lambda (c)
2832               (list (car c)
2833                     (cdr (assoc 'agent-predicate c))
2834                     (cdr (assoc 'agent-score-file c))
2835                     (cdr (assoc 'agent-groups c))))
2836                    gnus-category-alist)
2837            (current-buffer))
2838     (newline)
2839     (prin1 gnus-category-alist (current-buffer))))
2840
2841 (defun gnus-category-edit-predicate (category)
2842   "Edit the predicate for CATEGORY."
2843   (interactive (list (gnus-category-name)))
2844   (let ((info (assq category gnus-category-alist)))
2845     (gnus-edit-form
2846      (gnus-agent-cat-predicate info)
2847      (format "Editing the select predicate for category %s" category)
2848      `(lambda (predicate)
2849         ;; Avoid run-time execution of setf form
2850         ;; (setf (gnus-agent-cat-predicate (assq ',category gnus-category-alist))
2851         ;;       predicate)
2852         ;; use its expansion instead:
2853         (gnus-agent-cat-set-property (assq ',category gnus-category-alist)
2854                                      'agent-predicate predicate)
2855
2856         (gnus-category-write)
2857         (gnus-category-list)))))
2858
2859 (defun gnus-category-edit-score (category)
2860   "Edit the score expression for CATEGORY."
2861   (interactive (list (gnus-category-name)))
2862   (let ((info (assq category gnus-category-alist)))
2863     (gnus-edit-form
2864      (gnus-agent-cat-score-file info)
2865      (format "Editing the score expression for category %s" category)
2866      `(lambda (score-file)
2867         ;; Avoid run-time execution of setf form
2868         ;; (setf (gnus-agent-cat-score-file (assq ',category gnus-category-alist))
2869         ;;       score-file)
2870         ;; use its expansion instead:
2871         (gnus-agent-cat-set-property (assq ',category gnus-category-alist)
2872                                      'agent-score-file score-file)
2873
2874         (gnus-category-write)
2875         (gnus-category-list)))))
2876
2877 (defun gnus-category-edit-groups (category)
2878   "Edit the group list for CATEGORY."
2879   (interactive (list (gnus-category-name)))
2880   (let ((info (assq category gnus-category-alist)))
2881     (gnus-edit-form
2882      (gnus-agent-cat-groups info)
2883      (format "Editing the group list for category %s" category)
2884      `(lambda (groups)
2885         ;; Avoid run-time execution of setf form
2886         ;; (setf (gnus-agent-cat-groups (assq ',category gnus-category-alist))
2887         ;;       groups)
2888         ;; use its expansion instead:
2889         (gnus-agent-set-cat-groups (assq ',category gnus-category-alist)
2890                                    groups)
2891
2892         (gnus-category-write)
2893         (gnus-category-list)))))
2894
2895 (defun gnus-category-kill (category)
2896   "Kill the current category."
2897   (interactive (list (gnus-category-name)))
2898   (let ((info (assq category gnus-category-alist))
2899         (buffer-read-only nil))
2900     (gnus-delete-line)
2901     (setq gnus-category-alist (delq info gnus-category-alist))
2902     (gnus-category-write)))
2903
2904 (defun gnus-category-copy (category to)
2905   "Copy the current category."
2906   (interactive (list (gnus-category-name) (intern (read-string "New name: "))))
2907   (let ((info (assq category gnus-category-alist)))
2908     (push (let ((newcat (gnus-copy-sequence info)))
2909             (setf (gnus-agent-cat-name newcat) to)
2910             (setf (gnus-agent-cat-groups newcat) nil)
2911             newcat)
2912           gnus-category-alist)
2913     (gnus-category-write)
2914     (gnus-category-list)))
2915
2916 (defun gnus-category-add (category)
2917   "Create a new category."
2918   (interactive "SCategory name: ")
2919   (when (assq category gnus-category-alist)
2920     (error "Category %s already exists" category))
2921   (push (gnus-agent-cat-make category)
2922         gnus-category-alist)
2923   (gnus-category-write)
2924   (gnus-category-list))
2925
2926 (defun gnus-category-list ()
2927   "List all categories."
2928   (interactive)
2929   (gnus-category-prepare))
2930
2931 (defun gnus-category-exit ()
2932   "Return to the group buffer."
2933   (interactive)
2934   (kill-buffer (current-buffer))
2935   (gnus-configure-windows 'group t))
2936
2937 ;; To avoid having 8-bit characters in the source file.
2938 (defvar gnus-category-not (list '! 'not (intern (format "%c" 172))))
2939
2940 (defvar gnus-category-predicate-alist
2941   '((spam . gnus-agent-spam-p)
2942     (short . gnus-agent-short-p)
2943     (long . gnus-agent-long-p)
2944     (low . gnus-agent-low-scored-p)
2945     (high . gnus-agent-high-scored-p)
2946     (read . gnus-agent-read-p)
2947     (true . gnus-agent-true)
2948     (false . gnus-agent-false))
2949   "Mapping from short score predicate symbols to predicate functions.")
2950
2951 (defun gnus-agent-spam-p ()
2952   "Say whether an article is spam or not."
2953   (unless gnus-agent-spam-hashtb
2954     (setq gnus-agent-spam-hashtb (gnus-make-hashtable 1000)))
2955   (if (not (equal (mail-header-references gnus-headers) ""))
2956       nil
2957     (let ((string (gnus-simplify-subject (mail-header-subject gnus-headers))))
2958       (prog1
2959           (gnus-gethash string gnus-agent-spam-hashtb)
2960         (gnus-sethash string t gnus-agent-spam-hashtb)))))
2961
2962 (defun gnus-agent-short-p ()
2963   "Say whether an article is short or not."
2964   (< (mail-header-lines gnus-headers) gnus-agent-short-article))
2965
2966 (defun gnus-agent-long-p ()
2967   "Say whether an article is long or not."
2968   (> (mail-header-lines gnus-headers) gnus-agent-long-article))
2969
2970 (defun gnus-agent-low-scored-p ()
2971   "Say whether an article has a low score or not."
2972   (< gnus-score gnus-agent-low-score))
2973
2974 (defun gnus-agent-high-scored-p ()
2975   "Say whether an article has a high score or not."
2976   (> gnus-score gnus-agent-high-score))
2977
2978 (defun gnus-agent-read-p ()
2979   "Say whether an article is read or not."
2980   (gnus-member-of-range (mail-header-number gnus-headers)
2981                         (gnus-info-read (gnus-get-info gnus-newsgroup-name))))
2982
2983 (defun gnus-category-make-function (predicate)
2984   "Make a function from PREDICATE."
2985   (let ((func (gnus-category-make-function-1 predicate)))
2986     (if (and (= (length func) 1)
2987              (symbolp (car func)))
2988         (car func)
2989       (gnus-byte-compile `(lambda () ,func)))))
2990
2991 (defun gnus-agent-true ()
2992   "Return t."
2993   t)
2994
2995 (defun gnus-agent-false ()
2996   "Return nil."
2997   nil)
2998
2999 (defun gnus-category-make-function-1 (predicate)
3000   "Make a function from PREDICATE."
3001   (cond
3002    ;; Functions are just returned as is.
3003    ((or (symbolp predicate)
3004         (functionp predicate))
3005     `(,(or (cdr (assq predicate gnus-category-predicate-alist))
3006            predicate)))
3007    ;; More complex predicate.
3008    ((consp predicate)
3009     `(,(cond
3010         ((memq (car predicate) '(& and))
3011          'and)
3012         ((memq (car predicate) '(| or))
3013          'or)
3014         ((memq (car predicate) gnus-category-not)
3015          'not))
3016       ,@(mapcar 'gnus-category-make-function-1 (cdr predicate))))
3017    (t
3018     (error "Unknown predicate type: %s" predicate))))
3019
3020 (defun gnus-get-predicate (predicate)
3021   "Return the function implementing PREDICATE."
3022   (or (cdr (assoc predicate gnus-category-predicate-cache))
3023       (let ((func (gnus-category-make-function predicate)))
3024         (setq gnus-category-predicate-cache
3025               (nconc gnus-category-predicate-cache
3026                      (list (cons predicate func))))
3027         func)))
3028
3029 (defun gnus-predicate-implies-unread (predicate)
3030   "Say whether PREDICATE implies unread articles only.
3031 It is okay to miss some cases, but there must be no false positives.
3032 That is, if this predicate returns true, then indeed the predicate must
3033 return only unread articles."
3034   (eq t (gnus-function-implies-unread-1
3035          (gnus-category-make-function-1 predicate))))
3036
3037 (defun gnus-function-implies-unread-1 (function)
3038   "Recursively evaluate a predicate function to determine whether it can select
3039 any read articles.  Returns t if the function is known to never
3040 return read articles, nil when it is known to always return read
3041 articles, and t_nil when the function may return both read and unread
3042 articles."
3043   (let ((func (car function))
3044         (args (mapcar 'gnus-function-implies-unread-1 (cdr function))))
3045     (cond ((eq func 'and)
3046            (cond ((memq t args) ; if any argument returns only unread articles
3047                   ;; then that argument constrains the result to only unread articles.
3048                   t)
3049                  ((memq 't_nil args) ; if any argument is indeterminate
3050                   ;; then the result is indeterminate
3051                   't_nil)))
3052           ((eq func 'or)
3053            (cond ((memq nil args) ; if any argument returns read articles
3054                   ;; then that argument ensures that the results includes read articles.
3055                   nil)
3056                  ((memq 't_nil args) ; if any argument is indeterminate
3057                   ;; then that argument ensures that the results are indeterminate
3058                   't_nil)
3059                  (t ; if all arguments return only unread articles
3060                   ;; then the result returns only unread articles
3061                   t)))
3062           ((eq func 'not)
3063            (cond ((eq (car args) 't_nil) ; if the argument is indeterminate
3064                   ; then the result is indeterminate
3065                   (car args))
3066                  (t ; otherwise
3067                   ; toggle the result to be the opposite of the argument
3068                   (not (car args)))))
3069           ((eq func 'gnus-agent-read-p)
3070            nil) ; The read predicate NEVER returns unread articles
3071           ((eq func 'gnus-agent-false)
3072            t) ; The false predicate returns t as the empty set excludes all read articles
3073           ((eq func 'gnus-agent-true)
3074            nil) ; The true predicate ALWAYS returns read articles
3075           ((catch 'found-match
3076              (let ((alist gnus-category-predicate-alist))
3077                (while alist
3078                  (if (eq func (cdar alist))
3079                      (throw 'found-match t)
3080                    (setq alist (cdr alist))))))
3081            't_nil) ; All other predicates return read and unread articles
3082           (t
3083            (error "Unknown predicate function: %s" function)))))
3084
3085 (defun gnus-group-category (group)
3086   "Return the category GROUP belongs to."
3087   (unless gnus-category-group-cache
3088     (setq gnus-category-group-cache (gnus-make-hashtable 1000))
3089     (let ((cs gnus-category-alist)
3090           groups cat)
3091       (while (setq cat (pop cs))
3092         (setq groups (gnus-agent-cat-groups cat))
3093         (while groups
3094           (gnus-sethash (pop groups) cat gnus-category-group-cache)))))
3095   (or (gnus-gethash group gnus-category-group-cache)
3096       (assq 'default gnus-category-alist)))
3097
3098 (defun gnus-agent-expire-group (group &optional articles force)
3099   "Expire all old articles in GROUP.
3100 If you want to force expiring of certain articles, this function can
3101 take ARTICLES, and FORCE parameters as well.
3102
3103 The articles on which the expiration process runs are selected as follows:
3104   if ARTICLES is null, all read and unmarked articles.
3105   if ARTICLES is t, all articles.
3106   if ARTICLES is a list, just those articles.
3107 FORCE is equivalent to setting the expiration predicates to true."
3108   (interactive (list (gnus-agent-read-group)))
3109
3110   (if (not group)
3111       (gnus-agent-expire articles group force)
3112     (let ( ;; Bind gnus-agent-expire-stats to enable tracking of
3113           ;; expiration statistics of this single group
3114           (gnus-agent-expire-stats (list 0 0 0.0)))
3115       (if (or (not (eq articles t))
3116               (yes-or-no-p
3117                (concat "Are you sure that you want to "
3118                        "expire all articles in " group "? ")))
3119           (let ((gnus-command-method (gnus-find-method-for-group group))
3120                 (overview (gnus-get-buffer-create " *expire overview*"))
3121                 orig)
3122             (unwind-protect
3123                 (let ((active-file (gnus-agent-lib-file "active")))
3124                   (when (file-exists-p active-file)
3125                     (with-temp-buffer
3126                       (nnheader-insert-file-contents active-file)
3127                       (gnus-active-to-gnus-format
3128                        gnus-command-method
3129                        (setq orig (gnus-make-hashtable
3130                                    (count-lines (point-min) (point-max))))))
3131                     (save-excursion
3132                       (gnus-agent-expire-group-1
3133                        group overview (gnus-gethash-safe group orig)
3134                        articles force))))
3135               (kill-buffer overview))))
3136       (gnus-message 4 (gnus-agent-expire-done-message)))))
3137
3138 (defun gnus-agent-expire-group-1 (group overview active articles force)
3139   ;; Internal function - requires caller to have set
3140   ;; gnus-command-method, initialized overview buffer, and to have
3141   ;; provided a non-nil active
3142
3143   (let ((dir (gnus-agent-group-pathname group))
3144         (file-name-coding-system nnmail-pathname-coding-system)
3145         (decoded (gnus-agent-decoded-group-name group)))
3146     (gnus-agent-with-refreshed-group
3147      group
3148      (when (boundp 'gnus-agent-expire-current-dirs)
3149        (set 'gnus-agent-expire-current-dirs
3150             (cons dir
3151                   (symbol-value 'gnus-agent-expire-current-dirs))))
3152
3153      (if (and (not force)
3154               (eq 'DISABLE (gnus-agent-find-parameter group
3155                                                       'agent-enable-expiration)))
3156          (gnus-message 5 "Expiry skipping over %s" decoded)
3157        (gnus-message 5 "Expiring articles in %s" decoded)
3158        (gnus-agent-load-alist group)
3159        (let* ((bytes-freed 0)
3160               (size-files-deleted 0.0)
3161               (files-deleted 0)
3162               (nov-entries-deleted 0)
3163               (info (gnus-get-info group))
3164               (alist gnus-agent-article-alist)
3165               (day (- (time-to-days (current-time))
3166                       (gnus-agent-find-parameter group 'agent-days-until-old)))
3167               (specials (if (and alist
3168                                  (not force))
3169                             ;; This could be a bit of a problem.  I need to
3170                             ;; keep the last article to avoid refetching
3171                             ;; headers when using nntp in the backend.  At
3172                             ;; the same time, if someone uses a backend
3173                             ;; that supports article moving then I may have
3174                             ;; to remove the last article to complete the
3175                             ;; move.  Right now, I'm going to assume that
3176                             ;; FORCE overrides specials.
3177                             (list (caar (last alist)))))
3178               (unreads ;; Articles that are excluded from the
3179                ;; expiration process
3180                (cond (gnus-agent-expire-all
3181                       ;; All articles are marked read by global decree
3182                       nil)
3183                      ((eq articles t)
3184                       ;; All articles are marked read by function
3185                       ;; parameter
3186                       nil)
3187                      ((not articles)
3188                       ;; Unread articles are marked protected from
3189                       ;; expiration Don't call
3190                       ;; gnus-list-of-unread-articles as it returns
3191                       ;; articles that have not been fetched into the
3192                       ;; agent.
3193                       (ignore-errors
3194                         (gnus-agent-unread-articles group)))
3195                      (t
3196                       ;; All articles EXCEPT those named by the caller
3197                       ;; are protected from expiration
3198                       (gnus-sorted-difference
3199                        (gnus-uncompress-range
3200                         (cons (caar alist)
3201                               (caar (last alist))))
3202                        (sort articles '<)))))
3203               (marked ;; More articles that are excluded from the
3204                ;; expiration process
3205                (cond (gnus-agent-expire-all
3206                       ;; All articles are unmarked by global decree
3207                       nil)
3208                      ((eq articles t)
3209                       ;; All articles are unmarked by function
3210                       ;; parameter
3211                       nil)
3212                      (articles
3213                       ;; All articles may as well be unmarked as the
3214                       ;; unreads list already names the articles we are
3215                       ;; going to keep
3216                       nil)
3217                      (t
3218                       ;; Ticked and/or dormant articles are excluded
3219                       ;; from expiration
3220                       (nconc
3221                        (gnus-uncompress-range
3222                         (cdr (assq 'tick (gnus-info-marks info))))
3223                        (gnus-uncompress-range
3224                         (cdr (assq 'dormant
3225                                    (gnus-info-marks info))))))))
3226               (nov-file (concat dir ".overview"))
3227               (cnt 0)
3228               (completed -1)
3229               dlist
3230               type)
3231
3232          ;; The normal article alist contains elements that look like
3233          ;; (article# .  fetch_date) I need to combine other
3234          ;; information with this list.  For example, a flag indicating
3235          ;; that a particular article MUST BE KEPT.  To do this, I'm
3236          ;; going to transform the elements to look like (article#
3237          ;; fetch_date keep_flag NOV_entry_position) Later, I'll reverse
3238          ;; the process to generate the expired article alist.
3239
3240          ;; Convert the alist elements to (article# fetch_date nil
3241          ;; nil).
3242          (setq dlist (mapcar (lambda (e)
3243                                (list (car e) (cdr e) nil nil)) alist))
3244
3245          ;; Convert the keep lists to elements that look like (article#
3246          ;; nil keep_flag nil) then append it to the expanded dlist
3247          ;; These statements are sorted by ascending precidence of the
3248          ;; keep_flag.
3249          (setq dlist (nconc dlist
3250                             (mapcar (lambda (e)
3251                                       (list e nil 'unread  nil))
3252                                     unreads)))
3253          (setq dlist (nconc dlist
3254                             (mapcar (lambda (e)
3255                                       (list e nil 'marked  nil))
3256                                     marked)))
3257          (setq dlist (nconc dlist
3258                             (mapcar (lambda (e)
3259                                       (list e nil 'special nil))
3260                                     specials)))
3261
3262          (set-buffer overview)
3263          (erase-buffer)
3264          (buffer-disable-undo)
3265          (when (file-exists-p nov-file)
3266            (gnus-message 7 "gnus-agent-expire: Loading overview...")
3267            (nnheader-insert-file-contents nov-file)
3268            (goto-char (point-min))
3269         
3270            (let (p)
3271              (while (< (setq p (point)) (point-max))
3272                (condition-case nil
3273                    ;; If I successfully read an integer (the plus zero
3274                    ;; ensures a numeric type), append the position
3275                    ;; to the list
3276                    (push (list (+ 0 (read (current-buffer))) nil nil
3277                                p)
3278                          dlist)
3279                  (error
3280                   (gnus-message 1 "gnus-agent-expire: read error \
3281 occurred when reading expression at %s in %s.  Skipping to next \
3282 line." (point) nov-file)))
3283                ;; Whether I succeeded, or failed, it doesn't matter.
3284                ;; Move to the next line then try again.
3285                (forward-line 1)))
3286
3287            (gnus-message
3288             7 "gnus-agent-expire: Loading overview... Done"))
3289          (set-buffer-modified-p nil)
3290
3291          ;; At this point, all of the information is in dlist.  The
3292          ;; only problem is that much of it is spread across multiple
3293          ;; entries.  Sort then MERGE!!
3294          (gnus-message 7 "gnus-agent-expire: Sorting entries... ")
3295          ;; If two entries have the same article-number then sort by
3296          ;; ascending keep_flag.
3297          (let ((special 0)
3298                (marked 1)
3299                (unread 2))
3300            (setq dlist
3301                  (sort dlist
3302                        (lambda (a b)
3303                          (cond ((< (nth 0 a) (nth 0 b))
3304                                 t)
3305                                ((> (nth 0 a) (nth 0 b))
3306                                 nil)
3307                                (t
3308                                 (let ((a (or (symbol-value (nth 2 a))
3309                                              3))
3310                                       (b (or (symbol-value (nth 2 b))
3311                                              3)))
3312                                   (<= a b))))))))
3313          (gnus-message 7 "gnus-agent-expire: Sorting entries... Done")
3314          (gnus-message 7 "gnus-agent-expire: Merging entries... ")
3315          (let ((dlist dlist))
3316            (while (cdr dlist)           ; I'm not at the end-of-list
3317              (if (eq (caar dlist) (caadr dlist))
3318                  (let ((first (cdr (car dlist)))
3319                        (secnd (cdr (cadr dlist))))
3320                    (setcar first (or (car first)
3321                                      (car secnd))) ; fetch_date
3322                    (setq first (cdr first)
3323                          secnd (cdr secnd))
3324                    (setcar first (or (car first)
3325                                      (car secnd))) ; Keep_flag
3326                    (setq first (cdr first)
3327                          secnd (cdr secnd))
3328                    (setcar first (or (car first)
3329                                      (car secnd))) ; NOV_entry_position
3330
3331                    (setcdr dlist (cddr dlist)))
3332                (setq dlist (cdr dlist)))))
3333
3334          ;; Check the order of the entry positions.  They should be in
3335          ;; ascending order.  If they aren't, the positions must be
3336          ;; converted to markers.
3337          (when (catch 'sort-results
3338                  (let ((dlist dlist)
3339                        (prev-pos -1)
3340                        pos)
3341                    (while dlist
3342                      (if (setq pos (nth 3 (pop dlist)))
3343                          (if (< pos prev-pos)
3344                              (throw 'sort-results 'unsorted)
3345                            (setq prev-pos pos))))))
3346            (gnus-message 7 "gnus-agent-expire: Unsorted overview; inserting markers to compensate.")
3347            (mapc (lambda (entry)
3348                      (let ((pos (nth 3 entry)))
3349                        (if pos
3350                            (setf (nth 3 entry)
3351                                  (set-marker (make-marker)
3352                                              pos)))))
3353                    dlist))
3354
3355          (gnus-message 7 "gnus-agent-expire: Merging entries... Done")
3356
3357          (let* ((len (float (length dlist)))
3358                 (alist (list nil))
3359                 (tail-alist alist)
3360                 (position-offset 0)
3361                 )
3362
3363            (while dlist
3364              (let ((new-completed (truncate (* 100.0
3365                                                (/ (setq cnt (1+ cnt))
3366                                                   len))))
3367                    message-log-max)
3368                (when (> new-completed completed)
3369                  (setq completed new-completed)
3370                  (gnus-message 7 "%3d%% completed..."  completed)))
3371              (let* ((entry          (car dlist))
3372                     (article-number (nth 0 entry))
3373                     (fetch-date     (nth 1 entry))
3374                     (keep           (nth 2 entry))
3375                     (marker         (nth 3 entry)))
3376
3377                (cond
3378                 ;; Kept articles are unread, marked, or special.
3379                 (keep
3380                  (gnus-agent-message 10
3381                                      "gnus-agent-expire: %s:%d: Kept %s article%s."
3382                                      decoded article-number keep (if fetch-date " and file" ""))
3383                  (when fetch-date
3384                    (unless (file-exists-p
3385                             (concat dir (number-to-string
3386                                          article-number)))
3387                      (setf (nth 1 entry) nil)
3388                      (gnus-agent-message 3 "gnus-agent-expire cleared \
3389 download flag on %s:%d as the cached article file is missing."
3390                                          decoded (caar dlist)))
3391                    (unless marker
3392                      (gnus-message 1 "gnus-agent-expire detected a \
3393 missing NOV entry.  Run gnus-agent-regenerate-group to restore it.")))
3394                  (gnus-agent-append-to-list
3395                   tail-alist
3396                   (cons article-number fetch-date)))
3397
3398                 ;; The following articles are READ, UNMARKED, and
3399                 ;; ORDINARY.  See if they can be EXPIRED!!!
3400                 ((setq type
3401                        (cond
3402                         ((not (integerp fetch-date))
3403                          'read) ;; never fetched article (may expire
3404                         ;; right now)
3405                         ((not (file-exists-p
3406                                (concat dir (number-to-string
3407                                             article-number))))
3408                          (setf (nth 1 entry) nil)
3409                          'externally-expired) ;; Can't find the cached
3410                         ;; article.  Handle case
3411                         ;; as though this article
3412                         ;; was never fetched.
3413
3414                         ;; We now have the arrival day, so we see
3415                         ;; whether it's old enough to be expired.
3416                         ((< fetch-date day)
3417                          'expired)
3418                         (force
3419                          'forced)))
3420
3421                  ;; I found some reason to expire this entry.
3422
3423                  (let ((actions nil))
3424                    (when (memq type '(forced expired))
3425                      (ignore-errors     ; Just being paranoid.
3426                        (let* ((file-name (nnheader-concat dir (number-to-string
3427                                                                article-number)))
3428                               (size (float (nth 7 (file-attributes file-name)))))
3429                          (incf bytes-freed size)
3430                          (incf size-files-deleted size)
3431                          (incf files-deleted)
3432                          (delete-file file-name))
3433                        (push "expired cached article" actions))
3434                      (setf (nth 1 entry) nil)
3435                      )
3436
3437                    (when marker
3438                      (push "NOV entry removed" actions)
3439
3440                      (goto-char (if (markerp marker)
3441                                     marker
3442                                   (- marker position-offset)))
3443
3444                      (incf nov-entries-deleted)
3445
3446                      (let* ((from (point-at-bol))
3447                             (to (progn (forward-line 1) (point)))
3448                             (freed (- to from)))
3449                        (incf bytes-freed freed)
3450                        (incf position-offset freed)
3451                        (delete-region from to)))
3452
3453                    ;; If considering all articles is set, I can only
3454                    ;; expire article IDs that are no longer in the
3455                    ;; active range (That is, articles that preceed the
3456                    ;; first article in the new alist).
3457                    (if (and gnus-agent-consider-all-articles
3458                             (>= article-number (car active)))
3459                        ;; I have to keep this ID in the alist
3460                        (gnus-agent-append-to-list
3461                         tail-alist (cons article-number fetch-date))
3462                      (push (format "Removed %s article number from \
3463 article alist" type) actions))
3464
3465                    (when actions
3466                      (gnus-agent-message 8 "gnus-agent-expire: %s:%d: %s"
3467                                          decoded article-number
3468                                          (mapconcat 'identity actions ", ")))))
3469                 (t
3470                  (gnus-agent-message
3471                   10 "gnus-agent-expire: %s:%d: Article kept as \
3472 expiration tests failed." decoded article-number)
3473                  (gnus-agent-append-to-list
3474                   tail-alist (cons article-number fetch-date)))
3475                 )
3476
3477                ;; Remove markers as I intend to reuse this buffer again.
3478                (when (and marker
3479                           (markerp marker))
3480                  (set-marker marker nil))
3481
3482                (setq dlist (cdr dlist))))
3483
3484            (setq alist (cdr alist))
3485
3486            (let ((inhibit-quit t))
3487              (unless (equal alist gnus-agent-article-alist)
3488                (setq gnus-agent-article-alist alist)
3489                (gnus-agent-save-alist group))
3490
3491              (when (buffer-modified-p)
3492                (let ((coding-system-for-write
3493                       gnus-agent-file-coding-system))
3494                  (gnus-make-directory dir)
3495                  (write-region (point-min) (point-max) nov-file nil
3496                                'silent)
3497                  ;; clear the modified flag as that I'm not confused by
3498                  ;; its status on the next pass through this routine.
3499                  (set-buffer-modified-p nil)
3500                  (gnus-agent-update-view-total-fetched-for group t)))
3501
3502              (when (eq articles t)
3503                (gnus-summary-update-info))))
3504
3505          (when (boundp 'gnus-agent-expire-stats)
3506            (let ((stats (symbol-value 'gnus-agent-expire-stats)))
3507              (incf (nth 2 stats) bytes-freed)
3508              (incf (nth 1 stats) files-deleted)
3509              (incf (nth 0 stats) nov-entries-deleted)))
3510
3511          (gnus-agent-update-files-total-fetched-for group (- size-files-deleted)))))))
3512
3513 (defun gnus-agent-expire (&optional articles group force)
3514   "Expire all old articles.
3515 If you want to force expiring of certain articles, this function can
3516 take ARTICLES, GROUP and FORCE parameters as well.
3517
3518 The articles on which the expiration process runs are selected as follows:
3519   if ARTICLES is null, all read and unmarked articles.
3520   if ARTICLES is t, all articles.
3521   if ARTICLES is a list, just those articles.
3522 Setting GROUP will limit expiration to that group.
3523 FORCE is equivalent to setting the expiration predicates to true."
3524   (interactive)
3525
3526   (if group
3527       (gnus-agent-expire-group group articles force)
3528     (if (or (not (eq articles t))
3529             (yes-or-no-p "Are you sure that you want to expire all \
3530 articles in every agentized group? "))
3531         (let ((methods (gnus-agent-covered-methods))
3532               ;; Bind gnus-agent-expire-current-dirs to enable tracking
3533               ;; of agent directories.
3534               (gnus-agent-expire-current-dirs nil)
3535               ;; Bind gnus-agent-expire-stats to enable tracking of
3536               ;; expiration statistics across all groups
3537               (gnus-agent-expire-stats (list 0 0 0.0))
3538               gnus-command-method overview orig)
3539           (setq overview (gnus-get-buffer-create " *expire overview*"))
3540           (unwind-protect
3541               (while (setq gnus-command-method (pop methods))
3542                 (let ((active-file (gnus-agent-lib-file "active")))
3543                   (when (file-exists-p active-file)
3544                     (with-temp-buffer
3545                       (nnheader-insert-file-contents active-file)
3546                       (gnus-active-to-gnus-format
3547                        gnus-command-method
3548                        (setq orig (gnus-make-hashtable
3549                                    (count-lines (point-min) (point-max))))))
3550                     (dolist (expiring-group (gnus-groups-from-server
3551                                              gnus-command-method))
3552                       (let* ((active
3553                               (gnus-gethash-safe expiring-group orig)))
3554
3555                         (when active
3556                           (save-excursion
3557                             (gnus-agent-expire-group-1
3558                              expiring-group overview active articles force))))))))
3559             (kill-buffer overview))
3560           (gnus-agent-expire-unagentized-dirs)
3561           (gnus-message 4 (gnus-agent-expire-done-message))))))
3562
3563 (defun gnus-agent-expire-done-message ()
3564   (if (and (> gnus-verbose 4)
3565            (boundp 'gnus-agent-expire-stats))
3566       (let* ((stats (symbol-value 'gnus-agent-expire-stats))
3567              (size (nth 2 stats))
3568             (units '(B KB MB GB)))
3569         (while (and (> size 1024.0)
3570                     (cdr units))
3571           (setq size (/ size 1024.0)
3572                 units (cdr units)))
3573
3574         (format "Expiry recovered %d NOV entries, deleted %d files,\
3575  and freed %f %s."
3576                 (nth 0 stats)
3577                 (nth 1 stats)
3578                 size (car units)))
3579     "Expiry...done"))
3580
3581 (defun gnus-agent-expire-unagentized-dirs ()
3582   (when (and gnus-agent-expire-unagentized-dirs
3583              (boundp 'gnus-agent-expire-current-dirs))
3584     (let* ((keep (gnus-make-hashtable))
3585            ;; Formally bind gnus-agent-expire-current-dirs so that the
3586            ;; compiler will not complain about free references.
3587            (gnus-agent-expire-current-dirs
3588             (symbol-value 'gnus-agent-expire-current-dirs))
3589            dir
3590            (file-name-coding-system nnmail-pathname-coding-system))
3591
3592       (gnus-sethash gnus-agent-directory t keep)
3593       (while gnus-agent-expire-current-dirs
3594         (setq dir (pop gnus-agent-expire-current-dirs))
3595         (when (and (stringp dir)
3596                    (file-directory-p dir))
3597           (while (not (gnus-gethash dir keep))
3598             (gnus-sethash dir t keep)
3599             (setq dir (file-name-directory (directory-file-name dir))))))
3600
3601       (let* (to-remove
3602              checker
3603              (checker
3604               (function
3605                (lambda (d)
3606                  "Given a directory, check it and its subdirectories for
3607               membership in the keep hash.  If it isn't found, add
3608               it to to-remove."
3609                  (let ((files (directory-files d))
3610                        file)
3611                    (while (setq file (pop files))
3612                      (cond ((equal file ".") ; Ignore self
3613                             nil)
3614                            ((equal file "..") ; Ignore parent
3615                             nil)
3616                            ((equal file ".overview")
3617                             ;; Directory must contain .overview to be
3618                             ;; agent's cache of a group.
3619                             (let ((d (file-name-as-directory d))
3620                                   r)
3621                               ;; Search ancestor's for last directory NOT
3622                               ;; found in keep hash.
3623                               (while (not (gnus-gethash
3624                                            (setq d (file-name-directory d)) keep))
3625                                 (setq r d
3626                                       d (directory-file-name d)))
3627                               ;; if ANY ancestor was NOT in keep hash and
3628                               ;; it it's already in to-remove, add it to
3629                               ;; to-remove.
3630                               (if (and r
3631                                        (not (member r to-remove)))
3632                                   (push r to-remove))))
3633                            ((file-directory-p (setq file (nnheader-concat d file)))
3634                             (funcall checker file)))))))))
3635         (funcall checker (expand-file-name gnus-agent-directory))
3636
3637         (when (and to-remove
3638                    (or gnus-expert-user
3639                        (gnus-y-or-n-p
3640                         "gnus-agent-expire has identified local directories that are\
3641  not currently required by any agentized group.  Do you wish to consider\
3642  deleting them?")))
3643           (while to-remove
3644             (let ((dir (pop to-remove)))
3645               (if (gnus-y-or-n-p (format "Delete %s? " dir))
3646                   (let* (delete-recursive
3647                          (delete-recursive
3648                           (function
3649                            (lambda (f-or-d)
3650                              (ignore-errors
3651                                (if (file-directory-p f-or-d)
3652                                    (condition-case nil
3653                                        (delete-directory f-or-d)
3654                                      (file-error
3655                                       (mapcar (lambda (f)
3656                                                 (or (member f '("." ".."))
3657                                                     (funcall delete-recursive
3658                                                              (nnheader-concat
3659                                                               f-or-d f))))
3660                                               (directory-files f-or-d))
3661                                       (delete-directory f-or-d)))
3662                                  (delete-file f-or-d)))))))
3663                     (funcall delete-recursive dir))))))))))
3664
3665 ;;;###autoload
3666 (defun gnus-agent-batch ()
3667   "Start Gnus, send queue and fetch session."
3668   (interactive)
3669   (let ((init-file-user "")
3670         (gnus-always-read-dribble-file t))
3671     (gnus))
3672   (let ((gnus-agent-confirmation-function 'gnus-agent-batch-confirmation))
3673     (gnus-group-send-queue)
3674     (gnus-agent-fetch-session)))
3675
3676 (defun gnus-agent-unread-articles (group)
3677   (let* ((read (gnus-info-read (gnus-get-info group)))
3678          (known (gnus-agent-load-alist group))
3679          (unread (list nil))
3680          (tail-unread unread))
3681     (while (and known read)
3682       (let ((candidate (car (pop known))))
3683         (while (let* ((range (car read))
3684                       (min   (if (numberp range) range (car range)))
3685                       (max   (if (numberp range) range (cdr range))))
3686                  (cond ((or (not min)
3687                             (< candidate min))
3688                         (gnus-agent-append-to-list tail-unread candidate)
3689                         nil)
3690                        ((> candidate max)
3691                         (setq read (cdr read))
3692                         ;; return t so that I always loop one more
3693                         ;; time.  If I just iterated off the end of
3694                         ;; read, min will become nil and the current
3695                         ;; candidate will be added to the unread list.
3696                         t))))))
3697     (while known
3698       (gnus-agent-append-to-list tail-unread (car (pop known))))
3699     (cdr unread)))
3700
3701 (defun gnus-agent-uncached-articles (articles group &optional cached-header)
3702   "Restrict ARTICLES to numbers already fetched.
3703 Returns a sublist of ARTICLES that excludes those article ids in GROUP
3704 that have already been fetched.
3705 If CACHED-HEADER is nil, articles are only excluded if the article itself
3706 has been fetched."
3707
3708   ;; Logically equivalent to: (gnus-sorted-difference articles (mapcar
3709   ;; 'car gnus-agent-article-alist))
3710
3711   ;; Functionally, I don't need to construct a temp list using mapcar.
3712
3713   (if (and (or gnus-agent-cache (not gnus-plugged))
3714            (gnus-agent-load-alist group))
3715     (let* ((ref gnus-agent-article-alist)
3716            (arts articles)
3717            (uncached (list nil))
3718            (tail-uncached uncached))
3719       (while (and ref arts)
3720         (let ((v1 (car arts))
3721               (v2 (caar ref)))
3722           (cond ((< v1 v2) ; v1 does not appear in the reference list
3723                  (gnus-agent-append-to-list tail-uncached v1)
3724                  (setq arts (cdr arts)))
3725                 ((= v1 v2)
3726                  (unless (or cached-header (cdar ref)) ; v1 is already cached
3727                    (gnus-agent-append-to-list tail-uncached v1))
3728                  (setq arts (cdr arts))
3729                  (setq ref (cdr ref)))
3730                 (t ; reference article (v2) preceeds the list being filtered
3731                  (setq ref (cdr ref))))))
3732       (while arts
3733         (gnus-agent-append-to-list tail-uncached (pop arts)))
3734       (cdr uncached))
3735     ;; if gnus-agent-load-alist fails, no articles are cached.
3736     articles))
3737
3738 (defun gnus-agent-retrieve-headers (articles group &optional fetch-old)
3739   (save-excursion
3740     (gnus-agent-create-buffer)
3741     (let ((gnus-decode-encoded-word-function 'identity)
3742           (gnus-decode-encoded-address-function 'identity)
3743           (file (gnus-agent-article-name ".overview" group))
3744           cached-articles uncached-articles
3745           (file-name-coding-system nnmail-pathname-coding-system))
3746       (gnus-make-directory (nnheader-translate-file-chars
3747                             (file-name-directory file) t))
3748
3749       ;; Populate temp buffer with known headers
3750       (when (file-exists-p file)
3751         (with-current-buffer gnus-agent-overview-buffer
3752           (erase-buffer)
3753           (let ((nnheader-file-coding-system
3754                  gnus-agent-file-coding-system))
3755             (nnheader-insert-nov-file file (car articles)))))
3756
3757       (if (setq uncached-articles (gnus-agent-uncached-articles articles group
3758                                                                 t))
3759           (progn
3760             ;; Populate nntp-server-buffer with uncached headers
3761             (set-buffer nntp-server-buffer)
3762             (erase-buffer)
3763             (cond ((not (eq 'nov (let (gnus-agent) ; Turn off agent
3764                                    (gnus-retrieve-headers
3765                                     uncached-articles group fetch-old))))
3766                    (nnvirtual-convert-headers))
3767                   ((eq 'nntp (car gnus-current-select-method))
3768                    ;; The author of gnus-get-newsgroup-headers-xover
3769                    ;; reports that the XOVER command is commonly
3770                    ;; unreliable. The problem is that recently
3771                    ;; posted articles may not be entered into the
3772                    ;; NOV database in time to respond to my XOVER
3773                    ;; query.
3774                    ;;
3775                    ;; I'm going to use his assumption that the NOV
3776                    ;; database is updated in order of ascending
3777                    ;; article ID.  Therefore, a response containing
3778                    ;; article ID N implies that all articles from 1
3779                    ;; to N-1 are up-to-date.  Therefore, missing
3780                    ;; articles in that range have expired.
3781
3782                    (set-buffer nntp-server-buffer)
3783                    (let* ((fetched-articles (list nil))
3784                           (tail-fetched-articles fetched-articles)
3785                           (min (cond ((numberp fetch-old)
3786                                       (max 1 (- (car articles) fetch-old)))
3787                                      (fetch-old
3788                                       1)
3789                                      (t
3790                                       (car articles))))
3791                           (max (car (last articles))))
3792
3793                      ;; Get the list of articles that were fetched
3794                      (goto-char (point-min))
3795                      (let ((pm (point-max))
3796                            art)
3797                        (while (< (point) pm)
3798                          (when (setq art (gnus-agent-read-article-number))
3799                            (gnus-agent-append-to-list tail-fetched-articles art))
3800                          (forward-line 1)))
3801
3802                      ;; Clip this list to the headers that will
3803                      ;; actually be returned
3804                      (setq fetched-articles (gnus-list-range-intersection
3805                                              (cdr fetched-articles)
3806                                              (cons min max)))
3807
3808                      ;; Clip the uncached articles list to exclude
3809                      ;; IDs after the last FETCHED header.  The
3810                      ;; excluded IDs may be fetchable using HEAD.
3811                      (if (car tail-fetched-articles)
3812                          (setq uncached-articles
3813                                (gnus-list-range-intersection
3814                                 uncached-articles
3815                                 (cons (car uncached-articles)
3816                                       (car tail-fetched-articles)))))
3817
3818                      ;; Create the list of articles that were
3819                      ;; "successfully" fetched.  Success, in this
3820                      ;; case, means that the ID should not be
3821                      ;; fetched again.  In the case of an expired
3822                      ;; article, the header will not be fetched.
3823                      (setq uncached-articles
3824                            (gnus-sorted-nunion fetched-articles
3825                                                uncached-articles))
3826                      )))
3827
3828             ;; Erase the temp buffer
3829             (set-buffer gnus-agent-overview-buffer)
3830             (erase-buffer)
3831
3832             ;; Copy the nntp-server-buffer to the temp buffer
3833             (set-buffer nntp-server-buffer)
3834             (copy-to-buffer gnus-agent-overview-buffer (point-min) (point-max))
3835
3836             ;; Merge the temp buffer with the known headers (found on
3837             ;; disk in FILE) into the nntp-server-buffer
3838             (when uncached-articles
3839               (gnus-agent-braid-nov group uncached-articles file))
3840
3841             ;; Save the new set of known headers to FILE
3842             (set-buffer nntp-server-buffer)
3843             (let ((coding-system-for-write
3844                    gnus-agent-file-coding-system))
3845               (gnus-agent-check-overview-buffer)
3846               (write-region (point-min) (point-max) file nil 'silent))
3847
3848             (gnus-agent-update-view-total-fetched-for group t)
3849
3850             ;; Update the group's article alist to include the newly
3851             ;; fetched articles.
3852             (gnus-agent-load-alist group)
3853             (gnus-agent-save-alist group uncached-articles nil)
3854             )
3855
3856         ;; Copy the temp buffer to the nntp-server-buffer
3857         (set-buffer nntp-server-buffer)
3858         (erase-buffer)
3859         (insert-buffer-substring gnus-agent-overview-buffer)))
3860
3861     (if (and fetch-old
3862              (not (numberp fetch-old)))
3863         t                               ; Don't remove anything.
3864       (nnheader-nov-delete-outside-range
3865        (if fetch-old (max 1 (- (car articles) fetch-old))
3866          (car articles))
3867        (car (last articles)))
3868       t)
3869
3870     'nov))
3871
3872 (defun gnus-agent-request-article (article group)
3873   "Retrieve ARTICLE in GROUP from the agent cache."
3874   (when (and gnus-agent
3875              (or gnus-agent-cache
3876                  (not gnus-plugged))
3877              (numberp article))
3878     (let* ((gnus-command-method (gnus-find-method-for-group group))
3879            (file (gnus-agent-article-name (number-to-string article) group))
3880            (buffer-read-only nil)
3881            (file-name-coding-system nnmail-pathname-coding-system))
3882       (when (and (file-exists-p file)
3883                  (> (nth 7 (file-attributes file)) 0))
3884         (erase-buffer)
3885         (gnus-kill-all-overlays)
3886         (let ((coding-system-for-read gnus-cache-coding-system))
3887           (insert-file-contents file))
3888         t))))
3889
3890 (defun gnus-agent-regenerate-group (group &optional reread)
3891   "Regenerate GROUP.
3892 If REREAD is t, all articles in the .overview are marked as unread.
3893 If REREAD is a list, the specified articles will be marked as unread.
3894 In addition, their NOV entries in .overview will be refreshed using
3895 the articles' current headers.
3896 If REREAD is not nil, downloaded articles are marked as unread."
3897   (interactive
3898    (list (gnus-agent-read-group)
3899          (catch 'mark
3900            (while (let (c
3901                         (cursor-in-echo-area t)
3902                         (echo-keystrokes 0))
3903                     (message "Mark as unread: (n)one / (a)ll / all (d)ownloaded articles? (n) ")
3904                     (setq c (read-char-exclusive))
3905
3906                     (cond ((or (eq c ?\r) (eq c ?n) (eq c ?N))
3907                            (throw 'mark nil))
3908                           ((or (eq c ?a) (eq c ?A))
3909                            (throw 'mark t))
3910                           ((or (eq c ?d) (eq c ?D))
3911                            (throw 'mark 'some)))
3912                     (gnus-message 3 "Ignoring unexpected input")
3913                     (sit-for 1)
3914                     t)))))
3915   (when group
3916     (gnus-message 5 "Regenerating in %s" group)
3917     (let* ((gnus-command-method (or gnus-command-method
3918                                     (gnus-find-method-for-group group)))
3919            (file (gnus-agent-article-name ".overview" group))
3920            (dir (file-name-directory file))
3921            point
3922            (file-name-coding-system nnmail-pathname-coding-system)
3923            (downloaded (if (file-exists-p dir)
3924                            (sort (delq nil (mapcar (lambda (name)
3925                                                      (and (not (file-directory-p (nnheader-concat dir name)))
3926                                                           (string-to-number name)))
3927                                                    (directory-files dir nil "^[0-9]+$" t)))
3928                                  '>)
3929                          (progn (gnus-make-directory dir) nil)))
3930            dl nov-arts
3931            alist header
3932            regenerated)
3933
3934       (mm-with-unibyte-buffer
3935         (if (file-exists-p file)
3936             (let ((nnheader-file-coding-system
3937                    gnus-agent-file-coding-system))
3938               (nnheader-insert-file-contents file)))
3939         (set-buffer-modified-p nil)
3940
3941         ;; Load the article IDs found in the overview file.  As a
3942         ;; side-effect, validate the file contents.
3943         (let ((load t))
3944           (while load
3945             (setq load nil)
3946             (goto-char (point-min))
3947             (while (< (point) (point-max))
3948               (cond ((and (looking-at "[0-9]+\t")
3949                           (<= (- (match-end 0) (match-beginning 0)) 9))
3950                      (push (read (current-buffer)) nov-arts)
3951                      (forward-line 1)
3952                      (let ((l1 (car nov-arts))
3953                            (l2 (cadr nov-arts)))
3954                        (cond ((and (listp reread) (memq l1 reread))
3955                               (gnus-delete-line)
3956                               (setq nov-arts (cdr nov-arts))
3957                               (gnus-message 4 "gnus-agent-regenerate-group: NOV\
3958  entry of article %s deleted." l1))
3959                              ((not l2)
3960                               nil)
3961                              ((< l1 l2)
3962                               (gnus-message 3 "gnus-agent-regenerate-group: NOV\
3963  entries are NOT in ascending order.")
3964                               ;; Don't sort now as I haven't verified
3965                               ;; that every line begins with a number
3966                               (setq load t))
3967                              ((= l1 l2)
3968                               (forward-line -1)
3969                               (gnus-message 4 "gnus-agent-regenerate-group: NOV\
3970  entries contained duplicate of article %s.      Duplicate deleted." l1)
3971                               (gnus-delete-line)
3972                               (setq nov-arts (cdr nov-arts))))))
3973                     (t
3974                      (gnus-message 1 "gnus-agent-regenerate-group: NOV\
3975  entries contained line that did not begin with an article number.  Deleted\
3976  line.")
3977                      (gnus-delete-line))))
3978             (when load
3979               (gnus-message 5 "gnus-agent-regenerate-group: Sorting NOV\
3980  entries into ascending order.")
3981               (sort-numeric-fields 1 (point-min) (point-max))
3982               (setq nov-arts nil))))
3983         (gnus-agent-check-overview-buffer)
3984
3985         ;; Construct a new article alist whose nodes match every header
3986         ;; in the .overview file.  As a side-effect, missing headers are
3987         ;; reconstructed from the downloaded article file.
3988         (while (or downloaded nov-arts)
3989           (cond ((and downloaded
3990                       (or (not nov-arts)
3991                           (> (car downloaded) (car nov-arts))))
3992                  ;; This entry is missing from the overview file
3993                  (gnus-message 3 "Regenerating NOV %s %d..." group
3994                                (car downloaded))
3995                  (let ((file (concat dir (number-to-string (car downloaded)))))
3996                    (mm-with-unibyte-buffer
3997                      (nnheader-insert-file-contents file)
3998                      (nnheader-remove-body)
3999                      (setq header (nnheader-parse-naked-head)))
4000                    (mail-header-set-number header (car downloaded))
4001                    (if nov-arts
4002                        (let ((key (concat "^" (int-to-string (car nov-arts))
4003                                           "\t")))
4004                          (or (re-search-backward key nil t)
4005                              (re-search-forward key))
4006                          (forward-line 1))
4007                      (goto-char (point-min)))
4008                    (nnheader-insert-nov header))
4009                  (setq nov-arts (cons (car downloaded) nov-arts)))
4010                 ((eq (car downloaded) (car nov-arts))
4011                  ;; This entry in the overview has been downloaded
4012                  (push (cons (car downloaded)
4013                              (time-to-days
4014                               (nth 5 (file-attributes
4015                                       (concat dir (number-to-string
4016                                                    (car downloaded))))))) alist)
4017                  (setq downloaded (cdr downloaded))
4018                  (setq nov-arts (cdr nov-arts)))
4019                 (t
4020                  ;; This entry in the overview has not been downloaded
4021                  (push (cons (car nov-arts) nil) alist)
4022                  (setq nov-arts (cdr nov-arts)))))
4023
4024         ;; When gnus-agent-consider-all-articles is set,
4025         ;; gnus-agent-regenerate-group should NOT remove article IDs from
4026         ;; the alist.  Those IDs serve as markers to indicate that an
4027         ;; attempt has been made to fetch that article's header.
4028
4029         ;; When gnus-agent-consider-all-articles is NOT set,
4030         ;; gnus-agent-regenerate-group can remove the article ID of every
4031         ;; article (with the exception of the last ID in the list - it's
4032         ;; special) that no longer appears in the overview.  In this
4033         ;; situtation, the last article ID in the list implies that it,
4034         ;; and every article ID preceeding it, have been fetched from the
4035         ;; server.
4036
4037         (if gnus-agent-consider-all-articles
4038             ;; Restore all article IDs that were not found in the overview file.
4039             (let* ((n (cons nil alist))
4040                    (merged n)
4041                    (o (gnus-agent-load-alist group)))
4042               (while o
4043                 (let ((nID (caadr n))
4044                       (oID (caar o)))
4045                   (cond ((not nID)
4046                          (setq n (setcdr n (list (list oID))))
4047                          (setq o (cdr o)))
4048                         ((< oID nID)
4049                          (setcdr n (cons (list oID) (cdr n)))
4050                          (setq o (cdr o)))
4051                         ((= oID nID)
4052                          (setq o (cdr o))
4053                          (setq n (cdr n)))
4054                         (t
4055                          (setq n (cdr n))))))
4056               (setq alist (cdr merged)))
4057           ;; Restore the last article ID if it is not already in the new alist
4058           (let ((n (last alist))
4059                 (o (last (gnus-agent-load-alist group))))
4060             (cond ((not o)
4061                    nil)
4062                   ((not n)
4063                    (push (cons (caar o) nil) alist))
4064                   ((< (caar n) (caar o))
4065                    (setcdr n (list (car o)))))))
4066
4067         (let ((inhibit-quit t))
4068           (if (setq regenerated (buffer-modified-p))
4069               (let ((coding-system-for-write gnus-agent-file-coding-system))
4070                 (write-region (point-min) (point-max) file nil 'silent)))
4071
4072           (setq regenerated (or regenerated
4073                                 (and reread gnus-agent-article-alist)
4074                                 (not (equal alist gnus-agent-article-alist))))
4075
4076           (setq gnus-agent-article-alist alist)
4077
4078           (when regenerated
4079             (gnus-agent-save-alist group)
4080
4081             ;; I have to alter the group's active range NOW as
4082             ;; gnus-make-ascending-articles-unread will use it to
4083             ;; recalculate the number of unread articles in the group
4084
4085             (let ((group (gnus-group-real-name group))
4086                   (group-active (or (gnus-active group)
4087                                     (gnus-activate-group group))))
4088               (gnus-agent-possibly-alter-active group group-active)))))
4089
4090       (when (and reread gnus-agent-article-alist)
4091         (gnus-agent-synchronize-group-flags
4092          group
4093          (list (list
4094                 (if (listp reread)
4095                     reread
4096                   (delq nil (mapcar (function (lambda (c)
4097                                                 (cond ((eq reread t)
4098                                                        (car c))
4099                                                       ((cdr c)
4100                                                        (car c)))))
4101                                     gnus-agent-article-alist)))
4102                 'del '(read)))
4103          gnus-command-method)
4104
4105         (when regenerated
4106           (gnus-agent-update-files-total-fetched-for group nil)))
4107
4108       (gnus-message 5 "")
4109       regenerated)))
4110
4111 ;;;###autoload
4112 (defun gnus-agent-regenerate (&optional clean reread)
4113   "Regenerate all agent covered files.
4114 If CLEAN, obsolete (ignore)."
4115   (interactive "P")
4116   (let (regenerated)
4117     (gnus-message 4 "Regenerating Gnus agent files...")
4118     (dolist (gnus-command-method (gnus-agent-covered-methods))
4119         (dolist (group (gnus-groups-from-server gnus-command-method))
4120           (setq regenerated (or (gnus-agent-regenerate-group group reread)
4121                                 regenerated))))
4122     (gnus-message 4 "Regenerating Gnus agent files...done")
4123
4124     regenerated))
4125
4126 (defun gnus-agent-go-online (&optional force)
4127   "Switch servers into online status."
4128   (interactive (list t))
4129   (dolist (server gnus-opened-servers)
4130     (when (eq (nth 1 server) 'offline)
4131       (if (if (eq force 'ask)
4132               (gnus-y-or-n-p
4133                (format "Switch %s:%s into online status? "
4134                        (caar server) (cadar server)))
4135             force)
4136           (setcar (nthcdr 1 server) 'close)))))
4137
4138 (defun gnus-agent-toggle-group-plugged (group)
4139   "Toggle the status of the server of the current group."
4140   (interactive (list (gnus-group-group-name)))
4141   (let* ((method (gnus-find-method-for-group group))
4142          (status (cadr (assoc method gnus-opened-servers))))
4143     (if (eq status 'offline)
4144         (gnus-server-set-status method 'closed)
4145       (gnus-close-server method)
4146       (gnus-server-set-status method 'offline))
4147     (message "Turn %s:%s from %s to %s." (car method) (cadr method)
4148              (if (eq status 'offline) 'offline 'online)
4149              (if (eq status 'offline) 'online 'offline))))
4150
4151 (defun gnus-agent-group-covered-p (group)
4152   (gnus-agent-method-p (gnus-group-method group)))
4153
4154 (defun gnus-agent-update-files-total-fetched-for
4155   (group delta &optional method path)
4156   "Update, or set, the total disk space used by the articles that the
4157 agent has fetched."
4158   (when gnus-agent-total-fetched-hashtb
4159     (gnus-agent-with-refreshed-group
4160      group
4161      ;; if null, gnus-agent-group-pathname will calc method.
4162      (let* ((gnus-command-method method)
4163             (path (or path (gnus-agent-group-pathname group)))
4164             (entry (or (gnus-gethash path gnus-agent-total-fetched-hashtb)
4165                        (gnus-sethash path (make-list 3 0)
4166                                      gnus-agent-total-fetched-hashtb)))
4167             (file-name-coding-system nnmail-pathname-coding-system))
4168        (when (listp delta)
4169          (if delta
4170              (let ((sum 0.0)
4171                    file)
4172                (while (setq file (pop delta))
4173                  (incf sum (float (or (nth 7 (file-attributes
4174                                               (nnheader-concat
4175                                                path
4176                                                (if (numberp file)
4177                                                    (number-to-string file)
4178                                                  file)))) 0))))
4179                (setq delta sum))
4180            (let ((sum (- (nth 2 entry)))
4181                  (info (directory-files-and-attributes path nil "^-?[0-9]+$" t))
4182                  file)
4183              (while (setq file (pop info))
4184                (incf sum (float (or (nth 8 file) 0))))
4185              (setq delta sum))))
4186
4187        (setq gnus-agent-need-update-total-fetched-for t)
4188        (incf (nth 2 entry) delta)))))
4189
4190 (defun gnus-agent-update-view-total-fetched-for
4191   (group agent-over &optional method path)
4192   "Update, or set, the total disk space used by the .agentview and
4193 .overview files.  These files are calculated separately as they can be
4194 modified."
4195   (when gnus-agent-total-fetched-hashtb
4196     (gnus-agent-with-refreshed-group
4197      group
4198      ;; if null, gnus-agent-group-pathname will calc method.
4199      (let* ((gnus-command-method method)
4200             (path (or path (gnus-agent-group-pathname group)))
4201             (entry (or (gnus-gethash path gnus-agent-total-fetched-hashtb)
4202                        (gnus-sethash path (make-list 3 0)
4203                                      gnus-agent-total-fetched-hashtb)))
4204             (file-name-coding-system nnmail-pathname-coding-system)
4205             (size (or (nth 7 (file-attributes
4206                               (nnheader-concat
4207                                path (if agent-over
4208                                         ".overview"
4209                                       ".agentview"))))
4210                       0)))
4211        (setq gnus-agent-need-update-total-fetched-for t)
4212        (setf (nth (if agent-over 1 0) entry) size)))))
4213
4214 (defun gnus-agent-total-fetched-for (group &optional method no-inhibit)
4215   "Get the total disk space used by the specified GROUP."
4216   (unless (equal group "dummy.group")
4217     (unless gnus-agent-total-fetched-hashtb
4218       (setq gnus-agent-total-fetched-hashtb (gnus-make-hashtable 1024)))
4219
4220     ;; if null, gnus-agent-group-pathname will calc method.
4221     (let* ((gnus-command-method method)
4222            (path (gnus-agent-group-pathname group))
4223            (entry (gnus-gethash path gnus-agent-total-fetched-hashtb)))
4224       (if entry
4225           (apply '+ entry)
4226         (let ((gnus-agent-inhibit-update-total-fetched-for (not no-inhibit)))
4227           (+
4228            (gnus-agent-update-view-total-fetched-for  group nil method path)
4229            (gnus-agent-update-view-total-fetched-for  group t   method path)
4230            (gnus-agent-update-files-total-fetched-for group nil method path)))))))
4231
4232 (provide 'gnus-agent)
4233
4234 ;;; arch-tag: b0ba4afc-5229-4cee-ad25-9956daa4e91e
4235 ;;; gnus-agent.el ends here