Remove tmp.
[gnus] / lisp / gnus-cache.el
1 ;;; gnus-cache.el --- cache interface for Gnus
2 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (eval-when-compile (require 'cl))
30
31 (require 'gnus)
32 (require 'gnus-int)
33 (require 'gnus-range)
34 (require 'gnus-start)
35 (eval-when-compile
36   (require 'gnus-sum))
37
38 (defcustom gnus-cache-active-file
39   (concat (file-name-as-directory gnus-cache-directory) "active")
40   "*The cache active file."
41   :group 'gnus-cache
42   :type 'file)
43
44 (defcustom gnus-cache-enter-articles '(ticked dormant)
45   "Classes of articles to enter into the cache."
46   :group 'gnus-cache
47   :type '(set (const ticked) (const dormant) (const unread) (const read)))
48
49 (defcustom gnus-cache-remove-articles '(read)
50   "Classes of articles to remove from the cache."
51   :group 'gnus-cache
52   :type '(set (const ticked) (const dormant) (const unread) (const read)))
53
54 (defcustom gnus-cacheable-groups nil
55   "*Groups that match this regexp will be cached.
56
57 If you only want to cache your nntp groups, you could set this
58 variable to \"^nntp\".
59
60 If a group matches both gnus-cacheable-groups and gnus-uncacheable-groups
61 it's not cached."
62   :group 'gnus-cache
63   :type '(choice (const :tag "off" nil)
64                  regexp))
65
66 (defcustom gnus-uncacheable-groups nil
67   "*Groups that match this regexp will not be cached.
68
69 If you want to avoid caching your nnml groups, you could set this
70 variable to \"^nnml\".
71
72 If a group matches both gnus-cacheable-groups and gnus-uncacheable-groups
73 it's not cached."
74   :group 'gnus-cache
75   :type '(choice (const :tag "off" nil)
76                  regexp))
77
78 (defvar gnus-cache-overview-coding-system 'raw-text
79   "Coding system used on Gnus cache files.")
80
81 (defvar gnus-cache-coding-system 'raw-text
82   "Coding system used on Gnus cache files.")
83
84 \f
85
86 ;;; Internal variables.
87
88 (defvar gnus-cache-removable-articles nil)
89 (defvar gnus-cache-buffer nil)
90 (defvar gnus-cache-active-hashtb nil)
91 (defvar gnus-cache-active-altered nil)
92
93 (eval-and-compile
94   (autoload 'nnml-generate-nov-databases-1 "nnml")
95   (autoload 'nnvirtual-find-group-art "nnvirtual"))
96
97 \f
98
99 ;;; Functions called from Gnus.
100
101 (defun gnus-cache-open ()
102   "Initialize the cache."
103   (when (or (file-exists-p gnus-cache-directory)
104             (and gnus-use-cache
105                  (not (eq gnus-use-cache 'passive))))
106     (gnus-cache-read-active)))
107
108 ;; Complexities of byte-compiling make this kludge necessary.  Eeek.
109 (ignore-errors
110   (gnus-add-shutdown 'gnus-cache-close 'gnus))
111
112 (defun gnus-cache-close ()
113   "Shut down the cache."
114   (gnus-cache-write-active)
115   (gnus-cache-save-buffers)
116   (setq gnus-cache-active-hashtb nil))
117
118 (defun gnus-cache-save-buffers ()
119   ;; save the overview buffer if it exists and has been modified
120   ;; delete empty cache subdirectories
121   (when gnus-cache-buffer
122     (let ((buffer (cdr gnus-cache-buffer))
123           (overview-file (gnus-cache-file-name
124                           (car gnus-cache-buffer) ".overview")))
125       ;; write the overview only if it was modified
126       (when (buffer-modified-p buffer)
127         (save-excursion
128           (set-buffer buffer)
129           (if (> (buffer-size) 0)
130               ;; Non-empty overview, write it to a file.
131               (let ((coding-system-for-write
132                      gnus-cache-overview-coding-system))
133                 (gnus-write-buffer overview-file))
134             ;; Empty overview file, remove it
135             (when (file-exists-p overview-file)
136               (delete-file overview-file))
137             ;; If possible, remove group's cache subdirectory.
138             (condition-case nil
139                 ;; FIXME: we can detect the error type and warn the user
140                 ;; of any inconsistencies (articles w/o nov entries?).
141                 ;; for now, just be conservative...delete only if safe -- sj
142                 (delete-directory (file-name-directory overview-file))
143               (error nil)))))
144       ;; Kill the buffer -- it's either unmodified or saved.
145       (gnus-kill-buffer buffer)
146       (setq gnus-cache-buffer nil))))
147
148 (defun gnus-cache-possibly-enter-article
149   (group article ticked dormant unread &optional force)
150   (when (and (or force (not (eq gnus-use-cache 'passive)))
151              (numberp article)
152              (> article 0))             ; This might be a dummy article.
153     (let ((number article) file headers)
154       ;; If this is a virtual group, we find the real group.
155       (when (gnus-virtual-group-p group)
156         (let ((result (nnvirtual-find-group-art
157                        (gnus-group-real-name group) article)))
158           (setq group (car result)
159                 number (cdr result))))
160       (when (and number
161                  (> number 0)           ; Reffed article.
162                  (or force
163                      (and (or (not gnus-cacheable-groups)
164                               (string-match gnus-cacheable-groups group))
165                           (or (not gnus-uncacheable-groups)
166                               (not (string-match
167                                     gnus-uncacheable-groups group)))
168                           (gnus-cache-member-of-class
169                            gnus-cache-enter-articles ticked dormant unread)))
170                  (not (file-exists-p (setq file (gnus-cache-file-name
171                                                  group number)))))
172         ;; Possibly create the cache directory.
173         (gnus-make-directory (file-name-directory file))
174         ;; Save the article in the cache.
175         (if (file-exists-p file)
176             t                           ; The article already is saved.
177           (save-excursion
178             (set-buffer nntp-server-buffer)
179             (require 'gnus-art)
180             (let ((gnus-use-cache nil)
181                   (gnus-article-decode-hook nil))
182               (gnus-request-article-this-buffer number group))
183             (when (> (buffer-size) 0)
184               (gnus-write-buffer file)
185               (setq headers (nnheader-parse-head t))
186               (mail-header-set-number headers number)
187               (gnus-cache-change-buffer group)
188               (set-buffer (cdr gnus-cache-buffer))
189               (goto-char (point-max))
190               (forward-line -1)
191               (while (condition-case ()
192                          (when (not (bobp))
193                            (> (read (current-buffer)) number))
194                        (error
195                         ;; The line was malformed, so we just remove it!!
196                         (gnus-delete-line)
197                         t))
198                 (forward-line -1))
199               (if (bobp)
200                   (if (not (eobp))
201                       (progn
202                         (beginning-of-line)
203                         (when (< (read (current-buffer)) number)
204                           (forward-line 1)))
205                     (beginning-of-line))
206                 (forward-line 1))
207               (beginning-of-line)
208               (nnheader-insert-nov headers)
209               ;; Update the active info.
210               (set-buffer gnus-summary-buffer)
211               (gnus-cache-update-active group number)
212               (push article gnus-newsgroup-cached)
213               (gnus-summary-update-secondary-mark article))
214             t))))))
215
216 (defun gnus-cache-enter-remove-article (article)
217   "Mark ARTICLE for later possible removal."
218   (when article
219     (push article gnus-cache-removable-articles)))
220
221 (defun gnus-cache-possibly-remove-articles ()
222   "Possibly remove some of the removable articles."
223   (if (not (gnus-virtual-group-p gnus-newsgroup-name))
224       (gnus-cache-possibly-remove-articles-1)
225     (let ((arts gnus-cache-removable-articles)
226           ga)
227       (while arts
228         (when (setq ga (nnvirtual-find-group-art
229                         (gnus-group-real-name gnus-newsgroup-name) (pop arts)))
230           (let ((gnus-cache-removable-articles (list (cdr ga)))
231                 (gnus-newsgroup-name (car ga)))
232             (gnus-cache-possibly-remove-articles-1)))))
233     (setq gnus-cache-removable-articles nil)))
234
235 (defun gnus-cache-possibly-remove-articles-1 ()
236   "Possibly remove some of the removable articles."
237   (unless (eq gnus-use-cache 'passive)
238     (let ((articles gnus-cache-removable-articles)
239           (cache-articles gnus-newsgroup-cached)
240           article)
241       (gnus-cache-change-buffer gnus-newsgroup-name)
242       (while articles
243         (when (memq (setq article (pop articles)) cache-articles)
244           ;; The article was in the cache, so we see whether we are
245           ;; supposed to remove it from the cache.
246           (gnus-cache-possibly-remove-article
247            article (memq article gnus-newsgroup-marked)
248            (memq article gnus-newsgroup-dormant)
249            (or (memq article gnus-newsgroup-unreads)
250                (memq article gnus-newsgroup-unselected))))))
251     ;; The overview file might have been modified, save it
252     ;; safe because we're only called at group exit anyway.
253     (gnus-cache-save-buffers)))
254
255 (defun gnus-cache-request-article (article group)
256   "Retrieve ARTICLE in GROUP from the cache."
257   (let ((file (gnus-cache-file-name group article))
258         (buffer-read-only nil))
259     (when (file-exists-p file)
260       (erase-buffer)
261       (gnus-kill-all-overlays)
262       (let ((coding-system-for-read gnus-cache-coding-system))
263         (insert-file-contents file))
264       t)))
265
266 (defun gnus-cache-possibly-alter-active (group active)
267   "Alter the ACTIVE info for GROUP to reflect the articles in the cache."
268   (when gnus-cache-active-hashtb
269     (let ((cache-active (gnus-gethash group gnus-cache-active-hashtb)))
270       (when cache-active
271         (when (< (car cache-active) (car active))
272           (setcar active (car cache-active)))
273         (when (> (cdr cache-active) (cdr active))
274           (setcdr active (cdr cache-active)))))))
275
276 (defun gnus-cache-retrieve-headers (articles group &optional fetch-old)
277   "Retrieve the headers for ARTICLES in GROUP."
278   (let ((cached
279          (setq gnus-newsgroup-cached (gnus-cache-articles-in-group group))))
280     (if (not cached)
281         ;; No cached articles here, so we just retrieve them
282         ;; the normal way.
283         (let ((gnus-use-cache nil))
284           (gnus-retrieve-headers articles group fetch-old))
285       (let ((uncached-articles (gnus-sorted-intersection
286                                 (gnus-sorted-complement articles cached)
287                                 articles))
288             (cache-file (gnus-cache-file-name group ".overview"))
289             type)
290         ;; We first retrieve all the headers that we don't have in
291         ;; the cache.
292         (let ((gnus-use-cache nil))
293           (when uncached-articles
294             (setq type (and articles
295                             (gnus-retrieve-headers
296                              uncached-articles group fetch-old)))))
297         (gnus-cache-save-buffers)
298         ;; Then we insert the cached headers.
299         (save-excursion
300           (cond
301            ((not (file-exists-p cache-file))
302             ;; There are no cached headers.
303             type)
304            ((null type)
305             ;; There were no uncached headers (or retrieval was
306             ;; unsuccessful), so we use the cached headers exclusively.
307             (set-buffer nntp-server-buffer)
308             (erase-buffer)
309             (let ((coding-system-for-read 
310                    gnus-cache-overview-coding-system))
311               (insert-file-contents cache-file))
312             'nov)
313            ((eq type 'nov)
314             ;; We have both cached and uncached NOV headers, so we
315             ;; braid them.
316             (gnus-cache-braid-nov group cached)
317             type)
318            (t
319             ;; We braid HEADs.
320             (gnus-cache-braid-heads group (gnus-sorted-intersection
321                                            cached articles))
322             type)))))))
323
324 (defun gnus-cache-enter-article (&optional n)
325   "Enter the next N articles into the cache.
326 If not given a prefix, use the process marked articles instead.
327 Returns the list of articles entered."
328   (interactive "P")
329   (let ((articles (gnus-summary-work-articles n))
330         article out)
331     (while (setq article (pop articles))
332       (gnus-summary-remove-process-mark article)
333       (if (natnump article)
334           (when (gnus-cache-possibly-enter-article
335                  gnus-newsgroup-name article
336                  nil nil nil t)
337             (push article out))
338         (gnus-message 2 "Can't cache article %d" article))
339       (gnus-summary-update-secondary-mark article))
340     (gnus-summary-next-subject 1)
341     (gnus-summary-position-point)
342     (nreverse out)))
343
344 (defun gnus-cache-remove-article (n)
345   "Remove the next N articles from the cache.
346 If not given a prefix, use the process marked articles instead.
347 Returns the list of articles removed."
348   (interactive "P")
349   (gnus-cache-change-buffer gnus-newsgroup-name)
350   (let ((articles (gnus-summary-work-articles n))
351         article out)
352     (while articles
353       (setq article (pop articles))
354       (gnus-summary-remove-process-mark article)
355       (when (gnus-cache-possibly-remove-article article nil nil nil t)
356         (push article out))
357       (gnus-summary-update-secondary-mark article))
358     (gnus-summary-next-subject 1)
359     (gnus-summary-position-point)
360     (nreverse out)))
361
362 (defun gnus-cached-article-p (article)
363   "Say whether ARTICLE is cached in the current group."
364   (memq article gnus-newsgroup-cached))
365
366 (defun gnus-summary-insert-cached-articles ()
367   "Insert all the articles cached for this group into the current buffer."
368   (interactive)
369   (let ((cached (sort (copy-sequence gnus-newsgroup-cached) '>))
370         (gnus-verbose (max 6 gnus-verbose)))
371     (unless cached
372       (gnus-message 3 "No cached articles for this group"))
373     (while cached
374       (gnus-summary-goto-subject (pop cached) t))))
375
376 (defalias 'gnus-summary-limit-include-cached
377   'gnus-summary-insert-cached-articles)
378
379 ;;; Internal functions.
380
381 (defun gnus-cache-change-buffer (group)
382   (and gnus-cache-buffer
383        ;; See if the current group's overview cache has been loaded.
384        (or (string= group (car gnus-cache-buffer))
385            ;; Another overview cache is current, save it.
386            (gnus-cache-save-buffers)))
387   ;; if gnus-cache buffer is nil, create it
388   (unless gnus-cache-buffer
389     ;; Create cache buffer
390     (save-excursion
391       (setq gnus-cache-buffer
392             (cons group
393                   (set-buffer (gnus-get-buffer-create
394                                " *gnus-cache-overview*"))))
395       ;; Insert the contents of this group's cache overview.
396       (erase-buffer)
397       (let ((file (gnus-cache-file-name group ".overview")))
398         (when (file-exists-p file)
399           (nnheader-insert-file-contents file)))
400       ;; We have a fresh (empty/just loaded) buffer,
401       ;; mark it as unmodified to save a redundant write later.
402       (set-buffer-modified-p nil))))
403
404 ;; Return whether an article is a member of a class.
405 (defun gnus-cache-member-of-class (class ticked dormant unread)
406   (or (and ticked (memq 'ticked class))
407       (and dormant (memq 'dormant class))
408       (and unread (memq 'unread class))
409       (and (not unread) (not ticked) (not dormant) (memq 'read class))))
410
411 (defun gnus-cache-file-name (group article)
412   (concat (file-name-as-directory gnus-cache-directory)
413           (file-name-as-directory
414            (nnheader-translate-file-chars
415             (if (gnus-use-long-file-name 'not-cache)
416                 group
417               (let ((group (nnheader-replace-duplicate-chars-in-string
418                             (nnheader-replace-chars-in-string group ?/ ?_)
419                             ?. ?_)))
420                 ;; Translate the first colon into a slash.
421                 (when (string-match ":" group)
422                   (aset group (match-beginning 0) ?/))
423                 (nnheader-replace-chars-in-string group ?. ?/)))
424             t))
425           (if (stringp article) article (int-to-string article))))
426
427 (defun gnus-cache-update-article (group article)
428   "If ARTICLE is in the cache, remove it and re-enter it."
429   (gnus-cache-change-buffer group)
430   (when (gnus-cache-possibly-remove-article article nil nil nil t)
431     (let ((gnus-use-cache nil))
432       (gnus-cache-possibly-enter-article
433        gnus-newsgroup-name article
434        nil nil nil t))))
435
436 (defun gnus-cache-possibly-remove-article (article ticked dormant unread
437                                                    &optional force)
438   "Possibly remove ARTICLE from the cache."
439   (let ((group gnus-newsgroup-name)
440         (number article)
441         file)
442     ;; If this is a virtual group, we find the real group.
443     (when (gnus-virtual-group-p group)
444       (let ((result (nnvirtual-find-group-art
445                      (gnus-group-real-name group) article)))
446         (setq group (car result)
447               number (cdr result))))
448     (setq file (gnus-cache-file-name group number))
449     (when (and (file-exists-p file)
450                (or force
451                    (gnus-cache-member-of-class
452                     gnus-cache-remove-articles ticked dormant unread)))
453       (save-excursion
454         (delete-file file)
455         (set-buffer (cdr gnus-cache-buffer))
456         (goto-char (point-min))
457         (when (or (looking-at (concat (int-to-string number) "\t"))
458                   (search-forward (concat "\n" (int-to-string number) "\t")
459                                   (point-max) t))
460           (delete-region (progn (beginning-of-line) (point))
461                          (progn (forward-line 1) (point)))))
462       (setq gnus-newsgroup-cached
463             (delq article gnus-newsgroup-cached))
464       (gnus-summary-update-secondary-mark article)
465       t)))
466
467 (defun gnus-cache-articles-in-group (group)
468   "Return a sorted list of cached articles in GROUP."
469   (let ((dir (file-name-directory (gnus-cache-file-name group 1)))
470         articles)
471     (when (file-exists-p dir)
472       (setq articles
473             (sort (mapcar (lambda (name) (string-to-int name))
474                           (directory-files dir nil "^[0-9]+$" t))
475                   '<))
476       ;; Update the cache active file, just to synch more.
477       (when articles
478         (gnus-cache-update-active group (car articles) t)
479         (gnus-cache-update-active group (car (last articles))))
480       articles)))
481
482 (defun gnus-cache-braid-nov (group cached &optional file)
483   (let ((cache-buf (gnus-get-buffer-create " *gnus-cache*"))
484         beg end)
485     (gnus-cache-save-buffers)
486     (save-excursion
487       (set-buffer cache-buf)
488       (erase-buffer)
489       (let ((coding-system-for-read 
490              gnus-cache-overview-coding-system))
491         (insert-file-contents 
492          (or file (gnus-cache-file-name group ".overview"))))
493       (goto-char (point-min))
494       (insert "\n")
495       (goto-char (point-min)))
496     (set-buffer nntp-server-buffer)
497     (goto-char (point-min))
498     (while cached
499       (while (and (not (eobp))
500                   (< (read (current-buffer)) (car cached)))
501         (forward-line 1))
502       (beginning-of-line)
503       (save-excursion
504         (set-buffer cache-buf)
505         (if (search-forward (concat "\n" (int-to-string (car cached)) "\t")
506                             nil t)
507             (setq beg (progn (beginning-of-line) (point))
508                   end (progn (end-of-line) (point)))
509           (setq beg nil)))
510       (when beg
511         (insert-buffer-substring cache-buf beg end)
512         (insert "\n"))
513       (setq cached (cdr cached)))
514     (kill-buffer cache-buf)))
515
516 (defun gnus-cache-braid-heads (group cached)
517   (let ((cache-buf (gnus-get-buffer-create " *gnus-cache*")))
518     (save-excursion
519       (set-buffer cache-buf)
520       (erase-buffer))
521     (set-buffer nntp-server-buffer)
522     (goto-char (point-min))
523     (while cached
524       (while (and (not (eobp))
525                   (looking-at "2.. +\\([0-9]+\\) ")
526                   (< (progn (goto-char (match-beginning 1))
527                             (read (current-buffer)))
528                      (car cached)))
529         (search-forward "\n.\n" nil 'move))
530       (beginning-of-line)
531       (save-excursion
532         (set-buffer cache-buf)
533         (erase-buffer)
534         (let ((coding-system-for-read 
535                gnus-cache-coding-system))
536           (insert-file-contents (gnus-cache-file-name group (car cached))))
537         (goto-char (point-min))
538         (insert "220 ")
539         (princ (car cached) (current-buffer))
540         (insert " Article retrieved.\n")
541         (search-forward "\n\n" nil 'move)
542         (delete-region (point) (point-max))
543         (forward-char -1)
544         (insert "."))
545       (insert-buffer-substring cache-buf)
546       (setq cached (cdr cached)))
547     (kill-buffer cache-buf)))
548
549 ;;;###autoload
550 (defun gnus-jog-cache ()
551   "Go through all groups and put the articles into the cache.
552
553 Usage:
554 $ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache"
555   (interactive)
556   (let ((gnus-mark-article-hook nil)
557         (gnus-expert-user t)
558         (nnmail-spool-file nil)
559         (gnus-use-dribble-file nil)
560         (gnus-novice-user nil)
561         (gnus-large-newsgroup nil))
562     ;; Start Gnus.
563     (gnus)
564     ;; Go through all groups...
565     (gnus-group-mark-buffer)
566     (gnus-group-iterate nil
567       (lambda (group)
568         (let (gnus-auto-select-next)
569           (gnus-summary-read-group group nil t)
570           ;; ... and enter the articles into the cache.
571           (when (eq major-mode 'gnus-summary-mode)
572             (gnus-uu-mark-buffer)
573             (gnus-cache-enter-article)
574             (kill-buffer (current-buffer))))))))
575
576 (defun gnus-cache-read-active (&optional force)
577   "Read the cache active file."
578   (gnus-make-directory gnus-cache-directory)
579   (if (or (not (file-exists-p gnus-cache-active-file))
580           (zerop (nth 7 (file-attributes gnus-cache-active-file)))
581           force)
582       ;; There is no active file, so we generate one.
583       (gnus-cache-generate-active)
584     ;; We simply read the active file.
585     (save-excursion
586       (gnus-set-work-buffer)
587       (insert-file-contents gnus-cache-active-file)
588       (gnus-active-to-gnus-format
589        nil (setq gnus-cache-active-hashtb
590                  (gnus-make-hashtable
591                   (count-lines (point-min) (point-max)))))
592       (setq gnus-cache-active-altered nil))))
593
594 (defun gnus-cache-write-active (&optional force)
595   "Write the active hashtb to the active file."
596   (when (or force
597             (and gnus-cache-active-hashtb
598                  gnus-cache-active-altered))
599     (gnus-write-active-file gnus-cache-active-file gnus-cache-active-hashtb t)
600     ;; Mark the active hashtb as unaltered.
601     (setq gnus-cache-active-altered nil)))
602
603 (defun gnus-cache-update-active (group number &optional low)
604   "Update the upper bound of the active info of GROUP to NUMBER.
605 If LOW, update the lower bound instead."
606   (let ((active (gnus-gethash group gnus-cache-active-hashtb)))
607     (if (null active)
608         ;; We just create a new active entry for this group.
609         (gnus-sethash group (cons number number) gnus-cache-active-hashtb)
610       ;; Update the lower or upper bound.
611       (if low
612           (setcar active number)
613         (setcdr active number)))
614     ;; Mark the active hashtb as altered.
615     (setq gnus-cache-active-altered t)))
616
617 ;;;###autoload
618 (defun gnus-cache-generate-active (&optional directory)
619   "Generate the cache active file."
620   (interactive)
621   (let* ((top (null directory))
622          (directory (expand-file-name (or directory gnus-cache-directory)))
623          (files (directory-files directory 'full))
624          (group
625           (if top
626               ""
627             (string-match
628              (concat "^" (regexp-quote
629                           (file-name-as-directory
630                            (expand-file-name gnus-cache-directory))))
631              (directory-file-name directory))
632             (nnheader-replace-chars-in-string
633              (substring (directory-file-name directory) (match-end 0))
634              ?/ ?.)))
635          nums alphs)
636     (when top
637       (gnus-message 5 "Generating the cache active file...")
638       (setq gnus-cache-active-hashtb (gnus-make-hashtable 123)))
639     (when (string-match "^\\(nn[^_]+\\)_" group)
640       (setq group (replace-match "\\1:" t t group)))
641     ;; Separate articles from all other files and directories.
642     (while files
643       (if (string-match "^[0-9]+$" (file-name-nondirectory (car files)))
644           (push (string-to-int (file-name-nondirectory (pop files))) nums)
645         (push (pop files) alphs)))
646     ;; If we have nums, then this is probably a valid group.
647     (when (setq nums (sort nums '<))
648       (gnus-sethash group (cons (car nums) (gnus-last-element nums))
649                     gnus-cache-active-hashtb))
650     ;; Go through all the other files.
651     (while alphs
652       (when (and (file-directory-p (car alphs))
653                  (not (string-match "^\\."
654                                     (file-name-nondirectory (car alphs)))))
655         ;; We descend directories.
656         (gnus-cache-generate-active (car alphs)))
657       (setq alphs (cdr alphs)))
658     ;; Write the new active file.
659     (when top
660       (gnus-cache-write-active t)
661       (gnus-message 5 "Generating the cache active file...done"))))
662
663 ;;;###autoload
664 (defun gnus-cache-generate-nov-databases (dir)
665   "Generate NOV files recursively starting in DIR."
666   (interactive (list gnus-cache-directory))
667   (gnus-cache-close)
668   (let ((nnml-generate-active-function 'identity))
669     (nnml-generate-nov-databases-1 dir)))
670
671 (defun gnus-cache-move-cache (dir)
672   "Move the cache tree to somewhere else."
673   (interactive "FMove the cache tree to: ")
674   (rename-file gnus-cache-directory dir))
675
676 (provide 'gnus-cache)
677
678 ;;; gnus-cache.el ends here