mm-util.el (mm-ucs-to-char): Use eval-and-compile.
[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, 2010 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))))
125   ;; Chop off excess Message-IDs from the list.
126   (let ((end (nthcdr gnus-duplicate-list-length gnus-dup-list)))
127     (when end
128       (mapc (lambda (id) (unintern id gnus-dup-hashtb)) (cdr end))
129       (setcdr end nil))))
130
131 (defun gnus-dup-suppress-articles ()
132   "Mark duplicate articles as read."
133   (unless gnus-dup-list
134     (gnus-dup-open))
135   (gnus-message 6 "Suppressing duplicates...")
136   (let ((auto (and gnus-newsgroup-auto-expire
137                    (memq gnus-duplicate-mark gnus-auto-expirable-marks)))
138         number)
139     (dolist (header gnus-newsgroup-headers)
140       (when (and (intern-soft (mail-header-id header) gnus-dup-hashtb)
141                  (gnus-summary-article-unread-p (mail-header-number header)))
142         (setq gnus-newsgroup-unreads
143               (delq (setq number (mail-header-number header))
144                     gnus-newsgroup-unreads))
145         (if (not auto)
146             (push (cons number gnus-duplicate-mark) gnus-newsgroup-reads)
147           (push number gnus-newsgroup-expirable)
148           (push (cons number gnus-expirable-mark) gnus-newsgroup-reads)))))
149   (gnus-message 6 "Suppressing duplicates...done"))
150
151 (defun gnus-dup-unsuppress-article (article)
152   "Stop suppression of ARTICLE."
153   (let* ((header (gnus-data-header (gnus-data-find article)))
154          (id     (when header (mail-header-id header))))
155     (when id
156       (setq gnus-dup-list-dirty t)
157       (setq gnus-dup-list (delete id gnus-dup-list))
158       (unintern id gnus-dup-hashtb))))
159
160 (provide 'gnus-dup)
161
162 ;;; gnus-dup.el ends here