1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/*
* Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "mutt.h"
#include "sort.h"
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#define SORTCODE(x) (Sort & SORT_REVERSE) ? -(x) : x
/* function to use as discriminator when normal sort method is equal */
static sort_t *AuxSort = NULL;
#define AUXSORT(code,a,b) if (!code && AuxSort && !option(OPTAUXSORT)) { \
set_option(OPTAUXSORT); \
code = AuxSort(a,b); \
unset_option(OPTAUXSORT); \
}
int compare_score (const void *a, const void *b)
{
HEADER **pa = (HEADER **) a;
HEADER **pb = (HEADER **) b;
int result = (*pb)->score - (*pa)->score; /* note that this is reverse */
AUXSORT(result,a,b);
return (SORTCODE (result));
}
int compare_size (const void *a, const void *b)
{
HEADER **pa = (HEADER **) a;
HEADER **pb = (HEADER **) b;
int result = (*pa)->content->length - (*pb)->content->length;
AUXSORT(result,a,b);
return (SORTCODE (result));
}
int compare_date_sent (const void *a, const void *b)
{
HEADER **pa = (HEADER **) a;
HEADER **pb = (HEADER **) b;
int result = (*pa)->date_sent - (*pb)->date_sent;
AUXSORT(result,a,b);
return (SORTCODE (result));
}
int compare_subject (const void *a, const void *b)
{
HEADER **pa = (HEADER **) a;
HEADER **pb = (HEADER **) b;
int rc;
if (!(*pa)->env->real_subj)
{
if (!(*pb)->env->real_subj)
rc = compare_date_sent (pa, pb);
else
rc = -1;
}
else if (!(*pb)->env->real_subj)
rc = 1;
else
rc = strcasecmp ((*pa)->env->real_subj, (*pb)->env->real_subj);
AUXSORT(rc,a,b);
return (SORTCODE (rc));
}
char *mutt_get_name (ADDRESS *a)
{
ADDRESS *ali;
if (a)
{
if (option (OPTREVALIAS) && (ali = alias_reverse_lookup (a)) && ali->personal)
return ali->personal;
else if (a->personal)
return a->personal;
else if (a->mailbox)
return (a->mailbox);
}
/* don't return NULL to avoid segfault when printing/comparing */
return ("");
}
int compare_to (const void *a, const void *b)
{
HEADER **ppa = (HEADER **) a;
HEADER **ppb = (HEADER **) b;
char *fa, *fb;
int result;
fa = mutt_get_name ((*ppa)->env->to);
fb = mutt_get_name ((*ppb)->env->to);
result = strcasecmp (fa, fb);
AUXSORT(result,a,b);
return (SORTCODE (result));
}
int compare_from (const void *a, const void *b)
{
HEADER **ppa = (HEADER **) a;
HEADER **ppb = (HEADER **) b;
char *fa, *fb;
int result;
fa = mutt_get_name ((*ppa)->env->from);
fb = mutt_get_name ((*ppb)->env->from);
result = strcasecmp (fa, fb);
AUXSORT(result,a,b);
return (SORTCODE (result));
}
int compare_date_received (const void *a, const void *b)
{
HEADER **pa = (HEADER **) a;
HEADER **pb = (HEADER **) b;
int result = (*pa)->received - (*pb)->received;
AUXSORT(result,a,b);
return (SORTCODE (result));
}
int compare_order (const void *a, const void *b)
{
HEADER **ha = (HEADER **) a;
HEADER **hb = (HEADER **) b;
/* no need to auxsort because you will never have equality here */
return (SORTCODE ((*ha)->index - (*hb)->index));
}
sort_t *mutt_get_sort_func (int method)
{
switch (method & SORT_MASK)
{
case SORT_RECEIVED:
return (compare_date_received);
case SORT_ORDER:
return (compare_order);
case SORT_DATE:
return (compare_date_sent);
case SORT_SUBJECT:
return (compare_subject);
case SORT_FROM:
return (compare_from);
case SORT_SIZE:
return (compare_size);
case SORT_TO:
return (compare_to);
case SORT_SCORE:
return (compare_score);
default:
return (NULL);
}
/* not reached */
}
void mutt_sort_headers (CONTEXT *ctx, int init)
{
int i;
sort_t *sortfunc;
unset_option (OPTNEEDRESORT);
if (!ctx)
return;
if (!ctx->msgcount)
{
/* this function gets called by mutt_sync_mailbox(), which may have just
* deleted all the messages. the virtual message numbers are not updated
* in that routine, so we must make sure to zero the vcount member.
*/
ctx->vcount = 0;
ctx->tree = 0;
return; /* nothing to do! */
}
if (!ctx->quiet)
mutt_message ("Sorting mailbox...");
/* threads may be bogus, so clear the links */
if (init)
mutt_clear_threads (ctx);
if (option (OPTNEEDRESCORE))
{
for (i = 0; i < ctx->msgcount; i++)
mutt_score_message (ctx->hdrs[i]);
unset_option (OPTNEEDRESCORE);
}
if ((Sort & SORT_MASK) == SORT_THREADS)
{
AuxSort = NULL;
/* if $sort_aux changed after the mailbox is sorted, then all the
subthreads need to be resorted */
if (option (OPTSORTSUBTHREADS))
{
ctx->tree = mutt_sort_subthreads (ctx->tree, mutt_get_sort_func (SortAux));
unset_option (OPTSORTSUBTHREADS);
}
mutt_sort_threads (ctx, init);
}
else if ((sortfunc = mutt_get_sort_func (Sort)) == NULL ||
(AuxSort = mutt_get_sort_func (SortAux)) == NULL)
{
mutt_error ("Could not find sorting function! [report this bug]");
sleep (1);
return;
}
else
qsort ((void *) ctx->hdrs, ctx->msgcount, sizeof (HEADER *), sortfunc);
/* the threading function find_reference() needs to know how the mailbox
* is currently sorted in memory in order to speed things up a bit
*/
ctx->revsort = (Sort & SORT_REVERSE) ? 1 : 0;
/* adjust the virtual message numbers */
ctx->vcount = 0;
for (i = 0; i < ctx->msgcount; i++)
{
if (ctx->hdrs[i]->virtual != -1)
{
ctx->hdrs[i]->virtual = ctx->vcount;
ctx->v2r[ctx->vcount] = i;
ctx->vcount++;
}
ctx->hdrs[i]->msgno = i;
}
if (!ctx->quiet)
mutt_clear_error ();
}
|