]>
diplodocus.org Git - nmh/blob - uip/sortm.c
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 #define SORTM_SWITCHES \
15 X("datefield field", 0, DATESW) \
16 X("textfield field", 0, TEXTSW) \
17 X("notextfield", 0, NSUBJSW) \
18 X("subject", -3, SUBJSW) /* backward-compatibility */ \
19 X("limit days", 0, LIMSW) \
20 X("nolimit", 0, NLIMSW) \
21 X("verbose", 0, VERBSW) \
22 X("noverbose", 0, NVERBSW) \
23 X("all", 0, ALLMSGS) \
24 X("noall", 0, NALLMSGS) \
25 X("check", 0, CHECKSW) \
26 X("nocheck", 0, NCHECKSW) \
27 X("version", 0, VERSIONSW) \
28 X("help", 0, HELPSW) \
30 #define X(sw, minchars, id) id,
31 DEFINE_SWITCH_ENUM(SORTM
);
34 #define X(sw, minchars, id) { sw, minchars, id },
35 DEFINE_SWITCH_ARRAY(SORTM
, switches
);
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 */
54 /* This keeps compiler happy on calls to qsort */
55 typedef int (*qsort_comp
) (const void *, const void *);
60 static int read_hdrs (struct msgs
*, char *);
61 static int get_fields (char *, int, struct smsg
*);
62 static int dsort (struct smsg
**, struct smsg
**);
63 static int subsort (struct smsg
**, struct smsg
**);
64 static int txtsort (struct smsg
**, struct smsg
**);
65 static void rename_chain (struct msgs
*, struct smsg
**, int, int);
66 static void rename_msgs (struct msgs
*, struct smsg
**);
70 main (int argc
, char **argv
)
73 char *cp
, *maildir
, *datesw
= NULL
;
74 char *folder
= NULL
, buf
[BUFSIZ
], **argp
;
76 struct msgs_array msgs
= { 0, 0, NULL
};
81 if (nmh_init(argv
[0], 1)) { return 1; }
83 arguments
= getarguments (invo_name
, argc
, argv
, 1);
89 while ((cp
= *argp
++)) {
91 switch (smatch (++cp
, switches
)) {
93 ambigsw (cp
, switches
);
96 adios (NULL
, "-%s unknown", cp
);
99 snprintf(buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
101 print_help (buf
, switches
, 1);
104 print_version(invo_name
);
109 adios (NULL
, "only one date field at a time");
110 if (!(datesw
= *argp
++) || *datesw
== '-')
111 adios (NULL
, "missing argument to %s", argp
[-2]);
116 adios (NULL
, "only one text field at a time");
117 if (!(subjsort
= *argp
++) || *subjsort
== '-')
118 adios (NULL
, "missing argument to %s", argp
[-2]);
122 subjsort
= "subject";
129 if (!(cp
= *argp
++) || *cp
== '-')
130 adios (NULL
, "missing argument to %s", argp
[-2]);
132 cp
++; /* skip any leading zeros */
133 if (!*cp
) { /* hit end of string */
134 submajor
++; /* sort subject-major */
137 if (!isdigit((unsigned char) *cp
) || !(datelimit
= atoi(cp
)))
138 adios (NULL
, "impossible limit %s", cp
);
139 datelimit
*= 60*60*24;
142 submajor
= 0; /* use date-major, but */
143 datelimit
= 0; /* use no limit */
168 if (*cp
== '+' || *cp
== '@') {
170 adios (NULL
, "only one folder at a time!");
172 folder
= pluspath (cp
);
174 app_msgarg(&msgs
, cp
);
177 if (!context_find ("path"))
178 free (path ("./", TFOLDER
));
181 app_msgarg(&msgs
, "all");
183 adios (NULL
, "must specify messages to sort with -noall");
189 folder
= getfolder (1);
190 maildir
= m_maildir (folder
);
192 if (chdir (maildir
) == NOTOK
)
193 adios (maildir
, "unable to change directory to");
195 /* read folder and create message structure */
196 if (!(mp
= folder_read (folder
, 1)))
197 adios (NULL
, "unable to read folder %s", folder
);
199 /* check for empty folder */
201 adios (NULL
, "no messages in %s", folder
);
203 /* parse all the message ranges/sequences and set SELECTED */
204 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
205 if (!m_convert (mp
, msgs
.msgs
[msgnum
]))
207 seq_setprev (mp
); /* set the previous sequence */
209 if ((nmsgs
= read_hdrs (mp
, datesw
)) <= 0)
210 adios (NULL
, "no messages to sort");
212 if (checksw
&& check_failed
) {
213 adios (NULL
, "errors found, no messages sorted");
217 * sort a list of pointers to our "messages to be sorted".
219 dlist
= (struct smsg
**) mh_xmalloc ((nmsgs
+1) * sizeof(*dlist
));
220 for (i
= 0; i
< nmsgs
; i
++)
221 dlist
[i
] = &smsgs
[i
];
224 if (verbose
) { /* announce what we're doing */
227 printf ("sorting by %s\n", subjsort
);
229 printf ("sorting by %s-major %s-minor\n", subjsort
, datesw
);
231 printf ("sorting by datefield %s\n", datesw
);
234 /* first sort by date, or by subject-major, date-minor */
235 qsort ((char *) dlist
, nmsgs
, sizeof(*dlist
),
236 (qsort_comp
) (submajor
&& subjsort
? txtsort
: dsort
));
239 * if we're sorting on subject, we need another list
240 * in subject order, then a merge pass to collate the
243 if (!submajor
&& subjsort
) { /* already date sorted */
244 struct smsg
**slist
, **flist
;
245 struct smsg
***il
, **fp
, **dp
;
247 slist
= (struct smsg
**) mh_xmalloc ((nmsgs
+1) * sizeof(*slist
));
248 memcpy((char *)slist
, (char *)dlist
, (nmsgs
+1)*sizeof(*slist
));
249 qsort((char *)slist
, nmsgs
, sizeof(*slist
), (qsort_comp
) subsort
);
252 * make an inversion list so we can quickly find
253 * the collection of messages with the same subj
254 * given a message number.
256 il
= mh_xcalloc(mp
->hghsel
+ 1, sizeof *il
);
257 for (i
= 0; i
< nmsgs
; i
++)
258 il
[slist
[i
]->s_msg
] = &slist
[i
];
260 * make up the final list, chronological but with
261 * all the same subjects grouped together.
263 flist
= (struct smsg
**) mh_xmalloc ((nmsgs
+1) * sizeof(*flist
));
265 for (dp
= dlist
; *dp
;) {
266 struct smsg
**s
= il
[(*dp
++)->s_msg
];
268 /* see if we already did this guy */
274 * take the next message(s) if there is one,
275 * its subject isn't null and its subject
276 * is the same as this one and it's not too
279 while (*s
&& (*s
)->s_subj
[0] &&
280 strcmp((*s
)->s_subj
, s
[-1]->s_subj
) == 0 &&
282 (*s
)->s_clock
- s
[-1]->s_clock
<= datelimit
)) {
295 * At this point, dlist is a sorted array of pointers to smsg structures,
296 * each of which contains a message number.
299 rename_msgs (mp
, dlist
);
301 context_replace (pfolder
, folder
); /* update current folder */
302 seq_save (mp
); /* synchronize message sequences */
303 context_save (); /* save the context file */
304 folder_free (mp
); /* free folder/message structure */
310 read_hdrs (struct msgs
*mp
, char *datesw
)
316 twscopy (&tb
, dlocaltimenow ());
318 smsgs
= mh_xcalloc(mp
->hghsel
- mp
->lowsel
+ 2, sizeof *smsgs
);
320 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
321 if (is_selected(mp
, msgnum
)) {
322 if (get_fields (datesw
, msgnum
, s
)) {
334 * Parse the message and get the data or subject field,
339 get_fields (char *datesw
, int msg
, struct smsg
*smsg
)
343 char *msgnam
, buf
[BUFSIZ
], nam
[NAMESZ
];
345 char *datecomp
= NULL
, *subjcomp
= NULL
;
347 m_getfld_state_t gstate
= 0;
349 if ((in
= fopen (msgnam
= m_name (msg
), "r")) == NULL
) {
350 admonish (msgnam
, "unable to read message");
353 for (compnum
= 1;;) {
354 int bufsz
= sizeof buf
;
355 switch (state
= m_getfld (&gstate
, nam
, buf
, &bufsz
, in
)) {
359 if (!strcasecmp (nam
, datesw
)) {
360 datecomp
= add (buf
, datecomp
);
361 while (state
== FLDPLUS
) {
363 state
= m_getfld (&gstate
, nam
, buf
, &bufsz
, in
);
364 datecomp
= add (buf
, datecomp
);
366 if (!subjsort
|| subjcomp
)
368 } else if (subjsort
&& !strcasecmp (nam
, subjsort
)) {
369 subjcomp
= add (buf
, subjcomp
);
370 while (state
== FLDPLUS
) {
372 state
= m_getfld (&gstate
, nam
, buf
, &bufsz
, in
);
373 subjcomp
= add (buf
, subjcomp
);
378 /* just flush this guy */
379 while (state
== FLDPLUS
) {
381 state
= m_getfld (&gstate
, nam
, buf
, &bufsz
, in
);
392 if (state
== LENERR
|| state
== FMTERR
) {
393 admonish (NULL
, "format error in message %d (header #%d)",
403 adios (NULL
, "internal error -- you lose");
407 m_getfld_state_destroy (&gstate
);
410 * If no date component, then use the modification
411 * time of the file as its date
413 if (!datecomp
|| (tw
= dparsetime (datecomp
)) == NULL
) {
417 "can't parse %s field in message %d, "
418 "will use file modification time",
420 fstat (fileno (in
), &st
);
421 smsg
->s_clock
= st
.st_mtime
;
424 smsg
->s_clock
= dmktime (tw
);
430 * try to make the subject "canonical": delete
431 * leading "re:", everything but letters & smash
432 * letters to lower case.
438 if (strcmp (subjsort
, "subject") == 0) {
440 if (! isspace((unsigned char) c
)) {
450 while ((c
= *cp
++)) {
451 if (isascii((unsigned char) c
) && isalnum((unsigned char) c
))
452 *cp2
++ = tolower((unsigned char)c
);
460 smsg
->s_subj
= subjcomp
;
472 dsort (struct smsg
**a
, struct smsg
**b
)
474 if ((*a
)->s_clock
< (*b
)->s_clock
)
476 if ((*a
)->s_clock
> (*b
)->s_clock
)
478 if ((*a
)->s_msg
< (*b
)->s_msg
)
487 subsort (struct smsg
**a
, struct smsg
**b
)
491 if ((i
= strcmp ((*a
)->s_subj
, (*b
)->s_subj
)))
494 return (dsort (a
, b
));
498 txtsort (struct smsg
**a
, struct smsg
**b
)
502 if ((i
= strcmp ((*a
)->s_subj
, (*b
)->s_subj
)))
504 if ((*a
)->s_msg
< (*b
)->s_msg
)
510 rename_chain (struct msgs
*mp
, struct smsg
**mlist
, int msg
, int endmsg
)
513 char *newname
, oldname
[BUFSIZ
];
514 char newbuf
[PATH_MAX
+ 1];
517 nxt
= mlist
[msg
] - smsgs
; /* mlist[msg] is a ptr into smsgs */
519 old
= smsgs
[nxt
].s_msg
;
520 new = smsgs
[msg
].s_msg
;
521 strncpy (oldname
, m_name (old
), sizeof(oldname
));
522 newname
= m_name (new);
524 printf ("message %d becomes message %d\n", old
, new);
526 (void)snprintf(oldname
, sizeof (oldname
), "%s/%d", mp
->foldpath
, old
);
527 (void)snprintf(newbuf
, sizeof (newbuf
), "%s/%d", mp
->foldpath
, new);
528 ext_hook("ref-hook", oldname
, newbuf
);
530 if (rename (oldname
, newname
) == NOTOK
)
531 adios (newname
, "unable to rename %s to", oldname
);
533 copy_msg_flags (mp
, new, old
);
534 if (mp
->curmsg
== old
)
535 seq_setcur (mp
, new);
542 /* if (nxt != endmsg); */
543 /* rename_chain (mp, mlist, nxt, endmsg); */
547 rename_msgs (struct msgs
*mp
, struct smsg
**mlist
)
550 bvector_t tmpset
= bvector_create (0);
551 char f1
[BUFSIZ
], tmpfil
[BUFSIZ
];
552 char newbuf
[PATH_MAX
+ 1];
555 strncpy (tmpfil
, m_name (mp
->hghmsg
+ 1), sizeof(tmpfil
));
557 for (i
= 0; i
< nmsgs
; i
++) {
558 if (! (sp
= mlist
[i
]))
559 continue; /* did this one */
563 continue; /* this one doesn't move */
566 * the guy that was msg j is about to become msg i.
567 * rename 'j' to make a hole, then recursively rename
568 * guys to fill up the hole.
570 old
= smsgs
[j
].s_msg
;
571 new = smsgs
[i
].s_msg
;
572 strncpy (f1
, m_name (old
), sizeof(f1
));
575 printf ("renaming message chain from %d to %d\n", old
, new);
578 * Run the external hook to refile the old message as the
579 * temporary message number that is off of the end of the
580 * messages in the folder.
583 (void)snprintf(f1
, sizeof (f1
), "%s/%d", mp
->foldpath
, old
);
584 (void)snprintf(newbuf
, sizeof (newbuf
), "%s/%d", mp
->foldpath
, mp
->hghmsg
+ 1);
585 ext_hook("ref-hook", f1
, newbuf
);
587 if (rename (f1
, tmpfil
) == NOTOK
)
588 adios (tmpfil
, "unable to rename %s to ", f1
);
590 get_msg_flags (mp
, tmpset
, old
);
592 rename_chain (mp
, mlist
, j
, i
);
595 * Run the external hook to refile the temorary message number
599 (void)snprintf(f1
, sizeof (f1
), "%s/%d", mp
->foldpath
, new);
600 ext_hook("ref-hook", newbuf
, f1
);
602 if (rename (tmpfil
, m_name(new)) == NOTOK
)
603 adios (m_name(new), "unable to rename %s to", tmpfil
);
605 set_msg_flags (mp
, tmpset
, new);
606 mp
->msgflags
|= SEQMOD
;
609 bvector_free (tmpset
);