Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / mail / rmailsort.el
bloba4de5a6c868a8e84d02c3b7ddb72121833a2017d
1 ;;; rmailsort.el --- Rmail: sort messages
3 ;; Copyright (C) 1990, 1993, 1994, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
7 ;; Maintainer: FSF
8 ;; Keywords: mail
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;;; Code:
29 (require 'sort)
31 ;; For rmail-select-summary
32 (require 'rmail)
34 (autoload 'timezone-make-date-sortable "timezone")
36 ;; Sorting messages in Rmail buffer
38 ;;;###autoload
39 (defun rmail-sort-by-date (reverse)
40 "Sort messages of current Rmail file by date.
41 If prefix argument REVERSE is non-nil, sort them in reverse order."
42 (interactive "P")
43 (rmail-sort-messages reverse
44 (function
45 (lambda (msg)
46 (rmail-make-date-sortable
47 (rmail-fetch-field msg "Date"))))))
49 ;;;###autoload
50 (defun rmail-sort-by-subject (reverse)
51 "Sort messages of current Rmail file by subject.
52 If prefix argument REVERSE is non-nil, sort them in reverse order."
53 (interactive "P")
54 (rmail-sort-messages reverse
55 (function
56 (lambda (msg)
57 (let ((key (or (rmail-fetch-field msg "Subject") ""))
58 (case-fold-search t))
59 ;; Remove `Re:'
60 (if (string-match "^\\(re:[ \t]*\\)*" key)
61 (substring key (match-end 0))
62 key))))))
64 ;;;###autoload
65 (defun rmail-sort-by-author (reverse)
66 "Sort messages of current Rmail file by author.
67 If prefix argument REVERSE is non-nil, sort them in reverse order."
68 (interactive "P")
69 (rmail-sort-messages reverse
70 (function
71 (lambda (msg)
72 (downcase ;Canonical name
73 (mail-strip-quoted-names
74 (or (rmail-fetch-field msg "From")
75 (rmail-fetch-field msg "Sender") "")))))))
77 ;;;###autoload
78 (defun rmail-sort-by-recipient (reverse)
79 "Sort messages of current Rmail file by recipient.
80 If prefix argument REVERSE is non-nil, sort them in reverse order."
81 (interactive "P")
82 (rmail-sort-messages reverse
83 (function
84 (lambda (msg)
85 (downcase ;Canonical name
86 (mail-strip-quoted-names
87 (or (rmail-fetch-field msg "To")
88 (rmail-fetch-field msg "Apparently-To") "")
89 ))))))
91 ;;;###autoload
92 (defun rmail-sort-by-correspondent (reverse)
93 "Sort messages of current Rmail file by other correspondent.
94 If prefix argument REVERSE is non-nil, sort them in reverse order."
95 (interactive "P")
96 (rmail-sort-messages reverse
97 (function
98 (lambda (msg)
99 (rmail-select-correspondent
101 '("From" "Sender" "To" "Apparently-To"))))))
103 (defun rmail-select-correspondent (msg fields)
104 (let ((ans ""))
105 (while (and fields (string= ans ""))
106 (setq ans
107 (rmail-dont-reply-to
108 (mail-strip-quoted-names
109 (or (rmail-fetch-field msg (car fields)) ""))))
110 (setq fields (cdr fields)))
111 ans))
113 ;;;###autoload
114 (defun rmail-sort-by-lines (reverse)
115 "Sort messages of current Rmail file by number of lines.
116 If prefix argument REVERSE is non-nil, sort them in reverse order."
117 (interactive "P")
118 (rmail-sort-messages reverse
119 (function
120 (lambda (msg)
121 (count-lines (rmail-msgbeg msg)
122 (rmail-msgend msg))))))
124 ;;;###autoload
125 (defun rmail-sort-by-labels (reverse labels)
126 "Sort messages of current Rmail file by labels.
127 If prefix argument REVERSE is non-nil, sort them in reverse order.
128 KEYWORDS is a comma-separated list of labels."
129 (interactive "P\nsSort by labels: ")
130 (or (string-match "[^ \t]" labels)
131 (error "No labels specified"))
132 (setq labels (concat (substring labels (match-beginning 0)) ","))
133 (let (labelvec)
134 (while (string-match "[ \t]*,[ \t]*" labels)
135 (setq labelvec (cons
136 (concat ", ?\\("
137 (substring labels 0 (match-beginning 0))
138 "\\),")
139 labelvec))
140 (setq labels (substring labels (match-end 0))))
141 (setq labelvec (apply 'vector (nreverse labelvec)))
142 (rmail-sort-messages reverse
143 (function
144 (lambda (msg)
145 (let ((n 0))
146 (while (and (< n (length labelvec))
147 (not (rmail-message-labels-p
148 msg (aref labelvec n))))
149 (setq n (1+ n)))
150 n))))))
152 ;; Basic functions
153 (declare-function rmail-update-summary "rmailsum" (&rest ignore))
155 (defun rmail-sort-messages (reverse keyfun)
156 "Sort messages of current Rmail file.
157 If 1st argument REVERSE is non-nil, sort them in reverse order.
158 2nd argument KEYFUN is called with a message number, and should return a key."
159 (save-current-buffer
160 ;; If we are in a summary buffer, operate on the Rmail buffer.
161 (if (eq major-mode 'rmail-summary-mode)
162 (set-buffer rmail-buffer))
163 (let ((buffer-read-only nil)
164 (point-offset (- (point) (point-min)))
165 (predicate nil) ;< or string-lessp
166 (sort-lists nil))
167 (message "Finding sort keys...")
168 (widen)
169 (let ((msgnum 1))
170 (while (>= rmail-total-messages msgnum)
171 (setq sort-lists
172 (cons (list (funcall keyfun msgnum) ;Make sorting key
173 (eq rmail-current-message msgnum) ;True if current
174 (aref rmail-message-vector msgnum)
175 (aref rmail-message-vector (1+ msgnum)))
176 sort-lists))
177 (if (zerop (% msgnum 10))
178 (message "Finding sort keys...%d" msgnum))
179 (setq msgnum (1+ msgnum))))
180 (or reverse (setq sort-lists (nreverse sort-lists)))
181 ;; Decide predicate: < or string-lessp
182 (if (numberp (car (car sort-lists))) ;Is a key numeric?
183 (setq predicate (function <))
184 (setq predicate (function string-lessp)))
185 (setq sort-lists
186 (sort sort-lists
187 (function
188 (lambda (a b)
189 (funcall predicate (car a) (car b))))))
190 (if reverse (setq sort-lists (nreverse sort-lists)))
191 ;; Now we enter critical region. So, keyboard quit is disabled.
192 (message "Reordering messages...")
193 (let ((inhibit-quit t) ;Inhibit quit
194 (current-message nil)
195 (msgnum 1)
196 (msginfo nil))
197 ;; There's little hope that we can easily undo after that.
198 (buffer-disable-undo (current-buffer))
199 (goto-char (rmail-msgbeg 1))
200 ;; To force update of all markers.
201 (insert-before-markers ?Z)
202 (backward-char 1)
203 ;; Now reorder messages.
204 (while sort-lists
205 (setq msginfo (car sort-lists))
206 ;; Swap two messages.
207 (insert-buffer-substring
208 (current-buffer) (nth 2 msginfo) (nth 3 msginfo))
209 (delete-region (nth 2 msginfo) (nth 3 msginfo))
210 ;; Is current message?
211 (if (nth 1 msginfo)
212 (setq current-message msgnum))
213 (setq sort-lists (cdr sort-lists))
214 (if (zerop (% msgnum 10))
215 (message "Reordering messages...%d" msgnum))
216 (setq msgnum (1+ msgnum)))
217 ;; Delete the garbage inserted before.
218 (delete-char 1)
219 (setq quit-flag nil)
220 (buffer-enable-undo)
221 (rmail-set-message-counters)
222 (rmail-show-message current-message)
223 (goto-char (+ point-offset (point-min)))
224 (if (rmail-summary-exists)
225 (rmail-select-summary
226 (rmail-update-summary)))))))
228 (defun rmail-fetch-field (msg field)
229 "Return the value of the header FIELD of MSG.
230 Arguments are MSG and FIELD."
231 (save-restriction
232 (widen)
233 (let ((next (rmail-msgend msg)))
234 (goto-char (rmail-msgbeg msg))
235 (narrow-to-region (if (search-forward "\n*** EOOH ***\n" next t)
236 (point)
237 (forward-line 1)
238 (point))
239 (progn (search-forward "\n\n" nil t) (point)))
240 (mail-fetch-field field))))
242 (defun rmail-make-date-sortable (date)
243 "Make DATE sortable using the function string-lessp."
244 ;; Assume the default time zone is GMT.
245 (timezone-make-date-sortable date "GMT" "GMT"))
247 (provide 'rmailsort)
249 ;; arch-tag: 0d90896b-0c35-46ac-b240-38be5ada2360
250 ;;; rmailsort.el ends here