2 * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 #include "mutt_idna.h"
32 #define SORTCODE(x) (Sort & SORT_REVERSE) ? -(x) : x
34 /* function to use as discriminator when normal sort method is equal */
35 static sort_t *AuxSort = NULL;
37 #define AUXSORT(code,a,b) if (!code && AuxSort && !option(OPTAUXSORT)) { \
38 set_option(OPTAUXSORT); \
39 code = AuxSort(a,b); \
40 unset_option(OPTAUXSORT); \
43 code = (*((HEADER **)a))->index - (*((HEADER **)b))->index;
45 static int compare_score (const void *a, const void *b)
47 HEADER **pa = (HEADER **) a;
48 HEADER **pb = (HEADER **) b;
49 int result = (*pb)->score - (*pa)->score; /* note that this is reverse */
51 return (SORTCODE (result));
54 static int compare_size (const void *a, const void *b)
56 HEADER **pa = (HEADER **) a;
57 HEADER **pb = (HEADER **) b;
58 int result = (*pa)->content->length - (*pb)->content->length;
60 return (SORTCODE (result));
63 static int compare_date_sent (const void *a, const void *b)
65 HEADER **pa = (HEADER **) a;
66 HEADER **pb = (HEADER **) b;
67 int result = (*pa)->date_sent - (*pb)->date_sent;
69 return (SORTCODE (result));
72 static int compare_subject (const void *a, const void *b)
74 HEADER **pa = (HEADER **) a;
75 HEADER **pb = (HEADER **) b;
78 if (!(*pa)->env->real_subj)
80 if (!(*pb)->env->real_subj)
81 rc = compare_date_sent (pa, pb);
85 else if (!(*pb)->env->real_subj)
88 rc = mutt_strcasecmp ((*pa)->env->real_subj, (*pb)->env->real_subj);
90 return (SORTCODE (rc));
93 const char *mutt_get_name (ADDRESS *a)
99 if (option (OPTREVALIAS) && (ali = alias_reverse_lookup (a)) && ali->personal)
100 return ali->personal;
101 else if (a->personal)
104 return (mutt_addr_for_display (a));
106 /* don't return NULL to avoid segfault when printing/comparing */
110 static int compare_to (const void *a, const void *b)
112 HEADER **ppa = (HEADER **) a;
113 HEADER **ppb = (HEADER **) b;
114 char fa[SHORT_STRING];
118 strfcpy (fa, mutt_get_name ((*ppa)->env->to), SHORT_STRING);
119 fb = mutt_get_name ((*ppb)->env->to);
120 result = mutt_strncasecmp (fa, fb, SHORT_STRING);
122 return (SORTCODE (result));
125 static int compare_from (const void *a, const void *b)
127 HEADER **ppa = (HEADER **) a;
128 HEADER **ppb = (HEADER **) b;
129 char fa[SHORT_STRING];
133 strfcpy (fa, mutt_get_name ((*ppa)->env->from), SHORT_STRING);
134 fb = mutt_get_name ((*ppb)->env->from);
135 result = mutt_strncasecmp (fa, fb, SHORT_STRING);
137 return (SORTCODE (result));
140 static int compare_date_received (const void *a, const void *b)
142 HEADER **pa = (HEADER **) a;
143 HEADER **pb = (HEADER **) b;
144 int result = (*pa)->received - (*pb)->received;
146 return (SORTCODE (result));
149 static int compare_order (const void *a, const void *b)
151 HEADER **ha = (HEADER **) a;
152 HEADER **hb = (HEADER **) b;
154 /* no need to auxsort because you will never have equality here */
155 return (SORTCODE ((*ha)->index - (*hb)->index));
158 static int compare_spam (const void *a, const void *b)
160 HEADER **ppa = (HEADER **) a;
161 HEADER **ppb = (HEADER **) b;
167 /* Firstly, require spam attributes for both msgs */
168 /* to compare. Determine which msgs have one. */
169 ahas = (*ppa)->env && (*ppa)->env->spam;
170 bhas = (*ppb)->env && (*ppb)->env->spam;
172 /* If one msg has spam attr but other does not, sort the one with first. */
174 return (SORTCODE(1));
176 return (SORTCODE(-1));
178 /* Else, if neither has a spam attr, presume equality. Fall back on aux. */
181 AUXSORT(result, a, b);
182 return (SORTCODE(result));
186 /* Both have spam attrs. */
188 /* preliminary numeric examination */
189 difference = (strtod((*ppa)->env->spam->data, &aptr) -
190 strtod((*ppb)->env->spam->data, &bptr));
192 /* map double into comparison (-1, 0, or 1) */
193 result = (difference < 0.0 ? -1 : difference > 0.0 ? 1 : 0);
195 /* If either aptr or bptr is equal to data, there is no numeric */
196 /* value for that spam attribute. In this case, compare lexically. */
197 if ((aptr == (*ppa)->env->spam->data) || (bptr == (*ppb)->env->spam->data))
198 return (SORTCODE(strcmp(aptr, bptr)));
200 /* Otherwise, we have numeric value for both attrs. If these values */
201 /* are equal, then we first fall back upon string comparison, then */
202 /* upon auxiliary sort. */
205 result = strcmp(aptr, bptr);
207 AUXSORT(result, a, b);
210 return (SORTCODE(result));
213 sort_t *mutt_get_sort_func (int method)
215 switch (method & SORT_MASK)
218 return (compare_date_received);
220 return (compare_order);
222 return (compare_date_sent);
224 return (compare_subject);
226 return (compare_from);
228 return (compare_size);
232 return (compare_score);
234 return (compare_spam);
241 void mutt_sort_headers (CONTEXT *ctx, int init)
245 THREAD *thread, *top;
248 unset_option (OPTNEEDRESORT);
255 /* this function gets called by mutt_sync_mailbox(), which may have just
256 * deleted all the messages. the virtual message numbers are not updated
257 * in that routine, so we must make sure to zero the vcount member.
260 mutt_clear_threads (ctx);
261 return; /* nothing to do! */
265 mutt_message _("Sorting mailbox...");
267 if (option (OPTNEEDRESCORE) && option (OPTSCORE))
269 for (i = 0; i < ctx->msgcount; i++)
270 mutt_score_message (ctx, ctx->hdrs[i], 1);
272 unset_option (OPTNEEDRESCORE);
274 if (option (OPTRESORTINIT))
276 unset_option (OPTRESORTINIT);
280 if (init && ctx->tree)
281 mutt_clear_threads (ctx);
283 if ((Sort & SORT_MASK) == SORT_THREADS)
286 /* if $sort_aux changed after the mailbox is sorted, then all the
287 subthreads need to be resorted */
288 if (option (OPTSORTSUBTHREADS))
293 ctx->tree = mutt_sort_subthreads (ctx->tree, 1);
295 unset_option (OPTSORTSUBTHREADS);
297 mutt_sort_threads (ctx, init);
299 else if ((sortfunc = mutt_get_sort_func (Sort)) == NULL ||
300 (AuxSort = mutt_get_sort_func (SortAux)) == NULL)
302 mutt_error _("Could not find sorting function! [report this bug]");
307 qsort ((void *) ctx->hdrs, ctx->msgcount, sizeof (HEADER *), sortfunc);
309 /* adjust the virtual message numbers */
311 for (i = 0; i < ctx->msgcount; i++)
313 HEADER *cur = ctx->hdrs[i];
314 if (cur->virtual != -1 || (cur->collapsed && (!ctx->pattern || cur->limited)))
316 cur->virtual = ctx->vcount;
317 ctx->v2r[ctx->vcount] = i;
323 /* re-collapse threads marked as collapsed */
324 if ((Sort & SORT_MASK) == SORT_THREADS)
327 while ((thread = top) != NULL)
329 while (!thread->message)
330 thread = thread->child;
334 mutt_collapse_thread (ctx, h);
337 mutt_set_virtual (ctx);