1 ;;; rmailsort.el --- Rmail: sort messages
3 ;; Copyright (C) 1990, 1993, 1994, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
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/>.
31 ;; For rmail-select-summary
34 (autoload 'timezone-make-date-sortable
"timezone")
36 ;; Sorting messages in Rmail buffer
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."
43 (rmail-sort-messages reverse
46 (rmail-make-date-sortable
47 (rmail-fetch-field msg
"Date"))))))
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."
54 (rmail-sort-messages reverse
57 (let ((key (or (rmail-fetch-field msg
"Subject") ""))
60 (if (string-match "^\\(re:[ \t]*\\)*" key
)
61 (substring key
(match-end 0))
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."
69 (rmail-sort-messages reverse
72 (downcase ;Canonical name
73 (mail-strip-quoted-names
74 (or (rmail-fetch-field msg
"From")
75 (rmail-fetch-field msg
"Sender") "")))))))
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."
82 (rmail-sort-messages reverse
85 (downcase ;Canonical name
86 (mail-strip-quoted-names
87 (or (rmail-fetch-field msg
"To")
88 (rmail-fetch-field msg
"Apparently-To") "")
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."
96 (rmail-sort-messages reverse
99 (rmail-select-correspondent
101 '("From" "Sender" "To" "Apparently-To"))))))
103 (defun rmail-select-correspondent (msg fields
)
105 (while (and fields
(string= ans
""))
108 (mail-strip-quoted-names
109 (or (rmail-fetch-field msg
(car fields
)) ""))))
110 (setq fields
(cdr fields
)))
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."
118 (rmail-sort-messages reverse
121 (count-lines (rmail-msgbeg msg
)
122 (rmail-msgend msg
))))))
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)) ","))
134 (while (string-match "[ \t]*,[ \t]*" labels
)
137 (substring labels
0 (match-beginning 0))
140 (setq labels
(substring labels
(match-end 0))))
141 (setq labelvec
(apply 'vector
(nreverse labelvec
)))
142 (rmail-sort-messages reverse
146 (while (and (< n
(length labelvec
))
147 (not (rmail-message-labels-p
148 msg
(aref labelvec n
))))
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."
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
167 (message "Finding sort keys...")
170 (while (>= rmail-total-messages msgnum
)
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
)))
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
)))
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
)
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
)
203 ;; Now reorder messages.
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?
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.
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."
233 (let ((next (rmail-msgend msg
)))
234 (goto-char (rmail-msgbeg msg
))
235 (narrow-to-region (if (search-forward "\n*** EOOH ***\n" next t
)
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"))
249 ;; arch-tag: 0d90896b-0c35-46ac-b240-38be5ada2360
250 ;;; rmailsort.el ends here