3 * sortm.c -- sort messages in a folder by date/time
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
14 static struct swit switches[] = {
16 { "datefield field", 0 },
18 { "textfield field", 0 },
22 { "subject", -3 }, /* backward-compatibility */
44 static struct smsg *smsgs;
47 char *subjsort = (char *) 0; /* sort on subject if != 0 */
49 int submajor = 0; /* if true, sort on subject-major */
52 /* This keeps compiler happy on calls to qsort */
53 typedef int (*qsort_comp) (const void *, const void *);
58 static int read_hdrs (struct msgs *, char *);
59 static int get_fields (char *, int, struct smsg *);
60 static int dsort (struct smsg **, struct smsg **);
61 static int subsort (struct smsg **, struct smsg **);
62 static int txtsort (struct smsg **, struct smsg **);
63 static void rename_chain (struct msgs *, struct smsg **, int, int);
64 static void rename_msgs (struct msgs *, struct smsg **);
68 main (int argc, char **argv)
72 char *maildir, *datesw = NULL;
73 char *folder = NULL, buf[BUFSIZ], **argp;
75 struct msgs_array msgs = { 0, 0, NULL };
80 setlocale(LC_ALL, "");
82 invo_name = r1bindex (argv[0], '/');
84 /* read user profile/context */
87 arguments = getarguments (invo_name, argc, argv, 1);
93 while ((cp = *argp++)) {
95 switch (smatch (++cp, switches)) {
97 ambigsw (cp, switches);
100 adios (NULL, "-%s unknown", cp);
103 snprintf(buf, sizeof(buf), "%s [+folder] [msgs] [switches]",
105 print_help (buf, switches, 1);
108 print_version(invo_name);
113 adios (NULL, "only one date field at a time");
114 if (!(datesw = *argp++) || *datesw == '-')
115 adios (NULL, "missing argument to %s", argp[-2]);
120 adios (NULL, "only one text field at a time");
121 if (!(subjsort = *argp++) || *subjsort == '-')
122 adios (NULL, "missing argument to %s", argp[-2]);
126 subjsort = "subject";
129 subjsort = (char *)0;
133 if (!(cp = *argp++) || *cp == '-')
134 adios (NULL, "missing argument to %s", argp[-2]);
136 cp++; /* skip any leading zeros */
137 if (!*cp) { /* hit end of string */
138 submajor++; /* sort subject-major */
141 if (!isdigit(*cp) || !(datelimit = atoi(cp)))
142 adios (NULL, "impossible limit %s", cp);
143 datelimit *= 60*60*24;
146 submajor = 0; /* use date-major, but */
147 datelimit = 0; /* use no limit */
158 if (*cp == '+' || *cp == '@') {
160 adios (NULL, "only one folder at a time!");
162 folder = pluspath (cp);
164 app_msgarg(&msgs, cp);
167 if (!context_find ("path"))
168 free (path ("./", TFOLDER));
170 app_msgarg(&msgs, "all");
174 folder = getfolder (1);
175 maildir = m_maildir (folder);
177 if (chdir (maildir) == NOTOK)
178 adios (maildir, "unable to change directory to");
180 /* read folder and create message structure */
181 if (!(mp = folder_read (folder)))
182 adios (NULL, "unable to read folder %s", folder);
184 /* check for empty folder */
186 adios (NULL, "no messages in %s", folder);
188 /* parse all the message ranges/sequences and set SELECTED */
189 for (msgnum = 0; msgnum < msgs.size; msgnum++)
190 if (!m_convert (mp, msgs.msgs[msgnum]))
192 seq_setprev (mp); /* set the previous sequence */
194 if ((nmsgs = read_hdrs (mp, datesw)) <= 0)
195 adios (NULL, "no messages to sort");
198 * sort a list of pointers to our "messages to be sorted".
200 dlist = (struct smsg **) mh_xmalloc ((nmsgs+1) * sizeof(*dlist));
201 for (i = 0; i < nmsgs; i++)
202 dlist[i] = &smsgs[i];
205 if (verbose) { /* announce what we're doing */
207 printf ("sorting by %s-major %s-minor\n",
208 submajor ? subjsort : datesw,
209 submajor ? datesw : subjsort);
211 printf ("sorting by datefield %s\n", datesw);
214 /* first sort by date, or by subject-major, date-minor */
215 qsort ((char *) dlist, nmsgs, sizeof(*dlist),
216 (qsort_comp) (submajor && subjsort ? txtsort : dsort));
219 * if we're sorting on subject, we need another list
220 * in subject order, then a merge pass to collate the
223 if (!submajor && subjsort) { /* already date sorted */
224 struct smsg **slist, **flist;
225 register struct smsg ***il, **fp, **dp;
227 slist = (struct smsg **) mh_xmalloc ((nmsgs+1) * sizeof(*slist));
228 memcpy((char *)slist, (char *)dlist, (nmsgs+1)*sizeof(*slist));
229 qsort((char *)slist, nmsgs, sizeof(*slist), (qsort_comp) subsort);
232 * make an inversion list so we can quickly find
233 * the collection of messages with the same subj
234 * given a message number.
236 il = (struct smsg ***) calloc (mp->hghsel+1, sizeof(*il));
238 adios (NULL, "couldn't allocate msg list");
239 for (i = 0; i < nmsgs; i++)
240 il[slist[i]->s_msg] = &slist[i];
242 * make up the final list, chronological but with
243 * all the same subjects grouped together.
245 flist = (struct smsg **) mh_xmalloc ((nmsgs+1) * sizeof(*flist));
247 for (dp = dlist; *dp;) {
248 register struct smsg **s = il[(*dp++)->s_msg];
250 /* see if we already did this guy */
256 * take the next message(s) if there is one,
257 * its subject isn't null and its subject
258 * is the same as this one and it's not too
261 while (*s && (*s)->s_subj[0] &&
262 strcmp((*s)->s_subj, s[-1]->s_subj) == 0 &&
264 (*s)->s_clock - s[-1]->s_clock <= datelimit)) {
276 * At this point, dlist is a sorted array of pointers to smsg structures,
277 * each of which contains a message number.
280 rename_msgs (mp, dlist);
282 context_replace (pfolder, folder); /* update current folder */
283 seq_save (mp); /* synchronize message sequences */
284 context_save (); /* save the context file */
285 folder_free (mp); /* free folder/message structure */
291 read_hdrs (struct msgs *mp, char *datesw)
295 register struct smsg *s;
297 twscopy (&tb, dlocaltimenow ());
299 smsgs = (struct smsg *)
300 calloc ((size_t) (mp->hghsel - mp->lowsel + 2),
303 adios (NULL, "unable to allocate sort storage");
306 for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
307 if (is_selected(mp, msgnum)) {
308 if (get_fields (datesw, msgnum, s)) {
320 * Parse the message and get the data or subject field,
325 get_fields (char *datesw, int msg, struct smsg *smsg)
329 char *msgnam, buf[BUFSIZ], nam[NAMESZ];
330 register struct tws *tw;
331 register char *datecomp = NULL, *subjcomp = NULL;
334 if ((in = fopen (msgnam = m_name (msg), "r")) == NULL) {
335 admonish (msgnam, "unable to read message");
338 for (compnum = 1, state = FLD;;) {
339 switch (state = m_getfld (state, nam, buf, sizeof(buf), in)) {
344 if (!mh_strcasecmp (nam, datesw)) {
345 datecomp = add (buf, datecomp);
346 while (state == FLDPLUS) {
347 state = m_getfld (state, nam, buf, sizeof(buf), in);
348 datecomp = add (buf, datecomp);
350 if (!subjsort || subjcomp)
352 } else if (subjsort && !mh_strcasecmp (nam, subjsort)) {
353 subjcomp = add (buf, subjcomp);
354 while (state == FLDPLUS) {
355 state = m_getfld (state, nam, buf, sizeof(buf), in);
356 subjcomp = add (buf, subjcomp);
361 /* just flush this guy */
362 while (state == FLDPLUS)
363 state = m_getfld (state, nam, buf, sizeof(buf), in);
374 if (state == LENERR || state == FMTERR)
375 admonish (NULL, "format error in message %d (header #%d)",
385 adios (NULL, "internal error -- you lose");
391 * If no date component, then use the modification
392 * time of the file as its date
394 if (!datecomp || (tw = dparsetime (datecomp)) == NULL) {
397 admonish (NULL, "can't parse %s field in message %d", datesw, msg);
398 fstat (fileno (in), &st);
399 smsg->s_clock = st.st_mtime;
401 smsg->s_clock = dmktime (tw);
407 * try to make the subject "canonical": delete
408 * leading "re:", everything but letters & smash
409 * letters to lower case.
411 register char *cp, *cp2;
412 register unsigned char c;
416 if (strcmp (subjsort, "subject") == 0) {
428 while ((c = *cp++)) {
430 *cp2++ = isupper(c) ? tolower(c) : c;
438 smsg->s_subj = subjcomp;
451 dsort (struct smsg **a, struct smsg **b)
453 if ((*a)->s_clock < (*b)->s_clock)
455 else if ((*a)->s_clock > (*b)->s_clock)
457 else if ((*a)->s_msg < (*b)->s_msg)
467 subsort (struct smsg **a, struct smsg **b)
471 if ((i = strcmp ((*a)->s_subj, (*b)->s_subj)))
474 return (dsort (a, b));
478 txtsort (struct smsg **a, struct smsg **b)
482 if ((i = strcmp ((*a)->s_subj, (*b)->s_subj)))
484 else if ((*a)->s_msg < (*b)->s_msg)
491 rename_chain (struct msgs *mp, struct smsg **mlist, int msg, int endmsg)
494 char *newname, oldname[BUFSIZ];
495 char newbuf[MAXPATHLEN + 1];
498 nxt = mlist[msg] - smsgs; /* mlist[msg] is a ptr into smsgs */
499 mlist[msg] = (struct smsg *)0;
500 old = smsgs[nxt].s_msg;
501 new = smsgs[msg].s_msg;
502 strncpy (oldname, m_name (old), sizeof(oldname));
503 newname = m_name (new);
505 printf ("message %d becomes message %d\n", old, new);
507 (void)snprintf(oldname, sizeof (oldname), "%s/%d", mp->foldpath, old);
508 (void)snprintf(newbuf, sizeof (newbuf), "%s/%d", mp->foldpath, new);
509 ext_hook("ref-hook", oldname, newbuf);
511 if (rename (oldname, newname) == NOTOK)
512 adios (newname, "unable to rename %s to", oldname);
514 copy_msg_flags (mp, new, old);
515 if (mp->curmsg == old)
516 seq_setcur (mp, new);
523 /* if (nxt != endmsg); */
524 /* rename_chain (mp, mlist, nxt, endmsg); */
528 rename_msgs (struct msgs *mp, struct smsg **mlist)
532 char f1[BUFSIZ], tmpfil[BUFSIZ];
533 char newbuf[MAXPATHLEN + 1];
536 strncpy (tmpfil, m_name (mp->hghmsg + 1), sizeof(tmpfil));
538 for (i = 0; i < nmsgs; i++) {
539 if (! (sp = mlist[i]))
540 continue; /* did this one */
544 continue; /* this one doesn't move */
547 * the guy that was msg j is about to become msg i.
548 * rename 'j' to make a hole, then recursively rename
549 * guys to fill up the hole.
551 old = smsgs[j].s_msg;
552 new = smsgs[i].s_msg;
553 strncpy (f1, m_name (old), sizeof(f1));
556 printf ("renaming message chain from %d to %d\n", old, new);
559 * Run the external hook to refile the old message as the
560 * temporary message number that is off of the end of the
561 * messages in the folder.
564 (void)snprintf(f1, sizeof (f1), "%s/%d", mp->foldpath, old);
565 (void)snprintf(newbuf, sizeof (newbuf), "%s/%d", mp->foldpath, mp->hghmsg + 1);
566 ext_hook("ref-hook", f1, newbuf);
568 if (rename (f1, tmpfil) == NOTOK)
569 adios (tmpfil, "unable to rename %s to ", f1);
571 get_msg_flags (mp, &tmpset, old);
573 rename_chain (mp, mlist, j, i);
576 * Run the external hook to refile the temorary message number
580 (void)snprintf(f1, sizeof (f1), "%s/%d", mp->foldpath, new);
581 ext_hook("ref-hook", newbuf, f1);
583 if (rename (tmpfil, m_name(new)) == NOTOK)
584 adios (m_name(new), "unable to rename %s to", tmpfil);
586 set_msg_flags (mp, &tmpset, new);
587 mp->msgflags |= SEQMOD;