]>
diplodocus.org Git - nmh/blob - uip/burst.c
1 /* burst.c -- explode digests into individual messages
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
9 #include "sbr/seq_setprev.h"
10 #include "sbr/seq_setcur.h"
11 #include "sbr/seq_save.h"
12 #include "sbr/smatch.h"
13 #include "sbr/m_convert.h"
14 #include "sbr/m_backup.h"
15 #include "sbr/getfolder.h"
16 #include "sbr/ext_hook.h"
17 #include "sbr/folder_read.h"
18 #include "sbr/folder_realloc.h"
19 #include "sbr/folder_free.h"
20 #include "sbr/context_save.h"
21 #include "sbr/context_replace.h"
22 #include "sbr/context_find.h"
23 #include "sbr/ambigsw.h"
25 #include "sbr/print_version.h"
26 #include "sbr/print_help.h"
27 #include "sbr/error.h"
29 #include "h/mhparse.h"
31 #include "sbr/m_maildir.h"
32 #include "sbr/m_mktemp.h"
35 #define BURST_SWITCHES \
36 X("inplace", 0, INPLSW) \
37 X("noinplace", 0, NINPLSW) \
38 X("mime", 0, MIMESW) \
39 X("nomime", 0, NMIMESW) \
40 X("automime", 0, AUTOMIMESW) \
41 X("quiet", 0, QIETSW) \
42 X("noquiet", 0, NQIETSW) \
43 X("verbose", 0, VERBSW) \
44 X("noverbose", 0, NVERBSW) \
45 X("version", 0, VERSIONSW) \
46 X("help", 0, HELPSW) \
48 #define X(sw, minchars, id) id,
49 DEFINE_SWITCH_ENUM(BURST
);
52 #define X(sw, minchars, id) { sw, minchars, id },
53 DEFINE_SWITCH_ARRAY(BURST
, switches
);
62 * For the MIME parsing routines
70 static int find_delim (int, struct smsg
*, int *);
71 static void find_mime_parts (CT
, struct smsg
*, int *);
72 static void burst(struct msgs
**, int, struct smsg
*, int, bool, bool,
74 static void cpybrst (FILE *, FILE *, char *, char *, int, int);
77 * A macro to check to see if we have reached a message delimiter
78 * (an encapsulation boundary, EB, in RFC 934 parlance).
80 * According to RFC 934, an EB is simply a line which starts with
81 * a "-" and is NOT followed by a space. So even a single "-" on a line
82 * by itself would be an EB.
85 #define CHECKDELIM(buffer) (buffer[0] == '-' && buffer[1] != ' ')
88 main (int argc
, char **argv
)
94 int hi
, msgnum
, numburst
;
95 char *cp
, *maildir
, *folder
= NULL
, buf
[BUFSIZ
];
96 char **argp
, **arguments
;
97 struct msgs_array msgs
= { 0, 0, NULL
};
101 if (nmh_init(argv
[0], true, true)) { return 1; }
103 arguments
= getarguments (invo_name
, argc
, argv
, 1);
106 while ((cp
= *argp
++)) {
108 switch (smatch (++cp
, switches
)) {
110 ambigsw (cp
, switches
);
113 die("-%s unknown\n", cp
);
116 snprintf (buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
118 print_help (buf
, switches
, 1);
121 print_version(invo_name
);
156 if (*cp
== '+' || *cp
== '@') {
158 die("only one folder at a time!");
159 folder
= pluspath (cp
);
161 app_msgarg(&msgs
, cp
);
165 if (!context_find ("path"))
166 free (path ("./", TFOLDER
));
168 app_msgarg(&msgs
, "cur");
170 folder
= getfolder (1);
171 maildir
= m_maildir (folder
);
173 if (chdir (maildir
) == NOTOK
)
174 adios (maildir
, "unable to change directory to");
176 /* read folder and create message structure */
177 if (!(mp
= folder_read (folder
, 1)))
178 die("unable to read folder %s", folder
);
180 /* check for empty folder */
182 die("no messages in %s", folder
);
184 /* parse all the message ranges/sequences and set SELECTED */
185 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
186 if (!m_convert (mp
, msgs
.msgs
[msgnum
]))
188 seq_setprev (mp
); /* set the previous-sequence */
190 smsgs
= mh_xcalloc(MAXFOLDER
+ 2, sizeof *smsgs
);
194 /* burst all the SELECTED messages */
195 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
196 if (is_selected (mp
, msgnum
)) {
197 if ((numburst
= find_delim (msgnum
, smsgs
, &mimesw
)) >= 1) {
199 printf ("%d message%s exploded from digest %d\n",
200 numburst
, PLURALS(numburst
), msgnum
);
201 burst (&mp
, msgnum
, smsgs
, numburst
, inplace
, verbosw
,
206 inform("message %d not in digest format, continuing...",
208 } /* this pair of braces was missing before 1999-07-15 */
210 die("burst() botch -- you lose big");
216 context_replace (pfolder
, folder
); /* update current folder */
219 * If -inplace is given, then the first message burst becomes
220 * the current message (which will now show a table of contents).
221 * Otherwise, the first message extracted from the first digest
222 * becomes the current message.
225 if (mp
->lowsel
!= mp
->curmsg
)
226 seq_setcur (mp
, mp
->lowsel
);
228 if (hi
<= mp
->hghmsg
)
232 seq_save (mp
); /* synchronize message sequences */
233 context_save (); /* save the context file */
234 folder_free (mp
); /* free folder/message structure */
241 * Scan the message and find the beginning and
242 * end of all the messages in the digest.
244 * If requested, see if the message is MIME-formatted and contains any
245 * message/rfc822 parts; if so, burst those parts.
249 find_delim (int msgnum
, struct smsg
*smsgs
, int *mimesw
)
251 int wasdlm
= 0, msgp
;
258 msgnam
= m_name (msgnum
);
261 * If mimesw is 1 or 2, try to see if it's got proper MIME formatting.
265 content
= parse_mime(msgnam
);
266 if (! content
&& *mimesw
== 2)
269 smsgs
[0].s_start
= 0;
270 smsgs
[0].s_stop
= content
->c_begin
- 1;
272 find_mime_parts(content
, smsgs
, &msgp
);
273 free_content(content
);
274 if (msgp
== 1 && *mimesw
== 2)
275 adios (msgnam
, "does not have any message/rfc822 parts");
285 if ((in
= fopen (msgnam
, "r")) == NULL
)
286 adios (msgnam
, "unable to read message");
288 for (msgp
= 0, pos
= 0L; msgp
<= MAXFOLDER
;) {
290 * We're either at the beginning of the whole message, or
291 * we're just past the delimiter of the last message.
292 * Swallow lines until we get to something that's not a newline
294 while (fgets (buffer
, sizeof(buffer
), in
) && buffer
[0] == '\n')
295 pos
+= (long) strlen (buffer
);
300 * Reset to the beginning of the last non-blank line, and save our
301 * starting position. This is where the encapsulated message
304 fseeko (in
, pos
, SEEK_SET
);
305 smsgs
[msgp
].s_start
= pos
;
308 * Read in lines until we get to a message delimiter.
310 * Previously we checked to make sure the preceding line and
311 * next line was a newline. That actually does not comply with
312 * RFC 934, so make sure we break on a message delimiter even
313 * if the previous character was NOT a newline.
315 for (c
= 0; fgets (buffer
, sizeof(buffer
), in
); c
= buffer
[0]) {
316 if ((wasdlm
= CHECKDELIM(buffer
)))
318 pos
+= (long) strlen (buffer
);
322 * Only count as a new message if we got the message delimiter.
323 * Swallow a blank line if it was right before the message delimiter.
325 if (smsgs
[msgp
].s_start
!= pos
&& wasdlm
)
326 smsgs
[msgp
++].s_stop
= (c
== '\n' && wasdlm
) ? pos
- 1 : pos
;
331 smsgs
[msgp
- 1].s_stop
-= ((long) strlen (buffer
) + 1);
332 msgp
++; /* fake "End of XXX Digest" */
337 pos
+= (long) strlen (buffer
);
341 return msgp
- 1; /* return the number of messages burst */
346 * Find any MIME content in the message that is a message/rfc822 and add
347 * it to the list of messages to burst.
351 find_mime_parts (CT content
, struct smsg
*smsgs
, int *msgp
)
357 * If we have a message/rfc822, then it's easy.
360 if (content
->c_type
== CT_MESSAGE
&&
361 content
->c_subtype
== MESSAGE_RFC822
) {
362 smsgs
[*msgp
].s_start
= content
->c_begin
;
363 smsgs
[*msgp
].s_stop
= content
->c_end
;
369 * Otherwise, if we do have multiparts, try all of the sub-parts.
372 if (content
->c_type
== CT_MULTIPART
) {
373 m
= (struct multipart
*) content
->c_ctparams
;
375 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
)
376 find_mime_parts(part
->mp_part
, smsgs
, msgp
);
382 * Burst out the messages in the digest into the folder
386 burst (struct msgs
**mpp
, int msgnum
, struct smsg
*smsgs
, int numburst
,
387 bool inplace
, bool verbosw
, char *maildir
, int mimesw
)
391 char f1
[BUFSIZ
], f2
[BUFSIZ
], f3
[BUFSIZ
];
396 if ((in
= fopen (msgnam
= m_name (msgnum
), "r")) == NULL
)
397 adios (msgnam
, "unable to read message");
400 fstat (fileno(in
), &st
) != NOTOK
? (int) (st
.st_mode
& 0777) : m_gmprot();
404 * See if we have enough space in the folder
405 * structure for all the new messages.
407 if ((mp
->hghmsg
+ numburst
> mp
->hghoff
) &&
408 !(mp
= folder_realloc (mp
, mp
->lowoff
, mp
->hghmsg
+ numburst
)))
409 die("unable to allocate folder storage");
412 j
= mp
->hghmsg
; /* old value */
413 mp
->hghmsg
+= numburst
;
414 mp
->nummsg
+= numburst
;
417 * If this is not the highest SELECTED message, then
418 * increment mp->hghsel by numburst, since the highest
419 * SELECTED is about to be slid down by that amount.
421 if (msgnum
< mp
->hghsel
)
422 mp
->hghsel
+= numburst
;
425 * If -inplace is given, renumber the messages after the
426 * source message, to make room for each of the messages
427 * contained within the digest.
429 * This is equivalent to refiling a message from the point
430 * of view of the external hooks.
433 for (i
= mp
->hghmsg
; j
> msgnum
; i
--, j
--) {
434 strncpy (f1
, m_name (i
), sizeof(f1
));
435 strncpy (f2
, m_name (j
), sizeof(f2
));
436 if (does_exist (mp
, j
)) {
438 printf ("message %d becomes message %d\n", j
, i
);
440 if (rename (f2
, f1
) == NOTOK
)
441 admonish (f1
, "unable to rename %s to", f2
);
443 (void)snprintf(f1
, sizeof (f1
), "%s/%d", maildir
, i
);
444 (void)snprintf(f2
, sizeof (f2
), "%s/%d", maildir
, j
);
445 ext_hook("ref-hook", f1
, f2
);
447 copy_msg_flags (mp
, i
, j
);
448 clear_msg_flags (mp
, j
);
449 mp
->msgflags
|= SEQMOD
;
454 unset_selected (mp
, msgnum
);
456 /* new hghmsg is hghmsg + numburst
458 * At this point, there is an array of numburst smsgs, each element of
459 * which contains the starting and stopping offsets (seeks) of the message
460 * in the digest. The inplace flag is set if the original digest is replaced
461 * by a message containing the table of contents. smsgs[0] is that table of
462 * contents. Go through the message numbers in reverse order (high to low).
464 * Set f1 to the name of the destination message, f2 to the name of a scratch
465 * file. Extract a message from the digest to the scratch file. Move the
466 * original message to a backup file if the destination message number is the
467 * same as the number of the original message, which only happens if the
468 * inplace flag is set. Then move the scratch file to the destination message.
470 * Moving the original message to the backup file is equivalent to deleting the
471 * message from the point of view of the external hooks. And bursting each
472 * message is equivalent to adding a new message.
475 i
= inplace
? msgnum
+ numburst
: mp
->hghmsg
;
476 for (j
= numburst
; j
>= (inplace
? 0 : 1); i
--, j
--) {
479 if ((tempfile
= m_mktemp2(NULL
, invo_name
, NULL
, &out
)) == NULL
) {
480 die("unable to create temporary file in %s",
483 strncpy (f2
, tempfile
, sizeof(f2
));
484 strncpy (f1
, m_name (i
), sizeof(f1
));
486 if (verbosw
&& i
!= msgnum
)
487 printf ("message %d of digest %d becomes message %d\n", j
, msgnum
, i
);
490 fseeko (in
, smsgs
[j
].s_start
, SEEK_SET
);
491 cpybrst (in
, out
, msgnam
, f2
,
492 (int) (smsgs
[j
].s_stop
- smsgs
[j
].s_start
), mimesw
);
496 strncpy (f3
, m_backup (f1
), sizeof(f3
));
497 if (rename (f1
, f3
) == NOTOK
)
498 admonish (f3
, "unable to rename %s to", f1
);
500 (void)snprintf(f3
, sizeof (f3
), "%s/%d", maildir
, i
);
501 ext_hook("del-hook", f3
, NULL
);
503 if (rename (f2
, f1
) == NOTOK
)
504 admonish (f1
, "unable to rename %s to", f2
);
506 (void)snprintf(f3
, sizeof (f3
), "%s/%d", maildir
, i
);
507 ext_hook("add-hook", f3
, NULL
);
509 copy_msg_flags (mp
, i
, msgnum
);
510 mp
->msgflags
|= SEQMOD
;
523 * Copy a message which is being burst out of a digest.
524 * It will remove any "dashstuffing" in the message.
528 cpybrst (FILE *in
, FILE *out
, char *ifile
, char *ofile
, int len
, int mime
)
532 for (state
= mime
? S4
: S1
; (c
= fgetc (in
)) != EOF
&& len
> 0; len
--) {
569 state
= (c
== '\n') ? S1
: S2
;
582 if (ferror (in
) && !feof (in
))
583 adios (ifile
, "error reading");
585 adios (ofile
, "error writing");