]> diplodocus.org Git - nmh/blob - uip/burst.c
Bring these changes over from the branch.
[nmh] / uip / burst.c
1
2 /*
3 * burst.c -- explode digests into individual messages
4 *
5 * $Id$
6 *
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.
10 */
11
12 #include <h/mh.h>
13
14 static struct swit switches[] = {
15 #define INPLSW 0
16 { "inplace", 0 },
17 #define NINPLSW 1
18 { "noinplace", 0 },
19 #define QIETSW 2
20 { "quiet", 0 },
21 #define NQIETSW 3
22 { "noquiet", 0 },
23 #define VERBSW 4
24 { "verbose", 0 },
25 #define NVERBSW 5
26 { "noverbose", 0 },
27 #define VERSIONSW 6
28 { "version", 0 },
29 #define HELPSW 7
30 { "help", 0 },
31 { NULL, 0 }
32 };
33
34 static char delim3[] = "-------";
35
36 struct smsg {
37 long s_start;
38 long s_stop;
39 };
40
41 /*
42 * static prototypes
43 */
44 static int find_delim (int, struct smsg *);
45 static void burst (struct msgs **, int, struct smsg *, int, int, int);
46 static void cpybrst (FILE *, FILE *, char *, char *, int);
47
48
49 int
50 main (int argc, char **argv)
51 {
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];
56 struct smsg *smsgs;
57 struct msgs *mp;
58
59 #ifdef LOCALE
60 setlocale(LC_ALL, "");
61 #endif
62 invo_name = r1bindex (argv[0], '/');
63
64 /* read user profile/context */
65 context_read();
66
67 arguments = getarguments (invo_name, argc, argv, 1);
68 argp = arguments;
69
70 while ((cp = *argp++)) {
71 if (*cp == '-') {
72 switch (smatch (++cp, switches)) {
73 case AMBIGSW:
74 ambigsw (cp, switches);
75 done (1);
76 case UNKWNSW:
77 adios (NULL, "-%s unknown\n", cp);
78
79 case HELPSW:
80 snprintf (buf, sizeof(buf), "%s [+folder] [msgs] [switches]",
81 invo_name);
82 print_help (buf, switches, 1);
83 done (1);
84 case VERSIONSW:
85 print_version(invo_name);
86 done (1);
87
88 case INPLSW:
89 inplace++;
90 continue;
91 case NINPLSW:
92 inplace = 0;
93 continue;
94
95 case QIETSW:
96 quietsw++;
97 continue;
98 case NQIETSW:
99 quietsw = 0;
100 continue;
101
102 case VERBSW:
103 verbosw++;
104 continue;
105 case NVERBSW:
106 verbosw = 0;
107 continue;
108 }
109 }
110 if (*cp == '+' || *cp == '@') {
111 if (folder)
112 adios (NULL, "only one folder at a time!");
113 else
114 folder = path (cp + 1, *cp == '+' ? TFOLDER : TSUBCWF);
115 } else {
116 msgs[msgp++] = cp;
117 }
118 }
119
120 if (!context_find ("path"))
121 free (path ("./", TFOLDER));
122 if (!msgp)
123 msgs[msgp++] = "cur";
124 if (!folder)
125 folder = getfolder (1);
126 maildir = m_maildir (folder);
127
128 if (chdir (maildir) == NOTOK)
129 adios (maildir, "unable to change directory to");
130
131 /* read folder and create message structure */
132 if (!(mp = folder_read (folder)))
133 adios (NULL, "unable to read folder %s", folder);
134
135 /* check for empty folder */
136 if (mp->nummsg == 0)
137 adios (NULL, "no messages in %s", folder);
138
139 /* parse all the message ranges/sequences and set SELECTED */
140 for (msgnum = 0; msgnum < msgp; msgnum++)
141 if (!m_convert (mp, msgs[msgnum]))
142 done (1);
143 seq_setprev (mp); /* set the previous-sequence */
144
145 smsgs = (struct smsg *)
146 calloc ((size_t) (MAXFOLDER + 2), sizeof(*smsgs));
147 if (smsgs == NULL)
148 adios (NULL, "unable to allocate burst storage");
149
150 hi = mp->hghmsg + 1;
151
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) {
156 if (verbosw)
157 printf ("%d message%s exploded from digest %d\n",
158 numburst, numburst > 1 ? "s" : "", msgnum);
159 burst (&mp, msgnum, smsgs, numburst, inplace, verbosw);
160 } else {
161 if (numburst == 0) {
162 if (!quietsw)
163 admonish (NULL, "message %d not in digest format",
164 msgnum);
165 } /* this pair of braces was missing before 1999-07-15 */
166 else
167 adios (NULL, "burst() botch -- you lose big");
168 }
169 }
170 }
171
172 free ((char *) smsgs);
173 context_replace (pfolder, folder); /* update current folder */
174
175 /*
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.
180 */
181 if (inplace) {
182 if (mp->lowsel != mp->curmsg)
183 seq_setcur (mp, mp->lowsel);
184 } else {
185 if (hi <= mp->hghmsg)
186 seq_setcur (mp, hi);
187 }
188
189 seq_save (mp); /* synchronize message sequences */
190 context_save (); /* save the context file */
191 folder_free (mp); /* free folder/message structure */
192 return done (0);
193 }
194
195
196 /*
197 * Scan the message and find the beginning and
198 * end of all the messages in the digest.
199 */
200
201 static int
202 find_delim (int msgnum, struct smsg *smsgs)
203 {
204 int ld3, wasdlm, msgp;
205 long pos;
206 char c, *msgnam;
207 int cc;
208 char buffer[BUFSIZ];
209 FILE *in;
210
211 ld3 = strlen (delim3);
212
213 if ((in = fopen (msgnam = m_name (msgnum), "r")) == NULL)
214 adios (msgnam, "unable to read message");
215
216 for (msgp = 0, pos = 0L; msgp <= MAXFOLDER;) {
217 while (fgets (buffer, sizeof(buffer), in) && buffer[0] == '\n')
218 pos += (long) strlen (buffer);
219 if (feof (in))
220 break;
221 fseek (in, pos, SEEK_SET);
222 smsgs[msgp].s_start = pos;
223
224 for (c = 0; fgets (buffer, sizeof(buffer), in); c = buffer[0]) {
225 if (strncmp (buffer, delim3, ld3) == 0
226 && (msgp == 1 || c == '\n')
227 && ((cc = peekc (in)) == '\n' || cc == EOF))
228 break;
229 else
230 pos += (long) strlen (buffer);
231 }
232
233 wasdlm = strncmp (buffer, delim3, ld3) == 0;
234 if (smsgs[msgp].s_start != pos)
235 smsgs[msgp++].s_stop = (c == '\n' && wasdlm) ? pos - 1 : pos;
236 if (feof (in)) {
237 #if 0
238 if (wasdlm) {
239 smsgs[msgp - 1].s_stop -= ((long) strlen (buffer) + 1);
240 msgp++; /* fake "End of XXX Digest" */
241 }
242 #endif
243 break;
244 }
245 pos += (long) strlen (buffer);
246 }
247
248 fclose (in);
249 return (msgp - 1); /* toss "End of XXX Digest" */
250 }
251
252
253 /*
254 * Burst out the messages in the digest into the folder
255 */
256
257 static void
258 burst (struct msgs **mpp, int msgnum, struct smsg *smsgs, int numburst,
259 int inplace, int verbosw)
260 {
261 int i, j, mode;
262 char *msgnam;
263 char f1[BUFSIZ], f2[BUFSIZ], f3[BUFSIZ];
264 FILE *in, *out;
265 struct stat st;
266 struct msgs *mp;
267
268 if ((in = fopen (msgnam = m_name (msgnum), "r")) == NULL)
269 adios (msgnam, "unable to read message");
270
271 mode = fstat (fileno(in), &st) != NOTOK ? (st.st_mode & 0777) : m_gmprot();
272 mp = *mpp;
273
274 /*
275 * See if we have enough space in the folder
276 * structure for all the new messages.
277 */
278 if ((mp->hghmsg + numburst > mp->hghoff) &&
279 !(mp = folder_realloc (mp, mp->lowoff, mp->hghmsg + numburst)))
280 adios (NULL, "unable to allocate folder storage");
281 *mpp = mp;
282
283 j = mp->hghmsg; /* old value */
284 mp->hghmsg += numburst;
285 mp->nummsg += numburst;
286
287 /*
288 * If this is not the highest SELECTED message, then
289 * increment mp->hghsel by numburst, since the highest
290 * SELECTED is about to be slid down by that amount.
291 */
292 if (msgnum < mp->hghsel)
293 mp->hghsel += numburst;
294
295 /*
296 * If -inplace is given, renumber the messages after the
297 * source message, to make room for each of the messages
298 * contained within the digest.
299 */
300 if (inplace) {
301 for (i = mp->hghmsg; j > msgnum; i--, j--) {
302 strncpy (f1, m_name (i), sizeof(f1));
303 strncpy (f2, m_name (j), sizeof(f2));
304 if (does_exist (mp, j)) {
305 if (verbosw)
306 printf ("message %d becomes message %d\n", j, i);
307
308 if (rename (f2, f1) == NOTOK)
309 admonish (f1, "unable to rename %s to", f2);
310 copy_msg_flags (mp, i, j);
311 clear_msg_flags (mp, j);
312 mp->msgflags |= SEQMOD;
313 }
314 }
315 }
316
317 unset_selected (mp, msgnum);
318
319 /* new hghmsg is hghmsg + numburst */
320 i = inplace ? msgnum + numburst : mp->hghmsg;
321 for (j = numburst; j >= (inplace ? 0 : 1); i--, j--) {
322 strncpy (f1, m_name (i), sizeof(f1));
323 strncpy (f2, m_scratch ("", invo_name), sizeof(f2));
324 if (verbosw && i != msgnum)
325 printf ("message %d of digest %d becomes message %d\n", j, msgnum, i);
326
327 if ((out = fopen (f2, "w")) == NULL)
328 adios (f2, "unable to write message");
329 chmod (f2, mode);
330 fseek (in, smsgs[j].s_start, SEEK_SET);
331 cpybrst (in, out, msgnam, f2,
332 (int) (smsgs[j].s_stop - smsgs[j].s_start));
333 fclose (out);
334
335 if (i == msgnum) {
336 strncpy (f3, m_backup (f1), sizeof(f3));
337 if (rename (f1, f3) == NOTOK)
338 admonish (f3, "unable to rename %s to", f1);
339 }
340 if (rename (f2, f1) == NOTOK)
341 admonish (f1, "unable to rename %s to", f2);
342 copy_msg_flags (mp, i, msgnum);
343 mp->msgflags |= SEQMOD;
344 }
345
346 fclose (in);
347 }
348
349
350 #define S1 0
351 #define S2 1
352 #define S3 2
353
354 /*
355 * Copy a mesage which is being burst out of a digest.
356 * It will remove any "dashstuffing" in the message.
357 */
358
359 static void
360 cpybrst (FILE *in, FILE *out, char *ifile, char *ofile, int len)
361 {
362 register int c, state;
363
364 for (state = S1; (c = fgetc (in)) != EOF && len > 0; len--) {
365 if (c == 0)
366 continue;
367 switch (state) {
368 case S1:
369 switch (c) {
370 case '-':
371 state = S3;
372 break;
373
374 default:
375 state = S2;
376 case '\n':
377 fputc (c, out);
378 break;
379 }
380 break;
381
382 case S2:
383 switch (c) {
384 case '\n':
385 state = S1;
386 default:
387 fputc (c, out);
388 break;
389 }
390 break;
391
392 case S3:
393 switch (c) {
394 case ' ':
395 state = S2;
396 break;
397
398 default:
399 state = (c == '\n') ? S1 : S2;
400 fputc ('-', out);
401 fputc (c, out);
402 break;
403 }
404 break;
405 }
406 }
407
408 if (ferror (in) && !feof (in))
409 adios (ifile, "error reading");
410 if (ferror (out))
411 adios (ofile, "error writing");
412 }