Add auth.
[gnus] / lisp / gnus-dup.el
1 ;;; gnus-dup.el --- suppression of duplicate articles in Gnus
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; This package tries to mark articles as read the second time the
27 ;; user reads a copy.  This is useful if the server doesn't support
28 ;; Xref properly, or if the user reads the same group from several
29 ;; servers.
30
31 ;;; Code:
32
33 (eval-when-compile (require 'cl))
34
35 (require 'gnus)
36 (require 'gnus-art)
37
38 (defgroup gnus-duplicate nil
39   "Suppression of duplicate articles."
40   :group 'gnus)
41
42 (defcustom gnus-save-duplicate-list nil
43   "*If non-nil, save the duplicate list when shutting down Gnus.
44 If nil, duplicate suppression will only work on duplicates
45 seen in the same session."
46   :group 'gnus-duplicate
47   :type 'boolean)
48
49 (defcustom gnus-duplicate-list-length 10000
50   "*The number of Message-IDs to keep in the duplicate suppression list."
51   :group 'gnus-duplicate
52   :type 'integer)
53
54 (defcustom gnus-duplicate-file (nnheader-concat gnus-directory "suppression")
55   "*The name of the file to store the duplicate suppression list."
56   :group 'gnus-duplicate
57   :type 'file)
58
59 ;;; Internal variables
60
61 (defvar gnus-dup-list nil)
62 (defvar gnus-dup-hashtb nil)
63
64 (defvar gnus-dup-list-dirty nil)
65
66 ;;;
67 ;;; Starting and stopping
68 ;;;
69
70 (gnus-add-shutdown 'gnus-dup-close 'gnus)
71
72 (defun gnus-dup-close ()
73   "Possibly save the duplicate suppression list and shut down the subsystem."
74   (gnus-dup-save)
75   (setq gnus-dup-list nil
76         gnus-dup-hashtb nil
77         gnus-dup-list-dirty nil))
78
79 (defun gnus-dup-open ()
80   "Possibly read the duplicate suppression list and start the subsystem."
81   (if gnus-save-duplicate-list
82       (gnus-dup-read)
83     (setq gnus-dup-list nil))
84   (setq gnus-dup-hashtb (gnus-make-hashtable gnus-duplicate-list-length))
85   ;; Enter all Message-IDs into the hash table.
86   (let ((obarray gnus-dup-hashtb))
87     (mapc 'intern gnus-dup-list)))
88
89 (defun gnus-dup-read ()
90   "Read the duplicate suppression list."
91   (setq gnus-dup-list nil)
92   (when (file-exists-p gnus-duplicate-file)
93     (load gnus-duplicate-file t t t)))
94
95 (defun gnus-dup-save ()
96   "Save the duplicate suppression list."
97   (when (and gnus-save-duplicate-list
98              gnus-dup-list-dirty)
99     (with-temp-file gnus-duplicate-file
100       (gnus-prin1 `(setq gnus-dup-list ',gnus-dup-list))))
101   (setq gnus-dup-list-dirty nil))
102
103 ;;;
104 ;;; Interface functions
105 ;;;
106
107 (defun gnus-dup-enter-articles ()
108   "Enter articles from the current group for future duplicate suppression."
109   (unless gnus-dup-list
110     (gnus-dup-open))
111   (setq gnus-dup-list-dirty t)          ; mark list for saving
112   (let (msgid)
113     ;; Enter the Message-IDs of all read articles into the list
114     ;; and hash table.
115     (dolist (datum gnus-newsgroup-data)
116       (when (and (not (gnus-data-pseudo-p datum))
117                  (> (gnus-data-number datum) 0)
118                  (not (memq (gnus-data-number datum) gnus-newsgroup-unreads))
119                  (not (= (gnus-data-mark datum) gnus-canceled-mark))
120                  (setq msgid (mail-header-id (gnus-data-header datum)))
121                  (not (nnheader-fake-message-id-p msgid))
122                  (not (intern-soft msgid gnus-dup-hashtb)))
123         (push msgid gnus-dup-list)
124         (intern msgid gnus-dup-hashtb))))