38412
|
1 ;;; rmailsort.el --- Rmail: sort messages
|
658
|
2
|
64754
|
3 ;; Copyright (C) 1990, 1993, 1994, 2001, 2002, 2003, 2004,
|
79712
|
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
845
|
5
|
3133
|
6 ;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
|
16988
|
7 ;; Maintainer: FSF
|
814
|
8 ;; Keywords: mail
|
807
|
9
|
767
|
10 ;; This file is part of GNU Emacs.
|
90
|
11
|
94674
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
|
767
|
13 ;; it under the terms of the GNU General Public License as published by
|
94674
|
14 ;; the Free Software Foundation, either version 3 of the License, or
|
|
15 ;; (at your option) any later version.
|
90
|
16
|
|
17 ;; GNU Emacs is distributed in the hope that it will be useful,
|
767
|
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.
|
90
|
21
|
767
|
22 ;; You should have received a copy of the GNU General Public License
|
94674
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
767
|
24
|
38412
|
25 ;;; Commentary:
|
|
26
|
807
|
27 ;;; Code:
|
90
|
28
|
|
29 (require 'sort)
|
|
30
|
14235
|
31 ;; For rmail-select-summary
|
|
32 (require 'rmail)
|
|
33
|
3133
|
34 (autoload 'timezone-make-date-sortable "timezone")
|
|
35
|
|
36 ;; Sorting messages in Rmail buffer
|
90
|
37
|
16348
|
38 ;;;###autoload
|
90
|
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)
|
3133
|
46 (rmail-make-date-sortable
|
90
|
47 (rmail-fetch-field msg "Date"))))))
|
|
48
|
16348
|
49 ;;;###autoload
|
90
|
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:'
|
6490
|
60 (if (string-match "^\\(re:[ \t]*\\)*" key)
|
|
61 (substring key (match-end 0))
|
|
62 key))))))
|
90
|
63
|
16348
|
64 ;;;###autoload
|
90
|
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)
|
3133
|
72 (downcase ;Canonical name
|
|
73 (mail-strip-quoted-names
|
|
74 (or (rmail-fetch-field msg "From")
|
|
75 (rmail-fetch-field msg "Sender") "")))))))
|
90
|
76
|
16348
|
77 ;;;###autoload
|
90
|
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)
|
3133
|
85 (downcase ;Canonical name
|
|
86 (mail-strip-quoted-names
|
|
87 (or (rmail-fetch-field msg "To")
|
|
88 (rmail-fetch-field msg "Apparently-To") "")
|
|
89 ))))))
|
90
|
90
|
16348
|
91 ;;;###autoload
|
131
|
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
|
|
100 msg
|
|
101 '("From" "Sender" "To" "Apparently-To"))))))
|
|
102
|
|
103 (defun rmail-select-correspondent (msg fields)
|
|
104 (let ((ans ""))
|
3133
|
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))
|
148
|
112
|
16348
|
113 ;;;###autoload
|
3133
|
114 (defun rmail-sort-by-lines (reverse)
|
3878
|
115 "Sort messages of current Rmail file by number of lines.
|
148
|
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)
|
6315
|
121 (count-lines (rmail-msgbeg msg)
|
|
122 (rmail-msgend msg))))))
|
6718
|
123
|
16348
|
124 ;;;###autoload
|
37591
|
125 (defun rmail-sort-by-labels (reverse labels)
|
6718
|
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)
|
49598
|
135 (setq labelvec (cons
|
6718
|
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))))))
|
90
|
151
|
3133
|
152 ;; Basic functions
|
86440
|
153 (declare-function rmail-update-summary "rmailsum" (&rest ignore))
|
3133
|
154
|
|
155 (defun rmail-sort-messages (reverse keyfun)
|
90
|
156 "Sort messages of current Rmail file.
|
3133
|
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."
|
16988
|
159 (save-current-buffer
|
5159
|
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)
|
16988
|
164 (point-offset (- (point) (point-min)))
|
5159
|
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.
|
6584
|
198 (buffer-disable-undo (current-buffer))
|
5159
|
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)
|
6583
|
222 (rmail-show-message current-message)
|
16988
|
223 (goto-char (+ point-offset (point-min)))
|
6583
|
224 (if (rmail-summary-exists)
|
|
225 (rmail-select-summary
|
|
226 (rmail-update-summary)))))))
|
3133
|
227
|
90
|
228 (defun rmail-fetch-field (msg field)
|
3133
|
229 "Return the value of the header FIELD of MSG.
|
90
|
230 Arguments are MSG and FIELD."
|
3133
|
231 (save-restriction
|
|
232 (widen)
|
|
233 (let ((next (rmail-msgend msg)))
|
90
|
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))))
|
|
241
|
3133
|
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"))
|
90
|
246
|
584
|
247 (provide 'rmailsort)
|
658
|
248
|
93975
|
249 ;; arch-tag: 0d90896b-0c35-46ac-b240-38be5ada2360
|
658
|
250 ;;; rmailsort.el ends here
|