]>
diplodocus.org Git - nmh/blob - uip/burst.c
3 * burst.c -- explode digests into individual messages
7 * This code is Copyright (c) 2002, by the authors of nmh. See the
8 * COPYRIGHT file in the root directory of the nmh distribution for
9 * complete copyright information.
14 static struct swit switches
[] = {
34 static char delim3
[] = "-------";
44 static int find_delim (int, struct smsg
*);
45 static void burst (struct msgs
**, int, struct smsg
*, int, int, int, char *);
46 static void cpybrst (FILE *, FILE *, char *, char *, int);
50 main (int argc
, char **argv
)
52 int inplace
= 0, quietsw
= 0, verbosw
= 0;
53 int msgp
= 0, hi
, msgnum
, numburst
;
54 char *cp
, *maildir
, *folder
= NULL
, buf
[BUFSIZ
];
55 char **argp
, **arguments
, *msgs
[MAXARGS
];
60 setlocale(LC_ALL
, "");
62 invo_name
= r1bindex (argv
[0], '/');
64 /* read user profile/context */
67 arguments
= getarguments (invo_name
, argc
, argv
, 1);
70 while ((cp
= *argp
++)) {
72 switch (smatch (++cp
, switches
)) {
74 ambigsw (cp
, switches
);
77 adios (NULL
, "-%s unknown\n", cp
);
80 snprintf (buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
82 print_help (buf
, switches
, 1);
85 print_version(invo_name
);
110 if (*cp
== '+' || *cp
== '@') {
112 adios (NULL
, "only one folder at a time!");
114 folder
= pluspath (cp
);
120 if (!context_find ("path"))
121 free (path ("./", TFOLDER
));
123 msgs
[msgp
++] = "cur";
125 folder
= getfolder (1);
126 maildir
= m_maildir (folder
);
128 if (chdir (maildir
) == NOTOK
)
129 adios (maildir
, "unable to change directory to");
131 /* read folder and create message structure */
132 if (!(mp
= folder_read (folder
)))
133 adios (NULL
, "unable to read folder %s", folder
);
135 /* check for empty folder */
137 adios (NULL
, "no messages in %s", folder
);
139 /* parse all the message ranges/sequences and set SELECTED */
140 for (msgnum
= 0; msgnum
< msgp
; msgnum
++)
141 if (!m_convert (mp
, msgs
[msgnum
]))
143 seq_setprev (mp
); /* set the previous-sequence */
145 smsgs
= (struct smsg
*)
146 calloc ((size_t) (MAXFOLDER
+ 2), sizeof(*smsgs
));
148 adios (NULL
, "unable to allocate burst storage");
152 /* burst all the SELECTED messages */
153 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
154 if (is_selected (mp
, msgnum
)) {
155 if ((numburst
= find_delim (msgnum
, smsgs
)) >= 1) {
157 printf ("%d message%s exploded from digest %d\n",
158 numburst
, numburst
> 1 ? "s" : "", msgnum
);
159 burst (&mp
, msgnum
, smsgs
, numburst
, inplace
, verbosw
, maildir
);
163 admonish (NULL
, "message %d not in digest format",
165 } /* this pair of braces was missing before 1999-07-15 */
167 adios (NULL
, "burst() botch -- you lose big");
172 free ((char *) smsgs
);
173 context_replace (pfolder
, folder
); /* update current folder */
176 * If -inplace is given, then the first message burst becomes
177 * the current message (which will now show a table of contents).
178 * Otherwise, the first message extracted from the first digest
179 * becomes the current message.
182 if (mp
->lowsel
!= mp
->curmsg
)
183 seq_setcur (mp
, mp
->lowsel
);
185 if (hi
<= mp
->hghmsg
)
189 seq_save (mp
); /* synchronize message sequences */
190 context_save (); /* save the context file */
191 folder_free (mp
); /* free folder/message structure */
198 * Scan the message and find the beginning and
199 * end of all the messages in the digest.
203 find_delim (int msgnum
, struct smsg
*smsgs
)
205 int ld3
, wasdlm
, msgp
;
212 ld3
= strlen (delim3
);
214 if ((in
= fopen (msgnam
= m_name (msgnum
), "r")) == NULL
)
215 adios (msgnam
, "unable to read message");
217 for (msgp
= 0, pos
= 0L; msgp
<= MAXFOLDER
;) {
218 while (fgets (buffer
, sizeof(buffer
), in
) && buffer
[0] == '\n')
219 pos
+= (long) strlen (buffer
);
222 fseek (in
, pos
, SEEK_SET
);
223 smsgs
[msgp
].s_start
= pos
;
225 for (c
= 0; fgets (buffer
, sizeof(buffer
), in
); c
= buffer
[0]) {
226 if (strncmp (buffer
, delim3
, ld3
) == 0
227 && (msgp
== 1 || c
== '\n')
228 && ((cc
= peekc (in
)) == '\n' || cc
== EOF
))
231 pos
+= (long) strlen (buffer
);
234 wasdlm
= strncmp (buffer
, delim3
, ld3
) == 0;
235 if (smsgs
[msgp
].s_start
!= pos
)
236 smsgs
[msgp
++].s_stop
= (c
== '\n' && wasdlm
) ? pos
- 1 : pos
;
240 smsgs
[msgp
- 1].s_stop
-= ((long) strlen (buffer
) + 1);
241 msgp
++; /* fake "End of XXX Digest" */
246 pos
+= (long) strlen (buffer
);
250 return (msgp
- 1); /* toss "End of XXX Digest" */
255 * Burst out the messages in the digest into the folder
259 burst (struct msgs
**mpp
, int msgnum
, struct smsg
*smsgs
, int numburst
,
260 int inplace
, int verbosw
, char *maildir
)
264 char f1
[BUFSIZ
], f2
[BUFSIZ
], f3
[BUFSIZ
];
269 if ((in
= fopen (msgnam
= m_name (msgnum
), "r")) == NULL
)
270 adios (msgnam
, "unable to read message");
272 mode
= fstat (fileno(in
), &st
) != NOTOK
? (st
.st_mode
& 0777) : m_gmprot();
276 * See if we have enough space in the folder
277 * structure for all the new messages.
279 if ((mp
->hghmsg
+ numburst
> mp
->hghoff
) &&
280 !(mp
= folder_realloc (mp
, mp
->lowoff
, mp
->hghmsg
+ numburst
)))
281 adios (NULL
, "unable to allocate folder storage");
284 j
= mp
->hghmsg
; /* old value */
285 mp
->hghmsg
+= numburst
;
286 mp
->nummsg
+= numburst
;
289 * If this is not the highest SELECTED message, then
290 * increment mp->hghsel by numburst, since the highest
291 * SELECTED is about to be slid down by that amount.
293 if (msgnum
< mp
->hghsel
)
294 mp
->hghsel
+= numburst
;
297 * If -inplace is given, renumber the messages after the
298 * source message, to make room for each of the messages
299 * contained within the digest.
301 * This is equivalent to refiling a message from the point
302 * of view of the external hooks.
305 for (i
= mp
->hghmsg
; j
> msgnum
; i
--, j
--) {
306 strncpy (f1
, m_name (i
), sizeof(f1
));
307 strncpy (f2
, m_name (j
), sizeof(f2
));
308 if (does_exist (mp
, j
)) {
310 printf ("message %d becomes message %d\n", j
, i
);
312 if (rename (f2
, f1
) == NOTOK
)
313 admonish (f1
, "unable to rename %s to", f2
);
315 (void)snprintf(f1
, sizeof (f1
), "%s/%d", maildir
, i
);
316 (void)snprintf(f2
, sizeof (f2
), "%s/%d", maildir
, j
);
317 ext_hook("ref-hook", f1
, f2
);
319 copy_msg_flags (mp
, i
, j
);
320 clear_msg_flags (mp
, j
);
321 mp
->msgflags
|= SEQMOD
;
326 unset_selected (mp
, msgnum
);
328 /* new hghmsg is hghmsg + numburst
330 * At this point, there is an array of numburst smsgs, each element of
331 * which contains the starting and stopping offsets (seeks) of the message
332 * in the digest. The inplace flag is set if the original digest is replaced
333 * by a message containing the table of contents. smsgs[0] is that table of
334 * contents. Go through the message numbers in reverse order (high to low).
336 * Set f1 to the name of the destination message, f2 to the name of a scratch
337 * file. Extract a message from the digest to the scratch file. Move the
338 * original message to a backup file if the destination message number is the
339 * same as the number of the original message, which only happens if the
340 * inplace flag is set. Then move the scratch file to the destination message.
342 * Moving the original message to the backup file is equivalent to deleting the
343 * message from the point of view of the external hooks. And bursting each
344 * message is equivalent to adding a new message.
347 i
= inplace
? msgnum
+ numburst
: mp
->hghmsg
;
348 for (j
= numburst
; j
>= (inplace
? 0 : 1); i
--, j
--) {
349 strncpy (f1
, m_name (i
), sizeof(f1
));
350 strncpy (f2
, m_scratch ("", invo_name
), sizeof(f2
));
351 if (verbosw
&& i
!= msgnum
)
352 printf ("message %d of digest %d becomes message %d\n", j
, msgnum
, i
);
354 if ((out
= fopen (f2
, "w")) == NULL
)
355 adios (f2
, "unable to write message");
357 fseek (in
, smsgs
[j
].s_start
, SEEK_SET
);
358 cpybrst (in
, out
, msgnam
, f2
,
359 (int) (smsgs
[j
].s_stop
- smsgs
[j
].s_start
));
363 strncpy (f3
, m_backup (f1
), sizeof(f3
));
364 if (rename (f1
, f3
) == NOTOK
)
365 admonish (f3
, "unable to rename %s to", f1
);
367 (void)snprintf(f3
, sizeof (f3
), "%s/%d", maildir
, i
);
368 ext_hook("del-hook", f3
, (char *)0);
370 if (rename (f2
, f1
) == NOTOK
)
371 admonish (f1
, "unable to rename %s to", f2
);
373 (void)snprintf(f3
, sizeof (f3
), "%s/%d", maildir
, i
);
374 ext_hook("add-hook", f3
, (char *)0);
376 copy_msg_flags (mp
, i
, msgnum
);
377 mp
->msgflags
|= SEQMOD
;
389 * Copy a mesage which is being burst out of a digest.
390 * It will remove any "dashstuffing" in the message.
394 cpybrst (FILE *in
, FILE *out
, char *ifile
, char *ofile
, int len
)
396 register int c
, state
;
398 for (state
= S1
; (c
= fgetc (in
)) != EOF
&& len
> 0; len
--) {
433 state
= (c
== '\n') ? S1
: S2
;
442 if (ferror (in
) && !feof (in
))
443 adios (ifile
, "error reading");
445 adios (ofile
, "error writing");